- HKEKA v3/v4/v5 Segmente fuer phpFinTS implementiert (VR Bank unterstuetzt kein HKEKP) - GetElectronicStatement Action mit Base64-Erkennung und Quittungscode - PDF-Deduplizierung per MD5 (Bank sendet identische Saldenmitteilungen) - Saldenmitteilungen ohne Auszugsnummer werden uebersprungen - Datums-Validierung: 30.02. (Bank-Konvention) wird auf 28.02. korrigiert - Numerische Sortierung fuer statement_number (CAST statt String-Sort) - Jahr-Filter: statement_year=0 ausgeschlossen - Menue/Button: "Kontoauszuege" -> "Umsaetze" (statements.php zeigt MT940, nicht PDFs) - Redirect nach FinTS-Abruf auf aktuelles Jahr statt year=0 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
36 lines
No EOL
1.3 KiB
Bash
Executable file
36 lines
No EOL
1.3 KiB
Bash
Executable file
#!/bin/bash
|
|
#
|
|
# When this is run as part of a Travis test for a pull request, then it ensures that none of the touched files has any
|
|
# PHP CS Fixer warnings.
|
|
# From: https://github.com/FriendsOfPHP/PHP-CS-Fixer#using-php-cs-fixer-on-ci
|
|
|
|
if [ -z "$TRAVIS_COMMIT_RANGE" ]
|
|
then
|
|
# TRAVIS_COMMIT_RANGE "is empty for builds triggered by the initial commit of a new branch"
|
|
# From: https://docs.travis-ci.com/user/environment-variables/
|
|
echo "Variable TRAVIS_COMMIT_RANGE not set, falling back to full git diff"
|
|
TRAVIS_COMMIT_RANGE=.
|
|
fi
|
|
|
|
IFS='
|
|
'
|
|
CHANGED_FILES=$(git diff --name-only --diff-filter=ACMRTUXB "$TRAVIS_COMMIT_RANGE")
|
|
if [ "$?" -ne "0" ]
|
|
then
|
|
echo "Error: git diff response code > 0, aborting"
|
|
exit 1
|
|
fi
|
|
|
|
if [ -z "${CHANGED_FILES}" ]
|
|
then
|
|
echo "0 changed files found, exiting"
|
|
exit 0
|
|
fi
|
|
|
|
# February 2022: PHP CS FIXER is currently not PHP 8.1 compatible:
|
|
# "you may experience code modified in a wrong way"
|
|
# "To ignore this requirement please set `PHP_CS_FIXER_IGNORE_ENV`."
|
|
export PHP_CS_FIXER_IGNORE_ENV="1"
|
|
|
|
if ! echo "${CHANGED_FILES}" | grep -qE "^(\\.php_cs(\\.dist)?|composer\\.lock)$"; then EXTRA_ARGS=$(printf -- '--path-mode=intersection\n--\n%s' "${CHANGED_FILES}"); else EXTRA_ARGS=''; fi
|
|
vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php -v --dry-run --stop-on-violation --using-cache=no ${EXTRA_ARGS} || (echo "php-cs-fixer failed" && exit 1) |