-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.22 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
{
"name": "codekandis/sentry-client",
"description": "This library represents a wrapper for the `Sentry SDK` with enhanced development features.",
"keywords": [
"php",
"sentry client",
"sentry client wrapper",
"sentry sdk",
"sentry sdk wrapper",
"sentry php",
"sentry php wrapper",
"sentry",
"client",
"sdk",
"php",
"wrapper"
],
"minimum-stability": "stable",
"prefer-stable": true,
"license": "MIT",
"authors": [
{
"name": "Christian Ramelow",
"email": "info@codekandis.net",
"homepage": "https://codekandis.net",
"role": "Developer"
}
],
"support": {
"email": "info@codekandis.net",
"issues": "https://github.com/codekandis/sentry-client/issues",
"docs": "https://github.com/codekandis/sentry-client/blob/master/README.md",
"source": "https://github.com/codekandis/sentry-client/tree/master"
},
"require": {
"php": ">=7.4",
"codekandis/constants-classes-translator": "^1",
"sentry/sdk": "^2"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"codekandis/phpunit": "^3"
},
"autoload": {
"psr-4": {
"CodeKandis\\SentryClient\\": [
"src/"
]
}
},
"autoload-dev": {
"psr-4": {
"CodeKandis\\SentryClient\\Tests\\": [
"tests/"
]
}
}
}