git.schokokeks.org
Repositories
Help
Report an Issue
webinterface.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
4d76129
Branches
Tags
master
ticket
webinterface.git
checkcodingstyle
update codingstyle rulesets
Hanno Böck
commited
4d76129
at 2025-10-14 13:38:54
checkcodingstyle
Blame
History
Raw
#!/bin/bash set -euo pipefail surl=$(curl -s https://api.github.com/repos/fabpot/local-php-security-checker/releases/latest | grep https://.*linux_amd64 -o) [ -e local-php-security-checker ] || curl -L $surl >local-php-security-checker [ -e php-cs-fixer ] || curl -L https://cs.symfony.com/download/php-cs-fixer-v3.phar >php-cs-fixer chmod +x local-php-security-checker php-cs-fixer ./php-cs-fixer fix --rules @PER-CS,@PHP8x5Migration --dry-run --diff . ./local-php-security-checker