-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
43 lines (43 loc) · 1.36 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
{
"name": "talesoft/tale-jade",
"type": "library",
"keywords": ["template", "dialect", "html", "views", "render", "presentation", "jade", "html", "php", "phtml"],
"description": "A clean, lightweight and easy-to-use templating engine for PHP based on Jade/Pug",
"license": "MIT",
"homepage": "http://jade.talesoft.codes",
"authors": [
{
"name": "Torben Koehn",
"email": "torben@talesoft.codes"
}
],
"support": {
"email": "torben@talesoft.codes",
"issues": "https://github.com/talesoft/tale-jade/issues",
"source": "https://github.com/talesoft/tale-jade",
"docs": "http://jade.talesoft.codes/docs"
},
"minimum-stability": "stable",
"require": {
"php": ">=5.5.0",
"talesoft/tale-config": "0.2",
"symfony/polyfill-mbstring": "*"
},
"autoload": {
"psr-4": {
"Tale\\Jade\\": ""
},
"files": [
"functions.php",
"Compiler/functions.php"
]
},
"bin": ["tale-jade"],
"suggest": {
"erusev/parsedown": "Enables Markdown filtering",
"coffeescript/coffeescript": "Enables CoffeeScript filtering",
"leafo/lessphp": "Enables LESS filtering",
"neemzy/stylus": "Enables Stylus filtering",
"leafo/scssphp": "Enables SASS filtering"
}
}