composer.json 964 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "yiisoft/yii2-app-basic",
  3. "description": "Yii 2 Basic Application Template",
  4. "keywords": ["yii", "framework", "basic", "application 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": "dev",
  16. "repositories": [
  17. {
  18. "type": "pear",
  19. "url": "http://pear.horde.org"
  20. }
  21. ],
  22. "require": {
  23. "php": ">=5.3.0",
  24. "yiisoft/yii2": "dev-master",
  25. "yiisoft/yii2-composer": "dev-master"
  26. },
  27. "scripts": {
  28. "post-create-project-cmd": [
  29. "yii\\composer\\InstallHandler::setPermissions"
  30. ]
  31. },
  32. "extra": {
  33. "yii-install-writable": [
  34. "runtime",
  35. "web/assets"
  36. ],
  37. "yii-install-executable": [
  38. "yii"
  39. ]
  40. }
  41. }