forked from CakeDC/users
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
105 lines (105 loc) · 4.02 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "cakedc/users",
"description": "Users Plugin for CakePHP",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"oauth2",
"auth",
"authentication",
"cakedc"
],
"homepage": "https://github.com/CakeDC/users",
"license": "MIT",
"authors": [
{
"name": "CakeDC",
"homepage": "http://www.cakedc.com",
"role": "Author"
},
{
"name": "Others",
"homepage": "https://github.com/CakeDC/users/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/CakeDC/users/issues",
"source": "https://github.com/CakeDC/users"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.4.0",
"cakephp/cakephp": "dev-4.next as 4.5.0",
"cakedc/auth": "^7.0",
"cakephp/authorization": "^2.0.0",
"cakephp/authentication": "^2.0.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"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": "^1.6",
"yubico/u2flib-server": "^1.0",
"php-coveralls/php-coveralls": "^2.1",
"league/oauth1-client": "^1.7",
"cakephp/cakephp-codesniffer": "^4.0",
"web-auth/webauthn-lib": "^3.3",
"thenetworg/oauth2-azure": "^2.1"
},
"suggest": {
"league/oauth1-client": "Provides Social Authentication with Twitter",
"league/oauth2-facebook": "Provides Social Authentication with Facebook",
"league/oauth2-instagram": "Provides Social Authentication with Instagram",
"league/oauth2-google": "Provides Social Authentication with Google+",
"luchianenco/oauth2-amazon": "Provides Social Authentication with Amazon",
"league/oauth2-linkedin": "Provides Social Authentication with LinkedIn",
"google/recaptcha": "Provides reCAPTCHA validation for registration form",
"robthree/twofactorauth": "Provides Google Authenticator functionality",
"cakephp/authorization": "Provide authorization for users",
"thenetworg/oauth2-azure": "Provides Social Authentication with MS Azure"
},
"autoload": {
"psr-4": {
"CakeDC\\Users\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"CakeDC\\Users\\Test\\": "tests",
"CakeDC\\Users\\Test\\Fixture\\": "tests",
"TestApp\\": "tests/test_app/TestApp/"
}
},
"scripts": {
"analyse": [
"@stan",
"@psalm"
],
"check": [
"@cs-check",
"@test",
"@analyse"
],
"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:0.12.94 psalm/phar:~4.9.2 && mv composer.backup composer.json",
"stan-rebuild-baseline": "phpstan analyse --configuration phpstan.neon --error-format baselineNeon src/ > phpstan-baseline.neon",
"psalm-rebuild-baseline": "php vendor/psalm/phar/psalm.phar --show-info=false --set-baseline=psalm-baseline.xml src/",
"rector": "rector process src/",
"rector-setup": "cp composer.json composer.backup && composer require --dev rector/rector:^0.11.2 && mv composer.backup composer.json",
"coverage-test": "phpunit --stderr --coverage-clover=clover.xml"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false
}
}
}