composer.json 869 B

123456789101112131415161718192021222324252627282930313233
  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",
  8. "authors": [
  9. {"name": "Benjamin Eberlei", "email": "kontakt@beberlei.de"},
  10. {"name": "Jonathan Wage", "email": "jonwage@gmail.com"}
  11. ],
  12. "require": {
  13. "php": ">=5.3.2",
  14. "doctrine/dbal": "~2.0"
  15. },
  16. "require-dev": {
  17. "symfony/console": "2.*",
  18. "symfony/yaml": "2.*"
  19. },
  20. "suggest": {
  21. "symfony/console": "to run the migration from the console"
  22. },
  23. "autoload": {
  24. "psr-0": {
  25. "Doctrine\\DBAL\\Migrations": "lib"
  26. }
  27. },
  28. "extra": {
  29. "branch-alias": {
  30. "dev-master": "1.0.x-dev"
  31. }
  32. }
  33. }