KnpMarkdownBundle/composer.json

62 lines
1.6 KiB
JSON
Raw Permalink 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"],
2012-01-04 17:15:33 +01:00
"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": {
2022-01-25 19:10:45 +01:00
"php": "^7.4|^8.0",
2022-01-25 19:18:11 +01:00
"symfony/framework-bundle": "^4.4|^5.0|^6.0",
"symfony/dependency-injection": "^4.4|^5.0|^6.0",
"michelf/php-markdown": "^1.9"
},
"require-dev": {
"symfony/phpunit-bridge": "^4.4.11|^5.0|^6.0",
2022-01-25 19:18:11 +01:00
"symfony/templating": "^4.4|^5.0|^6.0",
2021-11-30 13:49:00 +01:00
"phpstan/phpstan": "^1.2",
"phpstan/phpstan-symfony": "^1.0"
},
2022-01-27 18:09:57 +01:00
"abandoned": "twig/markdown-extra",
2012-06-14 14:48:13 +02:00
"suggest": {
2022-01-25 17:20:53 +01:00
"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
},
"extra": {
"branch-alias": {
2017-10-15 23:25:23 +02:00
"dev-master": "1.5.x-dev"
}
},
2021-11-08 12:58:03 +01:00
"scripts": {
"test": [
2022-01-25 22:29:47 +01:00
"php ./vendor/bin/simple-phpunit"
2021-11-08 12:58:03 +01:00
]
},
2021-11-08 12:24:51 +01:00
"autoload-dev": {
"psr-4": {
2021-11-08 12:32:20 +01:00
"Knp\\Bundle\\MarkdownBundle\\Tests\\": "tests/"
2021-11-08 12:24:51 +01:00
}
},
2012-01-04 17:15:33 +01:00
"autoload": {
"psr-4": {
"Knp\\Bundle\\MarkdownBundle\\": ""
2012-01-04 17:15:33 +01:00
}
}
2012-01-04 17:15:33 +01:00
}