composer.json 691 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "pixelfed/zttp",
  3. "description": "A developer-experience focused HTTP client, optimized for most common use cases.",
  4. "keywords": ["http", "guzzle"],
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "Adam Wathan",
  9. "email": "adam.wathan@gmail.com"
  10. }
  11. ],
  12. "require": {
  13. "php": ">=7.0",
  14. "guzzlehttp/guzzle": "^6.0|^7.0",
  15. "tightenco/collect": "^5.4"
  16. },
  17. "require-dev": {
  18. "phpunit/phpunit": "^6.0",
  19. "laravel/lumen-framework": "5.5.*"
  20. },
  21. "autoload": {
  22. "files": [
  23. "src/Zttp.php"
  24. ]
  25. },
  26. "scripts": {
  27. "test": "vendor/bin/phpunit"
  28. }
  29. }