composer.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "doctrine/doctrine-migrations-bundle",
  3. "type": "symfony-bundle",
  4. "description": "Symfony DoctrineMigrationsBundle",
  5. "keywords": ["DBAL", "Migrations", "Schema"],
  6. "homepage": "https://www.doctrine-project.org",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Fabien Potencier",
  11. "email": "fabien@symfony.com"
  12. },
  13. {
  14. "name": "Doctrine Project",
  15. "homepage": "http://www.doctrine-project.org"
  16. },
  17. {
  18. "name": "Symfony Community",
  19. "homepage": "http://symfony.com/contributors"
  20. }
  21. ],
  22. "require": {
  23. "php": "^7.2",
  24. "symfony/framework-bundle": "~3.4|~4.0|~5.0",
  25. "doctrine/doctrine-bundle": "~1.0|~2.0",
  26. "doctrine/migrations": "~3.0"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^6.4|^7.0",
  30. "doctrine/coding-standard": "^5.0",
  31. "phpstan/phpstan": "^0.11",
  32. "phpstan/phpstan-deprecation-rules": "^0.11",
  33. "phpstan/phpstan-phpunit": "^0.11",
  34. "phpstan/phpstan-strict-rules": "^0.11",
  35. "doctrine/orm": "^2.6"
  36. },
  37. "autoload": {
  38. "psr-4": { "Doctrine\\Bundle\\MigrationsBundle\\": "" },
  39. "exclude-from-classmap": [
  40. "/Tests/"
  41. ]
  42. },
  43. "autoload-dev": {
  44. "psr-4": { "Doctrine\\Bundle\\MigrationsBundle\\Tests\\": "Tests" }
  45. },
  46. "config": {
  47. "platform": {
  48. "php": "7.2.5"
  49. }
  50. },
  51. "extra": {
  52. "branch-alias": {
  53. "dev-master": "3.0.x-dev"
  54. }
  55. }
  56. }