composer.json 2.7 KB

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