Laravel-Fighters is an application that let's you list your favourite Street Fighter characters.
This app was built with:
As a standard Laravel, you'll need to:
- Install dependencies:
composer install
- Configure database: Laravel supports many options, by default this project uses MySQL. For details on how to configure the database check this tutorial.
- Run database migrations:
php artisan migrate
This projects includes some basic unit test using PHPUnit and code linting provided by phplint.
The can be executed via ./vendor/bin/phpunit
and ./vendor/bin/phplint
.
To start the application run php artisan serve
and visit http://127.0.0.1:8000