forked from arnaud-lb/MtHaml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.06 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
{
"name": "mthaml/mthaml",
"type": "library",
"description": "HAML for PHP",
"keywords": ["HAML"],
"homepage": "https://github.com/arnaud-lb/MtHaml",
"license": "MIT",
"authors": [
{
"name": "Arnaud Le Blanc",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.0"
},
"require-dev": {
"twig/twig": "~1.11",
"leafo/lessphp": "*",
"leafo/scssphp": "*",
"coffeescript/coffeescript": "~1",
"michelf/php-markdown": "~1.3"
},
"suggest": {
"twig/twig": "If you want to use Twig templating engine",
"leafo/lessphp": "If you want to use :less filter",
"leafo/scssphp": "If you want to use :scss filter",
"coffeescript/coffeescript": "If you want to use :coffee or :coffeescript filter",
"michelf/php-markdown": "If you want to use :markdown filter"
},
"conflict": {
"mthaml/mthaml-bundle": "<1.1.0"
},
"autoload": {
"psr-0": {
"MtHaml\\": "lib/"
}
}
}