Reputation: 152266
Composer allows to create a project basing on the specified package:
composer create-project vendor/project-name
Is it possible to update this project in the future like composer update-project
?
Upvotes: 2
Views: 201
Reputation: 73011
No. update-project
does not exist.
However, from the docs on create-project
:
This is the equivalent of doing a git clone/svn checkout followed by a "composer install" of the vendors.
As such, it might be possible to git pull
or svn up
the project source. Most projects offer their own project update tools for newer versions of the project.
Upvotes: 4