-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 803 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 803 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
{
"name": "smsglobal/smsglobal-php",
"description": "SMSGlobal PHP Client Library",
"type": "library",
"keywords": ["smsglobal", "restapi", "rest", "api", "php", "sms", "sdk", "library"],
"homepage": "https://www.smsglobal.com/developers/?utm_source=dev&utm_medium=packagist&utm_campaign=php_sdk",
"license": "MIT",
"authors": [
{
"name": "Sahil Saggar"
},
{
"name": "SMSGlobal Dev Team",
"email": "developers@smsglobal.com"
}
],
"require": {
"php": ">=7.3",
"guzzlehttp/guzzle": "^7.2"
},
"require-dev": {
"phpunit/phpunit": ">=8.0",
"php-http/guzzle7-adapter": "^0.1.1"
},
"autoload": {
"psr-4": {
"SMSGlobal\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SMSGlobal\\Tests\\": "tests/"
}
}
}