virlatinus/laravel-auditing-filesystem
Composer 安装命令:
composer require virlatinus/laravel-auditing-filesystem
包简介
This filesystem driver, designed for the owen-it/laravel-auditing package, facilitates storing audits in CSV files across all Laravel disks that are registered.
关键字:
README 文档
README
This driver provides the functionality to save your model audit records as lines in CSV files. It is seamlessly integrated with Laravel Storage System, enabling you to use any of the registered disks specified in your application as storage destinations for the audit files.
Additionally, the driver offers flexibility in how the audit files are generated, allowing you to choose between creating a single comprehensive file or generating files for each hour of operation. Moreover, the driver can potentially improve performance by buffering the log records and then flushing them once you have completed making model changes.
Installation
To utilize this driver, you need to have owen-it/laravel-auditing: ^14.0 installed. Once this requirement is met, you
can proceed to install the driver as follows:
composer require virlatinus/laravel-auditing-filesystem
Setup
If you wish to modify the default behavior of the driver, you must include the following configuration entries in
config/audit.php. The drivers key in the configuration file should be structured as follows:
// ... 'drivers' => [ 'database' => [ 'table' => 'audits', 'connection' => null, ], 'filesystem' => [ 'disk' => 'local', // The registered name of any filesystem disk in the application 'dir' => 'audit', // The directory on the disk where the audit csv files will be saved 'filename' => 'audit.csv', // The filename of the audit file 'rotation' => 'single', // One of 'single', 'monthly', 'weekly', 'daily', or 'hourly' ], ], // ...
Usage
You can integrate the driver into any Auditable model by following the code snippet below:
<?php namespace App\Models; use VirLatinus\Auditing\Drivers\FilesystemDriver; use Illuminate\Database\Eloquent\Model; use OwenIt\Auditing\Contracts\Auditable; class Article extends Model implements Auditable { use \OwenIt\Auditing\Auditable; /** * Filesystem Audit Driver. * * @var \VirLatinus\Auditing\Drivers\FilesystemDriver */ protected $auditDriver = FilesystemDriver::class; // ... }
To optimize the process of writing audit records, consider buffering the records and writing them in bulk rather than individually. This approach helps reduce I/O operations, such as acquiring exclusive file locks and opening files repeatedly.
You can implement this optimization by following these steps:
use VirLatinus\Auditing\Drivers\FilesystemDriver; app(FilesystemDriver::class)->bufferStart(); // ... // PERFORM MODEL CHANGES // ... app(FilesystemDriver::class)->bufferFlush(); // flush all audit records into a file at once
virlatinus/laravel-auditing-filesystem 适用场景与选型建议
virlatinus/laravel-auditing-filesystem 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1 次下载、GitHub Stars 达 0, 最近一次更新时间为 2026 年 02 月 12 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「log」 「logging」 「filesystem」 「csv」 「storage」 「Audit」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 virlatinus/laravel-auditing-filesystem 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 virlatinus/laravel-auditing-filesystem 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 virlatinus/laravel-auditing-filesystem 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A SDK for working with B2 cloud storage.
A PHP class providing static methods for reading, writing, copying, moving, and deleting files and directories, MIME type detection, image size detection, and file permission management
The flysystem adapter for yandex disk rest api.
A Zend Framework module that sets up Monolog for logging in applications.
A sleek PHP wrapper around rclone with Laravel-style fluent API syntax
Asynchronous Sentry for Symfony - Fire and forget
统计信息
- 总下载量: 1
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 36
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-02-12