-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
40 lines (40 loc) · 1.04 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
{
"name": "rhubarbphp/module-leaf",
"description": "A nestable user interface building module for the Rhubarb PHP framework based upon the model-view-presenter pattern.",
"keywords": [
"mvp",
"presenter",
"leaf",
"rhubarb",
"php",
"framework"
],
"homepage": "http://www.rhubarbphp.com/",
"license": "Apache-2.0",
"autoload": {
"psr-4": {
"Rhubarb\\Leaf\\": "src/",
"Rhubarb\\Leaf\\Tests\\": "tests/unit/"
}
},
"require": {
"rhubarbphp/rhubarb": "^1.1.0",
"rhubarbphp/custard": "^1.0.9",
"rhubarbphp/module-jsvalidation": "^1.0.0",
"rhubarbphp/module-csrfprotection": "^1.0.5"
},
"config": {
"bin-dir": "bin/"
},
"require-dev": {
"rhubarbphp/module-build-status-updater": "^1.0.5",
"codeception/codeception": "^2.0.0",
"tan-tan-kanarek/github-php-client": "^1.0.0",
"phploc/phploc": "^3.0.0",
"theseer/phpdox": "*",
"phpmd/phpmd": "^2.0.0",
"squizlabs/php_codesniffer": "^2.0.0",
"sebastian/phpcpd": "^2.0.0",
"pdepend/pdepend": "^2.0.0"
}
}