Skip to content

Commit

Permalink
Adds PHP 8.0 support, removes PHP prior to 7.3
Browse files Browse the repository at this point in the history
Updates Travis CI matrix
Updates php requirement in composer.json
Updates PHPUnit dependency

Signed-off-by: Michał Bundyra <[email protected]>
  • Loading branch information
michalbundyra committed Aug 25, 2020
1 parent 0e5deaf commit 87a7264
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 20 deletions.
28 changes: 10 additions & 18 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,38 +16,30 @@ env:
matrix:
fast_finish: true
include:
- php: 5.6
env:
- DEPS=lowest
- php: 5.6
env:
- DEPS=latest
- php: 7
env:
- DEPS=lowest
- php: 7
env:
- DEPS=latest
- php: 7.1
- php: 7.3
env:
- DEPS=lowest
- php: 7.1
- php: 7.3
env:
- DEPS=latest
- CS_CHECK=true
- TEST_COVERAGE=true
- php: 7.2
- php: 7.4
env:
- DEPS=lowest
- php: 7.2
- php: 7.4
env:
- DEPS=latest
- php: 7.3
- php: nightly
env:
- DEPS=lowest
- php: 7.3
- COMPOSER_ARGS="--no-interaction --ignore-platform-reqs"
- php: nightly
env:
- DEPS=latest
- COMPOSER_ARGS="--no-interaction --ignore-platform-reqs"
allow_failures:
- php: nightly

before_install:
- if [[ $TEST_COVERAGE != 'true' ]]; then phpenv config-rm xdebug.ini || return 0 ; fi
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
}
},
"require": {
"php": "^5.6 || ^7.0",
"php": "^7.3 || ^8.0",
"ext-json": "*",
"laminas/laminas-stdlib": "^2.7.7 || ^3.1",
"laminas/laminas-zendframework-bridge": "^1.0",
Expand All @@ -37,7 +37,7 @@
"laminas/laminas-i18n": "^2.7.4",
"laminas/laminas-servicemanager": "^2.7.8 || ^3.3",
"malukenho/docheader": "^0.1.6",
"phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
"phpunit/phpunit": "^8.5.8"
},
"conflict": {
"container-interop/container-interop": "<1.2.0"
Expand Down

0 comments on commit 87a7264

Please sign in to comment.