composer.json 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. {
  2. "name": "yiisoft/yii2-app-basic",
  3. "description": "Yii 2 Basic Project Template",
  4. "keywords": ["yii2", "framework", "basic", "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": ">=5.6.0",
  18. "yiisoft/yii2": "~2.0.14",
  19. "yiisoft/yii2-bootstrap4": "~2.0.0",
  20. "yiisoft/yii2-swiftmailer": "~2.0.0 || ~2.1.0",
  21. "firebase/php-jwt": "^5.4",
  22. "ramsey/uuid": "^4.2",
  23. "phpoffice/phpspreadsheet": "^1.18",
  24. "mpdf/mpdf": "^8.0",
  25. "phpoffice/phpword": "^1.1"
  26. },
  27. "require-dev": {
  28. "yiisoft/yii2-debug": "~2.1.0",
  29. "yiisoft/yii2-gii": "~2.2.0",
  30. "yiisoft/yii2-faker": "~2.0.0",
  31. "codeception/codeception": "^4.0",
  32. "codeception/verify": "~0.5.0 || ~1.1.0",
  33. "codeception/specify": "~0.4.6",
  34. "symfony/browser-kit": ">=2.7 <=4.2.4",
  35. "codeception/module-filesystem": "^1.0.0",
  36. "codeception/module-yii2": "^1.0.0",
  37. "codeception/module-asserts": "^1.0.0"
  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. "scripts": {
  49. "post-install-cmd": [
  50. "yii\\composer\\Installer::postInstall"
  51. ],
  52. "post-create-project-cmd": [
  53. "yii\\composer\\Installer::postCreateProject",
  54. "yii\\composer\\Installer::postInstall"
  55. ]
  56. },
  57. "extra": {
  58. "yii\\composer\\Installer::postCreateProject": {
  59. "setPermission": [
  60. {
  61. "runtime": "0777",
  62. "web/assets": "0777",
  63. "yii": "0755"
  64. }
  65. ]
  66. },
  67. "yii\\composer\\Installer::postInstall": {
  68. "generateCookieValidationKey": [
  69. "config/web.php"
  70. ]
  71. }
  72. },
  73. "repositories": [
  74. {
  75. "type": "composer",
  76. "url": "https://asset-packagist.org"
  77. }
  78. ],
  79. "autoload": {
  80. "psr-4": {
  81. "common\\": "modules/common",
  82. "v1\\": "modules/v1",
  83. "pdf\\": "modules/pdf",
  84. "excel\\": "modules/excel"
  85. }
  86. }
  87. }