Skip to content

Commit 69503a7

Browse files
Merge pull request #55 from Soullivaneuh/sf3
Allow Symfony 3
2 parents e5d22e1 + 562279e commit 69503a7

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.travis.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,11 @@ matrix:
3030
- php: 5.6
3131
env: SYMFONY_VERSION=2.6.* PHPUNIT_VERSION=~4.0
3232
- php: 5.6
33-
env: SYMFONY_VERSION=2.7.*@dev PHPUNIT_VERSION=~4.0
33+
env: SYMFONY_VERSION=2.7.* PHPUNIT_VERSION=~4.0
34+
- php: 5.6
35+
env: SYMFONY_VERSION=2.8.*@dev PHPUNIT_VERSION=~4.0
36+
- php: 5.6
37+
env: SYMFONY_VERSION=3.0.*@dev PHPUNIT_VERSION=~4.0
3438
allow_failures:
3539
- php: hhvm
3640

composer.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,15 @@
1414
],
1515
"require": {
1616
"matthiasnoback/symfony-config-test": "0.*|~1.0",
17-
"symfony/dependency-injection": "^2.0.5",
18-
"symfony/config": "^2.0.5",
17+
"symfony/dependency-injection": "^2.0.5|~3.0",
18+
"symfony/config": "^2.0.5|~3.0",
1919
"sebastian/exporter": "~1"
2020
},
2121
"require-dev": {
2222
"phpunit/phpunit": "~3.0|~4.0"
2323
},
24+
"minimum-stability": "dev",
25+
"prefer-stable": true,
2426
"autoload": {
2527
"psr-4" : { "Matthias\\SymfonyDependencyInjectionTest\\" : "" }
2628
}

0 commit comments

Comments
 (0)