composer.json 2.2 KB

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