This repository has been archived by the owner on May 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
66 lines (66 loc) · 1.98 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "dhii/di",
"description": "A DI container implementation",
"type": "library",
"license": "MIT",
"keywords": [
"container",
"di",
"dependency injection"
],
"authors": [
{
"name": "Dhii Team",
"email": "development@dhii.co"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^5.4 | ^7.0",
"dhii/data-container-interface": "^0.1 | ^0.2",
"dhii/data-container-abstract": "^0.1-alpha1",
"dhii/data-container-base": "^0.1-alpha2",
"dhii/data-object-abstract": "^0.1-alpha1",
"dhii/di-abstract": "^0.2-alpha1",
"dhii/container-helper-base": "^0.1-alpha5",
"dhii/exception": "^0.1-alpha5",
"dhii/callback-abstract": "^0.1-alpha5",
"dhii/invocable-base": "^0.1",
"dhii/args-list-validation": "^0.1",
"dhii/normalization-helper-base": "^0.1",
"dhii/i18n-helper-base": "^0.1",
"dhii/validation-base": "^0.2-alpha2"
},
"require-dev": {
"dhii/php-cs-fixer-config": "^0.1",
"phpunit/phpunit": "^4.8",
"ptrofimov/xpmock": "^1.1",
"codeclimate/php-test-reporter": "<=0.3.2",
"dhii/invocable-interface": "^0.1",
"dhii/stringable-interface": "^0.1",
"psr/container": "^1.0",
"dhii/exception-interface": "^0.2-alpha3",
"dhii/simple-cache-interface": "^0.1",
"dhii/memoize-memory": "^0.2"
},
"autoload": {
"psr-4": {
"Dhii\\Di\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Dhii\\Di\\UnitTest\\": "test/unit",
"Dhii\\Di\\FuncTest\\": "test/functional"
}
},
"provide": {
"container-interop/container-interop-implementation": "^1.0"
},
"extra": {
"branch-alias": {
"dev-develop": "0.2.x-dev"
}
}
}