Drupal-project: How to update a single module ?

Created on 5 Aug 2016  路  3Comments  路  Source: drupal-composer/drupal-project

Can anyone tell me how to update a single module using composer ?

Most helpful comment

composer update drupal/<module_name> --with-dependencies

For example, to update Search API (search_api):

composer update drupal/search_api --with-dependencies

(Note that the --with-dependencies flag will also update the module's own dependencies, if it has any.)

All 3 comments

composer update drupal/<module_name> --with-dependencies

For example, to update Search API (search_api):

composer update drupal/search_api --with-dependencies

(Note that the --with-dependencies flag will also update the module's own dependencies, if it has any.)

The answer from @fafnirical is correct. Thanks!

thanks!

Was this page helpful?
0 / 5 - 0 ratings

Related issues

ksicon picture ksicon  路  9Comments

tinamrak picture tinamrak  路  5Comments

ashabed picture ashabed  路  7Comments

michaellenahan picture michaellenahan  路  3Comments

InspiredPrynce picture InspiredPrynce  路  4Comments