Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

php8.0 BUT READ CARFULLY. THERE'S A BUG #66

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 16 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
#dist: trusty

env:
global:
- XDEBUG_MODE=coverage

language: php
dist: trusty

branches:
only:
Expand All @@ -17,6 +22,13 @@ php:
- 7.2
- 7.3
- 7.4
- 8.0
- 8.1

matrix:
allow_failures:
- php: 8.1
- php: nightly

#env:
# matrix:
Expand All @@ -26,12 +38,9 @@ php:
install:
- travis_retry composer update --no-interaction --no-suggest --prefer-source

before_script:
- phpenv config-rm xdebug.ini || true
#before_script:
# - phpenv config-rm xdebug.ini || true

script:
- composer test

#matrix:
# allow_failures:
# - php: nightly
- ./vendor/bin/phpunit -c ./phpunit.xml --coverage-text
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"phpunit/phpunit": "^5.7 || ^6.4 || ^7.0"
"phpunit/phpunit": "^5.7 || ^6.4 || ^7.0 || ^9"
},
"autoload": {
"psr-4": {
Expand Down
Loading