Skip to content

Commit 3c73138

Browse files
Add support for symfony 5
1 parent 784dbef commit 3c73138

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.travis.yml

Lines changed: 6 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,14 @@ matrix:
1313
include:
1414
- php: 5.6
1515
env: PACKAGE_VERSION=low
16+
- php: 7.3
17+
env:
18+
- MINIMUM_STABILITY=dev
19+
- PACKAGE_VERSION=high
1620

1721
before_script:
1822
- composer selfupdate
23+
- if [[ "$MINIMUM_STABILITY" ]]; then composer config minimum-stability $MINIMUM_STABILITY ; fi
1924
- if [[ "$PACKAGE_VERSION" == "high" ]]; then composer update --prefer-dist; fi
2025
- if [[ "$PACKAGE_VERSION" == "low" ]]; then composer update --prefer-lowest --prefer-dist; fi
2126

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)