Skip to content

Commit

Permalink
[MINOR] Add support for symfony 5 (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
kodiakhq[bot] authored Nov 21, 2019
2 parents 9644029 + 353dad6 commit 8d2ac88
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
10 changes: 8 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,16 @@ matrix:
env: COMPOSER_FLAGS="--prefer-lowest"
- stage: test
php: 7.3
env: SYMFONY_VERSION=3.4.*
env: SYMFONY_VERSION=4.2.*
- stage: test
php: 7.3
env: SYMFONY_VERSION=4.2.*
env: SYMFONY_VERSION=4.3.*
- stage: test
php: 7.3
env: SYMFONY_VERSION=4.4.*
- stage: test
php: 7.3
env: SYMFONY_VERSION=5.0.*
allow_failures:
- php: 7.3
env: TARGET=checkdeps
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,17 @@
"doctrine/event-manager": "^1.0",
"doctrine/orm": "^2.5",
"sonata-project/doctrine-extensions": "^1.3.1",
"symfony/property-access": "^3.4 || ^4.2"
"symfony/property-access": "^4.2 || ^5.0"
},
"conflict": {
"symfony/framework-bundle": "<3.4"
"symfony/framework-bundle": "<4.2"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.2",
"sllh/composer-lint": "^1.0",
"symfony/dependency-injection": "^3.4 || ^4.2",
"symfony/expression-language": "^3.4 || ^4.2",
"symfony/framework-bundle": "^3.4 || ^4.2"
"symfony/dependency-injection": "^4.2 || ^5.0",
"symfony/expression-language": "^4.2 || ^5.0",
"symfony/framework-bundle": "^4.2 || ^5.0"
},
"suggest": {
"symfony/framework-bundle": "If you want to use symfony"
Expand Down

0 comments on commit 8d2ac88

Please sign in to comment.