-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.13 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.13 KB
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": "puzzley/sms",
"description": "A Laravel package for sending SMS using PayamResan, KaveNegar, and FarazSMS.",
"type": "library",
"license": "MIT",
"require": {
"php": ">=7.2",
"laravel/framework": "^8.0 || ^9.0 || ^10.0"
},
"keywords": [
"laravel",
"sms",
"payamresan",
"kavenegar",
"farazsms",
"messaging"
],
"authors": [
{
"name": "Mohammad Zare Moghadam",
"email": "mzmoghadam72@gmail.com",
"role": "Developer"
},
{
"name": "Amir Reza Rezaei",
"email": "callamizayi@gmail.com",
"role": "Developer"
}
],
"support": {
"email": "mzmoghadam72@gmail.com"
},
"autoload": {
"psr-4": {
"Puzzley\\SMS\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Puzzley\\SMS\\SMSServiceProvider"
],
"aliases": {
"SMS": "Puzzley\\SMS\\Facades\\SMS"
}
}
},
"minimum-stability": "stable"
}