-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.09 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": "zaitsev/mthamlphp",
"type": "library",
"description": "HAML for PHP",
"keywords": ["HAML"],
"homepage": "https://github.com/Zaitsev/MtHamlPHP",
"license": "MIT",
"authors": [
{
"name": "Vlad Zaitsev",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.0",
"symfony/yaml": "~2.6",
"mthaml/mthaml": "*"
},
"require-dev": {
"twig/twig": "~1.11",
"oyejorge/less.php": "*",
"leafo/lessphp": "*",
"leafo/scssphp": "*",
"coffeescript/coffeescript": "~1",
"michelf/php-markdown": "~1.3",
"erusev/parsedown": "*",
"league/commonmark": ">=0.5",
"cebe/markdown": "~1",
"kzykhys/ciconia": "~1",
"fluxbb/commonmark": "~1@dev",
"gregwar/rst": "~1",
"phpunit/phpunit": "4.3.5"
},
"conflict": {
"mthaml/mthaml-bundle": "<1.1.0"
},
"autoload": {
"classmap": ["lib/MtHamlPHP/Node/Tag.php","lib/MtHamlPHP/Parser/Buffer.php"],
"psr-0": {
"MtHamlPHP\\": "lib/"
}
}
}