composer.json 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "doctrine/doctrine-bundle",
  3. "type": "symfony-bundle",
  4. "description": "Symfony DoctrineBundle",
  5. "keywords": ["DBAL", "ORM", "Database", "Persistence"],
  6. "homepage": "http://www.doctrine-project.org",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Fabien Potencier",
  11. "email": "fabien@symfony.com"
  12. },
  13. {
  14. "name": "Benjamin Eberlei",
  15. "email": "kontakt@beberlei.de"
  16. },
  17. {
  18. "name": "Symfony Community",
  19. "homepage": "http://symfony.com/contributors"
  20. }
  21. ],
  22. "require": {
  23. "php": ">=5.3.2",
  24. "symfony/framework-bundle": "2.1.*",
  25. "symfony/doctrine-bridge": "2.1.*",
  26. "doctrine/dbal": ">=2.2,<2.5-dev",
  27. "jdorn/sql-formatter": "~1.1"
  28. },
  29. "require-dev": {
  30. "doctrine/orm": ">=2.2,<2.5-dev",
  31. "symfony/yaml": "2.1.*",
  32. "symfony/validator": "2.1.*"
  33. },
  34. "suggest": {
  35. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle."
  36. },
  37. "autoload": {
  38. "psr-0": { "Doctrine\\Bundle\\DoctrineBundle": "" }
  39. },
  40. "target-dir": "Doctrine/Bundle/DoctrineBundle",
  41. "minimum-stability": "dev",
  42. "extra": {
  43. "branch-alias": {
  44. "dev-master": "1.1.x-dev"
  45. }
  46. }
  47. }