File tree Expand file tree Collapse file tree 3 files changed +11
-7
lines changed Expand file tree Collapse file tree 3 files changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ sudo: false
23
23
cache :
24
24
directories :
25
25
- .phpunit
26
- # - $HOME/.composer/cache/files
26
+ - $HOME/.composer/cache/files
27
27
28
28
env :
29
29
matrix : SYMFONY_VERSION=4.0.*
@@ -37,24 +37,28 @@ matrix:
37
37
include :
38
38
- php : 7.2
39
39
env : STABILITY=dev SYMFONY_VERSION=4.0.*
40
+ - php : 5.6
41
+ env : COMPOSER_FLAGS="--prefer-lowest" SYMFONY_VERSION=2.8.* SYMFONY_DEPRECATIONS_HELPER=weak
42
+ - php : 7.0
43
+ env : STABILITY=dev SYMFONY_VERSION=3.3.*
44
+ - php : 7.0
45
+ env : STABILITY=dev SYMFONY_VERSION=3.4.*
40
46
- php : 7.1
41
- env : STABILITY=dev COMPOSER_FLAGS="--prefer-lowest" SYMFONY_VERSION=2.8.* SYMFONY_DEPRECATIONS_HELPER=weak
42
- - php : 7.2
43
47
env : STABILITY=dev SYMFONY_VERSION=3.3.*
44
- - php : 7.2
48
+ - php : 7.1
45
49
env : STABILITY=dev SYMFONY_VERSION=3.4.*
46
50
fast_finish : true
47
51
allow_failures :
48
52
49
53
before_install :
50
54
- phpenv config-rm xdebug.ini || true
51
55
- composer self-update
56
+ - composer validate --no-check-all --ansi
52
57
- if ! [ -z "$STABILITY" ]; then composer config minimum-stability ${STABILITY}; composer config prefer-stable true; fi;
53
58
- if [ "$SYMFONY_VERSION" != "" ]; then composer require symfony/symfony:${SYMFONY_VERSION} --no-update; fi
54
59
- export BRANCH=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then echo $TRAVIS_BRANCH; else echo $TRAVIS_PULL_REQUEST_BRANCH; fi)
55
60
56
61
install : travis_wait composer update --prefer-dist $COMPOSER_FLAGS
57
-
58
62
script :
59
63
- if [ "${TEST_INSTALLATION}" == true ]; then make test_installation; else make test; fi
60
64
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ the context of the CMF.
21
21
22
22
## Requirements
23
23
24
- * PHP 7.1 / 7.2
24
+ * PHP 5.6 / 7.0 / 7.1 / 7.2
25
25
* Symfony 2.8 / 3.3 / 3.4 / 4.0
26
26
* See also the ` require ` section of [ composer.json] ( composer.json )
27
27
Original file line number Diff line number Diff line change 9
9
}
10
10
],
11
11
"require" : {
12
- "php" : " ^7.1 " ,
12
+ "php" : " ^5.6 || ^7.0 " ,
13
13
"doctrine/common" : " ^2.7" ,
14
14
"doctrine/data-fixtures" : " ^1.2" ,
15
15
"doctrine/doctrine-bundle" : " ^1.8 || ^2.0" ,
You can’t perform that action at this time.
0 commit comments