-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.2 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
{
"name": "ucraft-com/http-traffic-logger",
"description": "The \"http-traffic-logger\" package efficiently captures and records HTTP request and response data exchanged between clients and servers. With comprehensive logging functionalities, it facilitates monitoring and analysis of web traffic, providing valuable insights for debugging, security auditing, and performance optimization purposes.",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Uc\\HttpTrafficLogger\\": "src/"
}
},
"authors": [
{
"name": "Tigran Mesropyan",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=8.1",
"ucraft-com/kafka-producer": "1.2.0",
"symfony/uid": "6.4.x-dev"
},
"autoload-dev": {
"psr-4": {
"Uc\\HttpTrafficLogger\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Uc\\HttpTrafficLogger\\HttpTrafficLoggerServiceProvider"
]
}
},
"require-dev": {
"phpunit/phpunit": "9.6.x-dev",
"orchestra/testbench": "8.x-dev"
}
}