-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.07 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
{
"name": "blomstra/trello",
"description": "Create Trello cards from Flarum discussions",
"keywords": [
"flarum"
],
"type": "flarum-extension",
"license": "MIT",
"support": {
"issues": "https://github.com/blomstra/flarum-ext-trello/issues",
"source": "https://github.com/blomstra/flarum-ext-trello",
"forum": "https://blomstra.community/t/trello"
},
"homepage": "https://blomstra.net",
"require": {
"flarum/core": "^1.2.0",
"blomstra/trello-php": "*"
},
"authors": [
{
"name": "Team Blomstra",
"email": "development@blomstra.net",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Blomstra\\Trello\\": "src/"
}
},
"extra": {
"flarum-extension": {
"title": "Trello",
"category": "feature",
"icon": {
"name": "fab fa-trello",
"backgroundColor": "#EBF1FD",
"color": "#3a98d0"
}
}
}
}