Skip to content

Commit f832c7b

Browse files
committed
Adds changelog file. Updates readmes.
1 parent 1cd0fdc commit f832c7b

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# desmart/laravel-event-sourcing changelog
2+
3+
## 1.0.0
4+
_Released: 2016-05-25_
5+
* Initial release.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ with mix of the two: one database served as an event store, where second was sto
109109
Event store required structure (however different column types allowed) can be found [here](https://github.com/DeSmart/laravel-event-sourcing/blob/master/example/database/migrations/2016_05_16_125159_create_event_store_table.php).
110110

111111
## License
112-
Package is released under the MIT License (MIT). Please, check [LICENSE](https://github.com/desmart/event-sourcing/blob/master/LICENSE) for more details.
112+
Package is released under the MIT License (MIT). Please, check [LICENSE](https://github.com/desmart/laravel-event-sourcing/blob/master/LICENSE) for more details.
113113

114114
## Example usage
115115
For example use of event store as well as project manager, check [`example/`](https://github.com/desmart/laravel-event-sourcing/tree/master/example) directory.

example/README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
# Laravel Event Sourcing example
22

33
Here you can find some simple example of events and projection usage.
4+
45
_Note, this is purely abstract and some enhancements should be applied in order to have fully working example._
56

67
Contents:
7-
- `config` directory contains configuration files,
8-
- `database/migrations` directory contains example migrations for event store and projection,
9-
- `Domain` directory contains domain part of this example, so aggregate, events, commands and command handlers and repository interface classes,
10-
- `WebPlugin` directory contains simple controller, implementation of repository as well as simple projection.
8+
- [`config`](https://github.com/DeSmart/laravel-event-sourcing/tree/master/example/config) directory contains configuration files,
9+
- [`database/migrations`](https://github.com/DeSmart/laravel-event-sourcing/tree/master/example/database/migrations) directory contains example migrations for event store and projection,
10+
- [`Domain`](https://github.com/DeSmart/laravel-event-sourcing/tree/master/example/Domain) directory contains domain part of this example, so aggregate, events, commands and command handlers and repository interface classes,
11+
- [`WebPlugin`](https://github.com/DeSmart/laravel-event-sourcing/tree/master/example/WebPlugin) directory contains simple controller, implementation of repository as well as simple projection.
1112

1213
For handling commands [`desmart/laravel-commandbus`](https://github.com/DeSmart/laravel-commandbus) package is (can be) used.

0 commit comments

Comments
 (0)