1# Install application dependencies, such as the Laravel framework itself.
2#
3# If you run composer update in development and commit the `composer.lock`
4# file to your repository, then `composer install` will install the exact
5# same versions in production.
6composer install --no-interaction
7
8# Clear the old boostrap/cache/compiled.php
9php artisan clear-compiled
10
11# Recreate boostrap/cache/compiled.php
12php artisan optimize
13
14# Migrate any database changes
15php artisan migrate
16