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.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-schema-events

PHP Version Support PHP Version Support GitHub Workflow Status

Laravel Schema Events

Track and respond to database schema changes in your Laravel application through a simple event system.

Table of Contents

Installation

You can install the package via composer:

You can publish the config file with:

Quick Start

  1. Install the package
  2. Set up an event listener:

  3. Register your listener in EventServiceProvider.php:

Configuration

The configuration file allows you to customize:

Usage

Available Events

The package provides four main events:

  1. TableCreated - Emitted when a new table is created
  2. TableChanged - Emitted when an existing table is modified
  3. TableDropped - Emitted when a table is dropped
  4. TableRenamed - Emitted when a table is renamed

Event Properties

Each event includes basic connection information:

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

 

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

PHP Build Version
Package Version
Requires php Version ^8.2
doctrine/dbal Version ^3.9
illuminate/contracts Version ^10.0
spatie/laravel-package-tools Version ^1.16
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package plank/laravel-schema-events contains the following files

Loading the files please wait ....