forked from askvortsov1/flarum-pwa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
73 lines (73 loc) · 2.04 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
67
68
69
70
71
72
73
{
"name": "askvortsov/flarum-pwa",
"description": "Turn your flarum site into a progressive web app!",
"keywords": [
"flarum"
],
"type": "flarum-extension",
"license": "MIT",
"support": {
"issues": "https://github.com/askvortsov1/flarum-pwa/issues",
"source": "https://github.com/askvortsov1/flarum-pwa",
"forum": "https://discuss.flarum.org/d/23219-progressive-web-app-and-push-notifications"
},
"require": {
"flarum/core": "^1.7",
"minishlink/web-push": "^7.0",
"spomky-labs/base64url" : "^2.0",
"kreait/firebase-php": "^7.9"
},
"suggest": {
"ext-gmp": "This can improve push notification performance."
},
"authors": [
{
"name": "Alexander Skvortsov",
"email": "[email protected]",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Askvortsov\\FlarumPWA\\": "src/"
}
},
"extra": {
"flarum-extension": {
"title": "Progressive Web App",
"category": "feature",
"icon": {
"name": "fas fa-mobile-alt",
"backgroundColor": "#6932D1",
"color": "#fff"
}
},
"flarum-cli": {
"modules": {
"admin": true,
"forum": true,
"js": true,
"jsCommon": false,
"css": false,
"gitConf": true,
"githubActions": true,
"prettier": true,
"typescript": false,
"bundlewatch": false,
"backendTesting": false,
"editorConfig": true,
"styleci": true
}
}
},
"require-dev": {
"flarum/phpstan": "^1.0"
},
"scripts": {
"analyse:phpstan": "phpstan analyse",
"clear-cache:phpstan": "phpstan clear-result-cache"
},
"scripts-descriptions": {
"analyse:phpstan": "Run static analysis"
}
}