A Minimal Lumen API Starter kit
- Run
composer install. - Copy & configure environment:
cp .env.example .env. - Run the migrations:
php artisan migrate --seed. - Generate the JWT secret:
php artisan jwt:secret. - Run
composer serveto start the development server.
Run automatic code formatting with:
composer formatRun the test suites with:
composer test