composer.json 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "name": "yiisoft/yii2-debug",
  3. "description": "The debugger extension for the Yii framework",
  4. "keywords": [
  5. "yii2",
  6. "debug",
  7. "debugger",
  8. "dev"
  9. ],
  10. "type": "yii2-extension",
  11. "license": "BSD-3-Clause",
  12. "support": {
  13. "issues": "https://github.com/yiisoft/yii2-debug/issues",
  14. "forum": "https://www.yiiframework.com/forum/",
  15. "wiki": "https://www.yiiframework.com/wiki/",
  16. "irc": "ircs://irc.libera.chat:6697/yii",
  17. "source": "https://github.com/yiisoft/yii2-debug"
  18. },
  19. "authors": [
  20. {
  21. "name": "Qiang Xue",
  22. "email": "qiang.xue@gmail.com"
  23. },
  24. {
  25. "name": "Simon Karlen",
  26. "email": "simi.albi@outlook.com"
  27. }
  28. ],
  29. "minimum-stability": "dev",
  30. "require": {
  31. "php": ">=5.4",
  32. "ext-mbstring": "*",
  33. "yiisoft/yii2": "~2.0.13"
  34. },
  35. "require-dev": {
  36. "yiisoft/yii2-swiftmailer": "*",
  37. "yiisoft/yii2-coding-standards": "~2.0",
  38. "cweagans/composer-patches": "^1.7",
  39. "phpunit/phpunit": "4.8.34"
  40. },
  41. "autoload": {
  42. "psr-4": {
  43. "yii\\debug\\": "src"
  44. }
  45. },
  46. "autoload-dev": {
  47. "psr-4": {
  48. "yiiunit\\debug\\": "tests"
  49. }
  50. },
  51. "extra": {
  52. "branch-alias": {
  53. "dev-master": "2.0.x-dev"
  54. },
  55. "composer-exit-on-patch-failure": true,
  56. "patches": {
  57. "phpunit/phpunit-mock-objects": {
  58. "Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
  59. },
  60. "phpunit/phpunit": {
  61. "Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
  62. "Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch",
  63. "Fix PHP 8.1 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php81.patch"
  64. }
  65. }
  66. },
  67. "repositories": [
  68. {
  69. "type": "composer",
  70. "url": "https://asset-packagist.org"
  71. }
  72. ],
  73. "config": {
  74. "allow-plugins": {
  75. "cweagans/composer-patches": true,
  76. "yiisoft/yii2-composer": true
  77. }
  78. }
  79. }