Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3d085ba

Browse files
committed
bug symfony#114 Fix Travis failure for PHP 5.6 (bocharsky-bw)
This PR was squashed before being merged into the master branch (closes symfony#114). Discussion ---------- Fix Travis failure for PHP 5.6 Commits ------- a4a2a72 Fix Travis failure for PHP 5.6
2 parents 3aaa9cc + a4a2a72 commit 3d085ba

File tree

3 files changed

+23
-74
lines changed

3 files changed

+23
-74
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ matrix:
3232
- env: SYMFONY_VERSION="2.8.x-dev"
3333

3434
before_install:
35+
- composer self-update
3536
- if [ "$SYMFONY_VERSION" != "" ]; then composer require --dev --no-update symfony/symfony:$SYMFONY_VERSION; fi
3637

3738
install:

composer.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
"psr-0": { "": "src/", "SymfonyStandard": "app/" }
88
},
99
"require": {
10-
"php" : ">=5.3.3",
10+
"php" : ">=5.3.9",
1111
"ext-pdo_sqlite" : "*",
1212
"doctrine/doctrine-bundle" : "~1.5",
1313
"doctrine/doctrine-fixtures-bundle" : "~2.2",
14-
"doctrine/orm" : "~2.5",
14+
"doctrine/orm" : "~2.4",
1515
"erusev/parsedown" : "~1.5",
1616
"incenteev/composer-parameter-handler" : "~2.1",
1717
"ircmaxell/password-compat" : "~1.0",
@@ -47,7 +47,10 @@
4747
]
4848
},
4949
"config": {
50-
"bin-dir": "bin"
50+
"bin-dir": "bin",
51+
"platform": {
52+
"php": "5.3.9"
53+
}
5154
},
5255
"extra": {
5356
"symfony-app-dir": "app",

composer.lock

Lines changed: 16 additions & 71 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)