composer.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "yiisoft/yii2",
  3. "description": "Yii PHP Framework Version 2",
  4. "keywords": ["yii", "framework"],
  5. "homepage": "http://www.yiiframework.com/",
  6. "type": "library",
  7. "license": "BSD-3-Clause",
  8. "authors": [
  9. {
  10. "name": "Qiang Xue",
  11. "email": "[email protected]",
  12. "homepage": "http://www.yiiframework.com/",
  13. "role": "Founder and project lead"
  14. },
  15. {
  16. "name": "Alexander Makarov",
  17. "email": "[email protected]",
  18. "homepage": "http://rmcreative.ru/",
  19. "role": "Core framework development"
  20. },
  21. {
  22. "name": "Maurizio Domba",
  23. "homepage": "http://mdomba.info/",
  24. "role": "Core framework development"
  25. },
  26. {
  27. "name": "Carsten Brandt",
  28. "email": "[email protected]",
  29. "homepage": "http://cebe.cc/",
  30. "role": "Core framework development"
  31. },
  32. {
  33. "name": "Timur Ruziev",
  34. "email": "[email protected]",
  35. "homepage": "http://resurtm.com/",
  36. "role": "Core framework development"
  37. },
  38. {
  39. "name": "Paul Klimov",
  40. "email": "[email protected]",
  41. "role": "Core framework development"
  42. }
  43. ],
  44. "support": {
  45. "issues": "https://github.com/yiisoft/yii2/issues?state=open",
  46. "forum": "http://www.yiiframework.com/forum/",
  47. "wiki": "http://www.yiiframework.com/wiki/",
  48. "irc": "irc://irc.freenode.net/yii",
  49. "source": "https://github.com/yiisoft/yii2"
  50. },
  51. "require": {
  52. "php": ">=5.4.0",
  53. "ext-mbstring": "*",
  54. "lib-pcre": "*",
  55. "yiisoft/yii2-composer": "*",
  56. "yiisoft/jquery": "2.0.*",
  57. "phpspec/php-diff": ">=1.0.2",
  58. "ezyang/htmlpurifier": "4.6.*",
  59. "michelf/php-markdown": "1.3.*"
  60. },
  61. "autoload": {
  62. "psr-4": { "yii\\": "" }
  63. }
  64. }