40 lines
957 B
JSON
40 lines
957 B
JSON
{
|
|
"name": "herrleinit/loghandler",
|
|
"description": "Intercept Laravel log entries and forward them to an external API.",
|
|
"type": "library",
|
|
"license": "proprietary",
|
|
"authors": [
|
|
{
|
|
"name": "herrleinIT",
|
|
"email": "info@herrlein.it",
|
|
"homepage": "https://www.herrlein.it/"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^8.2",
|
|
"illuminate/support": "^12.0",
|
|
"illuminate/log": "^12.0",
|
|
"guzzlehttp/guzzle": "^7.0|^8.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"HerrleinIT\\LogHandler\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"HerrleinIT\\LogHandler\\Tests\\": "tests/"
|
|
}
|
|
},
|
|
"require-dev": {
|
|
"orchestra/testbench": "^9.0"
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"providers": [
|
|
"HerrleinIT\\LogHandler\\LogHandlerServiceProvider"
|
|
]
|
|
}
|
|
}
|
|
}
|