forked from cakephp/authentication
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
80 lines (80 loc) · 2.81 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
{
"name": "cakephp/authentication",
"description": "Authentication plugin for CakePHP",
"keywords": [
"auth",
"authentication",
"cakephp",
"middleware"
],
"type": "cakephp-plugin",
"homepage": "https://cakephp.org",
"require": {
"cakephp/http": "^4.0",
"laminas/laminas-diactoros": "^2.2.2",
"psr/http-client": "^1.0",
"psr/http-message": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"cakephp/cakephp": "^4.0",
"cakephp/cakephp-codesniffer": "^4.0",
"firebase/php-jwt": "^5.0",
"phpunit/phpunit": "^8.5 || ^9.3"
},
"suggest": {
"cakephp/orm": "To use \"OrmResolver\" (Not needed separately if using full CakePHP framework).",
"cakephp/cakephp": "Install full core to use \"CookieAuthenticator\".",
"firebase/php-jwt": "If you want to use the JWT adapter add this dependency",
"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/utility": "Provides CakePHP security methods. Required for the JWT adapter and Legacy password hasher."
},
"license": "MIT",
"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/"
}
},
"authors": [
{
"name": "CakePHP Community",
"homepage": "https://github.com/cakephp/authentication/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/cakephp/authentication/issues",
"forum": "https://stackoverflow.com/tags/cakephp",
"irc": "irc://irc.freenode.org/cakephp",
"source": "https://github.com/cakephp/authentication",
"docs": "https://book.cakephp.org/authentication/2/en/"
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs --colors -p src/ tests/",
"cs-fix": "phpcbf --colors -p src/ tests/",
"phpstan": "phpstan.phar analyse src/",
"psalm": "psalm.phar --show-info=false",
"stan": [
"@phpstan",
"@psalm"
],
"stan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan:^0.12 psalm/phar:^3.7 && mv composer.backup composer.json",
"test": "phpunit",
"test-coverage": "phpunit --coverage-clover=clover.xml"
},
"config": {
"sort-packages": true
}
}