composer.json 546 B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "michel/console",
  3. "description": "A lightweight PHP library designed to simplify command handling in console applications.",
  4. "type": "package",
  5. "autoload": {
  6. "psr-4": {
  7. "Michel\\Console\\": "src",
  8. "Test\\Michel\\Console\\": "tests"
  9. }
  10. },
  11. "require": {
  12. "php": ">=7.4",
  13. "ext-mbstring": "*",
  14. "ext-json": "*",
  15. "ext-ctype": "*"
  16. },
  17. "require-dev": {
  18. "michel/unitester": "^1.0.0"
  19. },
  20. "license": "MIT",
  21. "authors": [
  22. {
  23. "name": "F. Michel"
  24. }
  25. ]
  26. }