generate static pages with league/commonmark
[mdref/mdref] / composer.json
1 {
2 "name": "m6w6/mdref",
3 "description": "Quick Markdown Reference Browser",
4 "license": "BSD-2-Clause",
5 "authors": [
6 {
7 "name": "Michael Wallner",
8 "email": "mike@php.net"
9 }
10 ],
11 "bin": [
12 "bin/ref2stub",
13 "bin/ref2html"
14 ],
15 "autoload": {
16 "psr-4": {
17 "mdref\\": "mdref/"
18 }
19 },
20 "require": {
21 "php": "^7.3 || ^8.0",
22 "ext-ctype": "*",
23 "ext-filter": "*",
24 "ext-pcre": "*",
25 "ext-http": "^3.2 || ^4.2",
26 "league/commonmark": "^2.0"
27 },
28 "suggests": {
29 "ext-discount": "A Markdown renderer is needed, this is the preferred one."
30 }
31 }