From 5d89bd7202d110931ff88c83d1f0ee93206df118 Mon Sep 17 00:00:00 2001 From: Samuel ROZE Date: Mon, 27 Feb 2017 13:52:18 +0000 Subject: [PATCH] Create the events library --- README.md | 4 ++++ composer.json | 8 ++++++++ 2 files changed, 12 insertions(+) create mode 100644 README.md create mode 100644 composer.json diff --git a/README.md b/README.md new file mode 100644 index 0000000..f2754ee --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +# ContinuousPipe Events + +A library to manage EventSourcing inside and outside (micro)services. + diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..f735a60 --- /dev/null +++ b/composer.json @@ -0,0 +1,8 @@ +{ + "name": "continuous-pipe/events", + "autoload": { + "psr-0": { + "ContinuousPipe\\": "src/" + } + } +}