acquia / lightning-project

A Composer-based installer for the Lightning distribution of Drupal 8. Support ended on November 2, 2021 and this project is no longer maintained.
133 stars 60 forks source link

Proper upgrade from from 2.2.7 to 3.0.0? #61

Closed marceldobrica closed 6 years ago

marceldobrica commented 6 years ago

What is the process to upgrade composer lightning project from acquia/lightning (2.2.7) to acquia/lightning (3.0.0) - simple composer update and drush updb dosen't work.

balsama commented 6 years ago

Hi. You need to change the constraint in your composer.json file. You can do so by running the following commands:

composer require acquia/lightning:~3.0.1 --no-update
composer update
marceldobrica commented 6 years ago

Thank you.