forked from nunomaduro/laravel-desktop-notifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (62 loc) · 1.56 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
61
62
{
"name": "nunomaduro/laravel-desktop-notifier",
"description": "Send notifications to your desktop from your Laravel commands. An JoliNotif wrapper for Laravel 5.",
"keywords": [
"laravel",
"framework",
"console",
"artisan",
"php",
"wrapper",
"JoliNotif",
"notification",
"notifier",
"Nuno Maduro",
"NunoMaduro"
],
"license": "MIT",
"require": {
"php": "^8.1",
"illuminate/support": "^10.0|^11.0",
"illuminate/console": "^10.0|^11.0",
"jolicode/jolinotif": "^2.5"
},
"require-dev": {
"graham-campbell/testbench": "^5.7|^6.1",
"pestphp/pest": "^2.34"
},
"authors": [
{
"name": "Nuno Maduro",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"NunoMaduro\\LaravelDesktopNotifier\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NunoMaduro\\Tests\\LaravelDesktopNotifier\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"NunoMaduro\\LaravelDesktopNotifier\\LaravelDesktopNotifierServiceProvider"
],
"aliases": {
"Notifier": "NunoMaduro\\LaravelDesktopNotifier\\Facaces\\Notifier"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}