-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 808 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 808 Bytes
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
{
"name": "cego/filebeat-logger",
"description": "Package for logging php enriched json lines that filebeat can collect",
"type": "project",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "8.x.x",
"monolog/monolog": "3.x.x",
"ua-parser/uap-php": "3.x.x",
"nesbot/carbon": "^3.9"
},
"autoload": {
"psr-4": {
"Cego\\": "src/"
}
},
"require-dev": {
"cego/php-cs-fixer": "^2",
"phpstan/phpstan": "^2",
"open-telemetry/sdk": "^1.8",
"symfony/http-client": "^7.3",
"nyholm/psr7": "^1.8"
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"tbachert/spi": true
}
}
}