composer.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. "psr/log": "^1.0 || ^2.0 || ^3.0",
  21. "php": "^7.3 || ^8.0",
  22. "seld/cli-prompt": "^1.0"
  23. },
  24. "require-dev": {
  25. "phpunit/phpunit": "^9.5.10",
  26. "mockery/mockery": "^1.4.2",
  27. "mikey179/vfsstream": "^1.6.10"
  28. },
  29. "suggest": {
  30. "ext-mbstring": "If ext-mbstring is not available you MUST install symfony/polyfill-mbstring"
  31. },
  32. "autoload": {
  33. "psr-4": {
  34. "League\\CLImate\\": "src/"
  35. }
  36. },
  37. "autoload-dev": {
  38. "psr-4": {
  39. "League\\CLImate\\Tests\\": "tests/"
  40. }
  41. },
  42. "scripts": {
  43. "test": [
  44. "vendor/bin/phpunit",
  45. "@composer validate --strict"
  46. ]
  47. }
  48. }