Skip to content

Commit c38963b

Browse files
authored
Merge pull request #187 from alexander-schranz/enhancement/symfony-5-support
Add support for symfony 5
2 parents 1c3b523 + 4d87b23 commit c38963b

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.travis.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ php:
55
- 7.0
66
- 7.1
77
- 7.2
8+
- 7.3
89

910
env:
1011
- PACKAGE_VERSION=high
@@ -15,9 +16,14 @@ matrix:
1516
include:
1617
- php: 5.6
1718
env: PACKAGE_VERSION=low
19+
- php: 7.3
20+
env:
21+
- PACKAGE_VERSION=high
22+
- MINIMUM_STABILITY=dev
1823

1924
before_script:
2025
- composer selfupdate
26+
- if [[ "$MINIMUM_STABILITY" ]]; then composer config minimum-stability $MINIMUM_STABILITY ; fi
2127
- if [[ "$PACKAGE_VERSION" == "high" ]]; then composer update --prefer-source; fi
2228
- if [[ "$PACKAGE_VERSION" == "low" ]]; then composer update --prefer-lowest --prefer-source; fi
2329

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"require": {
3030
"php": "^5.6|^7.0",
3131
"phpcr/phpcr": "~2.1.0",
32-
"symfony/console": "~2.3|~3.0|^4.0"
32+
"symfony/console": "~2.3|~3.0|^4.0|^5.0"
3333
},
3434
"require-dev": {
3535
"ramsey/uuid": "^3.5",

0 commit comments

Comments
 (0)