-
Notifications
You must be signed in to change notification settings - Fork 46
/
composer.json
86 lines (86 loc) · 2.74 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "cakephp/authorization",
"description": "Authorization abstraction layer plugin for CakePHP",
"license": "MIT",
"type": "cakephp-plugin",
"keywords": [
"auth",
"authorization",
"access",
"cakephp"
],
"authors": [
{
"name": "CakePHP Community",
"homepage": "https://github.com/cakephp/authorization/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/cakephp/authorization/issues",
"forum": "https://stackoverflow.com/tags/cakephp",
"irc": "irc://irc.freenode.org/cakephp",
"source": "https://github.com/cakephp/authorization",
"docs": "https://cakephp.org/authorization/2/en/"
},
"require": {
"php": ">=8.1",
"cakephp/http": "^5.1",
"psr/http-client": "^1.0",
"psr/http-message": "^1.1 || ^2.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"cakephp/authentication": "^3.0",
"cakephp/bake": "^3.2",
"cakephp/cakephp": "^5.1",
"cakephp/cakephp-codesniffer": "^5.1",
"phpunit/phpunit": "^10.5.5 || ^11.1.3"
},
"suggest": {
"cakephp/http": "To use \"RequestPolicyInterface\" (Not needed separately if using full CakePHP framework).",
"cakephp/orm": "To use \"OrmResolver\" (Not needed separately if using full CakePHP framework)."
},
"autoload": {
"psr-4": {
"Authorization\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Authorization\\Test\\": "tests/",
"OverridePlugin\\": "tests/test_app/Plugin/OverridePlugin/src/",
"TestApp\\": "tests/test_app/TestApp/",
"TestPlugin\\": "tests/test_app/Plugin/TestPlugin/src/"
}
},
"config": {
"allow-plugins": {
"cakephp/plugin-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
},
"scripts": {
"check": [
"@cs-check",
"@stan",
"@test"
],
"cs-check": "phpcs --colors -p src/ tests/",
"cs-fix": "phpcbf --colors -p src/ tests/",
"phpstan": "tools/phpstan analyse",
"psalm": "tools/psalm --show-info=false",
"psalm-baseline": "tools/psalm --set-baseline=psalm-baseline.xml",
"stan": [
"@phpstan",
"@psalm"
],
"stan-baseline": "tools/phpstan --generate-baseline",
"stan-setup": "phive install",
"test": "phpunit",
"test-coverage": "phpunit --coverage-clover=clover.xml"
},
"minimum-stability": "dev",
"prefer-stable": true
}