-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (37 loc) · 947 Bytes
/
composer.json
File metadata and controls
38 lines (37 loc) · 947 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
36
37
38
{
"name": "albertdoncelis/php-ddd",
"type": "library",
"description": "",
"require": {
"php": ">= 7.1",
"ramsey/uuid": "^3.8",
"buttercup/protects": "dev-master",
"mathiasverraes/classfunctions": "^1.1"
},
"require-dev": {
"phpspec/phpspec": "^4.2",
"phing/phing": "^2.16",
"phpmd/phpmd": "^2.6",
"fzaninotto/faker": "^1.8",
"sebastian/phpcpd": "^4.1",
"squizlabs/php_codesniffer": "^3.4",
"leanphp/phpspec-code-coverage": "^4.2",
"satooshi/php-coveralls": "^2.1",
"phpunit/phpunit": "^7.0"
},
"autoload": {
"psr-4": {
"AlbertDonCelis\\": "src/AlbertDonCelis",
"spec\\": "spec"
}
},
"authors": [
{
"name": "Albert Don Celis",
"email": "celisdonalbert@gmail.com"
}
],
"config": {
"bin-dir": "bin"
}
}