-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
50 lines (50 loc) · 1.35 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
46
47
48
49
50
{
"name": "dhii/containers",
"description": "A selection of PSR-11 containers for utility, simplicity, and ease.",
"type": "library",
"license": "MIT",
"keywords": [
"container",
"psr-11"
],
"authors": [
{
"name": "Dhii Team",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": false,
"require": {
"php": "^7.4 | ^8.0",
"dhii/collections-interface": "^0.4.0-alpha2",
"container-interop/service-provider": "^0.4"
},
"require-dev": {
"slevomat/coding-standard": "^6.0",
"phpunit/phpunit": "^9.0",
"vimeo/psalm": "^5.0",
"gmazzap/andrew": "^1.1",
"psr/container": "^2.0",
"psr/simple-cache": "^1.0",
"wildwolf/psr-memory-cache": "^1.0"
},
"autoload": {
"psr-4": {
"Dhii\\Container\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Dhii\\Container\\UnitTest\\": "tests/unit",
"Dhii\\Container\\FuncTest\\": "tests/functional",
"Dhii\\Container\\SysTest\\": "tests/system",
"Dhii\\Container\\TestHelpers\\": "tests/helpers"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}