KnpMarkdownBundle/composer.json

47 lines
1.3 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"],
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": {
"php": ">=5.5.9",
"symfony/framework-bundle": "~2.8|~3.0|^4.0",
"symfony/dependency-injection": "~2.8|~3.0|^4.0",
2015-09-29 16:29:54 +02:00
"michelf/php-markdown": "~1.4"
},
"require-dev": {
"phpunit/phpunit": "~4.5",
"symfony/templating": "~2.8|~3.0|^4.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
},
"extra": {
"branch-alias": {
2017-10-15 23:25:23 +02:00
"dev-master": "1.5.x-dev"
}
},
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
}