composer.json 2.2 KB

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