parsedown/composer.json

29 lines
673 B
JSON
Raw Normal View History

2013-07-10 22:22:16 +02:00
{
"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": ">=5.3.0",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^4.8.35"
},
2013-07-10 22:22:16 +02:00
"autoload": {
2018-04-17 15:44:38 +02:00
"psr-4": {"Erusev\\Parsedown\\": "src/"}
},
"autoload-dev": {
2018-04-17 15:44:38 +02:00
"psr-4": {"Erusev\\Parsedown\\Tests\\": "tests/"}
}
}