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

README

Join the chat at https://gitter.im/orchestral/platform

Optimization tool for Orchestra Platform, which work based on php artisan optimize.

Latest Stable Version Total Downloads MIT License Build Status Coverage Status Scrutinizer Quality Score

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,
],