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.
2 parents b9ef1ff + d45094f commit 7d9c46eCopy full SHA for 7d9c46e
.travis.yml
@@ -1,12 +1,14 @@
1
language: php
2
3
-php:
4
- - 7.2
5
- - 7.3
6
- - 7.4
+matrix:
+ include:
+ - php: 7.2
+ env: deps=low
7
+ - php: 7.3
8
+ - php: 7.4
9
10
install:
- - composer install
11
+ - if [[ $deps = low ]]; then composer update --prefer-lowest --prefer-stable; else composer install; fi
12
13
script:
14
- ./vendor/bin/phpunit --coverage-text
composer.json
@@ -17,7 +17,7 @@
17
],
18
"require": {
19
"php": "^7.2",
20
- "symfony/dependency-injection": "^5.0",
+ "symfony/dependency-injection": "^4.3 || ^5.0",
21
"mockery/mockery": "^1.3"
22
},
23
"require-dev": {
0 commit comments