orchestra / extension
Extension Component for Orchestra Platform
Fund package maintenance!
Liberapay
paypal.me/crynobone
Installs: 97 193
Dependents: 3
Suggesters: 1
Security: 0
Stars: 4
Watchers: 5
Forks: 5
Open Issues: 0
Requires
- php: ^7.3 || ^8.0
- orchestra/contracts: ^6.0
- orchestra/memory: ^6.0
- orchestra/support: ^6.0
Requires (Dev)
- orchestra/testbench: ^6.17
- dev-master / 7.0.x-dev
- 6.x-dev
- v6.0.0
- 5.x-dev
- v5.0.0
- 4.x-dev
- v4.0.1
- v4.0.0
- 3.8.x-dev
- v3.8.2
- v3.8.1
- v3.8.0
- 3.7.x-dev
- v3.7.1
- v3.7.0
- 3.6.x-dev
- v3.6.0
- 3.5.x-dev
- v3.5.1
- v3.5.0
- 3.4.x-dev
- v3.4.0
- 3.3.x-dev
- v3.3.2
- v3.3.1
- v3.3.0
- 3.2.x-dev
- v3.2.3
- v3.2.2
- v3.2.1
- v3.2.0
- 3.1.x-dev
- v3.1.13
- v3.1.12
- v3.1.11
- v3.1.10
- v3.1.9
- v3.1.8
- v3.1.7
- v3.1.6
- v3.1.5
- v3.1.4
- v3.1.3
- v3.1.2
- v3.1.1
- v3.1.0
- 3.0.x-dev
- v3.0.2
- v3.0.1
- v3.0.0
- 2.2.x-dev
- v2.2.3
- v2.2.2
- v2.2.1
- v2.2.0
- 2.1.x-dev
- v2.1.5
- v2.1.4
- v2.1.3
- v2.1.2
- v2.1.1
- v2.1.0
- 2.0.x-dev
- v2.0.20
- v2.0.19
- v2.0.18
- v2.0.17
- v2.0.16
- v2.0.15
- v2.0.14
- v2.0.13
- v2.0.12
- v2.0.11
- v2.0.10
- v2.0.9
- v2.0.8
- v2.0.7
- v2.0.6
- v2.0.5
- v2.0.4
- v2.0.3
- v2.0.2
- v2.0.1
- v2.0.0
This package is auto-updated.
Last update: 2024-11-18 20:10:00 UTC
README
Extension Component allows components or packages to be added dynamically to Orchestra Platform without the hassle of modifying the configuration.
Table of Content
Version Compatibility
Installation
To install through composerby using the following command:
composer require "orchestra/extension"
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
.