-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
42 lines (42 loc) · 1.05 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
{
"name": "fluxbb/commonmark",
"description": "Object-oriented and extensible PHP 5.4+ CommonMark spec-compliant Markdown parser",
"keywords": ["markdown", "commonmark", "parser"],
"license": "MIT",
"authors": [
{
"name": "Kazuyuki Hayashi",
"email": "hayashi@valnur.net"
},
{
"name": "Franz Liedke",
"email": "franz@fluxbb.org"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"FluxBB\\CommonMark\\": "src"
}
},
"require": {
"php": ">5.4.0",
"symfony/options-resolver": "~2.3",
"symfony/console": "~2.3"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"symfony/finder": ">=2.3,<2.5-dev",
"symfony/stopwatch": ">=2.3,<2.5-dev",
"kzykhys/pygments": ">=1.0"
},
"suggest": {
"kzykhys/pygments": ">=1.0"
},
"bin": ["bin/commonmark"],
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}