Download the PHP package plank/laravel-schema-events without Composer
On this page you can find all versions of the php package plank/laravel-schema-events. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package laravel-schema-events
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
- Available Events
- Event Properties
- Repository
- Contributing
- Credits
- License
- Security Vulnerabilities
- About Plank
Installation
You can install the package via composer:
You can publish the config file with:
Quick Start
- Install the package
-
Set up an event listener:
- Register your listener in
EventServiceProvider.php
:
Configuration
The configuration file allows you to customize:
- Which migration events to listen for
- Which commands are tracked for different schema operations
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
TableChanged Event
TableDropped Event
TableRenamed Event
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
- Kurt Friars
- All Contributors
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 [email protected]. 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.
All versions of laravel-schema-events with dependencies
doctrine/dbal Version ^3.9
illuminate/contracts Version ^10.0
spatie/laravel-package-tools Version ^1.16