-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.18 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
{
"name": "ananiaslitz/facelesslog",
"description": "Inspirado no Noppera-bō, é uma biblioteca de logging que oculta ou anonimiza automaticamente informações sensíveis nos logs, protegendo a privacidade dos usuários.",
"type": "library",
"require-dev": {
"phpunit/php-timer": "^6.0",
"brain/monkey": "^2.6",
"phpunit/phpunit": "^10.5"
},
"license": "MIT",
"autoload": {
"psr-4": {
"FacelessLog\\": "src/"
}
},
"authors": [
{
"name": "Diego Ananias",
"email": "[email protected]"
}
],
"require": {
"symfony/http-client": "^6.3",
"nyholm/psr7": "^1.8",
"guzzlehttp/promises": "^2.0",
"php-http/httplug": "^2.4",
"hyperf/di": "^3.0",
"open-telemetry/api": "^1.0.0beta",
"monolog/monolog": "^3.4",
"open-telemetry/opentelemetry-logger-monolog": "^0.0.4",
"open-telemetry/opentelemetry": "^1.0@beta"
},
"minimum-stability": "beta",
"config": {
"allow-plugins": {
"php-http/discovery": true
}
},
"scripts": {
"test": "phpctl phpunit"
}
}