-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
45 lines (45 loc) · 1.21 KB
/
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
{
"name": "chimera/foundation",
"description": "Base structure to connect PSR-7 objects to command and query buses",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Luís Cobucci",
"email": "[email protected]"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0",
"ramsey/uuid": "^4.5"
},
"require-dev": {
"infection/infection": "^0.26.19",
"lcobucci/coding-standard": "^11.0",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.1",
"phpstan/phpstan-strict-rules": "^1.4",
"phpunit/phpunit": "^10.0.16"
},
"autoload": {
"psr-4": {
"Chimera\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Chimera\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"infection/extension-installer": true
},
"preferred-install": "dist",
"sort-packages": true
}
}