-
Notifications
You must be signed in to change notification settings - Fork 20
/
composer.json
30 lines (29 loc) · 989 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "buttercup/protects",
"description": "Buttercup.Protects is a PHP library for building Aggregates that protect business rules, and that announce Domain Events.",
"minimum-stability": "dev",
"license": "MIT",
"homepage": "http://buttercup-php.github.io/protects/",
"authors": [
{
"name": "Mathias Verraes",
"email": "[email protected]",
"homepage": "http://verraes.net"
}
],
"keywords": ["domain-driven design", "cqrs", "event sourcing"],
"support": {
"email": "[email protected]",
"wiki": "http://buttercup-php.github.io/protects/",
"source": "https://github.com/buttercup-php/protects",
"issues": "https://github.com/buttercup-php/protects/issues"
},
"require-dev": {
"mathiasverraes/classfunctions": "1.*"
},
"autoload": {
"psr-4": {
"Buttercup\\": ["src/Buttercup", "tests/Buttercup"]
}
}
}