-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: enable phpstan * chore: bump js deps
- Loading branch information
Showing
6 changed files
with
736 additions
and
785 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: FoF Default User Preferences PHP | ||
|
||
on: [workflow_dispatch, push, pull_request] | ||
|
||
jobs: | ||
run: | ||
uses: flarum/framework/.github/workflows/REUSABLE_backend.yml@main | ||
with: | ||
enable_backend_testing: false | ||
enable_phpstan: true | ||
|
||
backend_directory: . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,68 @@ | ||
{ | ||
"name": "fof/default-user-preferences", | ||
"description": "Configure the default user preferences for new users joining your forum", | ||
"keywords": [ | ||
"flarum" | ||
], | ||
"type": "flarum-extension", | ||
"license": "MIT", | ||
"homepage": "https://friendsofflarum.org", | ||
"funding": [ | ||
{ | ||
"type": "website", | ||
"url": "https://opencollective.com/fof/donate" | ||
} | ||
], | ||
"support": { | ||
"issues": "https://github.com/FriendsOfFlarum/default-user-preferences/issues", | ||
"source": "https://github.com/FriendsOfFlarum/default-user-preferences", | ||
"forum": "https://discuss.flarum.org/d/18607" | ||
}, | ||
"require": { | ||
"flarum/core": "^1.6.2" | ||
}, | ||
"replace": { | ||
"piotr-tokarczyk/flarum-user-default-preferences": "*" | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "FoF Team", | ||
"email": "[email protected]", | ||
"role": "Developer" | ||
} | ||
], | ||
"autoload": { | ||
"psr-4": { | ||
"FoF\\DefaultUserPreferences\\": "src/" | ||
} | ||
}, | ||
"extra": { | ||
"flarum-extension": { | ||
"title": "FoF Default User Preferences", | ||
"category": "feature", | ||
"icon": { | ||
"name": "fas fa-reply-all", | ||
"backgroundColor": "#e74c3c", | ||
"color": "#fff" | ||
} | ||
"name": "fof/default-user-preferences", | ||
"description": "Configure the default user preferences for new users joining your forum", | ||
"keywords": [ | ||
"flarum" | ||
], | ||
"type": "flarum-extension", | ||
"license": "MIT", | ||
"homepage": "https://friendsofflarum.org", | ||
"funding": [ | ||
{ | ||
"type": "website", | ||
"url": "https://opencollective.com/fof/donate" | ||
} | ||
], | ||
"support": { | ||
"issues": "https://github.com/FriendsOfFlarum/default-user-preferences/issues", | ||
"source": "https://github.com/FriendsOfFlarum/default-user-preferences", | ||
"forum": "https://discuss.flarum.org/d/18607" | ||
}, | ||
"require": { | ||
"flarum/core": "^1.6.2" | ||
}, | ||
"replace": { | ||
"piotr-tokarczyk/flarum-user-default-preferences": "*" | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "FoF Team", | ||
"email": "[email protected]", | ||
"role": "Developer" | ||
} | ||
], | ||
"autoload": { | ||
"psr-4": { | ||
"FoF\\DefaultUserPreferences\\": "src/" | ||
} | ||
}, | ||
"extra": { | ||
"flarum-extension": { | ||
"title": "FoF Default User Preferences", | ||
"category": "feature", | ||
"icon": { | ||
"name": "fas fa-reply-all", | ||
"backgroundColor": "#e74c3c", | ||
"color": "#fff" | ||
} | ||
}, | ||
"flagrow": { | ||
"discuss": "https://discuss.flarum.org/d/18607" | ||
}, | ||
"flarum-cli": { | ||
"modules": { | ||
"githubActions": true | ||
} | ||
} | ||
}, | ||
"require-dev": { | ||
"flarum/phpstan": "*" | ||
}, | ||
"scripts": { | ||
"analyse:phpstan": "phpstan analyse", | ||
"clear-cache:phpstan": "phpstan clear-result-cache" | ||
}, | ||
"flagrow": { | ||
"discuss": "https://discuss.flarum.org/d/18607" | ||
"scripts-descriptions": { | ||
"analyse:phpstan": "Run static analysis" | ||
} | ||
} | ||
} |
Oops, something went wrong.