-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.64 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
{
"name": "jonlink/jwt",
"description": "a tiny JWT package for php",
"type": "library",
"license": "MIT",
"require": {
"php": "^8.1"
},
"require-dev": {
"enlightn/security-checker": "^1.10",
"mockery/mockery": "^1",
"phpstan/phpstan": "^1.12",
"phpunit/phpunit": "^10.0.0",
"psy/psysh": "^0.11.18",
"slevomat/coding-standard": "^8.10",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {"jonlink\\Jwt\\": "src/"}
},
"autoload-dev": {
"psr-4": {"jonlink\\Jwt\\Tests\\": "tests"}
},
"scripts": {
"lint": "./vendor/bin/phpcs -n --colors --standard=./ruleset.xml src/ tests/",
"test": "./vendor/bin/phpunit --testdox --no-coverage tests --log-events-text phpunit.log",
"clean": "./vendor/bin/phpcbf -n --standard=./ruleset.xml src/ tests/",
"phpstan": "./vendor/bin/phpstan analyse --memory-limit=2G",
"secure": "php vendor/bin/security-checker security:check composer.lock",
"prep": [
"php vendor/bin/security-checker security:check composer.lock",
"./vendor/bin/phpcbf -n --standard=./ruleset.xml src/ tests/",
"./vendor/bin/phpcs -n --colors --standard=./ruleset.xml src/ tests/",
"./vendor/bin/phpunit --testdox --no-coverage tests --log-events-text phpunit.log",
"./vendor/bin/phpstan analyse --memory-limit=2G"
],
"tinker": "./vendor/bin/psysh"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}