-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 992 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
39
40
41
42
43
44
45
{
"name": "phpmob/thai-bulk-sms",
"description": "A PHP SMS gateway for Thai-Bulk-SMS.",
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Ishmael Doss",
"email": "nukboon@gmail.com"
}
],
"require": {
"php": ">=7.1",
"php-http/client-implementation": "^1.0",
"php-http/discovery": "^1.0",
"php-http/httplug": "^1.0",
"php-http/message": "^1.6",
"symfony/options-resolver": "^3.4|^4.1",
"symfony/serializer": "^3.4|^4.1"
},
"require-dev": {
"phpunit/phpunit": "^6.0|^7.0",
"php-http/guzzle6-adapter": "^1.0",
"symfony/var-dumper": "^3.4|^4.1"
},
"autoload": {
"psr-4": {
"PhpMob\\ThaiBulkSms\\": "src/",
"Tests\\PhpMob\\ThaiBulkSms\\": "tests/"
}
},
"autoload-dev": {
"files": ["dump.php"]
},
"config": {
"sort-packages": true,
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}