scratch – Blame information for rev 87

Subversion Repositories:
Rev:
Rev Author Line No. Line
87 office 1 {
2 "name": "guzzlehttp/guzzle",
3 "type": "library",
4 "description": "Guzzle is a PHP HTTP client library and framework for building RESTful web service clients",
5 "keywords": ["framework", "http", "rest", "web service", "curl", "client", "HTTP client"],
6 "homepage": "http://guzzlephp.org/",
7 "license": "MIT",
8  
9 "authors": [
10 {
11 "name": "Michael Dowling",
12 "email": "mtdowling@gmail.com",
13 "homepage": "https://github.com/mtdowling"
14 }
15 ],
16  
17 "require": {
18 "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  
27 "autoload": {
28 "psr-4": {
29 "GuzzleHttp\\": "src/"
30 },
31 "files": ["src/functions.php"]
32 },
33 "autoload-dev": {
34 "psr-4": {
35 "GuzzleHttp\\Tests\\": "tests/"
36 }
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 }
49 }