composer.json 2.5 KB

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