Download the PHP package sleavely/datadiff-laravel without Composer
On this page you can find all versions of the php package sleavely/datadiff-laravel. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package datadiff-laravel
datadiff-laravel
Save a history of your model edits. Storage format inspired by, and probably compatible with, makasim/datadiff.
Requirements
datadiff-laravel was developed for Laravel 4.2 in mind. Your mileage with Laravel 5+ may vary.
This package uses ElasticSearch as a storage solution. We recommend setting up a separate index to hold the diffs since their format may conflict with things like Elasticquent.
Installation
Configuration
Next, we'll need to tell Laravel we exist. In your config/app.php
:
Next, we'll configure storage. Running php artisan config:publish sleavely/datadiff
will place the following in app/config/packages/sleavely/datadiff/config.php
:
Eloquent
In your app/start/global.php
, add the following, for each model you wish to store diffs for:
And in the model:
Usage
Viewing diffs
Because we added the DatadiffTrait to our model, we can do cool stuff like:
A commit object looks like:
Appending metadata
You can append data by setting the diff_meta
property on an Eloquent model before saving:
If you dont want to set diff_meta every time, you can declare your own accessor to automatically set the metadata for the commit:
Comparing objects
You can generate a diff for two arrays with the static compare
method provided by the Datadiff facade.
Objects that implement ArrayableInterface are okay too. :)
The comparison is made with mikemccabe/json-patch-php and returns an array with JSON Patch operations.
Visualizing diffs in the browser
I recommend the autonomous package benjamine/jsondiffpatch for showing diffs. At it's core, this is all you'll have to do:
Contributing
Pull requests are appreciated and encouraged!
Tests
All tests extend Sleavely\Datadiff\Tests\TestCase
. To run the suite:
All versions of datadiff-laravel with dependencies
illuminate/support Version 4.2.*
elasticsearch/elasticsearch Version ~1.0
mikemccabe/json-patch-php Version dev-master