We are going to build something amazing together.
- Copy file
.env.example
to.env
, configure your database params - Install project dependencies running
composer install
command - Run migration running
php artisan migrate
command - Generate application encryption key running
php artisan key:generate
command - You can run the project using the php builtin webserver running
php artisan serve
command
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.