-
-
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
5 changed files
with
109 additions
and
67 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 Polls 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 was deleted.
Oops, something went wrong.
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,19 @@ | ||
name: FoF Polls JS | ||
|
||
on: [workflow_dispatch, push, pull_request] | ||
|
||
jobs: | ||
run: | ||
uses: flarum/framework/.github/workflows/REUSABLE_frontend.yml@main | ||
with: | ||
enable_bundlewatch: false | ||
enable_prettier: true | ||
enable_typescript: true | ||
|
||
frontend_directory: ./js | ||
backend_directory: . | ||
js_package_manager: npm | ||
main_git_branch: master | ||
|
||
secrets: | ||
bundlewatch_github_token: ${{ secrets.BUNDLEWATCH_GITHUB_TOKEN }} |
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,54 +1,69 @@ | ||
{ | ||
"name": "fof/polls", | ||
"description": " A Flarum extension that adds polls to your discussions", | ||
"keywords": [ | ||
"flarum" | ||
], | ||
"type": "flarum-extension", | ||
"license": "MIT", | ||
"support": { | ||
"issues": "https://github.com/FriendsOfFlarum/polls/issues", | ||
"source": "https://github.com/FriendsOfFlarum/polls", | ||
"forum": "https://discuss.flarum.org/d/20586" | ||
}, | ||
"homepage": "https://friendsofflarum.org", | ||
"funding": [ | ||
{ | ||
"type": "website", | ||
"url": "https://opencollective.com/fof/donate" | ||
} | ||
], | ||
"require": { | ||
"flarum/core": "^1.3.0" | ||
}, | ||
"conflict": { | ||
"reflar/polls": "*" | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "David Sevilla Martin", | ||
"email": "[email protected]", | ||
"role": "Developer" | ||
} | ||
], | ||
"autoload": { | ||
"psr-4": { | ||
"FoF\\Polls\\": "src/", | ||
"FoF\\Polls\\Migrations\\": "migrations/" | ||
} | ||
}, | ||
"extra": { | ||
"flarum-extension": { | ||
"title": "FoF Polls", | ||
"category": "discussion", | ||
"icon": { | ||
"name": "fas fa-signal", | ||
"backgroundColor": "#e74c3c", | ||
"color": "#fff" | ||
} | ||
"name": "fof/polls", | ||
"description": " A Flarum extension that adds polls to your discussions", | ||
"keywords": [ | ||
"flarum" | ||
], | ||
"type": "flarum-extension", | ||
"license": "MIT", | ||
"support": { | ||
"issues": "https://github.com/FriendsOfFlarum/polls/issues", | ||
"source": "https://github.com/FriendsOfFlarum/polls", | ||
"forum": "https://discuss.flarum.org/d/20586" | ||
}, | ||
"homepage": "https://friendsofflarum.org", | ||
"funding": [ | ||
{ | ||
"type": "website", | ||
"url": "https://opencollective.com/fof/donate" | ||
} | ||
], | ||
"require": { | ||
"flarum/core": "^1.3.0" | ||
}, | ||
"conflict": { | ||
"reflar/polls": "*" | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "David Sevilla Martin", | ||
"email": "[email protected]", | ||
"role": "Developer" | ||
} | ||
], | ||
"autoload": { | ||
"psr-4": { | ||
"FoF\\Polls\\": "src/", | ||
"FoF\\Polls\\Migrations\\": "migrations/" | ||
} | ||
}, | ||
"extra": { | ||
"flarum-extension": { | ||
"title": "FoF Polls", | ||
"category": "discussion", | ||
"icon": { | ||
"name": "fas fa-signal", | ||
"backgroundColor": "#e74c3c", | ||
"color": "#fff" | ||
} | ||
}, | ||
"flagrow": { | ||
"discuss": "https://discuss.flarum.org/d/20586" | ||
}, | ||
"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/20586" | ||
"scripts-descriptions": { | ||
"analyse:phpstan": "Run static analysis" | ||
} | ||
} | ||
} |
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'] |