forked from safcsp/laravel-unifonic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 963 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
46
47
48
49
{
"name": "liliom/laravel-unifonic",
"description": " A library to integrate with Unifonic API. Sending SMS, making Voice and VOIP calls, TTS calls, and 2FA",
"keywords": [
"laravel",
"unifonic",
"sms",
"voice",
"2FA",
"verify",
"number intelligence",
"text-to-speech",
"tts",
"voip",
"api"
],
"require": {
"php": ">=7.1.0",
"ext-curl": "*"
},
"require-dev": {
"laravel/framework": ">=5.3",
"guzzlehttp/guzzle": "^6.2",
"vlucas/phpdotenv": "^2.2"
},
"license": "MIT",
"authors": [
{
"name": "Mohammad Kawsara",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Liliom\\Unifonic\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Liliom\\Unifonic\\UnifonicServiceProvider"
],
"aliases": {
"Unifonic": "Liliom\\Unifonic\\UnifonicFacade"
}
}
},
"minimum-stability": "dev"
}