-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.06 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
{
"name": "starkinfra-test-deploy/sdk",
"version": "0.8.0",
"type": "library",
"description": "SDK to facilitate PHP integrations with the Stark Infra API",
"homepage": "https://github.com/starkinfra/sdk-php",
"license": "MIT",
"authors": [
{
"name": "StarkInfra",
"email": "[email protected]",
"homepage": "https://starkinfra.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.1",
"starkinfra/core": "^0.1.1",
"ext-json": "*"
},
"keywords": [
"starkinfra",
"bank",
"infra",
"open",
"banking",
"openbanking",
"card",
"issuing",
"sdk"
],
"autoload": {
"psr-4": {
"StarkInfra\\": "src/",
"EllipticCurve\\": "vendor/starkbank/ecdsa/"
},
"classmap": ["src/"]
},
"scripts": {
"check-style": "phpcs src tests",
"fix-style": "phpcbf src tests"
},
"config": {
"sort-packages": true
}
}