composer.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. "dcb9/yii2-phpredis": "1.1",
  22. "yiisoft/yii2-httpclient": "^2.0",
  23. "sunmoon/yii2-phpspreadsheet": "^1.2.0",
  24. "anlity/yii2-swoole-async-timer": "^0.9.1",
  25. "yiisoft/yii2-mongodb": "^2.1",
  26. "godruoyi/php-snowflake": "^1.0"
  27. },
  28. "require-dev": {
  29. "yiisoft/yii2-debug": "~2.0.0",
  30. "yiisoft/yii2-gii": "~2.0.0",
  31. "yiisoft/yii2-faker": "~2.0.0",
  32. "codeception/base": "^2.2.3",
  33. "codeception/verify": "~0.3.1"
  34. },
  35. "config": {
  36. "process-timeout": 1800,
  37. "fxp-asset": {
  38. "enabled": false
  39. }
  40. },
  41. "repositories": {
  42. "packagist": {
  43. "type": "composer",
  44. "url": "https://mirrors.aliyun.com/composer/"
  45. }
  46. }
  47. }