~tcuthbert/wordpress/openstack-objectstorage-k8s

« back to all changes in this revision

Viewing changes to vendor/guzzlehttp/guzzle/composer.json

  • Committer: Thomas Cuthbert
  • Date: 2020-04-23 05:22:45 UTC
  • Revision ID: thomas.cuthbert@canonical.com-20200423052245-1jxao3mw31w435js
[,r=trivial] bionic composer vendor update

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
    "keywords": ["framework", "http", "rest", "web service", "curl", "client", "HTTP client"],
6
6
    "homepage": "http://guzzlephp.org/",
7
7
    "license": "MIT",
8
 
 
9
8
    "authors": [
10
9
        {
11
10
            "name": "Michael Dowling",
13
12
            "homepage": "https://github.com/mtdowling"
14
13
        }
15
14
    ],
16
 
 
17
15
    "require": {
18
16
        "php": ">=5.4.0",
19
 
        "ext-json": "*",
20
 
        "guzzlehttp/streams": "~2.1"
21
 
    },
22
 
 
23
 
    "suggest": {
24
 
        "ext-curl": "Guzzle will use specific adapters if cURL is present"
25
 
    },
26
 
 
 
17
        "guzzlehttp/ringphp": "^1.1"
 
18
    },
 
19
    "require-dev": {
 
20
        "ext-curl": "*",
 
21
        "phpunit/phpunit": "^4.0"
 
22
    },
27
23
    "autoload": {
28
24
        "psr-4": {
29
25
            "GuzzleHttp\\": "src/"
30
 
        },
31
 
        "files": ["src/functions.php"]
 
26
        }
32
27
    },
33
28
    "autoload-dev": {
34
29
        "psr-4": {
35
30
            "GuzzleHttp\\Tests\\": "tests/"
36
31
        }
37
 
    },
38
 
    "require-dev": {
39
 
        "ext-curl": "*",
40
 
        "psr/log": "~1.0",
41
 
        "phpunit/phpunit": "~4.0"
42
 
    },
43
 
 
44
 
    "extra": {
45
 
        "branch-alias": {
46
 
            "dev-master": "4.2-dev"
47
 
        }
48
32
    }
49
33
}