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