first commit

This commit is contained in:
2024-11-11 18:46:54 +01:00
commit a630d17338
25634 changed files with 4923715 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
workflow "Code Quality" {
on = "push"
resolves = [
"PHPStan",
"PHP-CS-Fixer",
"Psalm",
"PHPQA"
]
}
action "PHPStan" {
uses = "docker://oskarstark/phpstan-ga:with-extensions"
args = "analyse src tests --level max --configuration extension.neon"
secrets = ["GITHUB_TOKEN"]
}
action "PHP-CS-Fixer" {
uses = "docker://oskarstark/php-cs-fixer-ga"
secrets = ["GITHUB_TOKEN"]
args = "--config=.php_cs.dist --diff --dry-run"
}
action "Psalm" {
needs="PHPStan"
uses = "docker://mickaelandrieu/psalm-ga"
secrets = ["GITHUB_TOKEN"]
args = "--find-dead-code --diff --diff-methods"
}
action "PHPQA" {
needs="PHP-CS-Fixer"
uses = "docker://mickaelandrieu/phpqa-ga"
secrets = ["GITHUB_TOKEN"]
args = "--report --tools phpcs:0,phpmd:0,phpcpd:0,parallel-lint:0,phpmetrics,phploc,pdepend --ignoredDirs vendor,tests"
}

View File

@@ -0,0 +1,11 @@
change-template: '- $TITLE (#$NUMBER)'
branches:
- master
template: |
## Changelog
$CHANGES
### Contributors
$CONTRIBUTORS