joelhy / lumen-vendor-publish
vendor:publish for Lumen framework.
6.0.0
2019-09-23 13:47 UTC
Requires
- php: ^7.2
- illuminate/console: ^6.0
- illuminate/filesystem: ^6.0
- illuminate/support: ^6.0
- league/flysystem: ^1.0.8
Replaces
README
This is a fork of laravelista/lumen-vendor-publish, which is mostly a copy from illuminate/foundation
.
This package contains a single command that enables you to publish a package config file to the config folder of your Lumen application.
Installation
composer require joelhy/lumen-vendor-publish
Usage
To be able to use it you have to add it to your app/Console/Kernel.php
file:
protected $commands = [
\Joelhy\LumenVendorPublish\VendorPublishCommand::class
];