-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
42 lines (41 loc) · 1.1 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
{
"name": "msgowl/msgowl-laravel-notification-channel",
"description": "MsgOwl notification channel for laravel",
"license": "MIT",
"authors": [
{
"name": "Mohamed jinas",
"email": "boringdragon98@gmail.com"
}
],
"require": {
"php": "^8.0|^8.1",
"illuminate/notifications": "^8.0|^9.0|^10.0|^11.0",
"illuminate/support": "^8.0|^9.0|^10.0|^11.0",
"illuminate/queue": "^8.0|^9.0|^10.0|^11.0",
"guzzlehttp/guzzle": "^7.0.1|^7.2",
"ext-json": "*"
},
"require-dev": {
"mockery/mockery": "^1.4.4",
"phpunit/phpunit": "^9.5.10|^10.0",
"laravel/pint": "^1.10"
},
"autoload": {
"psr-4": {
"MsgOwl\\MsgowlLaravelNotificationChannel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MsgOwl\\MsgowlLaravelNotificationChannel\\Test\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"MsgOwl\\MsgowlLaravelNotificationChannel\\MsgOwlServiceProvider"
]
}
}
}