Skip to content

Commit 6fa9789

Browse files
authored
Merge pull request #63 from GrahamCampbell/patch-1
PHP 8 Support
2 parents ce00bea + 6b7a0b3 commit 6fa9789

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ matrix:
2323
- php: nightly
2424
dist: bionic
2525
fast_finish: true
26-
allow_failures:
27-
- php: nightly
2826

29-
install: travis_retry composer update
27+
install:
28+
- if [ "$TRAVIS_PHP_VERSION" != "nightly" ]; then travis_retry composer update; fi
29+
- if [ "$TRAVIS_PHP_VERSION" == "nightly" ]; then travis_retry composer update --ignore-platform-reqs; fi
3030

3131
script: vendor/bin/phpunit

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
}
1313
],
1414
"require": {
15-
"php": "^5.3 || ^7.0"
15+
"php": "^5.3 || ^7.0 || ^8.0"
1616
},
1717
"require-dev": {
1818
"phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"

0 commit comments

Comments
 (0)