-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
38 lines (38 loc) · 974 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
31
32
33
34
35
36
37
38
{
"name": "gpslab/payload",
"license": "MIT",
"type": "library",
"homepage": "https://github.com/gpslab/payload",
"description": "The simple infrastructure component for create payload message",
"keywords": [
"infrastructure",
"payload",
"payload-message",
"cqrs",
"domain-event"
],
"autoload": {
"psr-4": {
"GpsLab\\Component\\Payload\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GpsLab\\Component\\Payload\\Tests\\": "tests/"
},
"classmap": [
"tests/Fixture/Acme_Demo_SomeMessage.php"
]
},
"require": {
"php": ">=5.5.0"
},
"require-dev": {
"gpslab/cqrs": "~1.0",
"gpslab/domain-event": "~1.6",
"symfony/serializer": "~2.3|~3.0",
"phpunit/phpunit": "^4.8.36",
"scrutinizer/ocular": "~1.3",
"php-coveralls/php-coveralls": "^1.0"
}
}