-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
74 lines (74 loc) · 2.08 KB
/
Copy pathcomposer.json
File metadata and controls
74 lines (74 loc) · 2.08 KB
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
{
"name": "acpl/flarum-db-snapshots",
"description": "Create and restore database snapshots for Flarum via CLI",
"type": "flarum-extension",
"homepage": "https://github.com/android-com-pl/flarum-db-snapshots",
"license": "MIT",
"authors": [
{
"name": "Rafał Całka",
"homepage": "https://github.com/rafaucau",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/android-com-pl/flarum-db-snapshots/issues",
"source": "https://github.com/android-com-pl/flarum-db-snapshots",
"forum": "https://discuss.flarum.org/d/38880-flarum-database-snapshots"
},
"funding": [
{
"type": "github",
"url": "https://github.com/android-com-pl/flarum-db-snapshots?sponsor=1"
}
],
"require": {
"php": "^8.3",
"flarum/core": "^v2.0.0-beta.8",
"spatie/db-dumper": "^4.1.0"
},
"require-dev": {
"flarum/phpstan": "^2.0@beta"
},
"autoload": {
"psr-4": {
"Acpl\\FlarumDbSnapshots\\": "src/"
}
},
"extra": {
"flarum-extension": {
"title": "DB Snapshots",
"category": "feature",
"icon": {
"name": "fas fa-database",
"backgroundColor": "#00dc51",
"color": "#15161E"
}
},
"flarum-cli": {
"modules": {
"admin": false,
"forum": false,
"js": false,
"jsCommon": false,
"gitConf": true,
"githubActions": true,
"prettier": false,
"typescript": false,
"bundlewatch": false,
"backendTesting": false,
"editorConfig": true,
"styleci": true,
"css": false
}
}
},
"minimum-stability": "beta",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"scripts": {
"analyse:phpstan": "phpstan analyse"
}
}