forked from box/brainy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.05 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": "box/brainy",
"type": "library",
"version": "3.1.1",
"description": "Brainy - A smart, parallel templating engine based on Smarty",
"keywords": ["templating", "smarty", "template", "mustache", "twig"],
"license": "LGPL-3.0",
"authors": [
{
"name": "Matt Basta",
"email": "[email protected]"
},
{
"name": "Monte Ohrt",
"email": "[email protected]"
},
{
"name": "Uwe Tews",
"email": "[email protected]"
},
{
"name": "Rodney Rehm",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4"
},
"require-dev": {
"phpdocumentor/phpdocumentor": "2.*",
"phpunit/phpunit": "4.8.*",
"squizlabs/php_codesniffer": "2.*"
},
"autoload": {
"psr-4": {
"Box\\Brainy\\": "src/Brainy/"
}
},
"autoload-dev": {
"psr-4": {
"Box\\Brainy\\Tests\\": "test/"
}
}
}