Skip to content

Commit bfac996

Browse files
Add support for symfony 5
1 parent 4c40744 commit bfac996

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.travis.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ language: php
33
php:
44
- 5.6
55
- 7.1
6+
- 7.2
7+
- 7.3
68

79
env:
810
- PACKAGE_VERSION=high
@@ -13,9 +15,14 @@ matrix:
1315
include:
1416
- php: 5.6
1517
env: PACKAGE_VERSION=low
18+
- php: 7.4
19+
env:
20+
- MINIMUM_STABILITY=dev
21+
- PACKAGE_VERSION=high
1622

1723
before_script:
1824
- composer selfupdate
25+
- if [[ "$MINIMUM_STABILITY" ]]; then composer config minimum-stability $MINIMUM_STABILITY ; fi
1926
- if [[ "$PACKAGE_VERSION" == "high" ]]; then composer update --prefer-dist; fi
2027
- if [[ "$PACKAGE_VERSION" == "low" ]]; then composer update --prefer-lowest --prefer-dist; fi
2128

composer.json

Lines changed: 3 additions & 3 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",
@@ -29,6 +29,6 @@
2929
}
3030
},
3131
"extra": {
32-
"branch-alias": {"dev-master": "1.0-dev" }
32+
"branch-alias": {"dev-master": "1.x-dev" }
3333
}
3434
}

0 commit comments

Comments
 (0)