This commit is contained in:
wp-xwiki 2026-03-25 14:48:07 +00:00
commit a6f79da4a2
1 changed files with 32 additions and 0 deletions

32
composer.json Normal file
View File

@ -0,0 +1,32 @@
{
"name": "wp-xwiki/flarum-oauth-entra",
"description": "Microsoft Entra ID (Azure AD) OAuth provider for Flarum with Tenant ID support.",
"type": "flarum-extension",
"license": "MIT",
"authors": [
{
"name": "wp-xwiki",
"email": "admin@example.com"
}
],
"require": {
"flarum/core": "^1.0.0",
"fof/oauth": "^1.3.0",
"stevenmaguire/oauth2-microsoft": "^2.2"
},
"autoload": {
"psr-4": {
"Sbp\\FlarumOAuthEntra\\": "src/"
}
},
"extra": {
"flarum-extension": {
"title": "Microsoft Entra ID OAuth",
"icon": {
"name": "fab fa-microsoft",
"backgroundColor": "#2F2F2F",
"color": "#ffffff"
}
}
}
}