-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (56 loc) · 1.26 KB
/
composer.json
File metadata and controls
56 lines (56 loc) · 1.26 KB
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
47
48
49
50
51
52
53
54
55
56
{
"name": "pccomponentes/ddd",
"description": "Mini Framework to create projects with hexagonal architecture and domain driven design",
"authors": [
{
"name": "Aaron Bernabeu Rodríguez",
"email": "aaron.bernabeu@pccomponentes.com"
},
{
"name": "Juan G. Rodríguez Carrión",
"email": "juan.rodriguez@pccomponentes.com"
},
{
"name": "Zoilo Mora",
"email": "zoilo.mora@pccomponentes.com"
}
],
"license": "MIT",
"type": "library",
"autoload": {
"psr-4": {
"PcComponentes\\Ddd\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PcComponentes\\Ddd\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.0",
"ext-json": "*",
"ramsey/uuid": "^4.2"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"phpro/grumphp": "^1.3",
"pccomponentes/coding-standard": "^1.2",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpstan/phpstan": "^0.12.82",
"sebastian/phpcpd": "^6.0"
},
"scripts": {
"post-install-cmd": [
"rm -rf .git/hooks",
"mkdir -p .git/hooks",
"cp -r ./config/hooks/* .git/hooks"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpro/grumphp": true
}
}
}