KnpMarkdownBundle/composer.json
2021-11-30 07:49:00 -05:00

61 lines
1.5 KiB
JSON

{
"name": "knplabs/knp-markdown-bundle",
"type": "symfony-bundle",
"description": "Knplabs markdown bundle transforms markdown into html",
"keywords": ["markdown", "knplabs", "knp", "bundle"],
"homepage": "http://github.com/KnpLabs/KnpMarkdownBundle",
"license": "MIT",
"authors": [
{
"name": "KnpLabs Team",
"homepage": "http://knplabs.com"
},
{
"name": "Symfony Community",
"homepage": "http://github.com/KnpLabs/KnpMarkdownBundle/contributors"
}
],
"require": {
"php": ">= 7.4",
"symfony/framework-bundle": "^4.0|^5.0|^6.0",
"symfony/dependency-injection": "^4.0|^5.0|^6.0",
"michelf/php-markdown": "~1.4"
},
"require-dev": {
"symfony/phpunit-bridge": "^4.4.0 || ^5.0 || ^6.0",
"symfony/templating": "^4.0|^5.0|^6.0",
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.2",
"phpstan/phpstan-symfony": "^1.0"
},
"suggest": {
"symfony/twig-bundle": "to use the Twig markdown filter"
},
"extra": {
"branch-alias": {
"dev-master": "1.5.x-dev"
}
},
"scripts": {
"test": [
"php ./vendor/bin/phpunit"
]
},
"autoload-dev": {
"psr-4": {
"Knp\\Bundle\\MarkdownBundle\\Tests\\": "tests/"
}
},
"autoload": {
"psr-4": {
"Knp\\Bundle\\MarkdownBundle\\": ""
}
}
}