-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.63 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": "pushmix/laravel-web-notification",
"type": "library",
"description": "Pushmix Notification Driver for Laravel",
"keywords": ["web notifications","laravel notification channels","laravel notifications driver", "pushmix"],
"homepage": "https://github.com/pushmix/laravel-web-notification",
"support": {
"issues": "https://github.com/pushmix/laravel-web-notification/issues",
"source": "https://github.com/pushmix/laravel-web-notification"
},
"license": "MIT",
"authors": [
{
"name": "Alexander Pechkarev",
"email": "[email protected]",
"homepage": "https://www.pushmix.co.uk",
"role": "Developer"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=7.2.0",
"guzzlehttp/guzzle": "^6.3@dev",
"illuminate/notifications": "6.*",
"illuminate/support": "6.*"
},
"require-dev": {
"mockery/mockery": "^1.0",
"orchestra/testbench": "^3.5",
"phpunit/phpunit": "^6.4"
},
"autoload": {
"psr-4": {
"Pushmix\\WebNotification\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pushmix\\WebNotification\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"laravel": {
"providers": [
"Pushmix\\WebNotification\\PushmixServiceProvider"
],
"aliases": {
"Pushmix": "Pushmix\\WebNotification\\PushmixFacade"
}
}
},
"config": {
"sort-packages": true
}
}