Download the PHP package abiturma/php-fints without Composer
On this page you can find all versions of the php package abiturma/php-fints. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package php-fints
Php-Fints
This package is a library to use an Hbci connection to your bank in order to retrieve statements of your bank accounts.
Installation
Available through composer:
composer require abiturma/php-fints
Usage
Initialization
First you have to create an instance of the Fints class by providing your credentials
The port of the connection defaults to 443, optionally you can change it by calling
->port('yourPort')
on $fints
. The interface is fluent. In particular the order of calling the different initialization methods does not matter.
Retrieving a list of your (sepa) accounts
Once Fints
is initialized, you can get a list of your accounts calling $fints->getAccounts()
. This method returns an array of your bank accounts, i.e. an array of instances of Abiturma\PhpFints\Models\Account
, which behave similar to laravel model classes.
In particular you can query the account data by calling magic getters like so: $account->iban
, $account->bank_code
, ...
Alternatively you can call ->toArray()
on an account, to get an associative array of its attributes.
Retrieving the statement of a bank account
For a specific account, you can get a list of all transactions by calling $fints->getStatementOfAccount($account)
.
Optionally you can pass two DateTime
objects to restrict the transactions to a specific date range:
$fints->getStatementOfAccount($account, $from, $to)
. The result is an array of objects of type Abiturma\PhpFints\Models\Transaction
, which behave similar to account models. In particular you can retrieve a list of all attributes by calling ->toArray()
Among others, the following attributes are stored on the transaction model:
base_amount
the signed integer value of the transactions in cents (e.g. -120 means -1.20€)amount
the signed float value of the transaction (e.g. -1.20)remote_bank_code
the BIC of the remote accountremote_name
the name of the creditor/debitorremote_account_number
the IBAN of the remote_accountdate
the booking date of the transactionvalue_date
the value (or valuta) date of the transactiondescription
end_to_end_reference
prima_nota
SWIFT vs. Camt
By default, Fints
tries to get statements in the Camt format, if possible. Sometimes it might occur, that this leads to thrown exceptions while parsing the response. In that case it might be useful to specify the response format explicitly. For that reason Fints
exposes the methods getSwiftStatementOfAccount
and getCamtStatementOfAccount
, which have the same signature as getStatementOfAccount
Customization and Integration
Credentials
It can be quite cumbersome to provide all credentials each time you use Fints
. For that reason it is possible to create your own implementation of a credentials repository, which for example could makes use of a config storage. In that case, build your implementation $credentials
of the interface Abiturma\PhpFints\Credentials\HoldsCredentials
and register it:
`
Logging
By default outbound and inbound messages are not logged. You can enable logging by registering an implementation of Psr\LoggerInterface
like so:
`
Accounts
If you have your account data (i.e. iban, bic, account number, bank code), it is not necessary to call ->getAccounts()
first in order to get a statement. Instead you can just create an account instance on the fly:
`
If you have your own account model it can act as a valid first parameter of ->getStatementOfAccount
as long as it implements the interface Abiturma\PhpFints\Models\IdentifiesBankAccount
which demands a method ->getAccountAttributes()
which is supposed to return an associative array with the following keys: iban, bic, account_number, bank_code
.
Compatibility
This library is work in progress and tested only with two banks so far. You can find the list of compatible banks in COMPATIBILITY.md. I'm looking forward to your contribution to make this list longer.
Acknowledgments
This project is heavily inspired by fints-hbci-php by Markus Schindler.
All versions of php-fints with dependencies
ext-curl Version *
ext-mbstring Version *
ext-iconv Version *
php-curl-class/php-curl-class Version ^9.5
genkgo/camt Version ^2.0.0
psr/log Version ^2.0.0