composer.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {
  2. "name": "doctrine/migrations",
  3. "type": "library",
  4. "description": "PHP Doctrine Migrations project offer additional functionality on top of the database abstraction layer (DBAL) for versioning your database schema and easily deploying changes to it. It is a very easy to use and a powerful tool.",
  5. "keywords": [
  6. "database",
  7. "migrations",
  8. "dbal"
  9. ],
  10. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  11. "license": "MIT",
  12. "authors": [
  13. {
  14. "name": "Benjamin Eberlei",
  15. "email": "kontakt@beberlei.de"
  16. },
  17. {
  18. "name": "Jonathan Wage",
  19. "email": "jonwage@gmail.com"
  20. },
  21. {
  22. "name": "Michael Simonson",
  23. "email": "contact@mikesimonson.com"
  24. }
  25. ],
  26. "require": {
  27. "php": "^7.2 || ^8.0",
  28. "composer/package-versions-deprecated": "^1.8",
  29. "doctrine/dbal": "^2.10",
  30. "doctrine/event-manager": "^1.0",
  31. "friendsofphp/proxy-manager-lts": "^1.0",
  32. "psr/log": "^1.1.3",
  33. "symfony/console": "^3.4 || ^4.4.16 || ^5.0",
  34. "symfony/stopwatch": "^3.4 || ^4.0 || ^5.0"
  35. },
  36. "require-dev": {
  37. "ext-pdo_sqlite": "*",
  38. "doctrine/coding-standard": "^8.0",
  39. "doctrine/orm": "^2.6",
  40. "doctrine/persistence": "^1.3 || ^2.0",
  41. "doctrine/sql-formatter": "^1.0",
  42. "ergebnis/composer-normalize": "^2.9",
  43. "phpstan/phpstan": "^0.12",
  44. "phpstan/phpstan-deprecation-rules": "^0.12",
  45. "phpstan/phpstan-phpunit": "^0.12",
  46. "phpstan/phpstan-strict-rules": "^0.12",
  47. "phpstan/phpstan-symfony": "^0.12",
  48. "phpunit/phpunit": "^8.5 || ^9.4",
  49. "symfony/process": "^3.4 || ^4.0 || ^5.0",
  50. "symfony/yaml": "^3.4 || ^4.0 || ^5.0"
  51. },
  52. "suggest": {
  53. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  54. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  55. },
  56. "config": {
  57. "sort-packages": true
  58. },
  59. "extra": {
  60. "branch-alias": {
  61. "dev-master": "3.0.x-dev"
  62. },
  63. "composer-normalize": {
  64. "indent-size": 4,
  65. "indent-style": "space"
  66. }
  67. },
  68. "autoload": {
  69. "psr-4": {
  70. "Doctrine\\Migrations\\": "lib/Doctrine/Migrations"
  71. }
  72. },
  73. "autoload-dev": {
  74. "psr-4": {
  75. "Doctrine\\Migrations\\Tests\\": "tests/Doctrine/Migrations/Tests"
  76. }
  77. },
  78. "bin": [
  79. "bin/doctrine-migrations"
  80. ]
  81. }