Automatic Composer package management

Upon connecting your Git repo, you have the option to automatically install your Composer packages. With this option checked, Amezmo will check the top level directory of your repository for a composer.json file. If one is found, then a composer install is executed. In addition, the following is also executed automatically in the order listed below:

By default, Composer 1.x is used for automatic Composer installations. However, you may change the default Composer version for automatic composer installations.

composer --no-dev --no-ansi --no-interaction --optimize dump-autoload

Next, Amezmo determines if an artisan file exists in the root directory of the application. If it exists, then the following command is executed automatically. However, you may disable automatic Laravel migrations.

php artisan migrate --no-interaction --no-ansi --force

How-to Guides