88 lines
2.3 KiB
JSON
88 lines
2.3 KiB
JSON
{
|
|
"name": "fof/nightmode",
|
|
"description": "Add a Night Mode option for your users to use on your Flarum forum",
|
|
"keywords": [
|
|
"flarum",
|
|
"extension",
|
|
"friendsoflarum",
|
|
"nightmode",
|
|
"night",
|
|
"mode",
|
|
"option"
|
|
],
|
|
"type": "flarum-extension",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Christian Lopez",
|
|
"email": "Lopez.T.Christian@gmail.com"
|
|
},
|
|
{
|
|
"name": "David Sevilla Martin",
|
|
"homepage": "https://discuss.flarum.org/u/datitisev",
|
|
"role": "Developer"
|
|
}
|
|
],
|
|
"support": {
|
|
"issues": "https://github.com/FriendsOfFlarum/nightmode/issues",
|
|
"source": "https://github.com/FriendsOfFlarum/nightmode",
|
|
"forum": "https://discuss.flarum.org/d/21492"
|
|
},
|
|
"homepage": "https://friendsofflarum.org",
|
|
"funding": [
|
|
{
|
|
"type": "website",
|
|
"url": "https://opencollective.com/fof/donate"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^7.4 || ^8.0",
|
|
"flarum/core": "^1.7.0"
|
|
},
|
|
"replace": {
|
|
"reflar/nightmode": "*"
|
|
},
|
|
"extra": {
|
|
"flarum-extension": {
|
|
"title": "FoF Night Mode",
|
|
"category": "feature",
|
|
"icon": {
|
|
"name": "far fa-moon",
|
|
"backgroundColor": "#e74c3c",
|
|
"color": "#fff"
|
|
}
|
|
},
|
|
"flagrow": {
|
|
"discuss": "https://discuss.flarum.org/d/21492"
|
|
},
|
|
"optional-dependencies": [
|
|
"fof/default-user-preferences"
|
|
],
|
|
"flarum-cli": {
|
|
"modules": {
|
|
"githubActions": true
|
|
}
|
|
}
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"FoF\\NightMode\\": "src/"
|
|
},
|
|
"files": [
|
|
"src/Overrides/Forum/ValidateCustomLess.php",
|
|
"src/Overrides/Frontend/Assets.php",
|
|
"src/Overrides/Frontend/RecompileFrontendAssets.php"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"analyse:phpstan": "phpstan analyse",
|
|
"clear-cache:phpstan": "phpstan clear-result-cache"
|
|
},
|
|
"scripts-descriptions": {
|
|
"analyse:phpstan": "Run static analysis"
|
|
},
|
|
"require-dev": {
|
|
"flarum/phpstan": "*",
|
|
"fof/default-user-preferences": "*"
|
|
}
|
|
}
|