-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
79 lines (79 loc) · 2.12 KB
/
Copy pathcomposer.json
File metadata and controls
79 lines (79 loc) · 2.12 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
75
76
77
78
79
{
"name": "ffans/bbcode-studio",
"description": "Custom BBCode rules, media embeds, and composer buttons for Flarum.",
"type": "flarum-extension",
"license": "MIT",
"keywords": [
"flarum",
"bbcode",
"formatter",
"media",
"embed"
],
"homepage": "https://github.com/FFans/bbcode-studio",
"support": {
"issues": "https://github.com/FFans/bbcode-studio/issues",
"source": "https://github.com/FFans/bbcode-studio",
"forum": "https://discuss.flarum.org/d/39753"
},
"funding": [
{
"type": "website",
"url": "https://opencollective.com/ffans/donate"
}
],
"authors": [
{
"name": "Golden",
"email": "thatsgolden@outlook.com",
"homepage": "https://github.com/thatsgolden",
"role": "Developer"
},
{
"name": "FFans",
"homepage": "https://github.com/FFans"
}
],
"require": {
"flarum/core": "^2.0.0",
"s9e/text-formatter": "^2.19"
},
"require-dev": {
"flarum/testing": "^2.0"
},
"autoload": {
"psr-4": {
"FFans\\BbcodeStudio\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FFans\\BbcodeStudio\\Tests\\": "tests/"
}
},
"scripts": {
"test": [
"@test:unit",
"@test:integration"
],
"test:unit": "@php vendor/bin/phpunit -c tests/phpunit.unit.xml",
"test:integration": "@php vendor/bin/phpunit -c tests/phpunit.integration.xml",
"test:setup": "@php tests/integration/setup.php"
},
"extra": {
"flarum-extension": {
"title": "FFans BBcode Studio",
"category": "feature",
"links": {
"forumZh": "https://discuss.flarum.org.cn/d/16554"
},
"icon": {
"name": "fas fa-code",
"backgroundColor": "#6f42c1",
"color": "#ffffff"
}
}
},
"minimum-stability": "beta",
"prefer-stable": true
}