Skip to content

Commit

Permalink
Merge pull request #119 from webinarium/master
Browse files Browse the repository at this point in the history
Symfony 5 support
  • Loading branch information
rosstuck authored Dec 31, 2019
2 parents aa3fd59 + 215fa87 commit 555850c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ matrix:
env: SYMFONY_VERSION="4.1.*"

before_install:
- echo "memory_limit=2G" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
- composer self-update || true
- if [ "$DOCTRINE" == "false" ]; then composer remove league/tactician-doctrine --dev --no-update; fi
- if [ "$SYMFONY_VERSION" != "" ]; then composer require symfony/symfony:${SYMFONY_VERSION} --no-update; fi
Expand Down
18 changes: 9 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@
"league/tactician": "^1.0",
"league/tactician-logger": "^0.10.0",
"league/tactician-container": "^2.0",
"symfony/config": "^2.8|^3.3|^4.0",
"symfony/dependency-injection": "^2.8|^3.3|^4.0",
"symfony/http-kernel": "^2.8|^3.3|^4.0",
"symfony/yaml": "^2.8|^3.3|^4.0"
"symfony/config": "^2.8|^3.3|^4.0|^5.0",
"symfony/dependency-injection": "^2.8|^3.3|^4.0|^5.0",
"symfony/http-kernel": "^2.8|^3.3|^4.0|^5.0",
"symfony/yaml": "^2.8|^3.3|^4.0|^5.0"
},
"minimum-stability": "beta",
"suggest": {
Expand All @@ -63,12 +63,12 @@
"require-dev": {
"phpunit/phpunit": "~6.1",
"mockery/mockery": "~1.0",
"symfony/console": "^2.8|^3.3|^4.0",
"symfony/security": "^2.8|^3.3|^4.0",
"symfony/validator": "^2.8|^3.3|^4.0",
"symfony/console": "^2.8|^3.3|^4.0|^5.0",
"symfony/security": "^2.8|^3.3|^4.0|^5.0",
"symfony/validator": "^2.8|^3.3|^4.0|^5.0",
"league/tactician-doctrine": "^1.1.1",
"symfony/framework-bundle": "^2.8.15|^3.3|^4.0",
"symfony/security-bundle": "^2.8|^3.3|^4.0",
"symfony/framework-bundle": "^2.8.15|^3.3|^4.0|^5.0",
"symfony/security-bundle": "^2.8|^3.3|^4.0|^5.0",
"matthiasnoback/symfony-config-test": "^3.0",
"matthiasnoback/symfony-dependency-injection-test": "^2.1"
}
Expand Down

0 comments on commit 555850c

Please sign in to comment.