-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathcomposer.json
38 lines (38 loc) · 903 Bytes
/
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
{
"name": "esendex/sdk",
"description": "Send SMS from your application using the Esendex API",
"homepage": "http://developers.esendex.com",
"keywords": [
"sms",
"rest",
"restful",
"api",
"requests"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Esendex Support",
"email": "[email protected]"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/esendex/esendex-php-sdk/issues",
"source": "https://github.com/esendex/esendex-php-sdk"
},
"require": {
"php": ">=7.3",
"ext-curl": "*"
},
"require-dev": {
"phpunit/phpunit": "8.5.*",
"phing/phing": "2.*",
"pear/archive_tar": "1.4.*"
},
"autoload": {
"psr-0": {
"Esendex": "src/"
}
}
}