-
-
Notifications
You must be signed in to change notification settings - Fork 2
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
697 additions
and
622 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 BBCode Details 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,62 +1,77 @@ | ||
{ | ||
"name": "fof/bbcode-details", | ||
"description": "Details BBCode for Flarum", | ||
"keywords": [ | ||
"flarum" | ||
], | ||
"type": "flarum-extension", | ||
"license": "MIT", | ||
"support": { | ||
"issues": "https://github.com/FriendsOfFlarum/bbcode-details/issues", | ||
"source": "https://github.com/FriendsOfFlarum/bbcode-details", | ||
"forum": "https://discuss.flarum.org/d/18796" | ||
}, | ||
"homepage": "https://friendsofflarum.org", | ||
"funding": [ | ||
{ | ||
"type": "website", | ||
"url": "https://opencollective.com/fof/donate" | ||
} | ||
], | ||
"require": { | ||
"flarum/core": "^1.2.0" | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "Sajjad Hashemian", | ||
"email": "wolaws@gmail.com" | ||
"name": "fof/bbcode-details", | ||
"description": "Details BBCode for Flarum", | ||
"keywords": [ | ||
"flarum" | ||
], | ||
"type": "flarum-extension", | ||
"license": "MIT", | ||
"support": { | ||
"issues": "https://github.com/FriendsOfFlarum/bbcode-details/issues", | ||
"source": "https://github.com/FriendsOfFlarum/bbcode-details", | ||
"forum": "https://discuss.flarum.org/d/18796" | ||
}, | ||
{ | ||
"name": "David Sevilla Martín", | ||
"email": "david.s@redevs.org", | ||
"role": "Developer" | ||
"homepage": "https://friendsofflarum.org", | ||
"funding": [ | ||
{ | ||
"type": "website", | ||
"url": "https://opencollective.com/fof/donate" | ||
} | ||
], | ||
"require": { | ||
"flarum/core": "^1.2.0" | ||
}, | ||
{ | ||
"name": "Katos", | ||
"email": "katos@flarum.org", | ||
"role": "Developer" | ||
} | ||
], | ||
"replace": { | ||
"sijad/flarum-ext-details": "*" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"FoF\\BBCodeDetails\\": "src/" | ||
} | ||
}, | ||
"extra": { | ||
"flarum-extension": { | ||
"title": "FoF BBCode Details", | ||
"category": "feature", | ||
"icon": { | ||
"name": "fas fa-minus-square", | ||
"backgroundColor": "#e74c3c", | ||
"color": "#fff" | ||
} | ||
"authors": [ | ||
{ | ||
"name": "Sajjad Hashemian", | ||
"email": "wolaws@gmail.com" | ||
}, | ||
{ | ||
"name": "David Sevilla Martín", | ||
"email": "david.s@redevs.org", | ||
"role": "Developer" | ||
}, | ||
{ | ||
"name": "Katos", | ||
"email": "katos@flarum.org", | ||
"role": "Developer" | ||
} | ||
], | ||
"replace": { | ||
"sijad/flarum-ext-details": "*" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"FoF\\BBCodeDetails\\": "src/" | ||
} | ||
}, | ||
"extra": { | ||
"flarum-extension": { | ||
"title": "FoF BBCode Details", | ||
"category": "feature", | ||
"icon": { | ||
"name": "fas fa-minus-square", | ||
"backgroundColor": "#e74c3c", | ||
"color": "#fff" | ||
} | ||
}, | ||
"flagrow": { | ||
"discuss": "https://discuss.flarum.org/d/18796" | ||
}, | ||
"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/18796" | ||
"scripts-descriptions": { | ||
"analyse:phpstan": "Run static analysis" | ||
} | ||
} | ||
} |
Oops, something went wrong.