-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
41 lines (41 loc) · 880 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
{
"name": "ardakilic/mutlucell",
"description": "Mutlucell SMS API wrapper for sending sms text messages for Laravel",
"keywords": [
"laravel",
"sms",
"api",
"mutlucell"
],
"license": "MIT",
"authors": [
{
"name": "Arda Kilicdagi",
"email": "[email protected]",
"homepage": "https://arda.pw",
"role": "Developer"
}
],
"require": {
"php": "^7.3|^8.0",
"illuminate/support": "11.*",
"guzzlehttp/guzzle": "^6.5.6|^7.5.0",
"ext-simplexml": "*"
},
"autoload": {
"psr-4": {
"Ardakilic\\Mutlucell\\": "src/Ardakilic/Mutlucell/"
}
},
"extra": {
"laravel": {
"providers": [
"Ardakilic\\Mutlucell\\MutlucellServiceProvider"
],
"aliases": {
"Mutlucell": "Ardakilic\\Mutlucell\\Facades\\Mutlucell"
}
}
},
"minimum-stability": "stable"
}