-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
52 lines (52 loc) · 1.57 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
{
"name": "fromjimmy/bankid-oidc-client",
"description": "OIDC client for BankId",
"autoload": {
"psr-4": {
"BankId\\OIDC\\": "src/"
}
},
"authors": [
{
"name": "Nikita Pavlovskiy",
"email": "[email protected]"
},
{
"name": "Jakub Drabik",
"email": "[email protected]"
}
],
"scripts": {
"phpstan": "phpstan analyse --configuration ./config/phpstan.neon",
"cs": "php-cs-fixer fix --config ./config/.php-cs-fixer.php -v",
"cs-check": "php-cs-fixer fix --config ./config/.php-cs-fixer.php --dry-run --stop-on-violation --format=txt -v",
"test": "phpunit test",
"check": [
"@cs-check",
"@phpstan",
"@test"
],
"start": "php -S localhost:3000 index.php",
"start:jwk": "php -S localhost:3001 index.php",
"start:ngrok": "ngrok http 3001"
},
"require-dev": {
"phpstan/phpstan": "^1.4",
"friendsofphp/php-cs-fixer": "^3.5",
"guzzlehttp/psr7": "^2.1",
"guzzlehttp/guzzle": "^7.4",
"phpunit/phpunit": "^9",
"ext-apcu": "*"
},
"require": {
"php": ">=8.1",
"ext-curl": "*",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"web-token/jwt-easy": "^2.2",
"web-token/jwt-signature-algorithm-rsa": "^2.2",
"web-token/jwt-signature-algorithm-hmac": "^2.2",
"web-token/jwt-key-mgmt": "^2.2",
"psr/simple-cache": "^3.0"
}
}