Componente responsável por fazer a leitura de arquivos OFX

1.0.0 2023-09-18 18:12 UTC

This package is auto-updated.

Last update: 2024-06-18 20:01:26 UTC


README

Ofx Library Test

Source Code PHP from Packagist Latest Version Software License Build Quality Score Total Downloads

Ofx is a component responsible for reading OFX files, generally used in bank account statements.

Ofx é um componente responsável por fazer a leitura de arquivos OFX, geralmente usados em extratos de contas bancárias.

Você pode saber mais clicando aqui.

Highlights

  • Simple installation (Instalação simples)
  • Composer ready and PSR-2 compliant (Pronto para o composer e compatível com PSR-2)

Installation

ofx is available via Composer:

"fogacasammuel/ofx": "^1.0"

or run

composer require fogacasammuel/ofx

Documentation

For details on how to use, see a sample folder in the component directory. In it you will have an example of use for each class. It works like this:

Para mais detalhes sobre como usar, veja uma pasta de exemplo no diretório do componente. Nela terá um exemplo de uso para cada classe. Ele funciona assim:

User endpoint:

<?php

require __DIR__ . "../../vendor/autoload.php";

use FogacaSammuel\Ofx\Ofx;

// Initialize the Class
$ofx = new Ofx(PATH_FILE_OFX);

//Get invoices from file OFX
$invoices = $ofx->invoices();
var_dump($invoices);

//Get data account from file OFX
$account = $ofx->account();
var_dump($account);

//Get balance from account
$balance = $ofx->balance();
var_dump($balance);

Contributing

Please see CONTRIBUTING for details.

Support

Security: If you discover any security related issues, please email sammuel.fogaca@gmail.com instead of using the issue tracker.

Se você descobrir algum problema relacionado à segurança, envie um e-mail para sammuel.fogaca@gmail.com em vez de usar o rastreador de problemas.

Thank you

Credits

License

The MIT License (MIT). Please see License File for more information.