...
* The version you update to will always be the latests, hence the importance of following all steps.
From 5.4.6 and lower
Update ezpublish-legacy-installer to v2.0.3 for Composer 1.1
Newer versions of Composer sometimes updates it's API's and as such we need to make sure our composer plugin ezpublish-legacy-installer is up-to-date before we do anything else, so if you don't already have ezsystems/ezpublish-legacy-installer
v2.0.3 and Composer 1.1, do the following:
Code Block | ||
---|---|---|
| ||
# First install Composer v1.0 that works with old version of ezpublish-legacy-installer php -r "copy('https://getcomposer.org/download/1.0.3/composer.phar', 'composer.phar');" # Then install newer version php -d memory_limit=-1 composer.phar update --no-dev --prefer-dist --no-scripts ezsystems/ezpublish-legacy-installer # Then make sure composer is updated to latests php -d memory_limit=-1 composer.phar selfupdate |
...
Updating packages with composer
Show If | ||
---|---|---|
| ||
To test a RC release you'll need to update your requirements before next step: |
With this command you'll update all packages that have received updates:
...