Optimization tool for Orchestra Platform, which work based on php artisan optimize
.
To install through composer, simply put the following in your composer.json
file:
{
"require": {
"orchestra/optimize": "~3.0"
}
}
And then run composer install
from the terminal.
Above installation can also be simplify by using the following command:
composer require "orchestra/optimize=~3.0"
Add following service providers in config/app.php
.
'providers' => [
// ...
Orchestra\Optimize\OptimizeServiceProvider::class,
],