文件名称:lumenapi:用Lumen构建的简单API
文件大小:40KB
文件格式:ZIP
更新时间:2024-06-13 01:08:12
api php laravel authentication lumen
具有JWT验证功能的简单Lumen API git clone cd lumenapi 创建.env文件 作曲家安装 在bootstrap / app **** $ app-> withFacades()中取消注释以下内容; **** $ app-> withEloquent(); 还添加bootstrap / app,$ app-> register(Tymon \ JWTAuth \ Providers \ LumenServiceProvider :: class); php artisan jwt:secret(生成JWT密钥) php artisan migration(运行迁移以填充数据库) php -S localhost:8000 -t public(使用内置php服务器启动)
【文件预览】:
lumenapi-master
----composer.json(1KB)
----phpunit.xml(878B)
----bootstrap()
--------app.php(3KB)
----config()
--------auth.php(360B)
----composer.lock(177KB)
----artisan(1KB)
----database()
--------factories()
--------migrations()
--------seeds()
----routes()
--------web.php(1022B)
----tests()
--------ExampleTest.php(390B)
--------TestCase.php(314B)
----resources()
--------views()
----app()
--------Listeners()
--------Http()
--------Jobs()
--------User.php(1KB)
--------Providers()
--------Exceptions()
--------Console()
--------Events()
----storage()
--------logs()
--------app()
--------framework()
----.gitignore(72B)
----public()
--------index.php(897B)
--------.htaccess(593B)
----.styleci.yml(71B)
----README.md(514B)
----.editorconfig(220B)