Subversion Repositories cheapmusic

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
103 - 1
{
2
    "name": "guzzlehttp/guzzle",
3
    "type": "library",
4
    "description": "Guzzle is a PHP HTTP client library",
5
    "keywords": ["framework", "http", "rest", "web service", "curl", "client", "HTTP client"],
6
    "homepage": "http://guzzlephp.org/",
7
    "license": "MIT",
8
    "authors": [
9
        {
10
            "name": "Michael Dowling",
11
            "email": "mtdowling@gmail.com",
12
            "homepage": "https://github.com/mtdowling"
13
        }
14
    ],
15
    "require": {
16
        "php": ">=5.5",
17
        "guzzlehttp/psr7": "^1.4",
18
        "guzzlehttp/promises": "^1.0"
19
    },
20
    "require-dev": {
21
        "ext-curl": "*",
22
        "phpunit/phpunit": "^4.0",
23
        "psr/log": "^1.0"
24
    },
25
    "autoload": {
26
        "files": ["src/functions_include.php"],
27
        "psr-4": {
28
            "GuzzleHttp\\": "src/"
29
        }
30
    },
31
    "autoload-dev": {
32
        "psr-4": {
33
            "GuzzleHttp\\Tests\\": "tests/"
34
        }
35
    },
36
    "extra": {
37
        "branch-alias": {
38
            "dev-master": "6.2-dev"
39
        }
40
    }
41
}