diff options
author | Jeremy Benoist <j0k3r@users.noreply.github.com> | 2016-11-21 09:01:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-21 09:01:35 +0100 |
commit | e839f87a1ceff1402a08c5ef1518e055eb06955f (patch) | |
tree | 01870fb649459b2185ec0be787c7d80d22a1100f | |
parent | cb1a6590c0e58c56d0612066501b3a586b103ed5 (diff) | |
parent | f32ff3753434dce8fc47a8f58a2edc3dc0c71e53 (diff) | |
download | wallabag-e839f87a1ceff1402a08c5ef1518e055eb06955f.tar.gz wallabag-e839f87a1ceff1402a08c5ef1518e055eb06955f.tar.zst wallabag-e839f87a1ceff1402a08c5ef1518e055eb06955f.zip |
Merge pull request #2623 from wallabag/composer-php-5.5
Force composer to run as PHP 5.5.9
-rw-r--r-- | composer.json | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/composer.json b/composer.json index 4f7ad291..70f5fc99 100644 --- a/composer.json +++ b/composer.json | |||
@@ -88,7 +88,7 @@ | |||
88 | "doctrine/doctrine-fixtures-bundle": "~2.2", | 88 | "doctrine/doctrine-fixtures-bundle": "~2.2", |
89 | "doctrine/data-fixtures": "~1.1.1", | 89 | "doctrine/data-fixtures": "~1.1.1", |
90 | "sensio/generator-bundle": "^3.0", | 90 | "sensio/generator-bundle": "^3.0", |
91 | "phpunit/phpunit": "~5.0", | 91 | "phpunit/phpunit": "~4.0", |
92 | "symfony/phpunit-bridge": "^3.0", | 92 | "symfony/phpunit-bridge": "^3.0", |
93 | "friendsofphp/php-cs-fixer": "~1.9", | 93 | "friendsofphp/php-cs-fixer": "~1.9", |
94 | "m6web/redis-mock": "^2.0" | 94 | "m6web/redis-mock": "^2.0" |
@@ -125,7 +125,10 @@ | |||
125 | "psr-4": { "Tests\\": "tests/" } | 125 | "psr-4": { "Tests\\": "tests/" } |
126 | }, | 126 | }, |
127 | "config": { | 127 | "config": { |
128 | "bin-dir": "bin" | 128 | "bin-dir": "bin", |
129 | "platform": { | ||
130 | "php": "5.5.9" | ||
131 | } | ||
129 | }, | 132 | }, |
130 | "minimum-stability": "dev", | 133 | "minimum-stability": "dev", |
131 | "prefer-stable": true | 134 | "prefer-stable": true |