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 is simple
composer require flightsadmin/cool --dev
This will install the package as a dev dependancy.
Execute below commands as required.
php artisan cool:enable {vendor} {package}
php artisan cool:disable {vendor} {package}
php artisan cool:remove vendor package
Replace
{vendor} with the package vendor-name
{package} with the package-name
This package will be helpful with local development.