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.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package php-fints

Php-Fints

Latest Stable Version Tests License composer.lock

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:

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

PHP Build Version
Package Version
Requires php Version >=8.0
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
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package abiturma/php-fints contains the following files

Loading the files please wait ....