composer.json 785 B

12345678910111213141516171819202122232425262728
  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,<2.5.x-dev"
  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. }