wiki-grav/plugins/page-toc/vendor/knplabs/knp-menu/composer.json
2022-06-06 18:16:01 +02:00

53 lines
1.3 KiB
JSON

{
"name": "knplabs/knp-menu",
"type": "library",
"description": "An object oriented menu library",
"keywords": ["menu", "tree"],
"homepage": "https://knplabs.com",
"license": "MIT",
"authors": [
{
"name": "KnpLabs",
"homepage": "https://knplabs.com"
},
{
"name": "Christophe Coevoet",
"email": "stof@notk.org"
},
{
"name": "The Community",
"homepage": "https://github.com/KnpLabs/KnpMenu/contributors"
}
],
"require": {
"php": "^7.3 || ^8.0"
},
"conflict": {
"twig/twig": "<1.40 || >=2,<2.9"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"psr/container": "^1.0",
"symfony/http-foundation": "^4.4 || ^5.0 || ^6.0",
"symfony/phpunit-bridge": "^5.3",
"symfony/routing": "^4.4 || ^5.0 || ^6.0",
"twig/twig": "^1.40 || ^2.9 || ^3.0"
},
"suggest": {
"twig/twig": "for the TwigRenderer and the integration with your templates"
},
"autoload": {
"psr-4": { "Knp\\Menu\\": "src/Knp/Menu" }
},
"autoload-dev": {
"psr-4": {
"Knp\\Menu\\Tests\\": "tests/Knp/Menu/Tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.3-dev"
}
}
}