-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
53 lines (53 loc) · 1.6 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
{
"name": "rbdwllr/psr-jwt",
"description": "A PSR 7 compliant JSON Web Token Middleware Library.",
"keywords": ["jwt", "json", "tokens", "authentication", "authorisation", "json web tokens", "php", "psr-7"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Rob Waller",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4.0",
"rbdwllr/reallysimplejwt": "^4.0",
"psr/http-message": "^1.0",
"psr/http-server-middleware": "^1.0",
"nyholm/psr7": "^1.5"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"phpstan/phpstan": "^1.5",
"phpstan/phpstan-mockery": "^1.0",
"phpmd/phpmd": "^2.12",
"squizlabs/php_codesniffer": "^3.6",
"mockery/mockery": "^1.5",
"infection/infection": "^0.20",
"phploc/phploc": "^7.0",
"sebastian/phpcpd": "^6.0"
},
"autoload": {
"psr-4": {
"PsrJwt\\": "src/",
"Tests\\": "tests/"
}
},
"scripts" : {
"pipeline": [
"vendor/bin/phpcs --standard=psr12 src/ tests/",
"vendor/bin/phpstan analyse -l 7 src/ tests/",
"vendor/bin/phpmd src/ text ruleset.xml",
"vendor/bin/phpunit --coverage-clover=coverage.xml",
"vendor/bin/infection -s --min-msi=90",
"vendor/bin/phpcpd --min-lines=2 --min-tokens=35 src/",
"vendor/bin/phploc src/"
]
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
}
}
}