The Superhero App lets you search and view details of all superhero and villains from all universes. This is a PHP Assessment test built with Laravel 8.
You can check this app deployed at: https://superhero-app.kike.work
- PHP 7.3+
- Composer
- NPM
- Laravel 8
npm install
composer install
npm run dev
ornpm run watch
- Include your Superhero API KEY in .env in the name variable
SUPER_APIKEY
. php artisan serve
Run feature and unit testin with the following command:
php artisan test
By default, Laravel and PHPUnit execute your tests sequentially within a single process. However, you may greatly reduce the amount of time it takes to run your tests by running tests simultaneously across multiple processes. To get started, include the --parallel option when executing the test Artisan command:
php artisan test --parallel