diff options
author | Neuman Vong <neuman@twilio.com> | 2011-03-25 16:08:00 -0700 |
---|---|---|
committer | Neuman Vong <neuman@twilio.com> | 2011-03-25 16:10:34 -0700 |
commit | 24e03229ce504897bf7674039367905469d19ef7 (patch) | |
tree | 6235af5773ff43296bad4c5ad3c814d99026a832 /tests/Bootstrap.php | |
download | php-jwt-24e03229ce504897bf7674039367905469d19ef7.zip php-jwt-24e03229ce504897bf7674039367905469d19ef7.tar.gz php-jwt-24e03229ce504897bf7674039367905469d19ef7.tar.bz2 |
Start tracking project
Diffstat (limited to 'tests/Bootstrap.php')
-rw-r--r-- | tests/Bootstrap.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/Bootstrap.php b/tests/Bootstrap.php new file mode 100644 index 0000000..235b6d3 --- /dev/null +++ b/tests/Bootstrap.php @@ -0,0 +1,9 @@ +<?php + +error_reporting(E_ALL | E_STRICT); +ini_set('display_errors', 1); + +$root = realpath(dirname(dirname(__FILE__))); +require_once $root . '/JWT.php'; + +unset($root); |