1
0
mirror of https://github.com/erusev/parsedown.git synced 2025-09-02 11:22:37 +02:00
Files
php-parsedown/composer.json
Pavel Djundik cfb313fb1f Revert "Merge pull request #876 from xabbuh/branch-alias"
This reverts commit 0476f3be5b, reversing
changes made to 9d00deadcd.
2024-08-28 11:19:02 +03:00

34 lines
792 B
JSON

{
"name": "erusev/parsedown",
"description": "Parser for Markdown.",
"keywords": ["markdown", "parser"],
"homepage": "http://parsedown.org",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Emanuil Rusev",
"email": "hello@erusev.com",
"homepage": "http://erusev.com"
}
],
"require": {
"php": ">=7.1",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^7.5|^8.5|^9.6"
},
"autoload": {
"psr-0": {"Parsedown": ""}
},
"autoload-dev": {
"psr-0": {
"TestParsedown": "test/",
"ParsedownTest": "test/",
"CommonMarkTest": "test/",
"CommonMarkTestWeak": "test/"
}
}
}