Download the PHP package msaddamkamal/model-dependency-sync without Composer

On this page you can find all versions of the php package msaddamkamal/model-dependency-sync. 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 model-dependency-sync

Model Dependency Sync for Laravel

A Laravel package designed to sync model dependencies and provide insights on updates, making it easier to manage complex data relationships within your Laravel applications.

Features

Requirements

Installation

You can install the package via Composer:

This package uses Laravel's auto-discovery feature, so the service provider and facade will automatically be registered.

Customizing Model Behavior

This package allows you to define custom behavior for how your models' updates affect other parts of your application. To customize this behavior:

Publish the Customization Template

Run the following command to publish a template PHP file to your application's app/ directory:

Customize Your Model Dependencies

After publishing, you'll find a new file named model_dependencies.php in your app/ directory.Here, you can define how your models are related and what actions should be taken on updates.

This file allows you to specify which model attributes to "listen" for changes on, and define how those changes "affect" other models, including specifying custom actions to take using closures or other PHP logic.

Extending Functionality with a Custom Handler

If the default handling mechanism doesn't fully meet your requirements, you can extend the package's functionality by specifying a custom handler class in the configuration file. Your custom handler class should extend the package's base handler class (MSaddamKamal\ModelDependencySync\BaseModelDependencyHandler) and override necessary methods to implement your custom logic.

To use your custom handler, define it in the config/model_dependencies.php file like so:

Publishing the Configuration

To publish the package configuration file to your application's config directory, run:

Here's an example of what a custom handler might look like:

By extending and defining a custom handler, you gain full control over how model updates are handled and can tailor the behavior to fit the specific needs of your application.

License

The Model Dependency Sync for Laravel is open-sourced software licensed under the MIT license.


All versions of model-dependency-sync with dependencies

PHP Build Version
Package Version
Requires php Version ^7.4|^8.0|^8.1
illuminate/support Version ^8.0|^9.0|^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 msaddamkamal/model-dependency-sync contains the following files

Loading the files please wait ....