composer.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "knplabs/knp-menu",
  3. "type": "library",
  4. "description": "An object oriented menu library",
  5. "keywords": ["menu", "tree"],
  6. "homepage": "http://knplabs.com",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "KnpLabs",
  11. "homepage": "http://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.3.0"
  24. },
  25. "require-dev": {
  26. "pimple/pimple": "1.0.*",
  27. "silex/silex": "1.0.*",
  28. "twig/twig": ">=1.2,<2.0-dev"
  29. },
  30. "suggest": {
  31. "pimple/pimple": "for the built-in implementations of the menu provider and renderer provider",
  32. "silex/silex": "for the integration with your silex application",
  33. "twig/twig": "for the TwigRenderer and the integration with your templates"
  34. },
  35. "autoload": {
  36. "psr-0": { "Knp\\Menu\\": "src/" }
  37. },
  38. "extra": {
  39. "branch-alias": {
  40. "dev-master": "2.0.x-dev"
  41. }
  42. },
  43. "minimum-stability": "dev"
  44. }