composer.json 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. "mpdf/mpdf": "^8.0",
  24. "phpoffice/phpspreadsheet": "^1.18"
  25. },
  26. "require-dev": {
  27. "yiisoft/yii2-debug": "~2.1.0",
  28. "yiisoft/yii2-gii": "~2.2.0",
  29. "yiisoft/yii2-faker": "~2.0.0",
  30. "codeception/codeception": "^4.0",
  31. "codeception/verify": "~0.5.0 || ~1.1.0",
  32. "codeception/specify": "~0.4.6",
  33. "symfony/browser-kit": ">=2.7 <=4.2.4",
  34. "codeception/module-filesystem": "^1.0.0",
  35. "codeception/module-yii2": "^1.0.0",
  36. "codeception/module-asserts": "^1.0.0"
  37. },
  38. "config": {
  39. "process-timeout": 1800,
  40. "fxp-asset": {
  41. "enabled": false
  42. },
  43. "allow-plugins": {
  44. "yiisoft/yii2-composer": true
  45. }
  46. },
  47. "scripts": {
  48. "post-install-cmd": [
  49. "yii\\composer\\Installer::postInstall"
  50. ],
  51. "post-create-project-cmd": [
  52. "yii\\composer\\Installer::postCreateProject",
  53. "yii\\composer\\Installer::postInstall"
  54. ]
  55. },
  56. "extra": {
  57. "yii\\composer\\Installer::postCreateProject": {
  58. "setPermission": [
  59. {
  60. "runtime": "0777",
  61. "web/assets": "0777",
  62. "yii": "0755"
  63. }
  64. ]
  65. },
  66. "yii\\composer\\Installer::postInstall": {
  67. "generateCookieValidationKey": [
  68. "config/web.php"
  69. ]
  70. }
  71. },
  72. "repositories": [
  73. {
  74. "type": "composer",
  75. "url": "https://asset-packagist.org"
  76. }
  77. ],
  78. "autoload": {
  79. "psr-4": {
  80. "common\\": "modules/common",
  81. "v1\\": "modules/v1",
  82. "pdf\\": "modules/pdf",
  83. "excel\\": "modules/excel"
  84. }
  85. }
  86. }