composer.json 617 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "smusatov/cli",
  3. "description": "Helper for output formatted text in console",
  4. "keywords": [
  5. "php",
  6. "cli",
  7. "terminal",
  8. "console",
  9. "text",
  10. "output",
  11. "formatted",
  12. "colors"
  13. ],
  14. "homepage": "https://gogs.zikk.ru/smusatov/cli",
  15. "support": {
  16. "source": "https://gogs.zikk.ru/smusatov/cli"
  17. },
  18. "license": "MIT",
  19. "authors": [
  20. {
  21. "name": "Sergey Musatov",
  22. "email": "akapulse@yandex.ru",
  23. "role": "Developer"
  24. }
  25. ],
  26. "require": {
  27. "php": "^7.1",
  28. "ext-mbstring": "*"
  29. },
  30. "autoload": {
  31. "psr-4": {
  32. "cli\\": "src/"
  33. }
  34. }
  35. }