orchestra / optimize
Optimize Component for Orchestra Platform
Installs: 38 868
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
pkg:composer/orchestra/optimize
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, ],