forked from php-http/utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.23 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
{
"name": "php-http/utils",
"description": "HTTP Client utilities for HTTPlug",
"license": "MIT",
"keywords": ["http", "client", "httplug", "utils"],
"homepage": "http://httplug.io",
"authors": [
{
"name": "Márk Sági-Kazár",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4",
"php-http/httplug": "1.0.0-beta",
"php-http/message-factory": "^1.0.1"
},
"require-dev": {
"zendframework/zend-diactoros": "^1.0",
"guzzlehttp/psr7": "^1.0",
"phpspec/phpspec": "^2.4",
"henrikbjorn/phpspec-code-coverage" : "^1.0"
},
"suggest": {
"zendframework/zend-diactoros": "Used with Diactoros Factories",
"guzzlehttp/psr7": "Used with Guzzle PSR-7 Factories"
},
"autoload": {
"psr-4": {
"Http\\Client\\Utils\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"spec\\Http\\Client\\Utils\\": "spec/"
}
},
"scripts": {
"test": "vendor/bin/phpspec run",
"test-ci": "vendor/bin/phpspec run -c phpspec.yml.ci"
},
"extra": {
"branch-alias": {
"dev-master": "0.3-dev"
}
}
}