dolibarr.bankimport/vendor/nemiah/php-fints/composer.json
data 94efa59df3 v1.7: Multi-invoice payments and payment unlinking
- Add multi-invoice payment support (link one bank transaction to multiple invoices)
- Add payment unlinking feature to correct wrong matches
- Show linked payments, invoices and bank entries in transaction detail view
- Allow linking already paid invoices to bank transactions
- Update README with new features
- Add CHANGELOG.md

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-20 09:00:05 +01:00

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"
}
}