-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
59 lines (59 loc) · 1.4 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
{
"name": "truelayer/signing",
"description": "Produce and verify TrueLayer API requests signatures",
"type": "library",
"license": "MIT",
"keywords": [
"truelayer",
"signing",
"jws"
],
"autoload": {
"psr-4": {
"TrueLayer\\Signing\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TrueLayer\\Signing\\Tests\\": "tests"
}
},
"authors": [
{
"name": "Stefan Adrian Danaita",
"email": "[email protected]"
},
{
"name": "Alexandru Lighezan",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"psr/http-message": "^1.1 | ^2.0",
"web-token/jwt-library": "^3.3"
},
"require-dev": {
"pestphp/pest": "^1.20",
"ramsey/uuid": "^4.2",
"phpstan/phpstan": "^1.0",
"roave/security-advisories": "dev-latest",
"friendsofphp/php-cs-fixer": "^3.3",
"mockery/mockery": "^1.4"
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse --memory-limit=-1",
"tests": "vendor/bin/pest",
"cs-fix": "vendor/bin/php-cs-fixer fix",
"checks": [
"@analyse",
"@tests",
"@cs-fix"
]
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}