composer.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "yiisoft/yii2-app-advanced",
  3. "description": "Yii 2 Advanced Project Template",
  4. "keywords": ["yii2", "framework", "advanced", "project template"],
  5. "homepage": "http://www.yiiframework.com/",
  6. "type": "project",
  7. "license": "BSD-3-Clause",
  8. "support": {
  9. "issues": "https://github.com/yiisoft/yii2/issues?state=open",
  10. "forum": "http://www.yiiframework.com/forum/",
  11. "wiki": "http://www.yiiframework.com/wiki/",
  12. "irc": "irc://irc.freenode.net/yii",
  13. "source": "https://github.com/yiisoft/yii2"
  14. },
  15. "minimum-stability": "stable",
  16. "require": {
  17. "php": ">=7.2.0",
  18. "yiisoft/yii2": "~2.0.15",
  19. "yiisoft/yii2-bootstrap": "~2.0.0",
  20. "yiisoft/yii2-swiftmailer": "~2.0.0 || ~2.1.0",
  21. "yiisoft/yii2-httpclient": "^2.0",
  22. "sunmoon/yii2-phpspreadsheet": "^1.2.0",
  23. "anlity/yii2-swoole-async-timer": "^0.9.1",
  24. "yiisoft/yii2-mongodb": "^2.1",
  25. "godruoyi/php-snowflake": "^1.0",
  26. "yiisoft/yii2-redis": "^2.0",
  27. "ext-pdo": "*",
  28. "ext-json": "*",
  29. "monolog/monolog": "^2.4",
  30. "tecnickcom/tcpdf": "^6.4"
  31. },
  32. "require-dev": {
  33. "yiisoft/yii2-debug": "~2.0.0",
  34. "yiisoft/yii2-gii": "~2.0.0",
  35. "yiisoft/yii2-faker": "~2.0.0",
  36. "codeception/base": "^2.2.3",
  37. "codeception/verify": "~0.3.1"
  38. },
  39. "config": {
  40. "process-timeout": 1800,
  41. "fxp-asset": {
  42. "enabled": false
  43. },
  44. "allow-plugins": {
  45. "yiisoft/yii2-composer": true
  46. }
  47. },
  48. "autoload": {
  49. "files": [
  50. "common/helpers/LoggerTool.php",
  51. "common/helpers/Constant.php"
  52. ]
  53. },
  54. "repositories": {
  55. "packagist": {
  56. "type": "composer",
  57. "url": "https://mirrors.aliyun.com/composer/"
  58. }
  59. }
  60. }