composer.json 2.5 KB

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