File tree 3 files changed +16
-9
lines changed
3 files changed +16
-9
lines changed Original file line number Diff line number Diff line change 1
- .php_cs .cache
1
+ . * .cache
2
2
bin
3
3
composer.lock
4
4
vendor
Original file line number Diff line number Diff line change 4
4
- 7.1
5
5
- 7.2
6
6
- 7.3
7
+ - 7.4
7
8
- nightly
8
9
9
10
cache :
@@ -14,9 +15,11 @@ matrix:
14
15
fast_finish : true
15
16
include :
16
17
- php : 7.1
17
- env : SYMFONY_VERSION=3.4.* SYMFONY_DEPRECATIONS_HELPER=strict
18
+ env : SYMFONY_VERSION=3.4.* SYMFONY_DEPRECATIONS_HELPER=strict COMPOSER_FLAGS="--prefer-lowest"
18
19
- php : 7.3
19
- env : SYMFONY_VERSION=4.2.* SYMFONY_DEPRECATIONS_HELPER=strict DEPENDENCIES=dev COMPOSER_FLAGS="--prefer-stable"
20
+ env : SYMFONY_VERSION=4.4.*
21
+ - php : 7.4
22
+ env : SYMFONY_VERSION=5.0.* DEPENDENCIES=dev COMPOSER_FLAGS="--prefer-stable"
20
23
allow_failures :
21
24
- php : nightly
22
25
27
30
28
31
before_script :
29
32
- composer self-update
30
- - if [ "$SYMFONY_VERSION" != "" ]; then composer require "symfony/symfony:${SYMFONY_VERSION}" --no-update; fi;
33
+ - |
34
+ if [ "$SYMFONY_VERSION" != "" ]; then
35
+ sed -ri 's/"symfony\/(.+)": "(.+)"/"symfony\/\1": "'$SYMFONY_VERSION'"/' composer.json;
36
+ fi;
37
+ - if [ "$DEPENDENCIES" = "dev" ]; then perl -pi -e 's/^}$/,"minimum-stability":"dev"}/' composer.json; fi;
31
38
32
39
install : composer update $COMPOSER_FLAGS --no-interaction
Original file line number Diff line number Diff line change 13
13
],
14
14
"require" : {
15
15
"php" : " ^7.1" ,
16
- "opensoft/doctrine-postgres-types" : " ^1.2 " ,
17
- "symfony/config" : " ^3.4 || ^4.1 " ,
18
- "symfony/dependency-injection" : " ^3.4 || ^4.1 " ,
19
- "symfony/http-kernel" : " ^3.4 || ^4.1 "
16
+ "opensoft/doctrine-postgres-types" : " ^1.3 " ,
17
+ "symfony/config" : " ^3.4 || ^4.3 || ^5.0 " ,
18
+ "symfony/dependency-injection" : " ^3.4 || ^4.3 || ^5.0 " ,
19
+ "symfony/http-kernel" : " ^3.4 || ^4.3 || ^5.0 "
20
20
},
21
21
"require-dev" :{
22
- "phpunit/phpunit" : " ^6.0 || ^7.0 "
22
+ "phpunit/phpunit" : " ^7.5 || ^8.5 "
23
23
},
24
24
"autoload" : {
25
25
"psr-4" : {
You can’t perform that action at this time.
0 commit comments