Background
I am new to the Laravel Package.
In my Laravel application I usually run the following command in order to install Bican Rokes, change the config files, etc...
php artisan make:auth
php artisan migrate
Objective
However, this process is tedious, so I was wondering if it is possible to create a package capable of automatizing the process.
What I tried
To achieve this I read the Laravel documentation, which teaches how to create packages, but I was unable to understand if this is possible and if it yes, how it should be done.
Questions
- Can a package be used to automate this behaviour?
- If yes, can you provide it?
- If not, can you explain to me what a package really is? (links to tutorials are welcome)
- If I cannot use a package, is there any other way of doing this?