all repos — ynab-ledger @ b7f04b53b91cb586324f780ca985cbe4f6137d57

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);