-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
88 lines (88 loc) · 2.5 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "maicol07/flarum-ext-sso",
"description": "SSO for Flarum",
"type": "flarum-extension",
"homepage": "https://docs.maicol07.it/en/flarum-sso/ext",
"keywords": [
"flarum",
"sso",
"auth",
"authentication",
"jwt",
"php",
"wp",
"wordpress"
],
"license": "MIT",
"authors": [
{
"name": "Maicol Battistini (maicol07)",
"email": "webmaster@maicol07.it",
"homepage": "https://www.maicol07.it"
}
],
"support": {
"issues": "https://tracker.maicol07.it/projects/0b8fae6e-4c8e-4b34-8fff-9bac316e4edc",
"source": "https://github.com/maicol07/flarum-ext-sso",
"docs": "https://docs.maicol07.it/en/flarum-sso/ext",
"forum": "https://discuss.flarum.org/d/21666-php-and-wordpress-single-sign-on-sso"
},
"funding": [
{
"type": "paypal",
"url": "https://paypal.me/maicol072001/10eur"
},
{
"type": "github",
"url": "https://github.com/sponsors/maicol07"
}
],
"require": {
"php": ">=7.3",
"ext-json": "*",
"flarum/core": "^1",
"maicol07/flarum-sso-plugin": "^3"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"lcobucci/jwt": ">=4.1"
},
"suggest": {
"lcobucci/jwt": ">=4.1. This is required if you want to use the JWT features that comes with the premium addon"
},
"autoload": {
"psr-4": {
"Maicol07\\SSO\\": "src/",
"Maicol07\\SSO\\Listener\\": "src/Listener",
"Maicol07\\SSO\\Middleware\\": "src/Middleware"
}
},
"extra": {
"flarum-extension": {
"title": "SSO (Single Sign On)",
"category": "feature",
"icon": {
"name": "fas fa-sign-in-alt",
"color": "#E66A2D",
"backgroundColor": "#FFE38F"
}
},
"flagrow": {
"discuss": "https://discuss.flarum.org/d/21666-php-and-wordpress-single-sign-on-sso"
},
"flarum-cli": {
"modules": {
"admin": true,
"githubActions": true,
"prettier": true,
"typescript": true,
"bundlewatch": true,
"styleci": true,
"editorConfig": true
}
}
},
"replace": {
"wuethrich44/flarum-ext-sso": "*"
}
}