X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=composer.json;h=4a4999983bf2e0dd5777abb3c3e565b0076efd05;hb=081cec2c9cfe879588d5989bcc09a34412f1d9c9;hp=2a36108e6da70eda09853ac4869ab836f933bf7f;hpb=1a5b9091eb508456beff1dc09e2af3301f880c47;p=mdref%2Fmdref diff --git a/composer.json b/composer.json index 2a36108..4a49999 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,34 @@ { + "name": "m6w6/mdref", + "description": "Quick Markdown Reference Browser", + "license": "BSD-2-Clause", + "authors": [ + { + "name": "Michael Wallner", + "email": "mike@php.net" + } + ], + "bin": [ + "bin/ext2ref", + "bin/ref2html", + "bin/ref2stub", + "bin/stub2ref" + ], + "autoload": { + "psr-4": { + "mdref\\": "mdref/" + } + }, "require": { - "m6w6/autocracy": "dev-master" + "php": "^7.3 || ^8.0", + "ext-ctype": "*", + "ext-filter": "*", + "ext-pcre": "*", + "ext-http": "^3.2 || ^4.2", + "league/commonmark": "^2.0", + "phpdocumentor/reflection-docblock": "^5.3" + }, + "suggests": { + "ext-discount": "A Markdown renderer is needed, this is the preferred one." } }