composer.json 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. },
  27. "require-dev": {
  28. "yiisoft/yii2-debug": "~2.1.0",
  29. "yiisoft/yii2-gii": "~2.1.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. },
  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. }