diff options
author | Alan Pearce | 2015-04-05 15:56:54 +0100 |
---|---|---|
committer | Alan Pearce | 2015-04-05 15:58:57 +0100 |
commit | d06ed0b1f4cc014c72d338f3578326e10cc12212 (patch) | |
tree | cd720be528af7b8b51e15eeeedebd6914b07542f /main.php | |
download | ynab-ledger-d06ed0b1f4cc014c72d338f3578326e10cc12212.tar.lz ynab-ledger-d06ed0b1f4cc014c72d338f3578326e10cc12212.tar.zst ynab-ledger-d06ed0b1f4cc014c72d338f3578326e10cc12212.zip |
Initial commit (Scaffolding)
Diffstat (limited to 'main.php')
-rwxr-xr-x | main.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/main.php b/main.php new file mode 100755 index 0000000..1cbb992 --- /dev/null +++ b/main.php @@ -0,0 +1,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); |