mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-13 02:46:29 +00:00
e5ae15e7de
* 2.x: support Sf5 Fix constraints Update doc with new escaping behavior Remove obsolete page language typo Add missing suggestions in Twig Extra Bundle
43 lines
1.0 KiB
JSON
43 lines
1.0 KiB
JSON
{
|
|
"name": "twig/markdown-extra",
|
|
"type": "library",
|
|
"description": "A Twig extension for Markdown",
|
|
"keywords": ["twig", "html", "markdown"],
|
|
"homepage": "https://twig.symfony.com",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Fabien Potencier",
|
|
"email": "fabien@symfony.com",
|
|
"homepage": "http://fabien.potencier.org",
|
|
"role": "Lead Developer"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^7.1.3",
|
|
"twig/twig": "^2.4|^3.0"
|
|
},
|
|
"require-dev": {
|
|
"symfony/phpunit-bridge": "^4.4|^5.0",
|
|
"erusev/parsedown": "^1.7",
|
|
"league/commonmark": "^1.0",
|
|
"league/html-to-markdown": "^4.8",
|
|
"michelf/php-markdown": "^1.8"
|
|
},
|
|
"autoload": {
|
|
"psr-4" : {
|
|
"Twig\\Extra\\Markdown\\" : "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4" : {
|
|
"Twig\\Extra\\Markdown\\Tests\\" : "tests/"
|
|
}
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "3.0-dev"
|
|
}
|
|
}
|
|
}
|