We are going to build something amazing together.
- Copy file
.env.exampleto.env, configure your database params - Install project dependencies running
composer installcommand - Run migration running
php artisan migratecommand - Generate application encryption key running
php artisan key:generatecommand - You can run the project using the php builtin webserver running
php artisan servecommand
You can run test cases invoking the following command:
- Using artisan
php artisan test - Or calling phpunit directly
vendor/bin/phpunit
You can also generate a code coverage html report with the following command:
vendor/bin/phpunit --coverage-html reports/
The report will be stored in reports folder on project root directory.
If you got a message like No code coverage driver is available maybe you should install Xdebug on your computer.
Join us on Discord under the channel #laravel-prj. Feel free to make your pull request (please use the Conventional Commit specification, for your commits).
The software is open-sourced software licensed under the MIT license.