KnpMarkdownBundle/composer.json
Ryan Weaver 4e890d540a Adding symfony/dependency-injection specifically to avoid 2.2 bug with framework
Before framework-bundle 2.3.24, framework-bundle allowed for the 2.2 of the dependency-injection
component. However, 2.3 of DI added synchronized services, which framework-bundle uses. So,
framework-bundle 2.3 *really* needs di 2.2. This caused our integration tests to fail, because
the "lowest" deps included 2.3.0 of both components (which are not compatible).
2015-12-15 16:53:49 -05:00

46 lines
1.2 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": ">=5.3.9",
"symfony/framework-bundle": "~2.3|~3.0",
"symfony/dependency-injection": "~2.3|~3.0",
"michelf/php-markdown": "~1.4"
},
"require-dev": {
"phpunit/phpunit": "~4.5"
},
"suggest": {
"symfony/twig-bundle": "to use the Twig markdown filter",
"ext-sundown": "to use optional support for php-sundown extension instead of php implementation"
},
"extra": {
"branch-alias": {
"dev-master": "1.4.x-dev"
}
},
"autoload": {
"psr-4": {
"Knp\\Bundle\\MarkdownBundle\\": ""
}
}
}