Skip to content

Commit fd27b3b

Browse files
Addd support for symfony 5
1 parent 784dbef commit fd27b3b

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ language: php
22

33
php:
44
- 5.6
5-
- 7.1
5+
- 7.3
66

77
env:
88
- PACKAGE_VERSION=high
@@ -13,9 +13,12 @@ matrix:
1313
include:
1414
- php: 5.6
1515
env: PACKAGE_VERSION=low
16+
- php: 7.3
17+
env: MINIMUM_STABILITY=dev
1618

1719
before_script:
1820
- composer selfupdate
21+
- if [[ "$MINIMUM_STABILITY" ]]; then composer config minimum-stability $MINIMUM_STABILITY ; fi
1922
- if [[ "$PACKAGE_VERSION" == "high" ]]; then composer update --prefer-dist; fi
2023
- if [[ "$PACKAGE_VERSION" == "low" ]]; then composer update --prefer-lowest --prefer-dist; fi
2124

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
],
1111
"require": {
1212
"phpcr/phpcr": "~2.1",
13-
"symfony/finder": "~2.8 || ~3.4 || ~4.0",
14-
"symfony/console": "~2.8 || ~3.4 || ~4.0"
13+
"symfony/finder": "~2.8 || ~3.4 || ~4.0 || ~5.0",
14+
"symfony/console": "~2.8 || ~3.4 || ~4.0 || ~5.0"
1515
},
1616
"require-dev": {
1717
"phpunit/phpunit": "~5.7",

0 commit comments

Comments
 (0)