Skip to content

Commit

Permalink
Adds PHP 8.0 support - update Travis CI configuration and reqs in com…
Browse files Browse the repository at this point in the history
…poser (#111)
  • Loading branch information
michalbundyra authored Nov 27, 2020
1 parent 7957eb3 commit 6f789b1
Show file tree
Hide file tree
Showing 13 changed files with 148 additions and 145 deletions.
8 changes: 8 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,14 @@ matrix:
- php: 7.4
env:
- DEPS=latest
- php: nightly
env:
- DEPS=lowest
- COMPOSER_ARGS="--no-interaction --ignore-platform-reqs"
- php: nightly
env:
- DEPS=latest
- COMPOSER_ARGS="--no-interaction --ignore-platform-reqs"

before_install:
- if [[ $TEST_COVERAGE != 'true' ]]; then phpenv config-rm xdebug.ini || true ; fi
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ All notable changes to this project will be documented in this file, in reverse

### Added

- Nothing.
- [#111](https://github.com/webimpress/coding-standard/pull/111) adds support for PHP 8.0.

### Changed

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
"psr-12"
],
"require": {
"php": "^7.1",
"squizlabs/php_codesniffer": "^3.5.4"
"php": "^7.1 || ^8.0",
"squizlabs/php_codesniffer": "^3.5.8"
},
"require-dev": {
"phpunit/phpunit": "^7.5.20 || ^8.5.3 || ^9.1.1"
"phpunit/phpunit": "^7.5.20 || ^8.5.11 || ^9.4.3"
},
"autoload": {
"psr-4": {
Expand Down
Loading

0 comments on commit 6f789b1

Please sign in to comment.