orchestra / publisher
v3.5.0
2017-09-03 05:44 UTC
Requires
- php: >=7.0
- illuminate/support: ~5.5.0
- orchestra/contracts: ~3.5.0
Requires (Dev)
- illuminate/console: ~5.5.0
- illuminate/container: ~5.5.0
- illuminate/database: ~5.5.0
- illuminate/filesystem: ~5.5.0
- mockery/mockery: ^0.9.4
- phpunit/phpunit: ~6.0
README
目录
版本兼容性
| Laravel | 发布者 |
|---|---|
| 4.x.x | 2.x.x |
| 5.0.x | 3.0.x |
| 5.1.x | 3.1.x |
| 5.2.x | 3.2.x |
| 5.3.x | 3.3.x |
| 5.4.x | 3.4.x |
| 5.5.x | 3.5.x |
| 5.6.x | 3.6.x@dev |
安装
通过composer安装,只需在您的composer.json文件中添加以下内容
{
"require": {
"orchestra/publisher": "~3.0"
}
}
然后从终端运行composer install。
快速安装
上述安装也可以通过以下命令简化
composer require "orchestra/publisher=~3.0"
配置
在config/app.php中添加以下服务提供者。
'providers' => [ // ... Orchestra\Publisher\PublisherServiceProvider::class, Orchestra\Publisher\CommandServiceProvider::class, ],