-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
46 lines (46 loc) · 966 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
39
40
41
42
43
44
45
46
{
"name": "desmart/laravel-domain-core",
"description": "DeSmart core DDD package for Laravel",
"require": {
"php": ">=5.6.0",
"illuminate/support": "^5.2",
"illuminate/container": "^5.2",
"illuminate/log": "^5.2",
"illuminate/events": "^5.2",
"netresearch/jsonmapper": "0.10.*",
"psr/log": "^1.0",
"illuminate/database": "^5.2"
},
"require-dev": {
"phpspec/phpspec": "^2.4"
},
"license": "MIT",
"autoload": {
"psr-4": {
"DeSmart\\DomainCore\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DeSmart\\DomainCore\\Stubs\\": "stubs/"
}
},
"authors": [
{
"name": "Radoslaw Mejer",
"email": "[email protected]"
},
{
"name": "Lucjan Wilczewski",
"email": "[email protected]"
},
{
"name": "Michał Golom",
"email": "[email protected]"
},
{
"name": "Kamil Piechaczek",
"email": "[email protected]"
}
]
}