-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
34 lines (34 loc) · 1.13 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
{
"name": "simplesoftwareio/simple-sms",
"description": "Simple-SMS is a package made for Laravel to send/receive (polling/pushing) text messages. Currently supports CallFire, EZTexting, Email Gateways, Mozeo, and Twilio.",
"keywords": ["sms", "laravel", "simple", "twilio", "callfire", "eztexting", "mozeo", "labsmobile", "nexmo", "text messages", "send", "receive"],
"homepage": "http://www.simplesoftware.io",
"license": "MIT",
"authors": [
{
"name": "Simple Software LLC",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.0",
"illuminate/mail": ">=5.0.0",
"illuminate/log": ">=5.0.0",
"illuminate/queue": ">=5.0.0",
"illuminate/support": ">=5.0.0",
"illuminate/view": ">=5.0.0",
"twilio/sdk": "~4",
"guzzlehttp/guzzle": "~6",
"infobip/oneapi": "^1.1"
},
"require-dev": {
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "4.7.*"
},
"autoload": {
"psr-0": {
"SimpleSoftwareIO\\SMS\\": "src/"
}
},
"minimum-stability": "stable"
}