forked from cakephp/authentication
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
69 lines (69 loc) · 2.43 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
{
"name": "cakephp/authentication",
"description": "Authentication plugin for CakePHP",
"keywords": [
"auth",
"authentication",
"cakephp",
"middleware"
],
"type": "cakephp-plugin",
"homepage": "https://cakephp.org",
"require": {
"cakephp/core": "~3.4",
"psr/http-message": "~1.0",
"zendframework/zend-diactoros": "^1.4.0"
},
"require-dev": {
"cakephp/cakephp": "~3.4",
"cakephp/cakephp-codesniffer": "^3.0",
"phpunit/phpunit": "^5.7|^6.0",
"firebase/php-jwt": "~4.0"
},
"suggest": {
"cakephp/orm": "To use \"OrmResolver\" (Not needed separately if using full CakePHP framework).",
"cakephp/cakephp": "Install version >=3.5.0 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",
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Authentication\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AuthTest\\": "tests/test_app/Plugin/AuthTest/src/",
"Authentication\\Test\\": "tests/",
"Authentication\\Test\\App\\": "tests/test_app/App/",
"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"
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs --colors -p ./src ./tests",
"cs-fix": "phpcbf --colors ./src ./tests",
"test": "phpunit",
"test-coverage": "phpunit --coverage-clover=clover.xml"
}
}