Skip to content
This repository has been archived by the owner on Apr 19, 2022. It is now read-only.

Commit

Permalink
Merge pull request #1 from yceruto/compat_5
Browse files Browse the repository at this point in the history
Add Symfony 5 compatibility
  • Loading branch information
yceruto authored Mar 3, 2020
2 parents e62b571 + 6e4a4c8 commit 9c08ae3
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 11 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,10 @@ matrix:
- php: 7.1
- php: 7.2
- php: 7.3
- php: 7.4

# Latest commit to master
- php: 7.3
- php: 7.4
env: STABILITY="dev"

allow_failures:
Expand All @@ -40,7 +41,7 @@ before_install:
- if ! [ -z "$STABILITY" ]; then composer config minimum-stability ${STABILITY}; fi;

install:
- composer update ${COMPOSER_FLAGS} --prefer-dist --no-interaction
- composer update ${COMPOSER_FLAGS} --prefer-source --no-interaction
- ./phpunit install

script:
Expand Down
19 changes: 10 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,23 @@
"require": {
"php": "^7.1.3",
"ext-json": "*",
"symfony/doctrine-bridge": "^3.4|^4.2",
"symfony/form": "^3.4|^4.2",
"symfony/framework-bundle": "^3.4|^4.2",
"symfony/options-resolver": "^4.2"
"symfony/doctrine-bridge": "^3.4|^4.2|^5.0",
"symfony/form": "^3.4|^4.2|^5.0",
"symfony/framework-bundle": "^3.4|^4.2|^5.0",
"symfony/options-resolver": "^4.2|^5.0"
},
"require-dev": {
"doctrine/doctrine-bundle": "^1.10",
"doctrine/doctrine-fixtures-bundle": "^3.2",
"doctrine/orm": "^2.6.3",
"symfony/asset": "^3.4|^4.2",
"symfony/asset": "^3.4|^4.2|^5.0",
"symfony/dom-crawler": "^4.4",
"symfony/panther": "^0.4",
"symfony/phpunit-bridge": "^3.4|^4.2",
"symfony/phpunit-bridge": "^3.4|^4.2|^5.0",
"symfony/translation-contracts": "^1.1",
"symfony/twig-bundle": "^3.4|^4.2",
"symfony/var-dumper": "^3.4|^4.2",
"symfony/yaml": "^3.4|^4.2"
"symfony/twig-bundle": "^3.4|^4.2|^5.0",
"symfony/var-dumper": "^3.4|^4.2|^5.0",
"symfony/yaml": "^3.4|^4.2|^5.0"
},
"config": {
"sort-packages": true
Expand Down

0 comments on commit 9c08ae3

Please sign in to comment.