-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.52 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": "davidpella/beem-sms-laravel",
"description": "Provides Beem notification channel for Laravel",
"keywords": [
"laravel",
"beem",
"notification",
"sms",
"davidpella",
"beem-sms"
],
"homepage": "https://github.com/davidpella/beem-sms-laravel",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "David Pella",
"email": "[email protected]",
"homepage": "https://github.com/davidpella",
"role": "Developer"
}
],
"require": {
"php": ">=7.4",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.3",
"illuminate/support": "^8.50"
},
"require-dev": {
"phpunit/phpunit": "^9.3",
"orchestra/testbench": "^6.15"
},
"autoload": {
"psr-4": {
"DavidPella\\BeemSms\\": "src",
"DavidPella\\BeemSms\\Database\\Factories\\": "database/factories"
}
},
"autoload-dev": {
"psr-4": {
"DavidPella\\BeemSms\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test:unit": "phpunit --verbose --testsuite Unit"
},
"extra": {
"laravel": {
"providers": [
"DavidPella\\BeemSms\\BeemSmsServiceProvider"
],
"aliases": {
"BeemSms": "DavidPella\\BeemSms\\Facades\\BeemSms"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}