composer.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "name": "doctrine/dbal",
  3. "type": "library",
  4. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  5. "keywords": [
  6. "abstraction",
  7. "database",
  8. "dbal",
  9. "db2",
  10. "mariadb",
  11. "mssql",
  12. "mysql",
  13. "pgsql",
  14. "postgresql",
  15. "oci8",
  16. "oracle",
  17. "pdo",
  18. "queryobject",
  19. "sasql",
  20. "sql",
  21. "sqlanywhere",
  22. "sqlite",
  23. "sqlserver",
  24. "sqlsrv"
  25. ],
  26. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  27. "license": "MIT",
  28. "authors": [
  29. {"name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com"},
  30. {"name": "Roman Borschel", "email": "roman@code-factory.org"},
  31. {"name": "Benjamin Eberlei", "email": "kontakt@beberlei.de"},
  32. {"name": "Jonathan Wage", "email": "jonwage@gmail.com"}
  33. ],
  34. "require": {
  35. "php": "^7.2",
  36. "ext-pdo": "*",
  37. "doctrine/cache": "^1.0",
  38. "doctrine/event-manager": "^1.0"
  39. },
  40. "require-dev": {
  41. "doctrine/coding-standard": "^8.1",
  42. "jetbrains/phpstorm-stubs": "^2019.1",
  43. "nikic/php-parser": "^4.4",
  44. "phpstan/phpstan": "^0.12.40",
  45. "phpunit/phpunit": "^8.5.5",
  46. "psalm/plugin-phpunit": "^0.10.0",
  47. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  48. "vimeo/psalm": "^3.14.2"
  49. },
  50. "suggest": {
  51. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  52. },
  53. "bin": ["bin/doctrine-dbal"],
  54. "config": {
  55. "sort-packages": true,
  56. "platform": {
  57. "php": "7.2.0"
  58. }
  59. },
  60. "autoload": {
  61. "psr-4": { "Doctrine\\DBAL\\": "lib/Doctrine/DBAL" }
  62. },
  63. "autoload-dev": {
  64. "psr-4": { "Doctrine\\Tests\\": "tests/Doctrine/Tests" }
  65. },
  66. "extra": {
  67. "branch-alias": {
  68. "dev-master": "2.10.x-dev",
  69. "dev-develop": "3.0.x-dev"
  70. }
  71. }
  72. }