Wallogit.com
2017 © Pedro Peláez
A Laravel CLI package, for standalone CLI apps
A CLI entry point to your Laravel application. Basically, if you want to do things like Artisan but don't want to disturb Artisan or want to only show certain commands to your users., (*1)
Maybe you want a set of tools that your developers user, but don't want to include in the already large set of commands in Artisan. Or maybe you want some reporting tools, that are only used rarely, or by Cron, and therefore do not need to clutter the list in Artisan, this is what Wand should fill., (*2)
composer require ahuggins/magicwand, (*3)
Then after it is installed, you will need to update the config/app.php providers array with:, (*4)
AHuggins\Wand\WandServiceProvider::class,, (*5)
Then you will need to run: php artisan vendor:publish, (*6)
Then you will need to give the published wand file executable permission, by running chmod +x wand, (*7)
And that should be it., (*8)