Skip to content

Commit d8e60e4

Browse files
DevKit updates (#185)
1 parent 343f8fd commit d8e60e4

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

.travis.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ sudo: false
2323
cache:
2424
directories:
2525
- .phpunit
26-
#- $HOME/.composer/cache/files
26+
- $HOME/.composer/cache/files
2727

2828
env:
2929
matrix: SYMFONY_VERSION=4.0.*
@@ -37,24 +37,28 @@ matrix:
3737
include:
3838
- php: 7.2
3939
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.*
4046
- php: 7.1
41-
env: STABILITY=dev COMPOSER_FLAGS="--prefer-lowest" SYMFONY_VERSION=2.8.* SYMFONY_DEPRECATIONS_HELPER=weak
42-
- php: 7.2
4347
env: STABILITY=dev SYMFONY_VERSION=3.3.*
44-
- php: 7.2
48+
- php: 7.1
4549
env: STABILITY=dev SYMFONY_VERSION=3.4.*
4650
fast_finish: true
4751
allow_failures:
4852

4953
before_install:
5054
- phpenv config-rm xdebug.ini || true
5155
- composer self-update
56+
- composer validate --no-check-all --ansi
5257
- if ! [ -z "$STABILITY" ]; then composer config minimum-stability ${STABILITY}; composer config prefer-stable true; fi;
5358
- if [ "$SYMFONY_VERSION" != "" ]; then composer require symfony/symfony:${SYMFONY_VERSION} --no-update; fi
5459
- export BRANCH=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then echo $TRAVIS_BRANCH; else echo $TRAVIS_PULL_REQUEST_BRANCH; fi)
5560

5661
install: travis_wait composer update --prefer-dist $COMPOSER_FLAGS
57-
5862
script:
5963
- if [ "${TEST_INSTALLATION}" == true ]; then make test_installation; else make test; fi
6064

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ the context of the CMF.
2121

2222
## Requirements
2323

24-
* PHP 7.1 / 7.2
24+
* PHP 5.6 / 7.0 / 7.1 / 7.2
2525
* Symfony 2.8 / 3.3 / 3.4 / 4.0
2626
* See also the `require` section of [composer.json](composer.json)
2727

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
}
1010
],
1111
"require": {
12-
"php": "^7.1",
12+
"php": "^5.6 || ^7.0",
1313
"doctrine/common": "^2.7",
1414
"doctrine/data-fixtures": "^1.2",
1515
"doctrine/doctrine-bundle": "^1.8 || ^2.0",

0 commit comments

Comments
 (0)