-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.06 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
{
"name": "askvortsov/flarum-auth-sync",
"description": "Manage Sync from External Identity Providers",
"keywords": [
"flarum"
],
"type": "flarum-extension",
"license": "MIT",
"support": {
"issues": "https://github.com/askvortsov1/flarum-auth-sync/issues",
"source": "https://github.com/askvortsov1/flarum-auth-sync",
"forum": "https://discuss.flarum.org/d/22759-flarum-auth-sync"
},
"require": {
"flarum/core": "^0.1.0-beta.15"
},
"authors": [
{
"name": "Alexander Skvortsov",
"email": "askvortsov@yflarum.org",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Askvortsov\\FlarumAuthSync\\": "src/"
}
},
"extra": {
"flarum-extension": {
"title": "Flarum Auth Sync",
"category": "authentication",
"icon": {
"name": "fas fa-sync",
"backgroundColor": "#6932D1",
"color": "#fff"
}
}
}
}