Skip to content

Commit 456de6f

Browse files
committed
Merge pull request #263 from FriendsOfSymfony/lowest-version-build
build 5.3 in prefer-lowest
2 parents ba886ad + 11cd8d2 commit 456de6f

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
language: php
22

33
php:
4-
- 5.3
54
- 5.4
65
- 5.5
76
- 5.6
@@ -15,6 +14,8 @@ branches:
1514

1615
matrix:
1716
include:
17+
- php: 5.4
18+
env: COMPOSER_FLAGS="--prefer-lowest"
1819
- php: 5.6
1920
env:
2021
- PHPUNIT_FLAGS="--coverage-clover=coverage.clover"
@@ -45,7 +46,7 @@ matrix:
4546
before_script:
4647
- sh -c 'if [ "$SYMFONY_VERSION" != "" ]; then composer require --dev --no-update symfony/symfony=$SYMFONY_VERSION; fi;'
4748
- sh -c 'if [ "$FRAMEWORK_EXTRA_VERSION" != "" ]; then composer require --dev --no-update sensio/framework-extra-bundle=$FRAMEWORK_EXTRA_VERSION; fi;'
48-
- composer install
49+
- composer update $COMPOSER_FLAGS
4950
- sudo apt-get install python-sphinx enchant
5051
- sudo pip install -r Resources/doc/requirements.txt
5152

composer.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,16 @@
3434
"symfony/expression-language": "~2.4",
3535
"symfony/monolog-bundle": "~2.3",
3636
"polishsymfonycommunity/symfony-mocker-container": "~1.0",
37-
"matthiasnoback/symfony-dependency-injection-test": "0.*"
37+
"matthiasnoback/symfony-dependency-injection-test": "^0.7.4"
3838
},
3939
"suggest": {
4040
"sensio/framework-extra-bundle": "For Tagged Cache Invalidation",
4141
"symfony/expression-language": "For Tagged Cache Invalidation",
4242
"symfony/console": "To send invalidation requests from the command line"
4343
},
44+
"conflict": {
45+
"twig/twig": "<1.12.0"
46+
},
4447
"autoload": {
4548
"psr-4": {
4649
"FOS\\HttpCacheBundle\\": ""

0 commit comments

Comments
 (0)