composer.json 644 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "psr/http-client",
  3. "description": "Common interface for HTTP clients",
  4. "keywords": ["psr", "psr-18", "http", "http-client"],
  5. "homepage": "https://github.com/php-fig/http-client",
  6. "license": "MIT",
  7. "authors": [
  8. {
  9. "name": "PHP-FIG",
  10. "homepage": "https://www.php-fig.org/"
  11. }
  12. ],
  13. "require": {
  14. "php": "^7.0 || ^8.0",
  15. "psr/http-message": "^1.0 || ^2.0"
  16. },
  17. "autoload": {
  18. "psr-4": {
  19. "Psr\\Http\\Client\\": "src/"
  20. }
  21. },
  22. "extra": {
  23. "branch-alias": {
  24. "dev-master": "1.0.x-dev"
  25. }
  26. }
  27. }