-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 863 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 863 Bytes
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
{
"name": "aura/payload-interface",
"type": "library",
"description": "An interface package for Domain Payload implementations.",
"keywords": [
"domain",
"payload",
"ddd"
],
"homepage": "https://github.com/auraphp/Aura.Payload_Interface",
"license": "MIT",
"authors": [
{
"name": "Aura.Payload_Interface Contributors",
"homepage": "https://github.com/auraphp/Aura.Payload_Interface/contributors"
}
],
"require": {
"php": ">=5.5.0"
},
"autoload": {
"psr-4": {
"Aura\\Payload_Interface\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Aura\\Payload_Interface\\": "tests/"
}
},
"require-dev": {
"pds/skeleton": "^1.0",
"phpunit/phpunit": "~5.7 || ~4.8"
}
}