forked from liviuk2/yii2-notifications
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
executable file
·43 lines (43 loc) · 1.07 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
{
"name": "webzop/yii2-notifications",
"description": "Notifications module for Yii2",
"type": "yii2-extension",
"keywords": [
"yii2",
"yii2-notifications",
"yii2-notifications-module",
"yii2-manage-notifications"
],
"authors": [
{
"name": "Gonçalo Esteves",
"email": "[email protected]",
"homepage": "https://webzop.com",
"role": "Developer"
}
],
"license": "BSD-3-Clause",
"require": {
"php": ">=7.1",
"ext-fileinfo": "*",
"yiisoft/yii2": "~2.0.13",
"minishlink/web-push": "^6.0",
"yetopen/yii2-sms-sender-interface": "*",
"yiisoft/yii2-queue": "^2.3",
"2amigos/yii2-usuario": "*"
},
"autoload": {
"psr-4": {
"webzop\\notifications\\": "src"
}
},
"extra": {
"bootstrap": "webzop\\notifications\\Bootstrap"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}