Download the PHP package ventrec/laravel-entity-sync without Composer
On this page you can find all versions of the php package ventrec/laravel-entity-sync. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download ventrec/laravel-entity-sync
More information about ventrec/laravel-entity-sync
Files in ventrec/laravel-entity-sync
Package laravel-entity-sync
Short Description Syncs entities from one project to another
License MIT
Informations about the package laravel-entity-sync
Laravel entity sync
Easily sync entities, when changes occur, to another project.
Introduction
This package is designed to sync entities from one laravel project to another, something that can be useful if you have a master and client setup.
For this to work, you will need to install the client package in the laravel project that you wish to sync your entities to.
Installation
composer require ventrec/laravel-entity-sync
- Add
Ventrec\LaravelEntitySync\LaravelEntitySyncProvider::class
to providers in app.php - Publish the config file
php artisan vendor:publish --provider="Ventrec\LaravelEntitySync\LaravelEntitySyncProvider"
- Update the config file
- Add the entities that you would like to monitor for changes to the config file.
- Enter the full url to the endpoint where the requests should go.
- Enter an api token that should be used to verify the requests
Usage
In some cases you might have attributes on a model that you do not want to sync. For this you can define a method named ignoreSyncAttributes
that returns an array containing the name of attributes you do not want to sync.
Example
In a User model you might want to exclude the password:
Prevent observer from running while seeding
In order to prevent the observer from running while seeding, you have to disable the package in runtime.
In your DatabaseSeeder
class, add the following line at the top of the run()
method:
License
The MIT License (MIT). Please see License File for more information.