-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
54 lines (54 loc) · 1.34 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
{
"name": "kilowhat/flarum-ext-affiliation-links",
"description": "Transform posted links into affiliation links with ease",
"keywords": [
"extension",
"flarum",
"affiliation",
"links"
],
"type": "flarum-extension",
"license": "MIT",
"authors": [
{
"name": "Clark Winkelmann",
"email": "[email protected]",
"homepage": "https://clarkwinkelmann.com/"
}
],
"support": {
"source": "https://github.com/kilowhat/flarum-ext-affiliation-links"
},
"require": {
"flarum/core": ">=0.1.0-beta.10 < 0.1.0-beta.11"
},
"require-dev": {
"phpunit/phpunit": "^5.0"
},
"replace": {
"flagrow/affiliation-links": "*"
},
"extra": {
"flarum-extension": {
"title": "Affiliation Links",
"icon": {
"name": "fas fa-exchange-alt",
"backgroundColor": "#f4f4f4",
"color": "#5f4bb6"
}
},
"flagrow": {
"discuss": "https://discuss.flarum.org/d/21833"
}
},
"autoload": {
"psr-4": {
"Kilowhat\\AffiliationLinks\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Kilowhat\\AffiliationLinks\\Tests\\": "tests/"
}
}
}