-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.15 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
{
"name": "dhii/di-abstract",
"description": "Base abstract classes for DI container implementations",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Dhii Team",
"email": "development@dhii.co"
}
],
"minimum-stability": "dev",
"require": {
"php": "^5.4 | ^7.0"
},
"require-dev": {
"dhii/php-cs-fixer-config": "dev-php-5.3",
"phpunit/phpunit": "^4.8",
"ptrofimov/xpmock": "^1.1",
"codeclimate/php-test-reporter": "<=0.3.2",
"dhii/stringable-interface": "^0.1",
"psr/container": "^1.0",
"dhii/data-container-interface": "^0.2",
"dhii/exception-interface": "^0.2-alpha3",
"dhii/simple-cache-interface": "^0.1",
"dhii/invocable-interface": "^0.1"
},
"autoload": {
"psr-4": {
"Dhii\\Di\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Dhii\\Di\\UnitTest\\": "test/unit",
"Dhii\\Di\\FuncTest\\": "test/functional"
}
},
"extra": {
"branch-alias": {
"dev-develop": "0.2.x-dev"
}
}
}