-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
executable file
·60 lines (60 loc) · 1.17 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
52
53
54
55
56
57
58
59
60
{
"authors": [
{
"email": "[email protected]",
"homepage": "https://www.seven.io",
"name": "seven communications GmbH & Co. KG",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Seven\\Api\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Seven\\Tests\\": "tests/"
}
},
"config": {
"platform": {
"php": "8.2"
}
},
"description": "Official API Client for requesting the seven.io messaging Gateway.",
"homepage": "https://github.com/seven-io/php-client",
"keywords": [
"2fa",
"cnam",
"gateway",
"hlr",
"mnp",
"rcs",
"sms",
"text2speech",
"tts"
],
"license": "MIT",
"name": "seven.io/api",
"require": {
"php": ">=8.2",
"ext-ctype": "*",
"ext-curl": "*",
"ext-mbstring": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^11",
"ext-xdebug": "*",
"ext-soap": "*",
"ext-simplexml": "*"
},
"support": {
"docs": "https://github.com/seven-io/php-client",
"email": "[email protected]",
"rss": "https://www.seven.io/en/feed/",
"source": "https://github.com/seven-io/php-client"
},
"type": "library"
}