kaishiyoku/lumen-vendor-publish

vendor:publish for Lumen framework.

This package's canonical repository appears to be gone and the package has been frozen as a result.

8.0.0 2020-10-24 11:17 UTC

README

This package contains a single command borrowed from the Laravel framework that enables you to use php artisan vendor:publish in your Lumen application.

Become a Patron

Overview

This package contains a copy of the class from Illuminate/Foundation/Console/VendorPublishCommand.

This repository now follows the Lumen framework versioning. Use the appropriate version of this package for your Lumen application. eg. Lumen ^5.5 -> LumenVendorPublish ^5.5. etc.

Installation

composer require laravelista/lumen-vendor-publish=^7.0

Usage

To be able to use it you have to add it to your app/Console/Kernel.php file:

protected $commands = [
    \Laravelista\LumenVendorPublish\VendorPublishCommand::class
];

License

LumenVendorPublish is open-source software licensed under the MIT license.

This is a fork of laravelista/lumen-vendor-publish.