-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 903 Bytes
/
composer.json
File metadata and controls
44 lines (44 loc) · 903 Bytes
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": "labsmobile/sms-php",
"description": "Send SMS messages through the LabsMobile platform and the PHP library.",
"type": "library",
"license": "MIT",
"keywords": [
"php",
"composer",
"sms",
"httpclient",
"sms-api",
"sms-messages",
"sms-client",
"sms-notifications",
"smsapi",
"sms-php",
"labsmobile"
],
"autoload": {
"psr-4": {
"Labsmobile\\SmsPhp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Labsmobile\\SmsPhp\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "LabsMobile",
"email": "[email protected]",
"homepage": "https://www.labsmobile.com/"
}
],
"require-dev": {
"phpunit/phpunit": "^4.8 || ^5.7 || ^6.0 || ^7.0 || ^8.0"
},
"require": {
"php": ">=5.4.0, <=8.3.19",
"guzzlehttp/guzzle": "^5.0 || ^6.0 || ^7.0 || ^7.2",
"ext-json": "*"
}
}