imamuseum/harvester-transaction

Transaction Export API for Havester.

Installs: 14

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 5

Forks: 1

Open Issues: 0

pkg:composer/imamuseum/harvester-transaction

1.0.0 2016-06-01 19:49 UTC

This package is not auto-updated.

Last update: 2025-09-28 00:24:06 UTC


README

##Harvester Transactions

###Composer Setup

    "require": {
        "imamuseum/harvester-transaction": "^1.0"
    },

Service Provider

In config/app.php add to the autoloaded providers -

Imamuseum\HarvesterTransaction\HarvesterTransactionServiceProvider::class,

###Add TransactionLogTrait to Model

class Object extends HarvesterObject
{
	use \Imamuseum\HarvesterTransaction\Traits\TransactionLogTrait;
}