-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.16 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
{
"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": "^8.2",
"ext-json": "*",
"psr/http-client": "^1.0",
"psr/http-message": "^1.0 || ^2.0",
"psr/http-factory": "^1.0"
},
"require-dev": {
"terminal42/contao-build-tools": "dev-main"
},
"suggest": {
"ext-dom": "To read and write custom fields."
},
"autoload": {
"psr-4": {
"Terminal42\\CashctrlApi\\": "src"
}
},
"extra": {
"branch-alias": {
"dev-main": "2.0.x-dev",
"dev-php7": "1.0.x-dev"
}
},
"config": {
"allow-plugins": {
"terminal42/contao-build-tools": true
}
}
}