-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 885 Bytes
/
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
{
"name": "robertboloc/zf2-components-list-generator",
"type": "library",
"description": "Generate a list of Zend Framework 2 components used by a library",
"keywords": [
"zf2",
"generator",
"components"
],
"homepage": "https://github.com/robertboloc/https://github.com/robertboloc/zf2-components-list-generator",
"license": "MIT",
"authors": [
{
"name": "Robert Boloc",
"email": "[email protected]",
"homepage": "http://robertboloc.eu",
"role": "Developer"
}
],
"bin": [
"bin/zf2_components_list_generator.php"
],
"autoload": {
"psr-4": {
"Rb\\Generator\\": "src"
}
},
"require": {
"zendframework/zend-console": "^2.3.0"
},
"require-dev": {
"phpunit/phpunit": "4.3.*"
}
}