Download the PHP package picqer/knab-to-xero without Composer
On this page you can find all versions of the php package picqer/knab-to-xero. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download picqer/knab-to-xero
More information about picqer/knab-to-xero
Files in picqer/knab-to-xero
Download picqer/knab-to-xero
More information about picqer/knab-to-xero
Files in picqer/knab-to-xero
Vendor picqer
Package knab-to-xero
Short Description A PHP script to convert Knab CSV files to Xero files
License MIT
Homepage http://github.com/picqer/knab-to-xero
Package knab-to-xero
Short Description A PHP script to convert Knab CSV files to Xero files
License MIT
Homepage http://github.com/picqer/knab-to-xero
Please rate this library. Is it a good library?
Informations about the package knab-to-xero
Knab to Xero CSV file converter
Knab is a Dutch bank where you can export your transactions to a CSV file. This script can convert this Knab CSV file to a file that is the right format for Xero to import as a bank transactions file.
Usage
You can use the provided index.php to convert files in your webbrowser, or use the classes to create your own converter.
Example
$knabExtractor = new \Picqer\KnabToXero\KnabExtractor();
$knabRecords = $knabExtractor->extractCSV(file_get_contents('example.csv'));
$converter = new \Picqer\KnabToXero\KnabToXeroConverter();
$xeroRecordCollection = $converter->convertArray($knabRecords);
$csvCreator = new \Picqer\KnabToXero\XeroCsvCreator();
header('Content-type: text/csv');
header('Content-Disposition: attachment; filename=XeroBankImport' . date('YmdHi') . '.csv');
header('Pragma: no-cache');
header('Expires: 0');
echo $csvCreator->createCsv($xeroRecordCollection);
All versions of knab-to-xero with dependencies
PHP Build Version
Package Version
No informations.
The package picqer/knab-to-xero contains the following files
Loading the files please wait ....