composer.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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,<2.8-dev"
  17. },
  18. "require-dev": {
  19. "phpunit/phpunit": "4.*",
  20. "symfony/console": "2.*||^3.0"
  21. },
  22. "suggest": {
  23. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  24. },
  25. "bin": ["bin/doctrine-dbal"],
  26. "autoload": {
  27. "psr-0": { "Doctrine\\DBAL\\": "lib/" }
  28. },
  29. "extra": {
  30. "branch-alias": {
  31. "dev-master": "2.5.x-dev"
  32. }
  33. },
  34. "archive": {
  35. "exclude": ["!vendor", "tests", "*phpunit.xml", ".travis.yml", "build.xml", "build.properties", "composer.phar"]
  36. }
  37. }