-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.59 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
55
56
{
"name": "blomstra/email-conversations",
"description": "Start discussions and reply to discussions via email ",
"keywords": [
"flarum"
],
"homepage": "https://blomstra.net",
"support": {
"source": "https://github.com/blomstra/flarum-ext-email-conversations",
"issues": "https://github.com/blomstra/flarum-ext-email-conversations/issues",
"email": "helpdesk@blomstra.net"
},
"type": "flarum-extension",
"license": "MIT",
"require": {
"php": "^8.0",
"flarum/core": "^1.6.3",
"mailgun/mailgun-php": "^3.5.5",
"symfony/http-client": "^6.0",
"nyholm/psr7": "^1.5",
"flarum/approval": "*",
"flarum/mentions": "*",
"flarum/tags": "*",
"flarum/subscriptions": "*",
"blomstra/conversations": "^0.1.0",
"league/html-to-markdown": "^5.1",
"fof/upload": "^1.2"
},
"authors": [
{
"name": "Team Blomstra",
"email": "development@blomstra.net",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Blomstra\\EmailConversations\\": "src/"
}
},
"extra": {
"flarum-extension": {
"title": "Conversations by Email",
"category": "feature",
"icon": {
"name": "fas fa-mail-bulk",
"backgroundColor": "#EBF1FD",
"color": "#3a98d0"
}
},
"optional-dependencies": [
"fof/pretty-mail",
"askvortsov/flarum-markdown-tables"
]
}
}