-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathcomposer.json
54 lines (54 loc) · 1.78 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
45
46
47
48
49
50
51
52
53
54
{
"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.4.0"
},
"require-dev": {
"twig/twig": "~1.12|~2.0",
"oyejorge/less.php": "*",
"leafo/lessphp": "*",
"leafo/scssphp": "*",
"coffeescript/coffeescript": "~1",
"michelf/php-markdown": "~1.3",
"erusev/parsedown": "*",
"league/commonmark": ">=0.9",
"cebe/markdown": "~1",
"kzykhys/ciconia": "~1",
"fluxbb/commonmark": "~1@dev",
"gregwar/rst": "1.0.0",
"phpunit/phpunit": "^5.7"
},
"suggest": {
"twig/twig": "If you want to use Twig templating engine",
"oyejorge/less.php": "If you want to use :less filter",
"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",
"erusev/parsedown": "If you want to use :markdown filter",
"cebe/markdown": "If you want to use :markdown filter",
"kzykhys/ciconia": "If you want to use :markdown filter",
"league/commonmark": "If you want to use :markdown filter",
"fluxbb/commonmark": "If you want to use :markdown filter",
"gregwar/rst": "If you want to use :rest filter"
},
"conflict": {
"mthaml/mthaml-bundle": "<1.1.0"
},
"autoload": {
"psr-0": {
"MtHaml\\": "lib/"
}
}
}