We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 25e62cd + 42f969a commit 305ab0aCopy full SHA for 305ab0a
.travis.yml
@@ -4,10 +4,21 @@ php:
4
- 5.3
5
- 5.4
6
- 5.5
7
+ - 5.6
8
- hhvm
9
10
+env:
11
+ - PACKAGE_VERSION=high
12
+
13
+matrix:
14
+ include:
15
+ - php: 5.3.3
16
+ env: PACKAGE_VERSION=low
17
18
before_script:
- - composer install --prefer-source --dev
19
+ - composer selfupdate
20
+ - if [[ "$PACKAGE_VERSION" == "high" ]]; then composer update --prefer-source; fi
21
+ - if [[ "$PACKAGE_VERSION" == "low" ]]; then composer update --prefer-lowest --prefer-source; fi
22
23
script: phpunit -c tests/phpunit.xml.dist
24
composer.json
@@ -27,9 +27,9 @@
27
}
28
],
29
"require": {
30
- "php": ">=5.3.0",
+ "php": ">=5.3.3",
31
"phpcr/phpcr": "~2.1.0",
32
- "symfony/console": "~2.0"
+ "symfony/console": "2.*,>=2.0.5"
33
},
34
"autoload": {
35
"psr-0": {
0 commit comments