forked from CakeDC/auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
82 lines (82 loc) · 2.46 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
{
"name": "cakedc/auth",
"description": "Auth objects for CakePHP",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"auth",
"authentication",
"cakedc"
],
"homepage": "https://github.com/CakeDC/auth",
"license": "MIT",
"authors": [
{
"name": "CakeDC",
"homepage": "https://www.cakedc.com",
"role": "Author"
},
{
"name": "Others",
"homepage": "https://github.com/CakeDC/auth/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/CakeDC/auth/issues",
"source": "https://github.com/CakeDC/auth"
},
"require": {
"php": ">=8.1.0",
"cakephp/cakephp": "^5.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"league/oauth2-facebook": "@stable",
"league/oauth2-instagram": "@stable",
"league/oauth2-google": "@stable",
"league/oauth2-linkedin": "@stable",
"luchianenco/oauth2-amazon": "^1.1",
"google/recaptcha": "@stable",
"robthree/twofactorauth": "^2.0",
"league/oauth1-client": "^1.7",
"cakephp/authorization": "^3.0",
"cakephp/cakephp-codesniffer": "^5.0",
"cakephp/authentication": "^3.0",
"yubico/u2flib-server": "^1.0"
},
"suggest": {
},
"autoload": {
"psr-4": {
"CakeDC\\Auth\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"CakeDC\\Auth\\Test\\": "tests",
"CakeDC\\Auth\\Test\\Fixture\\": "tests"
}
},
"scripts": {
"check": [
"@test",
"@cs-check"
],
"analyse": [
"@stan",
"@psalm"
],
"cs-check": "phpcs -n -p --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests",
"cs-fix": "phpcbf --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests",
"test": "phpunit --stderr",
"stan": "phpstan analyse src/",
"psalm": "php vendor/psalm/phar/psalm.phar --show-info=false src/ ",
"stan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan:^1.9.0 psalm/phar:^5.1.0 && mv composer.backup composer.json",
"coverage-test": "phpunit --stderr --coverage-clover=clover.xml"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}