forked from TheoKouzelis/laravel-airbrake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 900 Bytes
/
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
{
"name": "vento/laravel-airbrake",
"description": "Laravel service provider for Airbrake https://github.com/airbrake/phpbrake",
"keywords": ["airbrake", "laravel","logging"],
"require": {
"php": "^7.2|^7.3|^8.0|^8.1",
"airbrake/phpbrake": "^0.8.0",
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0"
},
"license": "MIT",
"authors": [
{
"name": "Nuruzzaman Milon",
"email": "[email protected]"
},
{
"name": "Vento",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Vento\\LaravelAirbrake\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"Vento\\LaravelAirbrake\\ServiceProvider"
]
}
}
}