-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 944 Bytes
/
composer.json
File metadata and controls
39 lines (39 loc) · 944 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "matricali/http-client",
"description": "A wrapper of libcurl that implements PSR-7 HTTP message interface.",
"type": "library",
"keywords": ["http", "client", "psr7", "curl", "wrapper"],
"provide": {
"php-http/client-implementation": "1.0"
},
"require": {
"php": ">=5.4.0",
"ext-curl": "*",
"psr/http-message": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"squizlabs/php_codesniffer": "~1.5",
"satooshi/php-coveralls": "~1.0"
},
"autoload": {
"psr-4": {
"Matricali\\Http\\": "src/"
}
},
"license": "MIT",
"authors": [
{
"name": "Jorge Matricali",
"email": "jorgematricali@gmail.com"
},
{
"name": "Gabriel Polverini",
"email": "polverini.gabriel@gmail.com"
}
],
"support": {
"issues": "https://github.com/matricali/php-http-client/issues",
"source": "https://github.com/matricali/php-http-client"
}
}