Download the PHP package kettasoft/booter without Composer

On this page you can find all versions of the php package kettasoft/booter. 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 booter

Laravel Model Event Booter

Laravel Model Event Booter is a package that simplifies managing model events in Laravel by allowing you to define and map model events (e.g., created, updated, deleted, etc.) to custom classes. These classes handle the logic associated with those events, making your code cleaner, modular, and easier to maintain.

tests

Features

Installation

    • Install the package via Composer:
    • Add the HasBooter trait to any model where you want to manage events.
    • Define the $events array in the model to map events to the classes that will handle them.
    • Publish the package's configuration file by running:

Usage

    • Add the HasBooter Trait to Your Model

    • Use the HasBooter trait in your model to enable event handling:
    • Create Event Handler Classes Create a class for each event that you want to handle. Each class should have a handle method where you define the logic to run when the event is triggered.

The class defined in the event will be called automatically when the event occurs.

    • Handle Multiple Events

You can define multiple events in the $events array for a single model. Each event can have one or more classes that will be triggered in sequence.

    • Event Handling Flow

    • When the model event (like created, updated, etc.) is triggered, the package automatically fires the associated class.
    • Each class must have a handle method where you implement the custom logic.

Contributing

Contributions are welcome! If you find any issues or have ideas for improvements, feel free to submit a pull request or open an issue.

License

This package is open-source software licensed under the MIT license.


All versions of booter with dependencies

PHP Build Version
Package Version
Requires php Version >=8.1
laravel/framework Version ^10.0
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 kettasoft/booter contains the following files

Loading the files please wait ....