-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
58 lines (58 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
{
"name": "tylercd100/laravel-notify",
"description": "",
"keywords": [
"laravel",
"notifications",
"monolog",
"tylercd100"
],
"homepage": "https://github.com/tylercd100/laravel-notify",
"license": "MIT",
"authors": [
{
"name": "Tyler Arbon",
"email": "tylercd100@gmail.com"
}
],
"autoload":{
"psr-4":{
"Tylercd100\\Notify\\":"src/"
}
},
"autoload-dev": {
"psr-4": {
"Tylercd100\\Notify\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"illuminate/support": "^6.0|^7.0|^8.0",
"monolog/monolog": "^2.0",
"php": "^7.2|^8.0",
"psr/log": "^1.0",
"tylercd100/monolog-mailgun": "^3.0",
"tylercd100/monolog-sms":"^2.0"
},
"require-dev": {
"sentry/sentry": "dev-php8-support",
"symfony/options-resolver": "^5.1",
"http-interop/http-factory-guzzle": "^1.0.0",
"php-http/guzzle7-adapter": "^0.2.0",
"phpunit/phpunit": "^8.4|^9.3.3",
"mockery/mockery": "~1.3.3|^1.4.2",
"orchestra/testbench": "^4.0|^5.0|^6.0"
},
"suggest": {
"sentry/sentry": "Required to use the Sentry driver (~3.0)."
},
"extra": {
"providers": [
"Tylercd100\\Notify\\Providers\\NotifyServiceProvider"
],
"aliases": {
"Notify": "Tylercd100\\Notify\\Facades\\Notify"
}
}
}