orchestra / optimize
This package is abandoned and no longer maintained.
No replacement package was suggested.
Optimize Component for Orchestra Platform
v3.3.0
2016-12-14 02:32 UTC
Requires
- php: >=5.6.0
- orchestra/contracts: ~3.3.0
Requires (Dev)
- illuminate/console: ~5.3.0
- illuminate/container: ~5.3.0
- illuminate/filesystem: ~5.3.0
- mockery/mockery: ^0.9.4
This package is auto-updated.
Last update: 2022-02-01 12:27:59 UTC
README
Optimization tool for Orchestra Platform, which work based on php artisan optimize.
Table of Content
Installation
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.
Quick Installation
Above installation can also be simplify by using the following command:
composer require "orchestra/optimize=~3.0"
Configuration
Add following service providers in config/app.php.
'providers' => [ // ... Orchestra\Optimize\OptimizeServiceProvider::class, ],