~ballot/wordpress/openstack-objectstorage

« back to all changes in this revision

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

  • Committer: Benjamin Allot
  • Date: 2020-07-02 16:31:38 UTC
  • Revision ID: benjamin.allot@canonical.com-20200702163138-qyk6njanak5uw2pg
Revert to revno 3

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
{
2
 
    "name": "guzzlehttp/ringphp",
3
 
    "description": "Provides a simple API and specification that abstracts away the details of HTTP into a single PHP function.",
4
 
    "license": "MIT",
5
 
    "authors": [
6
 
        {
7
 
            "name": "Michael Dowling",
8
 
            "email": "mtdowling@gmail.com",
9
 
            "homepage": "https://github.com/mtdowling"
10
 
        }
11
 
    ],
12
 
    "require": {
13
 
        "php": ">=5.4.0",
14
 
        "guzzlehttp/streams": "~3.0",
15
 
        "react/promise": "~2.0"
16
 
    },
17
 
    "require-dev": {
18
 
        "ext-curl": "*",
19
 
        "phpunit/phpunit": "~4.0"
20
 
    },
21
 
    "suggest": {
22
 
        "ext-curl": "Guzzle will use specific adapters if cURL is present"
23
 
    },
24
 
    "autoload": {
25
 
        "psr-4": {
26
 
            "GuzzleHttp\\Ring\\": "src/"
27
 
        }
28
 
    },
29
 
    "autoload-dev": {
30
 
        "psr-4": {
31
 
            "GuzzleHttp\\Tests\\Ring\\": "tests/"
32
 
        }
33
 
    },
34
 
    "scripts": {
35
 
        "test": "make test",
36
 
        "test-ci": "make coverage"
37
 
    },
38
 
    "extra": {
39
 
        "branch-alias": {
40
 
            "dev-master": "1.1-dev"
41
 
        }
42
 
    }
43
 
}