Skip to content

Commit e4ef202

Browse files
Add support for symfony 5
1 parent 360febf commit e4ef202

File tree

2 files changed

+29
-7
lines changed

2 files changed

+29
-7
lines changed

.travis.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,31 @@ matrix:
6262
- PREFER=""
6363
- BEHAT_SUITE=cli
6464
- SYMFONY_VERSION=^4.0
65+
- php: 7.3
66+
env:
67+
- PREFER=""
68+
- BEHAT_SUITE=standalone
69+
- SYMFONY_VERSION=^2.8
70+
- php: 7.3
71+
env:
72+
- PREFER=""
73+
- BEHAT_SUITE=embedded
74+
- SYMFONY_VERSION=^3.0
75+
- php: 7.3
76+
env:
77+
- PREFER=""
78+
- BEHAT_SUITE=embedded
79+
- SYMFONY_VERSION=^4.0
80+
- php: 7.3
81+
env:
82+
- PREFER=""
83+
- BEHAT_SUITE=cli
84+
- SYMFONY_VERSION=^5.0
85+
- MINIMUM_STABILITY=dev
6586

6687
before_script:
6788
- composer self-update
89+
- if [[ "$MINIMUM_STABILITY" ]]; then composer config minimum-stability $MINIMUM_STABILITY ; fi
6890
- composer require "symfony/symfony" "$SYMFONY_VERSION" --no-update
6991
- composer update $PREFER
7092
- bash tests/bin/travis_jackrabbit.sh

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@
33
"description": "Shell for PHPCR",
44
"require": {
55
"php": "^5.6|^7.0",
6-
"symfony/console": "~2.8|~3.0|~4.0",
6+
"symfony/console": "~2.8|~3.0|~4.0|~5.0",
77
"jackalope/jackalope": "~1.1",
88
"phpcr/phpcr": "~2.1",
99
"phpcr/phpcr-utils": "~1.2",
10-
"symfony/finder": "~2.8|~3.0|~4.0",
11-
"symfony/serializer": "~2.8|~3.0|~4.0",
12-
"symfony/yaml": "~2.8|~3.0|~4.0",
13-
"symfony/dependency-injection": "~2.8|~3.0|~4.0",
14-
"symfony/expression-language": "~2.8|~3.0|~4.0",
10+
"symfony/finder": "~2.8|~3.0|~4.0|~5.0",
11+
"symfony/serializer": "~2.8|~3.0|~4.0|~5.0",
12+
"symfony/yaml": "~2.8|~3.0|~4.0|~5.0",
13+
"symfony/dependency-injection": "~2.8|~3.0|~4.0|~5.0",
14+
"symfony/expression-language": "~2.8|~3.0|~4.0|~5.0",
1515
"dantleech/glob-finder": "~1.0"
1616
},
1717
"require-dev": {
18-
"symfony/symfony": "~2.8|~3.0|~4.0",
18+
"symfony/symfony": "~2.8|~3.0|~4.0|~5.0",
1919
"phpunit/phpunit": "~5.7",
2020
"behat/behat": "~3.1",
2121
"phpspec/phpspec": "~3.2|~4.0",

0 commit comments

Comments
 (0)