composer.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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": "*",
  30. "tecnickcom/tcpdf": "^6.4",
  31. "ext-curl": "*",
  32. "smladeoye/yii2-paystack": "^1.0"
  33. },
  34. "require-dev": {
  35. "yiisoft/yii2-debug": "~2.0.0",
  36. "yiisoft/yii2-gii": "~2.0.0",
  37. "yiisoft/yii2-faker": "~2.0.0",
  38. "codeception/base": "^2.2.3",
  39. "codeception/verify": "~0.3.1"
  40. },
  41. "config": {
  42. "process-timeout": 1800,
  43. "fxp-asset": {
  44. "enabled": false
  45. },
  46. "allow-plugins": {
  47. "yiisoft/yii2-composer": true
  48. }
  49. },
  50. "autoload": {
  51. "files": [
  52. "common/helpers/LoggerTool.php"
  53. ]
  54. },
  55. "repositories": {
  56. "packagist": {
  57. "type": "composer",
  58. "url": "https://mirrors.cloud.tencent.com/composer/"
  59. }
  60. }
  61. }