forked from woohoolabs/zen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.16 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
{
"name": "woohoolabs/zen",
"description": "Woohoo Labs. Zen DI Container",
"type": "library",
"keywords": ["Woohoo Labs.", "DI", "DIC"],
"license": "MIT",
"authors": [
{
"name":"Máté Kocsis",
"email":"[email protected]"
}
],
"support": {
"issues": "https://github.com/woohoolabs/zen/issues",
"source": "https://github.com/woohoolabs/zen"
},
"require": {
"php":"^7.0.0",
"container-interop/container-interop":"^1.1.0",
"doctrine/annotations": "^1.2.6",
"php-di/phpdoc-reader": "^2.0.1"
},
"require-dev": {
"phpunit/PHPUnit": "^5.4.0",
"squizlabs/php_codesniffer": "^2.1.1"
},
"provide": {
"container-interop/container-interop-implementation": "^1.0"
},
"autoload": {
"psr-4": {
"WoohooLabs\\Zen\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WoohooLabs\\Zen\\Tests\\Unit\\": "tests/unit",
"WoohooLabs\\Zen\\Examples\\": "examples/"
}
},
"bin": [
"bin/zen"
],
"scripts": {
"test": "phpunit"
}
}