-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
60 lines (60 loc) · 1.4 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "honeybadger-io/honeybadger-php",
"description": "Honeybadger PHP library",
"keywords": [
"logging",
"debugging",
"monitoring",
"errors",
"exceptions",
"honeybadger-io",
"honeybadger-php"
],
"homepage": "https://github.com/honeybadger-io/honeybadger-php",
"license": "MIT",
"authors": [
{
"name": "TJ Miller",
"email": "oss@tjmiller.co",
"homepage": "https://tjmiller.co",
"role": "Developer"
}
],
"require": {
"php": "^7.2|^8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.3|^7.0.1",
"monolog/monolog": "^2.0|^3.0",
"symfony/http-foundation": ">=3.3|^4.1"
},
"require-dev": {
"larapack/dd": "^1.1",
"mockery/mockery": "^1.4",
"phpunit/phpunit": "^8.5|^9.4"
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"autoload": {
"psr-4": {
"Honeybadger\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Honeybadger\\Tests\\": "tests"
},
"files": [
"tests/helpers.php"
]
},
"scripts": {
"test": "vendor/bin/phpunit",
"test:coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
}
}