I have developed some custom artisan command for easier use with my package. Is it possible to include the artisan command into the package for easier deployment? If can, how?
Thanks.
I have developed some custom artisan command for easier use with my package. Is it possible to include the artisan command into the package for easier deployment? If can, how?
Thanks.
Having a command set in your package structure:
You can, in your package Service Provider:
The trick is in the line
Which tells Laravel to add your command to the artisan list of commands available.