composer.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. "opis/closure": "^3.3"
  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. }
  64. }
  65. },
  66. "repositories": [
  67. {
  68. "type": "composer",
  69. "url": "https://asset-packagist.org"
  70. }
  71. ]
  72. }