-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
44 lines (44 loc) · 1 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
{
"name": "kduma/emszmal-api",
"type": "library",
"description": "emSzmal Banking API wrapper in PHP",
"keywords": [
"KDuma",
"emSzmalAPI"
],
"homepage": "https://github.com/kduma/L5-emSzmal-api",
"license": "MIT",
"authors": [
{
"name": "Krystian Duma",
"email": "git@krystian.duma.sh",
"homepage": "https://opensource.duma.sh/",
"role": "Developer"
}
],
"require": {
"php": "~8.1",
"guzzlehttp/guzzle": "^7.0",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"KDuma\\emSzmalAPI\\": "src"
}
},
"extra": {
"branch-alias": {
"dev-master": "4.0-dev",
"dev-3.x": "3.0-dev",
"dev-2.x": "2.0-dev"
},
"laravel": {
"providers": [
"KDuma\\emSzmalAPI\\Laravel\\ServiceProvider"
]
}
},
"config": {
"sort-packages": true
}
}