forked from auth0/wordpress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
119 lines (119 loc) · 3.01 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "auth0/wordpress",
"description": "WordPress Plugin for Auth0",
"license": "MIT",
"type": "wordpress-plugin",
"keywords": [
"auth0",
"authentication",
"authorization",
"login",
"auth",
"jwt",
"json web token",
"jwk",
"json web key",
"oauth",
"openid",
"secure",
"protect",
"api"
],
"authors": [
{
"name": "Auth0",
"email": "[email protected]",
"homepage": "https://auth0.com/"
}
],
"support": {
"issues": "https://github.com/auth0/wp-auth0/issues",
"forum": "https://community.auth0.com/tags/wordpress",
"source": "https://github.com/auth0/wp-auth0",
"docs": "https://auth0.com/docs/customize/integrations/cms/wordpress-plugin"
},
"require": {
"php": "^8.0",
"ext-json": "*",
"ext-openssl": "*",
"auth0/auth0-php": "^8.7"
},
"require-dev": {
"firebase/php-jwt": "^6.2",
"hyperf/event": "^2.2",
"laravel/pint": "^1.0",
"mockery/mockery": "^1.4",
"nyholm/psr7": "^1.5",
"pestphp/pest": "^1.21",
"php-http/mock-client": "^1.5",
"php-stubs/wordpress-stubs": "^6.0",
"phpstan/phpstan": "^1.7",
"phpstan/phpstan-strict-rules": "1.4.3",
"phpunit/phpunit": "^9.5",
"rector/rector": "^0.13.6",
"squizlabs/php_codesniffer": "^3.7",
"symfony/cache": "^4.4 || ^5.4 || ^6.1",
"szepeviktor/phpstan-wordpress": "^1.1",
"vimeo/psalm": "^4.24",
"wikimedia/composer-merge-plugin": "^2.0"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"Auth0\\WordPress\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Auth0\\Tests\\": "tests/"
}
},
"extra": {
"merge-plugin": {
"include": [
"composer.local.json"
],
"recurse": true,
"replace": true,
"ignore-duplicates": false,
"merge-dev": true,
"merge-extra": false,
"merge-extra-deep": false,
"merge-scripts": false
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"pestphp/pest-plugin": true,
"ergebnis/composer-normalize": true,
"wikimedia/composer-merge-plugin": true
},
"optimize-autoloader": true,
"sort-packages": true,
"process-timeout": 0
},
"scripts": {
"package": "mv composer.local.json composer.local.old && composer install --no-dev --optimize-autoloader --no-ansi --no-interaction --no-plugins --no-progress --no-scripts && mv composer.local.old composer.local.json",
"fix": [
"@pint:fix",
"@psalm:fix",
"@rector:fix"
],
"test": [
"@rector",
"@pint",
"@phpstan",
"@psalm",
"@pest"
],
"pest": "pest --coverage-clover coverage/coverage.xml --no-interaction",
"phpstan": "phpstan analyze --no-progress",
"pint": "pint --test",
"pint:fix": "pint",
"psalm": "psalm --no-progress",
"psalm:fix": "psalm --alter --issues=all --php-version=8.0",
"rector": "rector process src --dry-run",
"rector:fix": "rector process src"
}
}