fix weak property types
[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": ["bin/ref2stub"],
12 "autoload": {
13 "psr-4": {
14 "mdref\\": "mdref/"
15 }
16 },
17 "require": {
18 "php": "^7.3",
19 "ext-ctype": "^7.3",
20 "ext-http": "^3.2",
21 "ext-filter": "^7.3",
22 "ext-pcre": "^7.3"
23 },
24 "suggests": {
25 "ext-discount": "A Markdown renderer is needed, this is the preferred one.",
26 "ext-cmark": "A Markdown renderer is needed, this is the fallback one."
27 }
28 }