forked from ajaaleixo/laravel-middleware-correlation-id
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.09 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
{
"name": "ewawiktor/laravel-middleware-correlation-id",
"description": "Laravel Package to use a Correlation ID Middleware",
"keywords": [
"laravel",
"correlation-id",
"middleware",
"tracing"
],
"homepage": "https://github.com/ewawiktor/laravel-middleware-correlation-id",
"require": {
"php" : ">=8.0",
"webpatser/laravel-uuid": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"orchestra/testbench": "^6.9",
"codacy/coverage": "dev-master"
},
"license": "MIT",
"authors": [
{
"name": "André Aleixo",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Ajaaleixo\\Middleware\\CorrelationId\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Ajaaleixo\\Middleware\\CorrelationId\\Test\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Ajaaleixo\\Middleware\\CorrelationId\\CorrelationIdServiceProvider"
]
}
}
}