about summary refs log tree commit diff stats
path: root/main.php
diff options
context:
space:
mode:
authorAlan Pearce2015-04-05 15:56:54 +0100
committerAlan Pearce2015-04-05 15:58:57 +0100
commitd06ed0b1f4cc014c72d338f3578326e10cc12212 (patch)
treecd720be528af7b8b51e15eeeedebd6914b07542f /main.php
downloadynab-ledger-d06ed0b1f4cc014c72d338f3578326e10cc12212.tar.lz
ynab-ledger-d06ed0b1f4cc014c72d338f3578326e10cc12212.tar.zst
ynab-ledger-d06ed0b1f4cc014c72d338f3578326e10cc12212.zip
Initial commit (Scaffolding)
Diffstat (limited to 'main.php')
-rwxr-xr-xmain.php10
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);