forked from nunomaduro/laravel-desktop-notifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.39 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
{
"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": "^7.1.3",
"illuminate/support": "5.6.*",
"illuminate/console": "5.6.*",
"jolicode/jolinotif": "2.0.*"
},
"require-dev": {
"graham-campbell/testbench": "dev-master",
"phpunit/phpunit": "^7.0"
},
"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"
},
"extra": {
"laravel": {
"providers": [
"NunoMaduro\\LaravelDesktopNotifier\\LaravelDesktopNotifierServiceProvider"
],
"aliases": {
"Notifier": "NunoMaduro\\LaravelDesktopNotifier\\Facaces\\Notifier"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}