-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
58 lines (58 loc) · 1.06 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
{
"name": "mujhtech/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"
],
"license": "MIT",
"minimum-stability": "stable",
"require": {
"guzzlehttp/guzzle": "^7.3",
"php": "^7.2|^8.0",
"illuminate/support": "~6|~7|~8"
},
"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"
}
}
}
}