-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (56 loc) · 1.48 KB
/
composer.json
File metadata and controls
56 lines (56 loc) · 1.48 KB
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
56
{
"name": "php-http/plugins",
"description": "Plugins for HTTPlug",
"license": "MIT",
"keywords": ["plugin", "http", "psr7"],
"homepage": "http://httplug.io",
"authors": [
{
"name": "Joel Wurtz",
"email": "joel.wurtz@gmail.com"
}
],
"require": {
"php": "^5.4 | ^7.0",
"php-http/httplug": "^1.0",
"php-http/message-factory": "^1.0.2",
"php-http/client-common": "^1.1",
"php-http/message": "^1.0",
"symfony/options-resolver": "^2.6|^3.0"
},
"require-dev": {
"symfony/stopwatch": "^2.3",
"phpspec/phpspec": "^2.4",
"henrikbjorn/phpspec-code-coverage" : "^1.0",
"psr/log": "^1.0",
"psr/cache": "^1.0"
},
"conflict": {
"psr/log": ">=2.0.0",
"psr/cache": ">=2.0.0"
},
"autoload": {
"psr-4": {
"Http\\Client\\Plugin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"spec\\Http\\Client\\Plugin\\": "spec/"
}
},
"suggest": {
"symfony/stopwatch": "Allow to use the StopwatchPlugin",
"psr/log-implementation": "Allow to use the LoggerPlugin",
"psr/cache-implementation": "Allow to use the CachePlugin"
},
"scripts": {
"test": "vendor/bin/phpspec run",
"test-ci": "vendor/bin/phpspec run -c phpspec.yml.ci"
},
"extra": {
"branch-alias": {
"dev-master": "1.2-dev"
}
}
}