composer.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "feehi/cms",
  3. "description": "Feehi CMS Project Template",
  4. "keywords": ["feehicms", "yii2 cms", "cms", "php framework", "yii2 advanced", "project template", "feehi", "php", "php cms"],
  5. "homepage": "http://cms.feehi.com/",
  6. "type": "project",
  7. "license": "BSD-3-Clause",
  8. "support": {
  9. "issues": "https://github.com/liufee/cms/issues?state=open",
  10. "forum": "http://cms.feehi.com/",
  11. "wiki": "http://cms.feehi.com/help",
  12. "source": "https://github.com/feehi/cms"
  13. },
  14. "minimum-stability": "stable",
  15. "require": {
  16. "php": ">=5.4.0",
  17. "ext-json":"*",
  18. "ext-mbstring":"*",
  19. "yiisoft/yii2": ">=2.0.13",
  20. "yiisoft/yii2-bootstrap": "*",
  21. "yiisoft/yii2-swiftmailer": "*",
  22. "feehi/yii2-cdn" : "*",
  23. "yiisoft/yii2-imagine": "^2.1"
  24. },
  25. "require-dev": {
  26. "yiisoft/yii2-debug": "~2.0.0",
  27. "yiisoft/yii2-gii": "~2.0.0",
  28. "yiisoft/yii2-faker": "~2.0.0",
  29. "codeception/base": "^2.2.3",
  30. "codeception/verify": "~0.3.1",
  31. "guzzlehttp/guzzle": ">=4.1.4 <7.0"
  32. },
  33. "config": {
  34. "process-timeout": 1800
  35. },
  36. "extra": {
  37. "asset-installer-paths": {
  38. "npm-asset-library": "vendor/npm",
  39. "bower-asset-library": "vendor/bower"
  40. }
  41. },
  42. "scripts": {
  43. "download-upload-files" : [
  44. "@php yii feehi/download-upload-files"
  45. ]
  46. },
  47. "repositories": [
  48. {
  49. "type": "composer",
  50. "url": "https://mirrors.aliyun.com/composer/"
  51. },
  52. {
  53. "type": "composer",
  54. "url": "https://asset-packagist.org"
  55. }
  56. ]
  57. }