codetech/laravel-api-logs
最新稳定版本:v2.0.1
Composer 安装命令:
composer require codetech/laravel-api-logs
包简介
A lightweight Laravel package for logging requests made to your API.
README 文档
README
A lightweight Laravel package for logging requests made to your API.
Installation
Add the package to your Laravel application using composer:
composer require codetech/laravel-api-logs
Service Provider
The service provider will be automatically registered during the installation process. However, you can manually register it by adding it to the list of providers located in your config/app.php file:
'providers' => [
...
Codetech\ApiLogs\Providers\ApiLogServiceProvider::class,
],
Migrations
Publish the migration file:
php artisan vendor:publish --provider=CodeTech\\ApiLogs\\Providers\\ApiLogServiceProvider --tag=migrations
Run the migration:
php artisan migrate
Usage
To start logging requests made to your API, you simply add the middleware to the API's route middleware group, located in your app/Http/Kernel.php:
use CodeTech\ApiLogs\Http\Middleware\LogApiRequest;
protected $middlewareGroups = [
...
'api' => [
...
LogApiRequest::class,
],
];
License
codetech/laravel-api-logs is open-sourced software licensed under the MIT license.
About CodeTech
CodeTech is a web development agency based in Matosinhos, Portugal. Oh, and we LOVE Laravel!
统计信息
- 总下载量: 114
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-05-03