composer.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. "allow-plugins": {
  40. "yiisoft/yii2-composer": true
  41. }
  42. },
  43. "scripts": {
  44. "post-install-cmd": [
  45. "yii\\composer\\Installer::postInstall"
  46. ],
  47. "post-create-project-cmd": [
  48. "yii\\composer\\Installer::postCreateProject",
  49. "yii\\composer\\Installer::postInstall"
  50. ]
  51. },
  52. "extra": {
  53. "yii\\composer\\Installer::postCreateProject": {
  54. "setPermission": [
  55. {
  56. "runtime": "0777",
  57. "web/assets": "0777",
  58. "yii": "0755"
  59. }
  60. ]
  61. },
  62. "yii\\composer\\Installer::postInstall": {
  63. "generateCookieValidationKey": [
  64. "config/web.php"
  65. ]
  66. }
  67. },
  68. "repositories": [
  69. {
  70. "type": "composer",
  71. "url": "https://asset-packagist.org"
  72. }
  73. ]
  74. }