-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 965 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
{
"name": "terminal42/cashctrl-api",
"type": "library",
"description": "API client for cashctrl.com",
"license": "MIT",
"authors": [
{
"name": "terminal42 gmbh",
"homepage": "https://www.terminal42.ch/"
}
],
"funding": [
{
"type": "github",
"url": "https://github.com/terminal42"
},
{
"type": "other",
"url": "https://ko-fi.com/terminal42"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"psr/http-client": "^1.0",
"psr/http-message": "^1.0 || ^2.0",
"psr/http-factory": "^1.0"
},
"suggest": {
"ext-dom": "To read and write custom fields."
},
"autoload": {
"psr-4": {
"Terminal42\\CashctrlApi\\": "src"
}
},
"extra": {
"branch-alias": {
"dev-main": "1.0.x-dev"
}
}
}