forked from laravel-notification-channels/channels
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.26 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
{
"name": "laravel-notification-channels/mstatgr",
"description": "M-Stat Laravel Notification Channel",
"homepage": "https://github.com/laravel-notification-channels/mstatgr",
"license": "MIT",
"authors": [
{
"name": "Nikolas Chatzidakis",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"illuminate/notifications": "~9.0",
"illuminate/support": "~9.0",
"illuminate/config": "~9.0",
"illuminate/database": "~9.0",
"illuminate/http": "~9.0",
"guzzlehttp/guzzle": "^7.5"
},
"require-dev": {
"mockery/mockery": "^1.0",
"orchestra/testbench": "^7.8",
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
"NotificationChannels\\MstatGr\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"NotificationChannels\\MstatGr\\Test\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"test:coverage": "phpunit --coverage-text --coverage-clover=coverage.clover",
"post-autoload-dump": ["@php ./vendor/bin/testbench package:discover --ansi"]
},
"config": {
"sort-packages": true
}
}