composer.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "knplabs/knp-menu",
  3. "type": "library",
  4. "description": "An object oriented menu library",
  5. "keywords": ["menu", "tree"],
  6. "homepage": "https://knplabs.com",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "KnpLabs",
  11. "homepage": "https://knplabs.com"
  12. },
  13. {
  14. "name": "Christophe Coevoet",
  15. "email": "stof@notk.org"
  16. },
  17. {
  18. "name": "Symfony Community",
  19. "homepage": "https://github.com/KnpLabs/KnpMenu/contributors"
  20. }
  21. ],
  22. "require": {
  23. "php": ">=5.6.0"
  24. },
  25. "require-dev": {
  26. "psr/container": "^1.0",
  27. "symfony/http-foundation": "~2.4|~3.0|^4.0",
  28. "symfony/phpunit-bridge": "~3.3|^4.0",
  29. "symfony/routing": "~2.3|~3.0|^4.0",
  30. "twig/twig": "~1.16|~2.0"
  31. },
  32. "suggest": {
  33. "twig/twig": "for the TwigRenderer and the integration with your templates"
  34. },
  35. "autoload": {
  36. "psr-4": { "Knp\\Menu\\": "src/Knp/Menu" }
  37. },
  38. "autoload-dev": {
  39. "psr-4": {
  40. "Knp\\Menu\\Tests\\": "tests/Knp/Menu/Tests"
  41. }
  42. },
  43. "extra": {
  44. "branch-alias": {
  45. "dev-master": "2.3-dev"
  46. }
  47. }
  48. }