all repos — archive/ynab-ledger @ d06ed0b1f4cc014c72d338f3578326e10cc12212

Convert exported YNAB data to ledger-cli

main.php (view raw)

1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env php
<?php

require 'vendor/autoload.php';

if (!ini_get('date.timezone')) {
    date_default_timezone_set('UTC');
}

(new YnabLedger\Application)->run($argv);