Skip to content

Commit

Permalink
Merge pull request #10 from lucasmezencio/master
Browse files Browse the repository at this point in the history
Add Symfony 5 support
  • Loading branch information
benji07 authored Jun 29, 2020
2 parents e9f0979 + c8348fe commit 6185bc5
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 10 deletions.
31 changes: 24 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,32 @@
language: php

php:
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
env:
global:
- SYMFONY_VERSION=""

matrix:
include:
- php: 7.1
env: SYMFONY_VERSION="3.0.*"
- php: 7.2
env: SYMFONY_VERSION="3.0.*"
- php: 7.1
env: SYMFONY_VERSION="4.0.*"
- php: 7.2
env: SYMFONY_VERSION="4.0.*"
- php: 7.3
env: SYMFONY_VERSION="4.4.*"
- php: 7.3
env: SYMFONY_VERSION="5.0.*"
- php: 7.4
env: SYMFONY_VERSION="5.0.*"
- php: 7.4
env: SYMFONY_VERSION="5.1.*"
# bleeding edge (unreleased dev versions where failures are allowed):
- php: nightly # PHP 8
env: SYMFONY_VERSION="5.2.*"
allow_failures:
- php: hhvm
- env: SYMFONY_VERSION="5.2.*"

before_script:
- composer self-update
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
}
],
"require": {
"php": ">=5.5.9",
"symfony/framework-bundle": "~3.0|~4.0",
"symfony/form": "~3.0|~4.0"
"php": "^7.1",
"symfony/framework-bundle": "~3.0|~4.0|~5.0",
"symfony/form": "~3.0|~4.0|~5.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 6185bc5

Please sign in to comment.