forked from SimpleSoftwareIO/simple-sms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 1.22 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, FlowRoute, LabsMobile, Mozeo, Nexmo, Plivo, Twilio, and Zenvia",
"keywords": ["sms", "laravel", "text messages", "send", "receive", "CallFire", "EZTexting", "SMS Email Gateways", "FlowRoute", "LabsMobile", "Mozeo", "Nexmo", "Plivo", "Twilio", "Zenvia"],
"homepage": "http://www.simplesoftware.io",
"license": "MIT",
"authors": [
{
"name": "Simple Software LLC",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0.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",
"guzzlehttp/guzzle": "~6",
"twilio/sdk": "~4",
"plivo/plivo-php": "^1.0"
},
"require-dev": {
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "~5"
},
"autoload": {
"psr-4": {
"SimpleSoftwareIO\\SMS\\": "src/"
}
},
"minimum-stability": "stable"
}