parsedown/composer.json

49 lines
1.4 KiB
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": {
2021-10-11 20:22:23 +02:00
"php": "^7.1||^8.0",
"ext-mbstring": "*"
},
"require-dev": {
2021-10-11 20:22:23 +02:00
"phpunit/phpunit": "^9.3.11",
"vimeo/psalm": "^4.10.0",
2019-02-02 22:09:56 +01:00
"friendsofphp/php-cs-fixer": "^2.13",
"infection/infection": "^0.25.0",
"roave/infection-static-analysis-plugin": "^1.10.0"
},
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/"}
2018-12-04 17:47:34 +01:00
},
"scripts": {
"test": [
"@test-static",
2018-12-11 23:56:38 +01:00
"@test-formatting",
"@test-dead-code",
2018-12-11 23:56:38 +01:00
"@test-units"
2018-12-04 17:47:34 +01:00
],
"test-static": "vendor/bin/psalm",
"test-dead-code": "vendor/bin/psalm --find-dead-code",
2018-12-04 17:47:34 +01:00
"test-units": "vendor/bin/phpunit",
2019-01-28 21:35:34 +01:00
"test-commonmark": "vendor/bin/phpunit tests/CommonMarkTestStrict.php",
2018-12-05 08:13:30 +01:00
"test-commonmark-weak": "vendor/bin/phpunit tests/CommonMarkTestWeak.php",
2018-12-04 17:47:34 +01:00
"test-formatting": "@composer fix -- --dry-run",
"fix": "vendor/bin/php-cs-fixer fix --verbose --show-progress=dots --diff"
}
}