Skip to content

Commit ada9abd

Browse files
committed
Fix the composer root version being used
1 parent 5542d51 commit ada9abd

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.scrutinizer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
build:
22
environment:
33
variables:
4-
COMPOSER_ROOT_VERSION: '0.9.99'
4+
COMPOSER_ROOT_VERSION: '0.10.99'
55

66
tests:
77
override:

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ matrix:
1919
before_install:
2020
- echo "memory_limit=-1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
2121
- phpenv config-rm xdebug.ini || true
22-
- export COMPOSER_ROOT_VERSION=0.9.99
22+
- export COMPOSER_ROOT_VERSION=0.10.99
2323
- |
2424
if [ 'false' == "$TRAVIS_PULL_REQUEST" ]; then
2525
cp box.json.dist box.json

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -294,17 +294,17 @@ tb: bin/php-scoper.phar vendor
294294
#---------------------------------------------------------------------------
295295

296296
vendor: composer.lock
297-
export COMPOSER_ROOT_VERSION='0.9.99'; composer install
297+
export COMPOSER_ROOT_VERSION='0.10.99'; composer install
298298
unset "COMPOSER_ROOT_VERSION"
299299
touch $@
300300

301301
vendor/bamarni: composer.lock
302-
export COMPOSER_ROOT_VERSION='0.9.99'; composer install
302+
export COMPOSER_ROOT_VERSION='0.10.99'; composer install
303303
unset "COMPOSER_ROOT_VERSION"
304304
touch $@
305305

306306
bin/phpunit: composer.lock
307-
export COMPOSER_ROOT_VERSION='0.9.99'; composer install
307+
export COMPOSER_ROOT_VERSION='0.10.99'; composer install
308308
unset "COMPOSER_ROOT_VERSION"
309309
touch $@
310310

0 commit comments

Comments
 (0)