First init
This commit is contained in:
39
composer.json
Normal file
39
composer.json
Normal 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"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user