workflow/publish: update to php-8.1
[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/ext2ref",
13 "bin/ref2html",
14 "bin/ref2stub",
15 "bin/stub2ref"
16 ],
17 "autoload": {
18 "psr-4": {
19 "mdref\\": "mdref/"
20 }
21 },
22 "require": {
23 "php": "^8.0",
24 "ext-ctype": "*",
25 "ext-dom": "*",
26 "ext-libxml": "*",
27 "ext-filter": "*",
28 "ext-pcre": "*",
29 "ext-http": "^4.2",
30 "league/commonmark": "~2.1.0",
31 "phpdocumentor/reflection-docblock": "^5.3"
32 }
33 }