-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
46 lines (46 loc) · 939 Bytes
/
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
{
"name": "bornfight/erste-bank-client",
"description": "Client written in PHP for Erste Bank API",
"keywords": [
"Erste",
"Bank",
"API",
"Client",
"Bank Client",
"Erste Bank",
"Erste Bank Client",
"PHP",
"Erste PHP"
],
"license": "MIT",
"authors": [
{
"name": "Andrija Dvorski",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"guzzlehttp/guzzle": "^7.0",
"ramsey/uuid": "^4",
"symfony/property-access": "^5",
"symfony/serializer": "^5",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"Bornfight\\ErsteBankClient\\": "src/"
}
},
"minimum-stability": "stable",
"config": {
"sort-packages": true
},
"scripts": {
"configure-commit-template": "git config --add commit.template .gitmessage",
"test": "codecept run"
},
"require-dev": {
"codeception/codeception": "^4.0"
}
}