Updating support.uspirates.org

From United States Pirate Party
Revision as of 22:52, 23 June 2022 by Jokeefe (talk | contribs) (Created page with "== Composer == We use [https://getcomposer.org/download/ composer] to update our Drupal/CiviCRM components. To run it, use: '''php composer.phar''' == Update Drupal == *...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Composer

We use composer to update our Drupal/CiviCRM components.

To run it, use:

php composer.phar

Update Drupal

  • php composer.phar outdated "drupal/*"
  • php composer.phar show drupal/core-recommended
  • php composer.phar update "drupal/core-*" --with-all-dependencies
  • git add .
  • git commit -m "Updated to Drupal X.Y.Z"

Some useful notes on updating Drupal.

Update CiviCRM

  • php composer.phar outdated "civicrm/*"
  • php composer.phar show civicrm/civicrm-core
  • php composer.phar update "civicrm/civicrm-core" --with-all-dependencies
  • git add .
  • git commit -m "Updated to CiviCRM X.Y.Z"

Some useful notes on CiviCRM installation.