composer.json 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. {
  2. "name": "phpmyadmin/phpmyadmin",
  3. "type": "project",
  4. "description": "MySQL web administration tool",
  5. "keywords": ["phpmyadmin","mysql","web"],
  6. "homepage": "https://www.phpmyadmin.net/",
  7. "support": {
  8. "forum": "https://www.phpmyadmin.net/support/",
  9. "issues": "https://github.com/phpmyadmin/phpmyadmin/issues",
  10. "wiki": "https://wiki.phpmyadmin.net/",
  11. "docs": "https://docs.phpmyadmin.net/",
  12. "source": "https://github.com/phpmyadmin/phpmyadmin"
  13. },
  14. "license": "GPL-2.0-only",
  15. "authors": [
  16. {
  17. "name": "The phpMyAdmin Team",
  18. "email": "developers@phpmyadmin.net",
  19. "homepage": "https://www.phpmyadmin.net/team/"
  20. }
  21. ],
  22. "non-feature-branches": ["RELEASE_.*"],
  23. "autoload": {
  24. "psr-4": {
  25. "PhpMyAdmin\\": "libraries/classes",
  26. "PhpMyAdmin\\Setup\\": "setup/lib"
  27. }
  28. },
  29. "autoload-dev": {
  30. "psr-4": {
  31. "PhpMyAdmin\\Tests\\": "test/classes",
  32. "PhpMyAdmin\\Tests\\Selenium\\": "test/selenium/"
  33. }
  34. },
  35. "repositories": [
  36. {
  37. "type": "composer",
  38. "url": "https://www.phpmyadmin.net"
  39. }
  40. ],
  41. "require": {
  42. "php": ">=5.5.0",
  43. "ext-mysqli": "*",
  44. "ext-xml": "*",
  45. "ext-pcre": "*",
  46. "ext-json": "*",
  47. "ext-ctype": "*",
  48. "ext-hash": "*",
  49. "phpmyadmin/sql-parser": "^4.3.2",
  50. "phpmyadmin/motranslator": "^4.0",
  51. "phpmyadmin/shapefile": "^2.0",
  52. "phpseclib/phpseclib": "^2.0",
  53. "google/recaptcha": "^1.1",
  54. "psr/container": "^1.0",
  55. "twig/twig": "^1.34 || ^2.0",
  56. "twig/extensions": "~1.5.1",
  57. "symfony/expression-language": "^3.2 || ^2.8",
  58. "symfony/polyfill-mbstring": "^1.3"
  59. },
  60. "conflict": {
  61. "phpseclib/phpseclib": "2.0.8",
  62. "tecnickcom/tcpdf": "<6.2",
  63. "pragmarx/google2fa": "<3.0.1",
  64. "bacon/bacon-qr-code": "<1.0",
  65. "samyoul/u2f-php-server": "<1.1"
  66. },
  67. "suggest": {
  68. "ext-openssl": "For encryption performance",
  69. "ext-curl": "Updates checking",
  70. "ext-opcache": "Better performance",
  71. "ext-zlib": "For gz import and export",
  72. "ext-bz2": "For bzip2 import and export",
  73. "ext-zip": "For zip import and export",
  74. "ext-gd2": "For image transformations",
  75. "ext-mbstring": "For best performance",
  76. "tecnickcom/tcpdf": "For PDF support",
  77. "pragmarx/google2fa": "For 2FA authentication",
  78. "bacon/bacon-qr-code": "For 2FA authentication",
  79. "samyoul/u2f-php-server": "For FIDO U2F authentication",
  80. "paragonie/sodium_compat": "For modern encryption support"
  81. },
  82. "require-dev": {
  83. "phpunit/phpunit": "^4.8.36 || ^5.7",
  84. "codacy/coverage": "^1.3.0",
  85. "phpunit/phpunit-selenium": "~1.2 || ^3.0",
  86. "squizlabs/php_codesniffer": "^3.0",
  87. "tecnickcom/tcpdf": "^6.3",
  88. "pragmarx/google2fa": "^3.0",
  89. "bacon/bacon-qr-code": "^1.0",
  90. "samyoul/u2f-php-server": "^1.1",
  91. "phpmyadmin/coding-standard": "^0.3",
  92. "paragonie/random_compat": ">=2",
  93. "paragonie/sodium_compat": "^1.17"
  94. },
  95. "extra": {
  96. "branch-alias": {
  97. "dev-master": "4.9.x-dev"
  98. }
  99. },
  100. "scripts": {
  101. "test": [
  102. "phpcs",
  103. "phpunit --color=always"
  104. ]
  105. },
  106. "config": {
  107. "allow-plugins": {
  108. "dealerdirect/phpcodesniffer-composer-installer": true,
  109. "phpstan/extension-installer": true,
  110. "composer/package-versions-deprecated": true
  111. }
  112. }
  113. }