-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
128 additions
and
88 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,11 @@ | ||
name: FoF Follow Tags PHP | ||
|
||
on: [workflow_dispatch, push, pull_request] | ||
|
||
jobs: | ||
run: | ||
uses: flarum/framework/.github/workflows/REUSABLE_backend.yml@main | ||
with: | ||
enable_backend_testing: false | ||
|
||
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,65 +1,80 @@ | ||
{ | ||
"name": "fof/follow-tags", | ||
"description": "Follow tags and be notified of new discussions and replies", | ||
"keywords": [ | ||
"flarum" | ||
], | ||
"type": "flarum-extension", | ||
"license": "MIT", | ||
"support": { | ||
"issues": "https://github.com/FriendsOfFlarum/follow-tags/issues", | ||
"source": "https://github.com/FriendsOfFlarum/follow-tags", | ||
"forum": "https://discuss.flarum.org/d/20525" | ||
}, | ||
"homepage": "https://friendsofflarum.org", | ||
"funding": [ | ||
{ | ||
"type": "website", | ||
"url": "https://opencollective.com/fof/donate" | ||
} | ||
], | ||
"require": { | ||
"flarum/core": "^1.3.0", | ||
"flarum/tags": "^1.3.0", | ||
"fof/extend": "^1.0.0" | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "David Sevilla Martín", | ||
"email": "[email protected]", | ||
"role": "Developer" | ||
"name": "fof/follow-tags", | ||
"description": "Follow tags and be notified of new discussions and replies", | ||
"keywords": [ | ||
"flarum" | ||
], | ||
"type": "flarum-extension", | ||
"license": "MIT", | ||
"support": { | ||
"issues": "https://github.com/FriendsOfFlarum/follow-tags/issues", | ||
"source": "https://github.com/FriendsOfFlarum/follow-tags", | ||
"forum": "https://discuss.flarum.org/d/20525" | ||
}, | ||
{ | ||
"name": "IanM", | ||
"email": "[email protected]", | ||
"role": "Developer" | ||
} | ||
], | ||
"autoload": { | ||
"psr-4": { | ||
"FoF\\FollowTags\\": "src/" | ||
} | ||
}, | ||
"extra": { | ||
"flarum-extension": { | ||
"title": "FoF Follow Tags", | ||
"category": "feature", | ||
"icon": { | ||
"name": "fas fa-user-tag", | ||
"backgroundColor": "#e74c3c", | ||
"color": "#fff" | ||
}, | ||
"optional-dependencies": [ | ||
"flarum/subscriptions", | ||
"flarum/approval" | ||
] | ||
"homepage": "https://friendsofflarum.org", | ||
"funding": [ | ||
{ | ||
"type": "website", | ||
"url": "https://opencollective.com/fof/donate" | ||
} | ||
], | ||
"require": { | ||
"flarum/core": "^1.8.3", | ||
"flarum/tags": "^1.8.0", | ||
"fof/extend": "^1.2.0" | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "David Sevilla Martín", | ||
"email": "[email protected]", | ||
"role": "Developer" | ||
}, | ||
{ | ||
"name": "IanM", | ||
"email": "[email protected]", | ||
"role": "Developer" | ||
} | ||
], | ||
"autoload": { | ||
"psr-4": { | ||
"FoF\\FollowTags\\": "src/" | ||
} | ||
}, | ||
"extra": { | ||
"flarum-extension": { | ||
"title": "FoF Follow Tags", | ||
"category": "feature", | ||
"icon": { | ||
"name": "fas fa-user-tag", | ||
"backgroundColor": "#e74c3c", | ||
"color": "#fff" | ||
}, | ||
"optional-dependencies": [ | ||
"flarum/subscriptions", | ||
"flarum/approval", | ||
"flarum/mentions" | ||
] | ||
}, | ||
"flagrow": { | ||
"discuss": "https://discuss.flarum.org/d/20525" | ||
}, | ||
"flarum-cli": { | ||
"modules": { | ||
"githubActions": true | ||
} | ||
} | ||
}, | ||
"require-dev": { | ||
"flarum/approval": "*", | ||
"flarum/subscriptions": "*", | ||
"flarum/phpstan": "*", | ||
"flarum/mentions": "*" | ||
}, | ||
"scripts": { | ||
"analyse:phpstan": "phpstan analyse", | ||
"clear-cache:phpstan": "phpstan clear-result-cache" | ||
}, | ||
"flagrow": { | ||
"discuss": "https://discuss.flarum.org/d/20525" | ||
"scripts-descriptions": { | ||
"analyse:phpstan": "Run static analysis" | ||
} | ||
}, | ||
"require-dev": { | ||
"flarum/approval": "*", | ||
"flarum/subscriptions": "*" | ||
} | ||
} |
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
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,13 @@ | ||
includes: | ||
- vendor/flarum/phpstan/extension.neon | ||
|
||
parameters: | ||
# The level will be increased in Flarum 2.0 | ||
level: 5 | ||
paths: | ||
- extend.php | ||
- src | ||
excludePaths: | ||
- *.blade.php | ||
checkMissingIterableValueType: false | ||
databaseMigrationsPath: ['migrations'] |
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
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
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
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