Composer

Check outdated packages

1
composer outdated

Plugins

Tools

Update only one dependency

You has to specify the package name after update command.

1
composer update doctrine/doctrine-fixtures-bundle

If you have dependencies issues try to run with --with-dependencies parameter.

1
composer update doctrine/doctrine-fixtures-bundle --with-dependencies

Determine why a package is installed

1
composer why <package-name>

Disable memory limit for composer

1
COMPOSER_MEMORY_LIMIT=-1 composer ...

Comments

⬆︎TOP