Laravel Lumen is a stunningly fast PHP micro-framework for building web applications with expressive, elegant syntax. We believe development must be an enjoyable, creative experience to be truly fulfilling. Lumen attempts to take the pain out of development by easing common tasks used in the majority of web projects, such as routing, database abstraction, queueing, and caching.
Documentation for the framework can be found on the Lumen website.
This framework Backend and Frontend , connect with REST API
cp .env.example .env
and setup the Database- run
composer install && yarn install
- run
php artisan migrate
&&php artisan db:seed
sudo chmod 777 -R storage/app storage/framework storage/logs
php artisan jwt:secret
to generate token
- setup your project with local domain, user virtual host
yarn dev
and reload domain- got to
your-domain.local
it will be redirect to login page - check Your Database, get some user emal and default password
123456
, or - open postmane App and try post to url
/api/v1/auth/login
with headerContent-Type:application/json
and body
{
"email": "[email protected]",
"password": "123456"
}
If you discover a security vulnerability within Lumen, please send an e-mail to Taylor Otwell at [email protected]. All security vulnerabilities will be promptly addressed.
The Lumen framework is open-sourced software licensed under the MIT license.