composer.json 648 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "splitbrain/php-cli",
  3. "description": "Easy command line scripts for PHP with opt parsing and color output. No dependencies",
  4. "keywords": [
  5. "cli",
  6. "console",
  7. "terminal",
  8. "command line",
  9. "getopt",
  10. "optparse",
  11. "argparse"
  12. ],
  13. "license": "MIT",
  14. "authors": [
  15. {
  16. "name": "Andreas Gohr",
  17. "email": "andi@splitbrain.org"
  18. }
  19. ],
  20. "require": {
  21. "php": ">=5.3.0"
  22. },
  23. "suggest": {
  24. "psr/log": "Allows you to make the CLI available as PSR-3 logger"
  25. },
  26. "require-dev": {
  27. "phpunit/phpunit": "^8"
  28. },
  29. "autoload": {
  30. "psr-4": {
  31. "splitbrain\\phpcli\\": "src"
  32. }
  33. }
  34. }