forked from auth0/wordpress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
82 lines (82 loc) · 1.93 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": "auth0/wp-auth0",
"description": "WordPress Plugin for Auth0",
"homepage": "https://auth0.com/wordpress",
"license": "MIT",
"type": "wordpress-plugin",
"keywords": [
"wordpress",
"wp",
"authentication",
"auth",
"auth0"
],
"authors": [
{
"name": "Auth0",
"email": "[email protected]",
"homepage": "https://auth0.com/"
}
],
"support": {
"forum": "https://community.auth0.com/tags/wordpress",
"source": "https://github.com/auth0/wp-auth0",
"issues": "https://github.com/auth0/wp-auth0/issues",
"docs": "https://auth0.com/docs/cms/wordpress"
},
"require": {
"php": "^7.0 | ^8.0",
"ext-json": "*",
"ext-openssl": "*",
"auth0/php-jwt": "^3.3.4",
"composer/installers": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "^6.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
"phpcompatibility/phpcompatibility-wp": "*",
"wp-coding-standards/wpcs": "*",
"phpstan/phpstan": "^0.12.64",
"szepeviktor/phpstan-wordpress": "^0.7.2"
},
"scripts": {
"test": "@php ./vendor/bin/phpunit --coverage-text",
"test-ci": "@php ./vendor/bin/phpunit --coverage-clover=coverage.xml",
"analyze": "@php ./vendor/bin/phpstan analyze",
"format": "@php ./vendor/bin/phpcbf",
"lint": "@php ./vendor/bin/phpcs",
"sniffs": "@php ./vendor/bin/phpcs -e",
"checkup": [
"@composer validate --strict",
"@lint",
"@test",
"@analyze"
],
"pre-commit": [
"@format",
"@checkup"
]
},
"config": {
"classmap-authoritative": true,
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"autoload": {
"classmap": [
"lib/"
],
"files": [
"functions.php"
]
},
"autoload-dev": {
"classmap": [
"tests/classes/",
"tests/traits/"
]
},
"minimum-stability": "stable",
"prefer-stable": true
}