forked from stayallive/wp-sentry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.21 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
{
"name": "stayallive/wp-sentry",
"type": "wordpress-plugin",
"license": "MIT",
"description": "A (unofficial) WordPress plugin to report PHP and JavaScript errors to Sentry.",
"homepage": "https://github.com/stayallive/wp-sentry",
"authors": [
{
"name": "Alex Bouma",
"email": "alex@bouma.me",
"homepage": "https://alex.bouma.blog"
}
],
"keywords": [
"wordpress",
"sentry",
"logging",
"error-monitoring",
"crash-reporting"
],
"support": {
"docs": "https://github.com/stayallive/wp-sentry#readme",
"forum": "https://github.com/stayallive/wp-sentry/discussions",
"issues": "https://github.com/stayallive/wp-sentry/issues"
},
"autoload": {
"classmap": [
"src/"
]
},
"require": {
"php": "^7.2.5 || ^8.0",
"sentry/sentry": "^4.8",
"composer/installers": "^1.0 || ^2.0",
"jean85/pretty-package-versions": "^1.5"
},
"config": {
"platform": {
"php": "7.2.5"
},
"allow-plugins": {
"php-http/discovery": false,
"composer/installers": true,
"composer/package-versions-deprecated": true
},
"sort-packages": true,
"preferred-install": "dist",
"optimize-autoloader": true
}
}