composer.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "yiisoft/yii2-gii",
  3. "description": "The Gii extension for the Yii framework",
  4. "keywords": [
  5. "yii2",
  6. "gii",
  7. "code generator"
  8. ],
  9. "type": "yii2-extension",
  10. "license": "BSD-3-Clause",
  11. "support": {
  12. "issues": "https://github.com/yiisoft/yii2-gii/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-gii"
  17. },
  18. "authors": [
  19. {
  20. "name": "Qiang Xue",
  21. "email": "qiang.xue@gmail.com"
  22. }
  23. ],
  24. "minimum-stability": "dev",
  25. "require": {
  26. "yiisoft/yii2": "~2.0.14",
  27. "phpspec/php-diff": "^1.1.0"
  28. },
  29. "require-dev": {
  30. "yiisoft/yii2-coding-standards": "~2.0",
  31. "cweagans/composer-patches": "^1.7",
  32. "phpunit/phpunit": "4.8.34"
  33. },
  34. "autoload": {
  35. "psr-4": {
  36. "yii\\gii\\": "src"
  37. }
  38. },
  39. "autoload-dev": {
  40. "psr-4": {
  41. "yiiunit\\gii\\": "tests"
  42. }
  43. },
  44. "extra": {
  45. "branch-alias": {
  46. "dev-master": "2.0.x-dev"
  47. },
  48. "composer-exit-on-patch-failure": true,
  49. "patches": {
  50. "phpunit/phpunit-mock-objects": {
  51. "Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
  52. },
  53. "phpunit/phpunit": {
  54. "Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
  55. "Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch"
  56. }
  57. }
  58. },
  59. "config": {
  60. "process-timeout": 1800,
  61. "fxp-asset": {
  62. "enabled": false
  63. }
  64. },
  65. "repositories": [
  66. {
  67. "type": "composer",
  68. "url": "https://asset-packagist.org"
  69. }
  70. ]
  71. }