-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
64 lines (64 loc) · 1.71 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
63
64
{
"name": "laravel-notification-channels/webex",
"description": "A Laravel Notification Channel for Webex.",
"homepage": "https://github.com/laravel-notification-channels/webex",
"keywords": [
"webex notification",
"webex notifications channel",
"notification",
"webex",
"laravel"
],
"license": "MIT",
"authors": [
{
"name": "Ashesh Singh",
"email": "[email protected]",
"homepage": "https://askmrsinh.com",
"role": "Developer"
}
],
"require": {
"php": ">=8.1",
"ext-json": "*",
"egulias/email-validator": "*",
"guzzlehttp/guzzle": "^7.0",
"illuminate/notifications": "~10.0 || ~11.0",
"illuminate/support": "~10.0 || ~11.0"
},
"require-dev": {
"laravel/pint": "^1.14",
"mockery/mockery": "^1.0",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
"NotificationChannels\\Webex\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"NotificationChannels\\Webex\\Test\\": "tests"
}
},
"scripts": {
"analyse": "phpstan analyse --level 1 src tests",
"analyse:clear": "phpstan clear-result-cache",
"format": "pint",
"test": "phpunit",
"test:coverage": "phpunit --coverage-text --coverage-clover=coverage.clover"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"NotificationChannels\\Webex\\WebexServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}