Skip to content

Commit 1d43d9c

Browse files
minor symfony#18620 use stable 1.0.x Composer versions (xabbuh)
This PR was merged into the 2.3 branch. Discussion ---------- use stable 1.0.x Composer versions | Q | A | ------------- | --- | Branch? | 2.3 | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | | License | MIT | Doc PR | This will make our tests pass on AppVeyor again where we always used the latest Composer snapshot (this is 1.1.x-dev now which the `hirak/prestissimo` plugin is not compatible yet, but I opened hirak/prestissimo#79 to make that happen). Commits ------- 10e2dfb use stable 1.0.x Composer versions
2 parents c1cb357 + 10e2dfb commit 1d43d9c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ before_install:
5050
- if [[ ! $skip && $PHP = 5.* ]]; then pecl install -f memcached-2.1.0; fi
5151
- if [[ ! $skip && $PHP != hhvm ]]; then echo extension = ldap.so >> $INI_FILE; fi
5252
- if [[ ! $skip && $PHP != hhvm ]]; then phpenv config-rm xdebug.ini; fi
53-
- if [[ ! $skip ]]; then composer self-update; fi
53+
- if [[ ! $skip ]]; then composer self-update --stable; fi
5454
- if [[ ! $skip ]]; then cp .composer/* ~/.composer/; composer global install; fi
5555
- if [[ ! $skip ]]; then ./phpunit install; fi
5656
- if [[ ! $skip && $deps ]]; then composer global remove hirak/prestissimo; fi

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ install:
4949
- IF %PHP%==1 echo extension=php_pdo_sqlite.dll >> php.ini-max
5050
- IF %PHP%==1 echo extension=php_curl.dll >> php.ini-max
5151
- IF %PHP%==1 echo curl.cainfo=c:\php\cacert.pem >> php.ini-max
52-
- appveyor DownloadFile https://getcomposer.org/composer.phar
52+
- IF %PHP%==1 appveyor DownloadFile https://getcomposer.org/download/1.0.2/composer.phar
5353
- copy /Y php.ini-max php.ini
5454
- cd c:\projects\symfony
5555
- mkdir %APPDATA%\Composer

0 commit comments

Comments
 (0)