forked from auth0/wordpress
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
51 lines (51 loc) · 1.98 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
{
"name": "blueoceanideas/auth0",
"description": "WordPress Plugin for Auth0",
"homepage": "https://auth0.com/wordpress",
"type": "wordpress-plugin",
"license": "GPLv2",
"require": {
"php": "^5.3 || ^7.0 || ^8.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.5",
"wp-coding-standards/wpcs": "^1",
"phpcompatibility/phpcompatibility-wp": "*",
"phpunit/phpunit": "^5.0 || ^6.0",
"composer/installers": ">=1.4.0"
},
"authors": [
{
"name": "Auth0",
"email": "[email protected]"
},
{
"name": "Josh Cunningham",
"email": "[email protected]"
}
],
"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"
},
"minimum-stability": "stable",
"scripts": {
"compat": "\"vendor/bin/phpcs\" --standard=phpcs-compat-ruleset.xml .",
"phpcs": "\"vendor/bin/phpcs\"",
"phpcs-i18n": "\"vendor/bin/phpcs\" --sniffs=WordPress.WP.I18n",
"phpcs-tests": "\"vendor/bin/phpcs\" --standard=phpcs-test-ruleset.xml -s ./tests/",
"phpcbf": "\"vendor/bin/phpcbf\"",
"phpcbf-tests": "\"vendor/bin/phpcbf\" --standard=phpcs-test-ruleset.xml -s ./tests/",
"sniffs": "\"vendor/bin/phpcs\" --standard=phpcs-ruleset.xml -e",
"test": "\"vendor/bin/phpunit\" --coverage-text",
"test-group": "\"vendor/bin/phpunit\" --coverage-text --group",
"test-ci": "\"vendor/bin/phpunit\" --coverage-clover=coverage.xml",
"pre-commit-no-tests": [ "@phpcbf", "@phpcbf-tests", "@compat", "@phpcs-i18n" ],
"pre-commit": [ "@phpcbf", "@phpcbf-tests", "@compat", "@phpcs-i18n", "@test" ]
},
"autoload-dev": {
"classmap": ["tests/classes/", "tests/traits/"]
}
}