all repos — ynab-ledger @ e33883dee25749f08a50f423a464082f6c3c0b98

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