Skip to content

Commit 7af2db9

Browse files
committed
minor #87 Added Symfony Yaml 3.0 as a valid dep (fabpot)
This PR was merged into the 2.1.x-dev branch. Discussion ---------- Added Symfony Yaml 3.0 as a valid dep Commits ------- d52008b Added Symfony Yaml 3.0 as a valid dep
2 parents f7b677a + d52008b commit 7af2db9

File tree

2 files changed

+14
-9
lines changed

2 files changed

+14
-9
lines changed

.travis.yml

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,20 @@ cache:
66
directories:
77
- $HOME/.composer/cache/files
88

9-
php:
10-
- 5.3
11-
- 5.4
12-
- 5.5
13-
- 5.6
14-
- 7.0
15-
- hhvm
9+
matrix:
10+
include:
11+
- php: 5.3
12+
env: COMPOSER_FLAGS='--prefer-lowest --prefer-stable'
13+
- php: 5.4
14+
- php: 5.5
15+
- php: 5.6
16+
- php: 7.0
17+
env: DEPENDENCIES=dev
18+
- php: hhvm
1619

17-
install: composer install
20+
before_script:
21+
- if [ "$DEPENDENCIES" = "dev" ]; then perl -pi -e 's/^}$/,"minimum-stability":"dev"}/' composer.json; fi;
22+
- composer update $COMPOSER_FLAGS
1823

1924
script: phpunit --coverage-text --coverage-clover=coverage.clover
2025

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
],
1313
"require": {
1414
"php": ">=5.3.3",
15-
"symfony/yaml": "~2.0"
15+
"symfony/yaml": "~2.3|~3.0"
1616
},
1717
"require-dev": {
1818
"composer/composer": "1.0.*@dev",

0 commit comments

Comments
 (0)