-
Notifications
You must be signed in to change notification settings - Fork 36
/
composer.json
48 lines (48 loc) · 945 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
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "airbrake/phpbrake",
"description": "Airbrake exception and error notifier for PHP",
"keywords": [
"airbrake",
"notifier",
"exception",
"error",
"logging"
],
"homepage": "https://airbrake.io",
"license": "MIT",
"require": {
"php": ">=8.1",
"guzzlehttp/guzzle": ">=6.3",
"cash/lrucache": "^1.0"
},
"require-dev": {
"psy/psysh": "^0.11",
"phpunit/phpunit": "^10.0",
"squizlabs/php_codesniffer": "^3.7",
"monolog/monolog": "^1.22|^2.0",
"mikey179/vfsstream": "^1.6"
},
"suggest": {
"guzzlehttp/guzzle": "Guzzle HTTP client"
},
"autoload": {
"files": [
"src/constants.php"
],
"psr-4": {
"Airbrake\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Airbrake\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}