-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
78 lines (78 loc) · 2.37 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
73
74
75
76
77
78
{
"name": "truelayer/client",
"description": "TrueLayer's payments platform client",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Alexandru Lighezan",
"email": "[email protected]"
},
{
"name": "Stefan Adrian Danaita",
"email": "[email protected]"
},
{
"name": "Lee Boynton",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"TrueLayer\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"TrueLayer\\Tests\\Integration\\": "tests/integration",
"TrueLayer\\Tests\\Acceptance\\": "tests/acceptance"
}
},
"prefer-stable": true,
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-openssl": "*",
"psr/http-client-implementation": "^1.0",
"psr/http-factory-implementation": "*",
"psr/http-message-implementation": "^1.0",
"psr/simple-cache": "^1.0|^2.0|^3.0",
"truelayer/signing": "^1.0.0",
"ramsey/uuid": "^3.7|^4.1",
"nesbot/carbon": "^2.62.1|^3.0.0",
"php-http/discovery": "^1.15.1"
},
"suggest": {
"psr/simple-cache-implementation": "Avoid making redundant network requests and improve performance by providing a PSR-16 Cache implementation."
},
"require-dev": {
"pestphp/pest": "^v2.20.0",
"phpstan/phpstan": "^1.3.1",
"friendsofphp/php-cs-fixer": "^3.3",
"symfony/http-client": "^v5.4",
"nyholm/psr7": "^1.4",
"mockery/mockery": "^1.4",
"guzzlehttp/guzzle": "^7.4",
"symfony/dotenv": "^5.4"
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse --memory-limit=-1",
"integration-tests": "vendor/bin/pest --test-directory tests/integration",
"acceptance-tests": "vendor/bin/pest --test-directory tests/acceptance",
"cs-fix": "vendor/bin/php-cs-fixer fix",
"checks": [
"@analyse",
"@cs-fix",
"@integration-tests",
"@acceptance-tests"
]
},
"config": {
"process-timeout": 0,
"allow-plugins": {
"pestphp/pest-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true
}
}
}