Laravel package management for local development

0.0.2 2024-08-22 21:44 UTC

This package is auto-updated.

Last update: 2024-11-22 22:19:38 UTC


README

Latest Version on Packagist Total Downloads

This Package provides easy way to enable, disable and Remove packages during local laravel development. Many time you want to try your Package locally before submitting to packagist.org

Installation

Installation is simple

composer require flightsadmin/cool --dev

This will install the package as a dev dependancy.

Using this package

Execute below commands as required.

To Enable Local packages.

php artisan cool:enable {vendor} {package}

To Disable Local packages.

php artisan cool:disable {vendor} {package}

To Remove Local packages.

php artisan cool:remove vendor package

Replace

{vendor} with the package vendor-name

{package} with the package-name

Conclussion

This package will be helpful with local development.