forked from Mujhtech/laravel-sendchamp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 1.12 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
{
"name": "ouredenlife/laravel-sendchamp",
"description": "Laravel package for sendchamp api",
"keywords": [
"php",
"github",
"laravel",
"Open Source",
"sms",
"email",
"sendchamp",
"whatsapp",
"otp",
"mujhtech",
"laravel 6",
"laravel 7",
"laravel 8",
"laravel 9",
"laravel 10"
],
"license": "MIT",
"minimum-stability": "stable",
"require": {
"guzzlehttp/guzzle": "~6|~7",
"php": "^7.2|^8.0|^8.1",
"illuminate/support": "~6|~7|~8|^9.0|^10.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"mockery/mockery": "^1.4",
"laravel/pint": "^1.2"
},
"authors": [
{
"name": "Mujhtech",
"email": "[email protected]"
}
],
"autoload": {
"files": [
"src/Helpers.php"
],
"psr-4": {
"Mujhtech\\SendChamp\\": "src/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"laravel": {
"providers": [
"Mujhtech\\SendChamp\\SendChampServiceProvider"
],
"aliases": {
"SendChamp": "Mujhtech\\SendChamp\\Facades\\SendChamp"
}
}
}
}