composer.json 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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": "dev",
  16. "prefer-stable": true,
  17. "require": {
  18. "php": ">=5.6.0",
  19. "yiisoft/yii2": "~2.0.14",
  20. "yiisoft/yii2-bootstrap4": "~2.0.0",
  21. "yiisoft/yii2-jui": "~2.0.0",
  22. "yiisoft/yii2-swiftmailer": "~2.0.0 || ~2.1.0",
  23. "dektrium/yii2-user": "^0.9.14",
  24. "dektrium/yii2-rbac": "1.0.0-alpha@dev",
  25. "hail812/yii2-adminlte3": "~1.1",
  26. "kartik-v/yii2-widget-datetimepicker": "*",
  27. "yiisoft/yii2-sphinx": "~2.0.0",
  28. "alexandernst/yii2-device-detect": "^0.0.12",
  29. "zxbodya/yii2-gallery-manager": "*@dev",
  30. "magyarandras/amp-converter": "^1.0",
  31. "2amigos/yii2-file-upload-widget": "~1.0"
  32. },
  33. "require-dev": {
  34. "yiisoft/yii2-debug": "~2.1.0",
  35. "yiisoft/yii2-gii": "~2.2.0",
  36. "yiisoft/yii2-faker": "~2.0.0",
  37. "codeception/codeception": "^4.0",
  38. "codeception/verify": "~0.5.0 || ~1.1.0",
  39. "codeception/specify": "~0.4.6",
  40. "symfony/browser-kit": ">=2.7 <=4.2.4",
  41. "codeception/module-filesystem": "^1.0.0",
  42. "codeception/module-yii2": "^1.0.0",
  43. "codeception/module-asserts": "^1.0.0",
  44. "insolita/yii2-migration-generator": "~3.1"
  45. },
  46. "config": {
  47. "process-timeout": 1800,
  48. "fxp-asset": {
  49. "enabled": false
  50. },
  51. "allow-plugins": {
  52. "yiisoft/yii2-composer": true
  53. }
  54. },
  55. "scripts": {
  56. "post-install-cmd": [
  57. "yii\\composer\\Installer::postInstall"
  58. ],
  59. "post-create-project-cmd": [
  60. "yii\\composer\\Installer::postCreateProject",
  61. "yii\\composer\\Installer::postInstall"
  62. ]
  63. },
  64. "extra": {
  65. "yii\\composer\\Installer::postCreateProject": {
  66. "setPermission": [
  67. {
  68. "runtime": "0777",
  69. "web/assets": "0777",
  70. "yii": "0755"
  71. }
  72. ]
  73. },
  74. "yii\\composer\\Installer::postInstall": {
  75. "generateCookieValidationKey": [
  76. "config/web.php"
  77. ]
  78. }
  79. },
  80. "repositories": [
  81. {
  82. "type": "composer",
  83. "url": "https://asset-packagist.org"
  84. }
  85. ]
  86. }