-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 808 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 808 Bytes
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
{
"name": "spindle/view",
"description": "simple layout renderer",
"license": "CC0-1.0",
"authors": [
{
"name": "Hiraku NAKANO",
"email": "hiraku@tojiru.net"
}
],
"scripts": {
"test": "phpunit",
"apigen": "apigen.php"
},
"require": {
"php": ">=5.3.2"
},
"autoload": {
"files": ["src/View.php"]
},
"require-dev": {
"phpunit/phpunit": "*",
"hirak/apigen2.8.0": "*",
"pdepend/pdepend": "*"
},
"archive": {
"exclude": [
"tests/",
"builds/",
"node_modules/",
"gulpfile.js",
"apigen.neon",
"phpunit.xml.dist",
"phpunit.xml",
"package.json"
]
}
}