This repository was archived by the owner on May 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.28 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.28 KB
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
48
49
50
51
52
{
"authors" : [
{
"email" : "jbboehr@gmail.com",
"name" : "John Boehr"
}
],
"autoload" : {
"psr-4" : {
"Handlebars\\": "src/"
},
"classmap": ["compat"]
},
"autoload-dev": {
"psr-4": {
"Handlebars\\Tests\\": "tests"
}
},
"bin": ["bin/handlebars.php"],
"description" : "PHP handlebars compiler and VM",
"homepage": "http://github.com/jbboehr/handlebars.php",
"name" : "jbboehr/handlebars",
"keywords" : [
"handlebars"
],
"license": "LGPL-3.0-only",
"require" : {
"php" : ">=5.3.0",
"ext-handlebars": "~0.7.0",
"ext-spl" : "*",
"psr/log": "~1.0.0"
},
"require-dev": {
"jbboehr/coding-standard": "1.0.*@dev",
"jbboehr/handlebars-spec": "4.0.4",
"jbboehr/mustache-spec": "1.1.2",
"lox/xhprof": "dev-master",
"pear/console_table": "~1.2.1",
"phpunit/phpcov": "~2.0.2",
"phpunit/phpunit": "~4.8",
"satooshi/php-coveralls": "~1.0.0",
"scrutinizer/ocular": "~1.1",
"squizlabs/php_codesniffer": "~2.3.2"
},
"suggest": {
"ext-psr": "*"
},
"scripts": {
"test": "phpunit"
},
"type" : "library"
}