elepunk / orchestrate by shopalicious

Orchestra platform extension generator
46
4
2
Package Data
Maintainer Username: shopalicious
Maintainer Contact: ahmadshahhafizan@gmail.com (Ahmad Shah Hafizan Hamidin)
Package Create Date: 2014-01-25
Package Last Update: 2014-05-09
Language: PHP
License: MIT
Last Refreshed: 2024-03-28 03:01:02
Package Statistics
Total Downloads: 46
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 4
Total Watchers: 2
Total Forks: 1
Total Open Issues: 2

Orchestrate

Orchestra/Platform extension skeleton generator. This will provide you with a basic directory structures needed to kickstart the development process.

Build Status Scrutinizer Quality Score Code Coverage

Installation & Usage

Add the package into your composer.json file.

"require": {
    "elepunk/orchestrate": "0.2.*"
 },

Update app/start/global.php so that Orchestra\Platform is able to detect the extensions.

App::make('orchestra.extension.finder')->addPath(base_path().'/extensions/*/*/');

Add the service provider in app/config/app.php.

'providers' => array(
    'Elepunk\Orchestrate\OrchestrateServiceProvider'
),

Run php artisan orchestrate foo/barto generate the extension skeleton.

Run php artisan dump-autoload to reload the autoloader.

Run php artisan extension:detect and you will see your newly created extension. All extensions will be created under extension directory.

If you want to change the default directory just publish the configuration file php artisan config:publish elepunk/orchestrate.