- 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>
38 lines
1.2 KiB
PHP
Executable file
38 lines
1.2 KiB
PHP
Executable file
<?php return array(
|
|
'root' => array(
|
|
'name' => 'dolibarr/bankimport',
|
|
'pretty_version' => '1.0.0+no-version-set',
|
|
'version' => '1.0.0.0',
|
|
'reference' => null,
|
|
'type' => 'dolibarr-module',
|
|
'install_path' => __DIR__ . '/../../',
|
|
'aliases' => array(),
|
|
'dev' => true,
|
|
),
|
|
'versions' => array(
|
|
'dolibarr/bankimport' => array(
|
|
'pretty_version' => '1.0.0+no-version-set',
|
|
'version' => '1.0.0.0',
|
|
'reference' => null,
|
|
'type' => 'dolibarr-module',
|
|
'install_path' => __DIR__ . '/../../',
|
|
'aliases' => array(),
|
|
'dev_requirement' => false,
|
|
),
|
|
'nemiah/php-fints' => array(
|
|
'pretty_version' => '3.7.0',
|
|
'version' => '3.7.0.0',
|
|
'reference' => '08257e10229db2d4ca8c54ed7fec0f390b332519',
|
|
'type' => 'library',
|
|
'install_path' => __DIR__ . '/../nemiah/php-fints',
|
|
'aliases' => array(),
|
|
'dev_requirement' => false,
|
|
),
|
|
'psr/log' => array(
|
|
'dev_requirement' => false,
|
|
'replaced' => array(
|
|
0 => '*',
|
|
),
|
|
),
|
|
),
|
|
);
|