Skip to content

Commit

Permalink
raise minimum required PHP version to 7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Frank Kleine committed Nov 12, 2019
1 parent d8b7d63 commit 41d1b2e
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 15 deletions.
2 changes: 0 additions & 2 deletions .travis.composer.config.json.enc

This file was deleted.

14 changes: 7 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
language: php

php:
- 7.0
- 7.3
- 7.4snapshot
- nightly

matrix:
fast_finish: true
allow_failures:
- php: nightly

before_install:
- "mkdir -p ~/.composer"
- openssl aes-256-cbc -K $encrypted_00d4fc3a7399_key -iv $encrypted_00d4fc3a7399_iv -in .travis.composer.config.json.enc -out ~/.composer/config.json -d
- php: 7.4snapshot

install:
- composer install
Expand All @@ -20,5 +18,7 @@ script:
- vendor/bin/phpunit --coverage-text

after_success:
- composer require satooshi/php-coveralls
- vendor/bin/coveralls
- composer require php-coveralls/php-coveralls
- travis_retry vendor/bin/php-coveralls
- composer require phpstan/phpstan
- vendor/bin/phpstan analyse src/
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 6.0.0 (2019-11-12)

### BC breaks

* raised minimum required PHP version to 7.3

## 5.0.0 (2016-07-31)

### BC breaks
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ _stubbles/image is distributed as [Composer](https://getcomposer.org/)
package. To install it as a dependency of your package use the following
command:

composer require "stubbles/image": "^5.0"
composer require "stubbles/image": "^6.0"


Requirements
------------

_stubbles/image_ requires at least PHP 7.0.
_stubbles/image_ requires at least PHP 7.3.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"license": "BSD-3-Clause",
"description": "Simple image handling support.",
"require": {
"php": "^7.0",
"php": "^7.3",
"ext-gd": "*"
},
"require-dev": {
Expand All @@ -24,7 +24,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "5.0.x-dev"
"dev-master": "6.0.x-dev"
}
},
"minimum-stability": "dev",
Expand Down
4 changes: 2 additions & 2 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 41d1b2e

Please sign in to comment.