composer.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "league/climate",
  3. "description": "PHP's best friend for the terminal. CLImate allows you to easily output colored text, special formats, and more.",
  4. "keywords": ["cli","php", "terminal", "command", "colors"],
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "Joe Tannenbaum",
  9. "email": "hey@joe.codes",
  10. "homepage": "http://joe.codes/",
  11. "role": "Developer"
  12. }, {
  13. "name": "Craig Duncan",
  14. "email": "git@duncanc.co.uk",
  15. "homepage": "https://github.com/duncan3dc",
  16. "role": "Developer"
  17. }
  18. ],
  19. "require": {
  20. "php": "^5.6|^7.0",
  21. "seld/cli-prompt": "^1.0"
  22. },
  23. "require-dev": {
  24. "phpunit/phpunit": "^5.7.16",
  25. "mockery/mockery": "^1.0",
  26. "mikey179/vfsStream": "^1.4"
  27. },
  28. "suggest": {
  29. "ext-mbstring": "If ext-mbstring is not available you MUST install symfony/polyfill-mbstring"
  30. },
  31. "autoload": {
  32. "psr-4": {
  33. "League\\CLImate\\": "src/"
  34. }
  35. },
  36. "autoload-dev": {
  37. "psr-4": {
  38. "League\\CLImate\\Tests\\": "tests/"
  39. }
  40. },
  41. "scripts": {
  42. "test": "phpunit"
  43. }
  44. }