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
8 changes: 6 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,17 @@ cache:
- $HOME/.composer/cache/files

php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
- 7.4
- nightly

# lock distro so new future defaults will not break the build
dist: trusty

matrix:
allow_failures:
- php: 5.4
Expand All @@ -21,6 +24,7 @@ matrix:

install:
- ./travis-init.sh
- composer config platform.php $(php -r 'echo PHP_VERSION;')
- composer install -n

script:
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
}
],
"require": {
"php": ">=5.4.0",
"php": ">=5.6.0",
"evenement/evenement": "^3.0 || ^2.0",
"react/event-loop": "^1.0 || ^0.5 || ^0.4",
"react/promise": "~2.2",
Expand All @@ -20,7 +20,7 @@
},
"require-dev": {
"clue/block-react": "^1.1",
"phpunit/phpunit": "^6.0 || ^5.0 || ^4.8"
"phpunit/phpunit": "^7.0 || ^6.0 || ^5.0"
},
"autoload": {
"psr-4": {
Expand All @@ -36,7 +36,7 @@
"config": {
"sort-packages": true,
"platform": {
"php": "5.4"
"php": "5.6"
}
}
}
Loading