Reputation: 11553
On my Fortrabbit app, I use the Git hook (via commit message) to trigger Composer. This will run a composer update
. Is there a way to trigger composer install
per default instead?
Upvotes: 1
Views: 233
Reputation: 11553
You can use the new deployment file to do this:
fortrabbit.yml
.[trigger:composer]
in your commit message.version: 1
composer
method: install
Upvotes: 1