-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
46 lines (46 loc) · 1.08 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
{
"name": "itgalaxy/sentry-integration",
"type": "wordpress-plugin",
"license": "MIT",
"description": "A (unofficial) WordPress plugin to report PHP and JavaScript errors to Sentry",
"homepage": "https://github.com/itgalaxy/sentry-integration/",
"authors": [
{
"name": "Alexander Krasnoyarov",
"homepage": "https://github.com/evilebottnawi"
}
],
"keywords": [
"wordpress",
"sentry"
],
"support": {
"issues": "https://github.com/itgalaxy/sentry-integration/issues"
},
"autoload": {
"psr-4": {
"Itgalaxy\\SentryIntegration\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Itgalaxy\\Tests\\": "tests/"
}
},
"repositories": [
{
"type": "git",
"url": "https://github.com/WordPress/wordpress-develop"
}
],
"require": {
"php": ">=5.4.0",
"sentry/sentry": "^1.10.0",
"composer/installers": "^1.0.0"
},
"require-dev": {
"wordpress/wordpress": "^v5.0.3",
"phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.14",
"phpunit/php-code-coverage": "^2.2.4 || ^4.0.8 || ^5.3.2"
}
}