composer.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. "php": "^5.6 || ^7",
  23. "knplabs/knp-menu": "~2.3",
  24. "symfony/framework-bundle": "~2.7|~3.0 | ^4.0"
  25. },
  26. "require-dev": {
  27. "symfony/phpunit-bridge": "^3.3 | ^4.0",
  28. "symfony/expression-language": "~2.7|~3.0 | ^4.0",
  29. "symfony/templating": "~2.7|~3.0 | ^4.0"
  30. },
  31. "autoload": {
  32. "psr-4": { "Knp\\Bundle\\MenuBundle\\": "src" }
  33. },
  34. "autoload-dev": {
  35. "psr-4": { "Knp\\Bundle\\MenuBundle\\Tests\\": "tests" }
  36. },
  37. "extra": {
  38. "branch-alias": {
  39. "dev-master": "2.2.x-dev"
  40. }
  41. }
  42. }