-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
81 lines (81 loc) · 2.19 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
74
75
76
77
78
79
80
81
{
"name": "ianm/boring-avatars",
"description": "Replace default Flarum avatars with Boring Avatars.",
"keywords": [
"flarum"
],
"type": "flarum-extension",
"license": "MIT",
"support": {
"issues": "https://github.com/imorland/flarum-ext-boring-avatars/issues",
"source": "https://github.com/imorland/flarum-ext-boring-avatars",
"forum": "https://discuss.flarum.org/d/33989"
},
"funding": [
{
"url": "https://www.buymeacoffee.com/ianm1"
}
],
"require": {
"php": "^8.0",
"flarum/core": "^1.8.3",
"enshrined/svg-sanitize": "*"
},
"authors": [
{
"name": "IanM",
"email": "ian@flarum.org",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"IanM\\BoringAvatars\\": "src/"
}
},
"extra": {
"flarum-extension": {
"title": "Boring Avatars",
"category": "",
"icon": {
"image": "assets/logo.svg",
"backgroundColor": "#FECC4D",
"backgroundSize": "100%",
"backgroundRepeat": "no-repeat",
"backgroundPosition": "center"
}
},
"flarum-cli": {
"modules": {
"admin": true,
"forum": true,
"js": true,
"jsCommon": true,
"css": true,
"locale": true,
"gitConf": true,
"githubActions": true,
"prettier": true,
"typescript": true,
"bundlewatch": false,
"backendTesting": false,
"editorConfig": true,
"styleci": false
}
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"fof/oauth": "*",
"flarum/phpstan": "*",
"flarum/gdpr": "dev-main"
},
"scripts": {
"analyse:phpstan": "phpstan analyse",
"clear-cache:phpstan": "phpstan clear-result-cache"
},
"scripts-descriptions": {
"analyse:phpstan": "Run static analysis"
}
}