-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
48 lines (48 loc) · 1.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
45
46
47
48
{
"name": "cmtelecom/messaging-php",
"description": "PHP client for integration with the CM platform",
"abandoned": "cmdotcom/text-sdk-php",
"keywords": [
"cmtelecom",
"cm",
"telecom",
"sms",
"api",
"sdk",
"library",
"package"
],
"homepage": "https://www.cmtelecom.com",
"license": "Apache-2.0",
"type": "library",
"authors": [
{
"name": "Pallieter Verhoeven",
"email": "[email protected]"
},
{
"name": "Thomas Farla",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"myclabs/php-enum": "1.5.*",
"php-http/httplug": "2.1.*",
"guzzlehttp/psr7": "1.6.*"
},
"require-dev": {
"php-http/mock-client": "1.3.*",
"fzaninotto/faker": "1.6.*",
"phpunit/phpunit": "^8.5"
},
"autoload": {
"psr-4": {
"CM\\Messaging\\": "src/CM/Messaging//",
"Test\\CM\\Messaging\\": "tests/CM/Messaging//"
}
},
"suggest": {
"php-http/guzzle6-adapter": "This is the default and recommended http client adapter. A http client adapter is required!"
}
}