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.

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 datadiff-laravel

datadiff-laravel

Build Status

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

PHP Build Version
Package Version
Requires php Version >=5.4.0
illuminate/support Version 4.2.*
elasticsearch/elasticsearch Version ~1.0
mikemccabe/json-patch-php Version dev-master
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 sleavely/datadiff-laravel contains the following files

Loading the files please wait ....