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 serve
to start the development server.
Run automatic code formatting with:
composer format
Run the test suites with:
composer test