-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.56 KB
/
Copy pathcomposer.json
File metadata and controls
62 lines (62 loc) · 1.56 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
{
"name": "salines/cakephp-airbrake",
"description": "CakePHP 5.x plugin for Airbrake error tracking and exception monitoring",
"type": "cakephp-plugin",
"license": "MIT",
"keywords": [
"cakephp",
"airbrake",
"error-tracking",
"exception-handling",
"error-monitoring",
"errbit",
"php"
],
"homepage": "https://github.com/salines/cakephp-airbrake",
"authors": [
{
"name": "Salines",
"homepage": "https://github.com/salines"
}
],
"support": {
"issues": "https://github.com/salines/cakephp-airbrake/issues",
"source": "https://github.com/salines/cakephp-airbrake"
},
"require": {
"php": ">=8.1",
"cakephp/cakephp": "^5.0"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^5.0",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^10.1"
},
"autoload": {
"psr-4": {
"CakeAirbrake\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CakeAirbrake\\Test\\": "tests/"
}
},
"extra": {
"installer-name": "CakeAirbrake"
},
"scripts": {
"test": "phpunit --colors=always",
"cs": "phpcs -p",
"cbf": "phpcbf -p",
"stan": "phpstan analyse --memory-limit=512M"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}