composer.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "yiisoft/yii2-coding-standards",
  3. "description": "Yii PHP Framework Version 2 - Coding standard tools",
  4. "keywords": ["yii", "framework", "codesniffer"],
  5. "homepage": "https://www.yiiframework.com/",
  6. "license": "BSD-3-Clause",
  7. "type": "phpcodesniffer-standard",
  8. "authors": [
  9. {
  10. "name": "Qiang Xue",
  11. "email": "qiang.xue@gmail.com",
  12. "homepage": "https://www.yiiframework.com/",
  13. "role": "Founder and project lead"
  14. },
  15. {
  16. "name": "Alexander Makarov",
  17. "email": "sam@rmcreative.ru",
  18. "homepage": "https://rmcreative.ru/",
  19. "role": "Core framework development"
  20. },
  21. {
  22. "name": "Maurizio Domba",
  23. "homepage": "https://mdomba.info/",
  24. "role": "Core framework development"
  25. },
  26. {
  27. "name": "Carsten Brandt",
  28. "email": "mail@cebe.cc",
  29. "homepage": "https://cebe.cc/",
  30. "role": "Core framework development"
  31. },
  32. {
  33. "name": "Timur Ruziev",
  34. "email": "resurtm@gmail.com",
  35. "homepage": "https://resurtm.com/",
  36. "role": "Core framework development"
  37. },
  38. {
  39. "name": "Paul Klimov",
  40. "email": "klimov.paul@gmail.com",
  41. "role": "Core framework development"
  42. }
  43. ],
  44. "support": {
  45. "issues": "https://github.com/yiisoft/yii2/issues?state=open",
  46. "forum": "https://www.yiiframework.com/forum/",
  47. "wiki": "https://www.yiiframework.com/wiki/",
  48. "irc": "ircs://irc.libera.chat:6697/yii",
  49. "source": "https://github.com/yiisoft/yii2"
  50. },
  51. "require": {
  52. "php": ">=5.4.0",
  53. "squizlabs/php_codesniffer": ">=3.2"
  54. },
  55. "autoload": {
  56. "psr-4": {
  57. "yii\\console\\controllers\\": "src/console/controllers/"
  58. }
  59. }
  60. }