forked from yffaffy/rollbar
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.59 KB
/
composer.json
File metadata and controls
63 lines (63 loc) · 1.59 KB
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
61
62
63
{
"name": "rollbar/rollbar-php-wordpress",
"description": "WordPress plugin for Rollbar",
"type": "wordpress-plugin",
"require": {
"php": "^8.1",
"rollbar/rollbar": "^4.1.3"
},
"require-dev": {
"yoast/phpunit-polyfills": "^4.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
"squizlabs/php_codesniffer": "^3.5",
"phpcompatibility/php-compatibility": "^9.3",
"wp-coding-standards/wpcs": "^2.2",
"sirbrillig/phpcs-variable-analysis": "^2.8",
"humbug/php-scoper": "^0.18.7"
},
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Rollbar, Inc.",
"email": "support@rollbar.com",
"role": "Developer"
}
],
"support": {
"email": "support@rollbar.com"
},
"autoload": {
"files": [
"src/bootstrap.php"
],
"psr-4": {
"Rollbar\\WordPress\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Rollbar\\WordPress\\Tests\\": "tests/",
"Rollbar\\WordPress\\BuildUtils\\": "utils/"
}
},
"extra": {
"scripts-description": {
"test": "Run all tests. Wrapper around npm run test"
},
"installer-name": "rollbar"
},
"scripts": {
"test": [
"@pre-test",
"npm run test"
],
"pre-test": [
"npm install"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}