Skip to content

Commit 345a4f9

Browse files
authored
feature #27 Allow Symfony 5 (emodric)
This PR was merged into the 1.2-dev branch. Discussion ---------- Commits ------- b41ce25 Allow Symfony 5 b8325a8 Adjust Symfony versions on Travis 77290ae Update Travis config to remove PHP 7.1 from Symfony 5 builds
2 parents 4b6dc27 + 77290ae commit 345a4f9

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

.travis.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,20 @@
11
language: php
22

33
php:
4-
- 7.1
54
- 7.2
65
- 7.3
76

87
env:
98
- SYMFONY_VERSION=3.4.*
10-
- SYMFONY_VERSION=4.1.*
11-
- SYMFONY_VERSION=4.2.*
9+
- SYMFONY_VERSION=4.4.*
10+
- SYMFONY_VERSION=5.0.*
11+
12+
matrix:
13+
include:
14+
- php: 7.1
15+
env: SYMFONY_VERSION=3.4.*
16+
- php: 7.1
17+
env: SYMFONY_VERSION=4.4.*
1218

1319
cache:
1420
directories:

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"php": "^7.1",
1313

1414
"behat/behat": "^3.4",
15-
"symfony/dependency-injection": "^3.4|^4.1"
15+
"symfony/dependency-injection": "^3.4|^4.1|^5.0"
1616
},
1717
"require-dev": {
1818
"friends-of-behat/test-context": "^1.0"

0 commit comments

Comments
 (0)