-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathcomposer.json
72 lines (72 loc) · 2.52 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
{
"name": "nicumicle/simple-jwt-login",
"description": "Simple JWT Login WordPress plugin",
"require": {
"php": ">=8.2",
"ext-json": "*",
"fakerphp/faker": "^1.24.1",
"guzzlehttp/guzzle": "^7.9.2"
},
"license": [
"GPL-3.0-only",
"BSD-3-Clause"
],
"require-dev": {
"friendsofphp/php-cs-fixer": "*",
"phpmd/phpmd": "^2.9",
"phpstan/phpstan": "*",
"phpunit/phpunit": "*",
"roave/security-advisories": "dev-latest",
"spaze/phpstan-disallowed-calls": "^2.5",
"squizlabs/php_codesniffer": "*"
},
"autoload": {
"psr-4": {
"SimpleJwtLoginTests\\": "tests",
"SimpleJWTLogin\\": "simple-jwt-login/src"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"tests": "vendor/bin/phpunit --testsuite 'Unit' --coverage-text ",
"tests-feature": "vendor/bin/phpunit --testsuite 'Feature' --coverage-text",
"phpcs": "vendor/bin/phpcs simple-jwt-login/ tests --extensions=php",
"phpmd-design": "vendor/bin/phpmd simple-jwt-login/ text design",
"phpmd-cleancode": "vendor/bin/phpmd simple-jwt-login/ text cleancode",
"phpmd-unusedcode": "vendor/bin/phpmd simple-jwt-login/ text unusedcode",
"phpmd-naming": "vendor/bin/phpmd simple-jwt-login/ text naming",
"phpmd-controversial": "vendor/bin/phpmd simple-jwt-login/ text controversial",
"phpstan": "vendor/bin/phpstan analyse simple-jwt-login/ -c phpstan.neon --memory-limit=256M",
"phpmd-test-design" : "vendor/bin/phpmd tests/ text design",
"phpmd-test-cleancode" : "vendor/bin/phpmd tests/ text cleancode",
"phpmd-test-unusedcode" : "vendor/bin/phpmd tests/ text unusedcode",
"phpmd-test-naming" : "vendor/bin/phpmd tests/ text naming",
"phpmd-test-controversial" : "vendor/bin/phpmd tests/ text controversial",
"check-plugin": [
"@phpcs",
"@phpmd-design",
"@phpmd-cleancode",
"@phpmd-unusedcode",
"@phpmd-naming",
"@phpmd-controversial",
"@phpstan",
"@phpmd-test-design",
"@phpmd-test-naming",
"@phpmd-test-unusedcode",
"@phpmd-test-controversial",
"@tests",
"@tests-feature"
],
"gen-i18n": "wp i18n make-pot simple-jwt-login/ simple-jwt-login/i18n/simple-jwt-login.pot --allow-root"
},
"scripts-descriptions": {
"check-plugin": "Check plugin code and run tests"
},
"support": {
"issues": "https://github.com/nicumicle/simple-jwt-login/issues",
"source": "https://github.com/nicumicle/simple-jwt-login",
"docs": "https://simplejwtlogin.com"
}
}