-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
57 lines (57 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
48
49
50
51
52
53
54
55
56
57
{
"name": "proemergotech/correlate-php-guzzle",
"description": "Adds correlation ID to Guzzle requests.",
"keywords": [
"microservice",
"uuid",
"dispatcher",
"log",
"correlate",
"laravel",
"lumen",
"psr-7",
"slim",
"guzzle"
],
"type": "library",
"homepage": "https://github.com/proemergotech/correlate-php-guzzle",
"license": "MIT",
"authors": [
{
"name": "ProEmergotech Kft",
"email": "[email protected]",
"homepage": "http://www.proemergotech.com/"
},
{
"name": "Soma Szelpal",
"email": "[email protected]"
},
{
"name": "Soma Szelpal",
"email": "[email protected]"
}
],
"require": {
"proemergotech/correlate-php-core": "dev-master",
"psr/http-message": "^1.0",
"guzzlehttp/guzzle": "6.*"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"phpunit/phpunit": "^5.0",
"mockery/mockery": "~0.9",
"squizlabs/php_codesniffer": "^2.8"
},
"autoload": {
"psr-4": {
"ProEmergotech\\Correlate\\Guzzle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ProEmergotech\\Correlate\\Guzzle\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}