-
Notifications
You must be signed in to change notification settings - Fork 55
/
composer.json
62 lines (62 loc) · 1.36 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
{
"name": "bunq/sdk_php",
"description": "bunq PHP SDK",
"keywords": [
"open-banking",
"sepa",
"bunq",
"finance",
"api",
"payment"
],
"homepage": "https://bunq.com/",
"license": "MIT",
"authors": [
{
"name": "bunq",
"email": "sdk@bunq.com",
"homepage": "https://www.bunq.com",
"role": "Owner"
}
],
"require": {
"php": "^7.3 || ^8.0",
"composer-plugin-api": "~1.0 || ~2.0",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "~7"
},
"autoload": {
"psr-4": {
"bunq\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"bunq\\test\\": "tests/"
}
},
"require-dev": {
"composer/composer": "^1.10.11 || ^2.0.1",
"friendsofphp/php-cs-fixer": "^2.4",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpro/grumphp": "^v1.3.0",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^9.5"
},
"bin": [
"bin/bunq-install"
],
"config": {
"sort-packages": true,
"platform": {
"php": "7.3"
}
},
"scripts": {
"phpstan": [
"./vendor/bin/phpstan analyse --level 2 src"
]
}
}