Skip to content
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