composer.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "doctrine/dbal",
  3. "type": "library",
  4. "description": "Database Abstraction Layer",
  5. "keywords": ["dbal", "database", "persistence", "queryobject"],
  6. "homepage": "http://www.doctrine-project.org",
  7. "license": "MIT",
  8. "authors": [
  9. {"name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com"},
  10. {"name": "Roman Borschel", "email": "roman@code-factory.org"},
  11. {"name": "Benjamin Eberlei", "email": "kontakt@beberlei.de"},
  12. {"name": "Jonathan Wage", "email": "jonwage@gmail.com"}
  13. ],
  14. "require": {
  15. "php": ">=5.3.2",
  16. "doctrine/common": "2.4.*@beta"
  17. },
  18. "require-dev": {
  19. "phpunit/phpunit": "3.7.*",
  20. "symfony/console": "2.*"
  21. },
  22. "suggest": {
  23. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  24. },
  25. "suggest": {
  26. "symfony/console": "Allows use of the command line interface"
  27. },
  28. "autoload": {
  29. "psr-0": { "Doctrine\\DBAL\\": "lib/" }
  30. },
  31. "extra": {
  32. "branch-alias": {
  33. "dev-master": "2.4.x-dev"
  34. }
  35. }
  36. }