Skip to content

Commit 1f2dcbb

Browse files
authored
Merge pull request #11 from stof/symfony_3
Add support for Symfony 3
2 parents 383c860 + 50b2bd5 commit 1f2dcbb

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,16 @@ php:
1111
- 5.4
1212
# 5.5 and 5.6 are already covered by the jobs running against specific Symfony versions. no need to duplicate them here
1313
- 7.0
14+
- 7.1
1415
- hhvm
1516

1617
matrix:
1718
include:
1819
# force testing against Symfony LTS versions
1920
- php: 5.5
20-
env: SYMFONY_VERSION=2.3.*
21-
- php: 5.6
2221
env: SYMFONY_VERSION=2.7.*
22+
- php: 5.6
23+
env: SYMFONY_VERSION=2.8.*
2324
# Test against lowest dependencies
2425
- php: 5.6
2526
env: COMPOSER_FLAGS='--prefer-lowest --prefer-stable'

composer.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,13 @@
1919
"require": {
2020
"php": ">=5.3.3",
2121
"keen-io/keen-io": "~2.1",
22-
"symfony/framework-bundle": "~2.3"
22+
"symfony/config": "~2.3 || ~3.0",
23+
"symfony/dependency-injection": "~2.3 || ~3.0",
24+
"symfony/http-kernel": "~2.3 || ~3.0"
2325
},
2426
"require-dev": {
25-
"symfony/phpunit-bridge": "~2.7",
27+
"symfony/phpunit-bridge": "~3.2",
28+
"symfony/yaml": "~2.3 || ~3.0",
2629
"phpunit/phpunit": "~4.5"
2730
},
2831
"autoload": {

0 commit comments

Comments
 (0)