joelhy / lumen-vendor-publish by joelhy
forked from laravelista/lumen-vendor-publish

vendor:publish for Lumen framework.
17
0
1
Package Data
Maintainer Username: joelhy
Maintainer Contact: mario.basic@outlook.com (Mario Bašić)
Package Create Date: 2019-09-23
Package Last Update: 2019-09-23
Language: PHP
License: MIT
Last Refreshed: 2024-04-18 15:28:20
Package Statistics
Total Downloads: 17
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 1
Total Forks: 0
Total Open Issues: 0

vendor:publish for Lumen framework

Latest Stable Version Total Downloads Latest Unstable Version License

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
];