-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.08 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
{
"name": "tixelrocks/laravel-safe-logger",
"type": "library",
"description": "A little wrapper for Laravel Logger that prevents it from crashing ever",
"keywords": ["logging","logger","laravel"],
"homepage": "https://github.com/TixelRocks/laravel-safe-logger",
"license": "MIT",
"authors": [
{
"name": "Tixel",
"email": "tech@tixel.com",
"homepage": "https://tixel.com"
}
],
"require": {
"php": ">=7.4",
"psr/log": "^1.0|^2.0|^3.0",
"laravel/framework": "^8.0|^9.0|^10.0|^11.0"
},
"require-dev": {
"orchestra/testbench-core": "^7.16",
"phpstan/phpdoc-parser": "^1.15",
"phpstan/phpstan": "^1.4.7",
"phpunit/phpunit": "^9.5.8"
},
"autoload": {
"psr-4": {
"Tixel\\SafeLogger\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"Tixel\\SafeLogger\\Providers\\LaravelServiceProvider"
]
}
}
}