plank/laravel-schema-events
Composer 安装命令:
composer require plank/laravel-schema-events
包简介
A Laravel package to emit events based on the schema changes taking place during migration.
README 文档
README
Laravel Schema Events
Track and respond to database schema changes in your Laravel application through a simple event system.
Table of Contents
- Installation
- Quick Start
- Configuration
- Usage
- Contributing
- Credits
- License
- Security Vulnerabilities
- About Plank
Installation
You can install the package via composer:
composer require plank/laravel-schema-events
You can publish the config file with:
php artisan vendor:publish --tag="schema-events-config"
Quick Start
- Install the package
- Set up an event listener:
<?php namespace App\Listeners; use Plank\LaravelSchemaEvents\Events\TableCreated; class LogTableCreation { public function handle(TableCreated $event) { \Log::info("Table {$event->table} was created with columns: " . implode(', ', $event->columns->toArray())); } }
- Register your listener in
EventServiceProvider.php:
protected $listen = [ TableCreated::class => [ LogTableCreation::class, ], ];
Configuration
The configuration file allows you to customize:
- Which migration events to listen for
- Which commands are tracked for different schema operations
return [ 'listeners' => [ 'ran' => MigrationRan::class, 'finished' => MigrationsFinished::class, ], 'commands' => [ 'renamed_columns' => ['renameColumn'], 'dropped_columns' => ['dropColumn'], 'added_indexes' => [ 'primary', 'unique', 'index', 'fulltext', 'spatialIndex', ], // ... additional commands ], ];
Usage
Available Events
The package provides four main events:
TableCreated- Emitted when a new table is createdTableChanged- Emitted when an existing table is modifiedTableDropped- Emitted when a table is droppedTableRenamed- Emitted when a table is renamed
Event Properties
Each event includes basic connection information:
connection- The name of the database connectiondatabaseName- The name of the databasedriverName- The database driver being used
TableCreated Event
public readonly string $table; public readonly Collection $columns; // Added columns public readonly Collection $indexes; // Added indexes public readonly Collection $foreignKeys; // Added foreign keys
TableChanged Event
public readonly string $table; public readonly Collection $addedColumns; public readonly Collection $droppedColumns; public readonly Collection $renamedColumns; // Contains [from => x, to => y] public readonly Collection $modifiedColumns; public readonly Collection $addedIndexes; public readonly Collection $droppedIndexes; public readonly Collection $renamedIndexes; // Contains [from => x, to => y] public readonly Collection $addedForeignKeys; public readonly Collection $droppedForeignKeys;
TableDropped Event
public readonly string $table;
TableRenamed Event
public readonly string $from; public readonly string $to;
Repository
The event repository collects the schema events that occur during the migrations which can be retrieved after the MigrationsEnded event is fired by the Migrator.
If your application wants to handle dispatching and flushing the events, you can set the schema-events.listeners.finished listener to null and listen to the MigrationsEnded event in your application.
The schema event repository can be controlled using the SchemaEvents facade.
get()
Retrieve all schema events that were fired during the course of the migrations.
created()
Retrieve all TableCreated events that were fired during the course of the migrations.
changed()
Retrieve all TableChanged events that were fired during the course of the migrations.
renamed()
Retrieve all TableRenamed events that were fired during the course of the migrations.
dropped()
Retrieve all TableDropped events that were fired during the course of the migrations.
flush()
Clear all schema events stored in the schema event repository.
Contributing
Please see CONTRIBUTING for details.
Credits
License
The MIT License (MIT). Please see License File for more information.
Security Vulnerabilities
If you discover a security vulnerability within siren, please send an e-mail to security@plank.co. All security vulnerabilities will be promptly addressed.
Check Us Out!
Plank focuses on impactful solutions that deliver engaging experiences to our clients and their users. We're committed to innovation, inclusivity, and sustainability in the digital space. Learn more about our mission to improve the web.
plank/laravel-schema-events 适用场景与选型建议
plank/laravel-schema-events 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 8.42k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2025 年 02 月 17 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「laravel」 「plank」 「laravel-schema-events」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 plank/laravel-schema-events 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 plank/laravel-schema-events 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 plank/laravel-schema-events 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A targeted version of the Laravel Frameworks withoutEvents method.
A package for keeping a history of your models' revisions and accessing your data as it was at an older date.
Retrieve all defined Models available in the Application or Vendor namespaces
Snapshot Laravel Models
Create dynamic pages using polymorphic relationships and special Module classes
统计信息
- 总下载量: 8.42k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 23
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-02-17
