composer.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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.1 || ^8",
  36. "ext-pdo": "*",
  37. "doctrine/cache": "^1.0",
  38. "doctrine/deprecations": "^0.5.3",
  39. "doctrine/event-manager": "^1.0"
  40. },
  41. "require-dev": {
  42. "doctrine/coding-standard": "8.2.0",
  43. "jetbrains/phpstorm-stubs": "2020.2",
  44. "phpstan/phpstan": "0.12.81",
  45. "phpunit/phpunit": "^7.5.20|^8.5|9.5.0",
  46. "squizlabs/php_codesniffer": "3.6.0",
  47. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  48. "vimeo/psalm": "4.6.4"
  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. },
  57. "autoload": {
  58. "psr-4": { "Doctrine\\DBAL\\": "lib/Doctrine/DBAL" }
  59. },
  60. "autoload-dev": {
  61. "psr-4": { "Doctrine\\Tests\\": "tests/Doctrine/Tests" }
  62. }
  63. }