Skip to content

Commit 9dd8b96

Browse files
committed
First version.
1 parent d889b84 commit 9dd8b96

9 files changed

+2007
-0
lines changed

composer.json

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
{
2+
"name": "php-http/curl-client",
3+
"description": "cURL client for PHP-HTTP",
4+
"license": "MIT",
5+
"keywords": ["http", "curl"],
6+
"homepage": "http://php-http.org",
7+
"authors": [
8+
{
9+
"name": "Михаил Красильников",
10+
"email": "[email protected]"
11+
}
12+
],
13+
"require": {
14+
"php": ">=5.5",
15+
"ext-curl": "*",
16+
"php-http/httplug": "^1.0",
17+
"php-http/message-factory": "^0.2"
18+
},
19+
"require-dev": {
20+
"guzzlehttp/psr7": "^1.0",
21+
"php-http/adapter-integration-tests": "^0.2",
22+
"zendframework/zend-diactoros": "^1.0"
23+
},
24+
"autoload": {
25+
"psr-4": {
26+
"Http\\Curl\\": "src/"
27+
}
28+
},
29+
"autoload-dev": {
30+
"psr-4": {
31+
"Http\\Curl\\Tests\\": "tests/"
32+
}
33+
},
34+
"extra": {
35+
"branch-alias": {
36+
"dev-master": "0.1-dev"
37+
}
38+
},
39+
"provide": {
40+
"php-http/client-implementation": "1.0"
41+
},
42+
"scripts": {
43+
"test": "vendor/bin/phpunit",
44+
"test-ci": "vendor/bin/phpunit --coverage-clover build/coverage.xml"
45+
},
46+
"prefer-stable": true,
47+
"minimum-stability": "dev"
48+
}

0 commit comments

Comments
 (0)