- 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>
39 lines
895 B
JSON
Executable file
39 lines
895 B
JSON
Executable file
{
|
|
"name": "nemiah/php-fints",
|
|
"description": "PHP Library for the protocols fints and hbci",
|
|
"homepage": "https://github.com/nemiah/phpFinTS",
|
|
"version": "3.7.0",
|
|
"license": "MIT",
|
|
"autoload": {
|
|
"psr-0": {
|
|
"Fhp": "lib/",
|
|
"Tests\\Fhp": "lib/"
|
|
}
|
|
},
|
|
"require": {
|
|
"php": ">=8.0",
|
|
"psr/log": "^1|^2|^3",
|
|
"ext-curl": "*",
|
|
"ext-mbstring": "*"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^9.5",
|
|
"php-mock/php-mock-phpunit": "^2.6",
|
|
"friendsofphp/php-cs-fixer": "^3.0"
|
|
},
|
|
"suggest": {
|
|
"monolog/monolog": "Allow sending log messages to a variety of different handlers",
|
|
"abcaeffchen/sephpa": "1.*",
|
|
"nemiah/php-sepa-xml": "dev-master"
|
|
},
|
|
"scripts": {
|
|
"test": [
|
|
"phpunit"
|
|
],
|
|
"check": [
|
|
"@cs"
|
|
],
|
|
"cs": "php-cs-fixer fix -v --diff --dry-run",
|
|
"cs-fix": "php-cs-fixer fix -v --diff"
|
|
}
|
|
}
|