-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 967 Bytes
/
composer.json
File metadata and controls
42 lines (42 loc) · 967 Bytes
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
{
"name": "cebe/markdown-latex",
"description": "A super fast, highly extensible markdown parser for PHP, that converts markdown files into latex",
"keywords": ["markdown", "gfm", "markdown-extra", "fast", "extensible", "latex"],
"homepage": "https://github.com/cebe/markdown-latex#readme",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Carsten Brandt",
"email": "mail@cebe.cc",
"homepage": "http://cebe.cc/",
"role": "Creator"
}
],
"support": {
"issues": "https://github.com/cebe/markdown-latex/issues",
"source": "https://github.com/cebe/markdown-latex"
},
"minimum-stability": "dev",
"require": {
"php": ">=5.4.0",
"cebe/markdown": "~1.0.0",
"mikevanriel/text-to-latex": "~1.0.0"
},
"require-dev": {
"phpunit/phpunit": "3.7.*"
},
"autoload": {
"psr-4": {
"cebe\\markdown\\latex\\": ""
}
},
"bin": [
"bin/markdown-latex"
],
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}