composer.json 2.2 KB

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