composer.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "doctrine/migrations",
  3. "type": "library",
  4. "description": "Database Schema migrations using Doctrine DBAL",
  5. "keywords": ["migrations", "database"],
  6. "homepage": "http://www.doctrine-project.org",
  7. "license": "LGPL-2.1",
  8. "authors": [
  9. {"name": "Benjamin Eberlei", "email": "kontakt@beberlei.de"},
  10. {"name": "Jonathan Wage", "email": "jonwage@gmail.com"},
  11. {"name": "Michael Simonson", "email": "contact@mikesimonson.com" }
  12. ],
  13. "require": {
  14. "php": "^5.5|^7.0",
  15. "doctrine/dbal": "~2.2",
  16. "symfony/yaml": "~2.3|~3.0",
  17. "symfony/console": "~2.3|~3.0",
  18. "ocramius/proxy-manager": "^1.0|^2.0"
  19. },
  20. "require-dev": {
  21. "doctrine/orm": "2.*",
  22. "phpunit/phpunit": "~4.7",
  23. "satooshi/php-coveralls": "^1.0",
  24. "doctrine/coding-standard": "dev-master",
  25. "mockery/mockery": "^0.9.4",
  26. "johnkary/phpunit-speedtrap": "~1.0@dev",
  27. "jdorn/sql-formatter": "~1.1",
  28. "mikey179/vfsStream": "^1.6"
  29. },
  30. "suggest": {
  31. "jdorn/sql-formatter": "Allows to generate formatted SQL with the diff command."
  32. },
  33. "autoload": {
  34. "psr-4": {
  35. "Doctrine\\DBAL\\Migrations\\": "lib/Doctrine/DBAL/Migrations"
  36. }
  37. },
  38. "autoload-dev": {
  39. "psr-4": {
  40. "Doctrine\\DBAL\\Migrations\\Tests\\": "tests/Doctrine/DBAL/Migrations/Tests"
  41. }
  42. },
  43. "extra": {
  44. "branch-alias": {
  45. "dev-master": "v1.6.x-dev"
  46. }
  47. },
  48. "bin": [
  49. "bin/doctrine-migrations"
  50. ]
  51. }