We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 669990e commit 852411fCopy full SHA for 852411f
.travis.yml
@@ -3,9 +3,13 @@ php:
3
- 7.0
4
- 7.1
5
- 7.2
6
+env:
7
+ - dependencies=lowest
8
+ - dependencies=highest
9
before_script:
10
- composer self-update
- - composer install
11
+ - if [ "$dependencies" = "lowest" ]; then composer update --prefer-lowest --no-interaction; fi;
12
+ - if [ "$dependencies" = "highest" ]; then composer update --no-interaction; fi;
13
script:
14
- vendor/bin/phing
15
after_script:
composer.json
@@ -12,7 +12,7 @@
"require": {
"php": "~7.0",
"phpstan/phpstan": "^0.9.1",
- "phpunit/phpunit": "^6.3"
+ "phpunit/phpunit": "^6.3 || ~7.0"
16
},
17
"require-dev": {
18
"consistence/coding-standard": "^2.0",
0 commit comments