-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathcomposer.json
42 lines (42 loc) · 1.05 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
{
"name": "php-http/mock-client",
"description": "Mock HTTP client",
"license": "MIT",
"keywords": ["http", "client", "psr7", "mock"],
"homepage": "http://httplug.io",
"authors": [
{
"name": "David de Boer",
"email": "david@ddeboer.nl"
}
],
"require": {
"php": "^5.5 || ^7.0",
"php-http/httplug": "^1.0",
"php-http/client-common": "^1.0",
"php-http/discovery": "^1.0",
"php-http/message-factory": "^1.0"
},
"require-dev": {
"phpspec/phpspec": "^2.4",
"henrikbjorn/phpspec-code-coverage" : "^1.0"
},
"provide": {
"php-http/async-client-implementation": "1.0",
"php-http/client-implementation": "1.0"
},
"autoload": {
"psr-4": {
"Http\\Mock\\": "src/"
}
},
"scripts": {
"test": "vendor/bin/phpspec run",
"test-ci": "vendor/bin/phpspec run -c phpspec.ci.yml"
},
"extra": {
"branch-alias": {
"dev-master": "0.4-dev"
}
}
}