forked from craftpulse/craft-notifications
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
66 lines (66 loc) · 2.1 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
65
66
{
"name": "craftpulse/craft-notifications",
"description": "Send notifications across a variety of delivery channels, including mail and Slack. Notifications may also be stored in a database so they may be displayed in your web interface.",
"type": "craft-plugin",
"version": "4.1.2",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"notifications",
"slack",
"email"
],
"support": {
"email": "support@percipio.london",
"docs": "https://github.com/percipioglobal/craft-notifications/blob/master/README.md",
"issues": "https://github.com/percipioglobal/craft-notifications/issues"
},
"license": "MIT",
"authors": [
{
"name": "Percipio Global Ltd",
"homepage": "https://percipio.london"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.2",
"craftcms/cms": "^4.0.0-beta.1|^5.0",
"guzzlehttp/guzzle": "^7.0",
"nesbot/carbon": "^2.19"
},
"require-dev": {
"craftcms/phpstan": "dev-main",
"craftcms/rector": "dev-main"
},
"autoload": {
"psr-4": {
"percipiolondon\\notifications\\": "src/"
}
},
"extra": {
"name": "Notifications",
"handle": "notifications",
"schemaVersion": "1.0.0",
"developer": "percipiolondon",
"developerUrl": "https://percipio.london",
"documentationUrl": "https://github.com/percipioglobal/craft-notifications/blob/v4/README.md",
"changelogUrl": "https://raw.githubusercontent.com/percipioglobal/craft-notifications/v4/CHANGELOG.md",
"components": {
"notificationsService": "percipiolondon\\notifications\\services\\NotificationsService"
},
"class": "percipiolondon\\notifications\\Notifications"
},
"scripts": {
"phpstan": "phpstan --memory-limit=1G"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}