We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ce00bea + 6b7a0b3 commit 6fa9789Copy full SHA for 6fa9789
2 files changed
.travis.yml
@@ -23,9 +23,9 @@ matrix:
23
- php: nightly
24
dist: bionic
25
fast_finish: true
26
- allow_failures:
27
- - php: nightly
28
29
-install: travis_retry composer update
+install:
+ - if [ "$TRAVIS_PHP_VERSION" != "nightly" ]; then travis_retry composer update; fi
+ - if [ "$TRAVIS_PHP_VERSION" == "nightly" ]; then travis_retry composer update --ignore-platform-reqs; fi
30
31
script: vendor/bin/phpunit
composer.json
@@ -12,7 +12,7 @@
12
}
13
],
14
"require": {
15
- "php": "^5.3 || ^7.0"
+ "php": "^5.3 || ^7.0 || ^8.0"
16
},
17
"require-dev": {
18
"phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
0 commit comments