12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- {
- "name": "hyperf/guzzle",
- "description": "Swoole coroutine handler for guzzle",
- "type": "library",
- "license": "MIT",
- "keywords": [
- "php",
- "swoole",
- "guzzle",
- "handler"
- ],
- "require": {
- "php": ">=7.0",
- "guzzlehttp/guzzle": "^6.3|^7.0",
- "hyperf/utils": "~2.2.0",
- "psr/container": "^1.0|^2.0",
- "psr/http-message": "^1.0"
- },
- "suggest": {
- "hyperf/pool": "Required to use pool handler."
- },
- "autoload": {
- "psr-4": {
- "Hyperf\\Guzzle\\": "src/"
- }
- },
- "autoload-dev": {
- "psr-4": {
- "HyperfTest\\Guzzle\\": "tests/"
- }
- },
- "config": {
- "sort-packages": true
- },
- "extra": {
- "branch-alias": {
- "dev-master": "2.2-dev"
- },
- "hyperf": {
- "config": "Hyperf\\Guzzle\\ConfigProvider"
- }
- }
- }
|