composer.json 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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": ">=7.2",
  18. "yiisoft/yii2": "~2.0.14",
  19. "yiisoft/yii2-bootstrap4": "^2.0",
  20. "yiisoft/yii2-swiftmailer": "~2.0.0 || ~2.1.0",
  21. "almasaeed2010/adminlte": "^3.0",
  22. "rmrevin/yii2-fontawesome": "^3.4",
  23. "kartik-v/yii2-widget-select2": "dev-master",
  24. "vlucas/phpdotenv": "^5.3",
  25. "dektrium/yii2-user": "^0.9.14",
  26. "udokmeci/yii2-phone-validator": "^1.0"
  27. },
  28. "require-dev": {
  29. "yiisoft/yii2-debug": "~2.1.0",
  30. "yiisoft/yii2-gii": "~2.1.0",
  31. "yiisoft/yii2-faker": "~2.0.0",
  32. "codeception/codeception": "^4.0",
  33. "codeception/verify": "~0.5.0 || ~1.1.0",
  34. "codeception/specify": "~0.4.6",
  35. "symfony/browser-kit": ">=2.7 <=4.2.4",
  36. "codeception/module-filesystem": "^1.0.0",
  37. "codeception/module-yii2": "^1.0.0",
  38. "codeception/module-asserts": "^1.0.0"
  39. },
  40. "config": {
  41. "process-timeout": 1800,
  42. "fxp-asset": {
  43. "enabled": false
  44. }
  45. },
  46. "scripts": {
  47. "post-install-cmd": [
  48. "yii\\composer\\Installer::postInstall"
  49. ],
  50. "post-create-project-cmd": [
  51. "yii\\composer\\Installer::postCreateProject",
  52. "yii\\composer\\Installer::postInstall"
  53. ]
  54. },
  55. "extra": {
  56. "yii\\composer\\Installer::postCreateProject": {
  57. "setPermission": [
  58. {
  59. "runtime": "0777",
  60. "web/assets": "0777",
  61. "yii": "0755"
  62. }
  63. ]
  64. },
  65. "yii\\composer\\Installer::postInstall": {
  66. "generateCookieValidationKey": [
  67. "config/web.php"
  68. ]
  69. }
  70. },
  71. "repositories": [
  72. {
  73. "type": "composer",
  74. "url": "https://asset-packagist.org"
  75. }
  76. ]
  77. }