composer.json 2.2 KB

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