eis3nhorn / lumen-vendor-publish
vendor:publish for Lumen framework.
Installs: 4
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 32
pkg:composer/eis3nhorn/lumen-vendor-publish
Requires
- illuminate/console: ^5.0
- illuminate/filesystem: ^5.0
- illuminate/support: ^5.0
- league/flysystem: ^1.0
README
This 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 eis3nhorn/lumen-vendor-publish
Usage
To be able to use it you have to add it to your app/Console/Kernel.php
file:
protected $commands = [
\Eis3nhorn\LumenVendorPublish\VendorPublishCommand::class
];