First init

This commit is contained in:
2025-09-18 12:26:04 +02:00
commit 071d0f59a2
10 changed files with 625 additions and 0 deletions

39
composer.json Normal file
View File

@@ -0,0 +1,39 @@
{
"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"
]
}
}
}