-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
74 lines (74 loc) · 2.02 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "craftsys/msg91-laravel",
"description": "Laravel service provider for Msg91 apis to Send OTPs, Verify OTPs, Resend OTPs, Send SMS (Short Message) etc",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Sudhir Mitharwal",
"email": "luckysud4@gmail.com",
"role": "Developer",
"homepage": "http://github.com/sudkumar"
}
],
"keywords": [
"msg91",
"php",
"laravel",
"otp",
"sms",
"verify otp",
"resend otp",
"short message"
],
"homepage": "https://github.com/craftsys/msg91-laravel",
"support": {
"issues": "https://github.com/craftsys/msg91-laravel/issues",
"source": "https://github.com/craftsys/msg91-laravel",
"email": "luckysud4@gmail.com"
},
"require": {
"php": "^7.1.3|^8.0|^8.1|^8.2",
"craftsys/msg91-php": "^0.15.4",
"illuminate/support": "^5.2|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0"
},
"require-dev": {
"orchestra/testbench": "~3.8|^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
"phpunit/phpunit": "^5.3|^6.0|^7.0|^8.0|^9.4|^10.0"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"prefer-stable": true,
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Craftsys\\Msg91\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Craftsys\\Tests\\Msg91\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.x.x-dev"
},
"laravel": {
"aliases": {
"Msg91": "Craftsys\\Msg91\\Facade\\Msg91"
},
"providers": [
"Craftsys\\Msg91\\Msg91LaravelServiceProvider"
]
}
},
"scripts": {
"test": "phpunit --colors=always"
},
"suggest": {
"craftsys/msg91-laravel-notification-channel": "Easily send sms/otp notifications via msg91 channel"
}
}