flarum-ext-oauth-amazon/composer.json

42 lines
1.1 KiB
JSON
Raw Permalink Normal View History

2021-10-14 02:32:37 +08:00
{
"name": "ianm/oauth-amazon",
"description": "Log in to your Flarum forum with Amazon",
"keywords": [
2022-05-20 08:34:30 +08:00
"flarum", "amazon", "sso", "oauth", "login"
2021-10-14 02:32:37 +08:00
],
"type": "flarum-extension",
"license": "MIT",
"support": {
"issues": "https://github.com/imorland/flarum-ext-oauth-amazon/issues",
"source": "https://github.com/imorland/flarum-ext-oauth-amazon",
2021-11-26 05:35:23 +08:00
"forum": "https://discuss.flarum.org/d/29191"
2021-10-14 02:32:37 +08:00
},
"require": {
2022-05-20 08:32:41 +08:00
"flarum/core": "^1.2.0",
"fof/oauth": "^1.3.0",
2021-10-14 02:32:37 +08:00
"luchianenco/oauth2-amazon": "^2.0"
},
"authors": [
{
"name": "IanM",
"homepage": "https://discuss.flarum.org/u/ianm"
}
],
"autoload": {
"psr-4": {
"IanM\\OAuthAmazon\\": "src/"
}
},
"extra": {
"flarum-extension": {
"title": "Log In With Amazon",
"category": "feature",
"icon": {
"name": "fab fa-amazon",
"backgroundColor": "#0072e3",
"color": "#fff"
}
}
}
}