Skip to content

jitheshgopan/extension

 
 

Repository files navigation

Extension Component for Orchestra Platform

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

Extension Component allows components or packages to be added dynamically to Orchestra Platform without the hassle of modifying the configuration.

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

Table of Content

Version Compatibility

Laravel Extension
4.0.x 2.0.x
4.1.x 2.1.x
4.2.x 2.2.x
5.0.x 3.0.x
5.1.x 3.1.x
5.2.x 3.2.x@dev

Installation

To install through composer, simply put the following in your composer.json file:

{
    "require": {
        "orchestra/extension": "~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/extension=~3.0"

Configuration

Next add the following service provider in config/app.php.

'providers' => [

    // ...

    Orchestra\Extension\ExtensionServiceProvider::class,
    Orchestra\Memory\MemoryServiceProvider::class,
    Orchestra\Publisher\PublisherServiceProvider::class,

    Orchestra\Extension\CommandServiceProvider::class,
],

Migrations

Before we can start using Extension Component, please run the following:

php artisan extension:migrate

The command utility is enabled via Orchestra\Extension\CommandServiceProvider.

Resources

Packages

No packages published

Languages

  • PHP 100.0%