composer.json 2.5 KB

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