-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
48 lines (48 loc) · 1.26 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
{
"name": "lordsimal/cakephp-sentry",
"description": "Sentry plugin for CakePHP",
"type": "cakephp-plugin",
"require": {
"php": "^8.1",
"cakephp/cakephp": "^5.0.0",
"sentry/sentry": "^4.0"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^5.0",
"phpunit/phpunit": "^10.1"
},
"license": "MIT",
"autoload": {
"psr-4": {
"CakeSentry\\": "src/"
}
},
"scripts": {
"test": "phpunit",
"cs-check": "phpcs --colors -p",
"cs-fix": "phpcbf --colors -p",
"phpstan": "tools/phpstan analyse",
"psalm": "tools/psalm --show-info=false",
"stan": [
"@phpstan",
"@psalm"
],
"stan-baseline": "tools/phpstan --generate-baseline",
"psalm-baseline": "tools/psalm --set-baseline=psalm-baseline.xml",
"stan-setup": "phive install"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true
}
},
"authors": [
{
"name": "Kevin Pfeifer",
"email": "[email protected]",
"role": "Maintainer"
}
]
}