KnpMarkdownBundle/composer.json

44 lines
1.4 KiB
JSON
Raw Normal View History

2012-01-04 17:15:33 +01:00
{
"name": "knplabs/knp-markdown-bundle",
"type": "symfony-bundle",
2012-01-12 13:02:48 +01:00
"description": "Knplabs markdown bundle transforms markdown into html",
"keywords": ["markdown", "knplabs", "knp", "bundle"],
2021-10-01 20:15:03 +02:00
"homepage": "https://github.com/KnpLabs/KnpMarkdownBundle",
2012-01-04 17:15:33 +01:00
"license": "MIT",
"authors": [
{
"name": "KnpLabs Team",
2021-10-01 20:15:03 +02:00
"homepage": "https://knplabs.com"
2012-01-04 17:15:33 +01:00
},
{
"name": "Symfony Community",
2021-10-01 20:15:03 +02:00
"homepage": "https://github.com/KnpLabs/KnpMarkdownBundle/contributors"
2012-01-04 17:15:33 +01:00
}
],
"require": {
2021-10-01 20:15:03 +02:00
"php": ">= 8.0.2",
2021-10-01 20:57:23 +02:00
"symfony/framework-bundle": "^4.4.20 || ^5.3 || ^6.0",
"symfony/dependency-injection": "^4.4.20 || ^5.3 || ^6.0",
2021-10-01 20:15:03 +02:00
"michelf/php-markdown": "~1.9"
},
"require-dev": {
2021-10-01 20:17:57 +02:00
"phpunit/phpunit" : "^8.5.21 || ^9.5",
2021-10-01 20:57:23 +02:00
"symfony/phpunit-bridge": "^4.4.20 || ^5.3 || ^6.0",
"symfony/templating": "^4.4.20 || ^5.3 || ^6.0"
},
2012-06-14 14:48:13 +02:00
"suggest": {
"symfony/twig-bundle": "to use the Twig markdown filter",
"ext-sundown": "to use optional support for php-sundown extension instead of php implementation"
2012-01-04 17:15:33 +01:00
},
"autoload": {
"psr-4": {
"Knp\\Bundle\\MarkdownBundle\\": ""
2012-01-04 17:15:33 +01:00
}
2021-10-01 20:15:03 +02:00
},
"autoload-dev": {
"psr-4": {
"Knp\\Bundle\\MarkdownBundle\\Tests\\": "Tests/"
}
}
2012-01-04 17:15:33 +01:00
}