Skip to content

Commit

Permalink
Merge pull request #236 from Ne-Lexa/master
Browse files Browse the repository at this point in the history
Add support for Symfony 5
  • Loading branch information
excelwebzone committed Dec 25, 2019
2 parents 4e8e2b6 + a0c871f commit 7163b22
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 5 deletions.
22 changes: 21 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,26 @@ matrix:
env: SYMFONY_VERSION=^3
- php: 7.2
env: SYMFONY_VERSION=^4
- php: 7.2
env: SYMFONY_VERSION=^5

- php: 7.3
env: SYMFONY_VERSION=^2.8
- php: 7.3
env: SYMFONY_VERSION=^3
- php: 7.3
env: SYMFONY_VERSION=^4
- php: 7.3
env: SYMFONY_VERSION=^5

- php: 7.4
env: SYMFONY_VERSION=^2.8
- php: 7.4
env: SYMFONY_VERSION=^3
- php: 7.4
env: SYMFONY_VERSION=^4
- php: 7.4
env: SYMFONY_VERSION=^5

before_script:
- |
Expand All @@ -42,7 +62,7 @@ before_script:
composer require "symfony/security-bundle:${SYMFONY_VERSION}" --no-update
composer require "symfony/validator:${SYMFONY_VERSION}" --no-update
fi
- composer install
- COMPOSER_MEMORY_LIMIT=-1 composer install

script:
- vendor/bin/phpunit
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
"require": {
"php": ">=5.6 || ^7.0",
"google/recaptcha": "^1.1",
"symfony/form": "^2.8 || ^3.0 || ^4.0",
"symfony/framework-bundle": "^2.8 || ^3.0 || ^4.0",
"symfony/security-bundle": "^2.8 || ^3.0 || ^4.0",
"symfony/validator": "^2.8 || ^3.0 || ^4.0",
"symfony/form": "^2.8 || ^3.0 || ^4.0 || ^5.0",
"symfony/framework-bundle": "^2.8 || ^3.0 || ^4.0 || ^5.0",
"symfony/security-bundle": "^2.8 || ^3.0 || ^4.0 || ^5.0",
"symfony/validator": "^2.8 || ^3.0 || ^4.0 || ^5.0",
"twig/twig": "^1.40 || ^2.9"
},
"require-dev": {
Expand Down

0 comments on commit 7163b22

Please sign in to comment.