1
0
mirror of https://github.com/erusev/parsedown.git synced 2023-08-10 21:13:06 +03:00
parsedown/composer.json

49 lines
1.5 KiB
JSON
Raw Normal View History

2013-07-11 00:22:16 +04: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 21:22:23 +03:00
"php": "^7.1||^8.0",
"ext-mbstring": "*"
},
"require-dev": {
2021-10-11 22:47:21 +03:00
"phpunit/phpunit": "^9.3.11||^8.5.21||^7.5.20",
2021-10-11 21:22:23 +03:00
"vimeo/psalm": "^4.10.0",
2021-10-16 02:45:18 +03:00
"friendsofphp/php-cs-fixer": "^3.0.0",
"infection/infection": "^0.25.0",
"roave/infection-static-analysis-plugin": "^1.10.0"
},
2013-07-11 00:22:16 +04:00
"autoload": {
2018-04-17 16:44:38 +03:00
"psr-4": {"Erusev\\Parsedown\\": "src/"}
},
"autoload-dev": {
2018-04-17 16:44:38 +03:00
"psr-4": {"Erusev\\Parsedown\\Tests\\": "tests/"}
2018-12-04 19:47:34 +03:00
},
"scripts": {
"test": [
"@test-static",
2018-12-12 01:56:38 +03:00
"@test-formatting",
"@test-dead-code",
2018-12-12 01:56:38 +03:00
"@test-units"
2018-12-04 19:47:34 +03:00
],
"test-static": "vendor/bin/psalm",
"test-dead-code": "vendor/bin/psalm --find-dead-code",
2018-12-04 19:47:34 +03:00
"test-units": "vendor/bin/phpunit",
2019-01-28 23:35:34 +03:00
"test-commonmark": "vendor/bin/phpunit tests/CommonMarkTestStrict.php",
2018-12-05 10:13:30 +03:00
"test-commonmark-weak": "vendor/bin/phpunit tests/CommonMarkTestWeak.php",
2018-12-04 19:47:34 +03:00
"test-formatting": "@composer fix -- --dry-run",
"fix": "vendor/bin/php-cs-fixer fix --verbose --show-progress=dots --diff"
}
}