forked from NatLibFi/slim-handlebars
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
32 lines (31 loc) · 928 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
{
"name": "radicaldrew/slim-handlebars",
"type": "library",
"description": "Handlebars View Parser package for the Slim Framework based on jayc89/slim-handlebars",
"keywords": ["templating", "extensions", "slimphp", "handlebars"],
"homepage": "http://github.com/radicaldrew/slim-handlebars",
"license": "MIT",
"authors": [
{
"name": "Jamie Cressey",
"email": "[email protected]",
"homepage": "https://github.com/jayc89"
},
{
"name": "Andrew Karp",
"email": "[email protected]",
"homepage": "https://github.com/radicaldrew"
}
],
"require": {
"slim/slim": ">=2.4.0",
"php": ">=5.3.0",
"voodoophp/handlebars": "2.*"
},
"autoload": {
"psr-0": {
"Slim\\Handlebars": ""
}
},
"target-dir": "Slim/Handlebars"
}