-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 1.66 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "getsentry/gib-potato",
"description": "More Potato, more awesome 🥔",
"type": "project",
"homepage": "https://sentry.io",
"license": "MIT",
"authors": [
{
"name": "Sentry",
"email": "accounts@sentry.io"
}
],
"require": {
"php": ">=8.3",
"cakephp/authentication": "^3.1.1",
"cakephp/cakephp": "^5.1.1",
"cakephp/migrations": "^4.4.2",
"cakephp/plugin-installer": "^2.0.1",
"lcobucci/jwt": "^5.4",
"paragonie/csp-builder": "^3.0.1",
"sentry/sentry": "^4.9.0"
},
"require-dev": {
"cakephp/bake": "^3.2.0",
"cakephp/cakephp-codesniffer": "^5.1.3",
"phpstan/phpstan": "^1.12.6",
"phpunit/phpunit": "^10.5.36"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/"
}
},
"scripts": {
"post-install-cmd": "App\\Console\\Installer::postInstall",
"post-create-project-cmd": "App\\Console\\Installer::postInstall",
"check": [
"@test",
"@cs-check",
"@phpstan"
],
"cs-check": "phpcs --colors -p",
"cs-fix": "phpcbf --colors -p",
"phpstan": "phpstan analyse",
"test": "phpunit --colors=always"
},
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"cakephp/plugin-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}