Documentation is not enough ?
Creating custom Artisan commands in Laravel 5
I'm using Laravel 5.
I'm trying to use Artisan to create all additional modules, files and directories for my application. This means that I have to create custom Artisan commands in L5.
My biggest problem is that I can't find any documentation/tutorials/forums for "Laravel 5 custom Artisan commands" . Those I found and checked out in fact still used L4 Modules that don't exist anymore (for example L5 doesn't use the fire() function nor does it register command classes in the app/start/artisan.php)
Can anyone help me out with what actually needs to be done to create custom Artisan commands in Laravel 5? The reason I'm trying so hard is so that I can use Artisan to deploy new installations of my application.
Please or to participate in this conversation.