12345678910111213141516171819202122232425262728 |
- {
- "name": "kitetail/zttp",
- "description": "A super simple HTTP client that seems fine.",
- "keywords": ["http", "guzzle"],
- "license": "MIT",
- "authors": [
- {
- "name": "Adam Wathan",
- "email": "adam.wathan@gmail.com"
- }
- ],
- "require": {
- "php": ">=7.0",
- "guzzlehttp/guzzle": "^6.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^6.0"
- },
- "autoload": {
- "files": [
- "src/Zttp.php"
- ]
- },
- "scripts": {
- "test": "vendor/bin/phpunit"
- }
- }
|