2017 © Pedro Peláez
 

library snapshot-store

image

treehouselabs/snapshot-store

  • Monday, May 15, 2017
  • by fieg
  • Repository
  • 3 Watchers
  • 0 Stars
  • 72 Installations
  • PHP
  • 1 Dependents
  • 1 Suggesters
  • 1 Forks
  • 0 Open issues
  • 3 Versions
  • 6 % Grown

The README.md

Snapshot Store

Latest Version on Packagist ![Software License][ico-license] Build Status ![Coverage Status][ico-scrutinizer] Quality Score, (*1)

Library for storing snapshots, (*2)

Installation

composer require treehouselabs/snapshot-store

Database

Basic SQL schema for snapshot store. Adapt to your needs., (*3)

CREATE TABLE `snapshot_store` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `aggregate_id` varchar(255) NOT NULL,
  `payload` longtext NOT NULL,
  `version` int(11) NOT NULL,
  `datetime_created` datetime NOT NULL,
  `checksum` varchar(255) NOT NULL,
  `class` varchar(255) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `UNIQ_D1F10563D0BBCCBEBF1CD3C3` (`aggregate_id`,`version`,`checksum`)
)

Testing

composer test

Security

If you discover any security related issues, please email dev@treehouse.nl instead of using the issue tracker., (*4)

License

The MIT License (MIT). Please see License File for more information., (*5)

Credits

The Versions

15/05 2017

dev-master

9999999-dev

  Sources   Download

MIT

The Requires

 

The Development Requires

event sourcing snapshot store

15/05 2017

2.0

2.0.0.0

  Sources   Download

MIT

The Requires

 

The Development Requires

event sourcing snapshot store

11/05 2017

1.0

1.0.0.0

  Sources   Download

MIT

The Requires

 

The Development Requires

event sourcing snapshot store