-
Notifications
You must be signed in to change notification settings - Fork 99
/
composer.json
84 lines (84 loc) · 2.89 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
{
"name": "cakephp/authentication",
"description": "Authentication plugin for CakePHP",
"license": "MIT",
"type": "cakephp-plugin",
"keywords": [
"auth",
"authentication",
"cakephp",
"middleware"
],
"authors": [
{
"name": "CakePHP Community",
"homepage": "https://github.com/cakephp/authentication/graphs/contributors"
}
],
"homepage": "https://cakephp.org",
"support": {
"issues": "https://github.com/cakephp/authentication/issues",
"forum": "https://discourse.cakephp.org/",
"source": "https://github.com/cakephp/authentication",
"docs": "https://book.cakephp.org/authentication/3/en/"
},
"require": {
"cakephp/http": "^5.0",
"laminas/laminas-diactoros": "^3.0",
"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/cakephp": "^5.1.0",
"cakephp/cakephp-codesniffer": "^5.0",
"firebase/php-jwt": "^6.2",
"phpunit/phpunit": "^10.5.5 || ^11.1.3"
},
"suggest": {
"ext-ldap": "Make sure this php extension is installed and enabled on your system if you want to use the built-in LDAP adapter for \"LdapIdentifier\".",
"cakephp/cakephp": "Install full core to use \"CookieAuthenticator\".",
"cakephp/orm": "To use \"OrmResolver\" (Not needed separately if using full CakePHP framework).",
"cakephp/utility": "Provides CakePHP security methods. Required for the JWT adapter and Legacy password hasher.",
"firebase/php-jwt": "If you want to use the JWT adapter add this dependency"
},
"autoload": {
"psr-4": {
"Authentication\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Authentication\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/",
"TestApp\\": "tests/test_app/TestApp/",
"TestPlugin\\": "tests/test_app/Plugin/TestPlugin/src/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
},
"scripts": {
"check": [
"@cs-check",
"@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"
}
}