composer.json 568 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "kitetail/zttp",
  3. "description": "A super simple HTTP client that seems fine.",
  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"
  15. },
  16. "require-dev": {
  17. "phpunit/phpunit": "^6.0"
  18. },
  19. "autoload": {
  20. "files": [
  21. "src/Zttp.php"
  22. ]
  23. },
  24. "scripts": {
  25. "test": "vendor/bin/phpunit"
  26. }
  27. }