about summary refs log tree commit diff stats
path: root/main.php
blob: 1cbb992c5b808b721f51978e8565490138ce85b6 (plain)
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);