composer.json 859B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "knplabs/knp-menu-bundle",
  3. "description": "This bundle provides an integration of the KnpMenu library",
  4. "keywords": ["menu"],
  5. "type": "symfony-bundle",
  6. "license": "MIT",
  7. "authors": [
  8. {
  9. "name": "Knplabs",
  10. "homepage": "http://knplabs.com"
  11. },
  12. {
  13. "name": "Christophe Coevoet",
  14. "email": "stof@notk.org"
  15. },
  16. {
  17. "name": "Symfony Community",
  18. "homepage": "https://github.com/KnpLabs/KnpMenuBundle/contributors"
  19. }
  20. ],
  21. "require": {
  22. "knplabs/knp-menu": "1.1.*",
  23. "symfony/framework-bundle": ">=2.0,<2.3-dev"
  24. },
  25. "autoload": {
  26. "psr-0": { "Knp\\Bundle\\MenuBundle": "" }
  27. },
  28. "target-dir": "Knp/Bundle/MenuBundle"
  29. }