forked from shrikeh/guzzle-middleware-responsetimer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.37 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
{
"name": "shrikeh/guzzle-middleware-response-timer",
"description": "Measure response times in milliseconds over synchronous or asynchronous connections",
"type": "library",
"keywords": ["guzzle", "middleware", "response times"],
"license": "MIT",
"authors": [
{
"name": "Barney Hanlon",
"email": "[email protected]"
}
],
"require-dev": {
"blackfire/php-sdk": "^1.11",
"codeception/codeception": "^2.3",
"escapestudios/symfony2-coding-standard": "^3.0",
"friendsofphp/php-cs-fixer": "^2.6",
"mcustiel/phiremock-codeception-extension": "^1.4",
"monolog/monolog": "^1.23",
"phpspec/phpspec": "^3.4",
"phpunit/phpunit": "^5.7",
"pimple/pimple": "^3.2",
"shrikeh/teapot": "^2.3",
"squizlabs/php_codesniffer": "^3.1",
"symfony/dotenv": "^3.3"
},
"require": {
"php": ">= 5.6 < 7.0",
"guzzlehttp/guzzle": "^6.3",
"litipk/php-bignumbers": "^0.7.3",
"psr/log": "^1.0"
},
"autoload": {
"psr-4": {
"Shrikeh\\GuzzleMiddleware\\TimerLogger\\": "src"
}
},
"suggest": {
"pimple/pimple": "If you wish to use the ServiceProvider and have PSR-11 container"
},
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"bin-dir": "bin",
"sort-packages": true,
"platform": {
"php": "5.6"
}
},
"archive": {
"exclude": ["*", "!/src"]
}
}