File tree 2 files changed +10
-3
lines changed
2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,8 @@ language: php
3
3
php :
4
4
- 5.6
5
5
- 7.1
6
+ - 7.2
7
+ - 7.3
6
8
7
9
env :
8
10
- PACKAGE_VERSION=high
@@ -13,9 +15,14 @@ matrix:
13
15
include :
14
16
- php : 5.6
15
17
env : PACKAGE_VERSION=low
18
+ - php : 7.4
19
+ env :
20
+ - MINIMUM_STABILITY=dev
21
+ - PACKAGE_VERSION=high
16
22
17
23
before_script :
18
24
- composer selfupdate
25
+ - if [[ "$MINIMUM_STABILITY" ]]; then composer config minimum-stability $MINIMUM_STABILITY ; fi
19
26
- if [[ "$PACKAGE_VERSION" == "high" ]]; then composer update --prefer-dist; fi
20
27
- if [[ "$PACKAGE_VERSION" == "low" ]]; then composer update --prefer-lowest --prefer-dist; fi
21
28
Original file line number Diff line number Diff line change 10
10
],
11
11
"require" : {
12
12
"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 "
15
15
},
16
16
"require-dev" : {
17
17
"phpunit/phpunit" : " ~5.7" ,
29
29
}
30
30
},
31
31
"extra" : {
32
- "branch-alias" : {"dev-master" : " 1.0 -dev" }
32
+ "branch-alias" : {"dev-master" : " 1.x -dev" }
33
33
}
34
34
}
You can’t perform that action at this time.
0 commit comments