-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.07 KB
/
composer.json
File metadata and controls
40 lines (40 loc) · 1.07 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
{
"name": "nearata/flarum-ext-internal-links-noreload",
"description": "Internal links no longer trigger a page reload.",
"keywords": [
"flarum"
],
"type": "flarum-extension",
"license": "Unlicense",
"support": {
"issues": "https://github.com/Nearata/flarum-ext-internal-links-noreload/issues",
"source": "https://github.com/Nearata/flarum-ext-internal-links-noreload",
"forum": "https://discuss.flarum.org/d/26844"
},
"require": {
"flarum/core": "^1.8"
},
"authors": [
{
"name": "Nearata",
"email": "nearata@protonmail.com",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Nearata\\InternalLinksNoReload\\": "src/"
}
},
"extra": {
"flarum-extension": {
"title": "Internal Links No Reload",
"category": "feature",
"icon": {
"name": "fas fa-link",
"backgroundColor": "#738290",
"color": "#fff"
}
}
}
}