forked from kriswallsmith/Buzz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.46 KB
/
composer.json
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "kriswallsmith/buzz",
"description": "Lightweight HTTP client",
"keywords": ["http client", "curl"],
"homepage": "https://github.com/kriswallsmith/Buzz",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Kris Wallsmith",
"email": "[email protected]",
"homepage": "http://kriswallsmith.net/"
},
{
"name": "Tobias Nyholm",
"email": "[email protected]",
"homepage": "http://tnyholm.se/"
}
],
"require": {
"php": "^7.1",
"psr/http-message": "^1.0",
"psr/http-client": "^0.1",
"php-http/httplug": "^1.1",
"nyholm/psr7": "^0.3",
"symfony/options-resolver": "^3.4 || ^4.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.11",
"php-http/client-integration-tests": "^0.6.2",
"phpunit/phpunit": "^6.5.7",
"psr/log": "^1.0",
"symfony/phpunit-bridge": "^4.0"
},
"provide": {
"php-http/client-implementation": "1.0"
},
"suggest": {
"ext-curl": "*"
},
"autoload": {
"psr-4": {
"Buzz\\": "lib"
}
},
"autoload-dev": {
"psr-4": {
"Buzz\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/simple-phpunit",
"test-ci": "vendor/bin/simple-phpunit --coverage-text --coverage-clover=build/coverage.xml"
}
}