composer.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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|^8.0",
  24. "symfony/framework-bundle": "~3.4|~4.0|~5.0",
  25. "doctrine/doctrine-bundle": "~1.0|~2.0",
  26. "doctrine/migrations": "^3.1"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^7.0|^8.0|^9.0",
  30. "doctrine/coding-standard": "^8.0",
  31. "phpstan/phpstan": "^0.12",
  32. "phpstan/phpstan-deprecation-rules": "^0.12",
  33. "phpstan/phpstan-phpunit": "^0.12",
  34. "phpstan/phpstan-strict-rules": "^0.12",
  35. "doctrine/orm": "^2.6",
  36. "doctrine/persistence": "^1.3||^2.0"
  37. },
  38. "autoload": {
  39. "psr-4": { "Doctrine\\Bundle\\MigrationsBundle\\": "" },
  40. "exclude-from-classmap": [
  41. "/Tests/"
  42. ]
  43. },
  44. "autoload-dev": {
  45. "psr-4": { "Doctrine\\Bundle\\MigrationsBundle\\Tests\\": "Tests" }
  46. }
  47. }