composer.json 531 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "michel/httpclient",
  3. "description": "A lightweight PHP HTTP client library without external dependencies. No need curl extension.",
  4. "type": "library",
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "Michel.F"
  9. }
  10. ],
  11. "autoload": {
  12. "psr-4": {
  13. "Michel\\HttpClient\\": "src",
  14. "Test\\Michel\\HttpClient\\": "tests"
  15. },
  16. "files": [
  17. "src/helpers.php"
  18. ]
  19. },
  20. "require": {
  21. "php": ">=7.4",
  22. "ext-json": "*"
  23. },
  24. "require-dev": {
  25. "michel/unitester": "^1.0.0"
  26. }
  27. }