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.
1 parent bd58d5d commit 52aa048Copy full SHA for 52aa048
.travis.yml
@@ -1,13 +1,21 @@
1
language: php
2
3
-php:
4
- - 5.6
5
- - 7.0
6
- - 7.1
+matrix:
+ include:
+ - php: 5.6
+ env: WITH_LOWEST=true
7
+ - php: 7.0
8
+ - php: 7.1
9
+
10
+before_install:
11
+ - composer validate
12
13
install:
- - composer install --dev --no-interaction --prefer-source
14
+ - if [[ "$WITH_LOWEST" == "true" ]]; then composer update --prefer-lowest; else composer install --prefer-source; fi
15
16
script:
17
- composer cs
18
- composer test
19
20
+notifications:
21
+ email: false
composer.json
@@ -34,7 +34,7 @@
34
}
35
},
36
"require-dev": {
37
- "phpunit/phpunit": "~4.8"
+ "phpunit/phpunit": "^5.7.19"
38
39
"scripts": {
40
"test": "phpunit",
0 commit comments