orchestra / extension
Orchestra平台扩展组件
v6.0.0
2021-04-18 12:18 UTC
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-09-18 19:46:02 UTC
README
扩展组件允许动态地向Orchestra平台添加组件或包,无需修改配置。
目录
版本兼容性
安装
使用以下命令通过composer进行安装
composer require "orchestra/extension"
配置
接下来,在 config/app.php
中添加以下服务提供者。
'providers' => [ // ... Orchestra\Extension\ExtensionServiceProvider::class, Orchestra\Memory\MemoryServiceProvider::class, Orchestra\Publisher\PublisherServiceProvider::class, Orchestra\Extension\CommandServiceProvider::class, ],
迁移
在我们开始使用扩展组件之前,请运行以下命令
php artisan extension:migrate
命令工具通过
Orchestra\Extension\CommandServiceProvider
启用。