diff options
author | Anant Narayanan <anant@kix.in> | 2013-08-30 13:26:50 -0700 |
---|---|---|
committer | Anant Narayanan <anant@kix.in> | 2013-08-30 13:26:50 -0700 |
commit | b8acf5a5deab7b929a383c76470469baf68830ab (patch) | |
tree | 11727e2965a06973d2e152b456167ead69c2a717 /tests/autoload.php.dist | |
parent | c794eeba527537f9690c1157b9f7f71999ded4ce (diff) | |
parent | 66c3957571107fb35a0d441a9e109512cdc46f97 (diff) | |
download | php-jwt-b8acf5a5deab7b929a383c76470469baf68830ab.zip php-jwt-b8acf5a5deab7b929a383c76470469baf68830ab.tar.gz php-jwt-b8acf5a5deab7b929a383c76470469baf68830ab.tar.bz2 |
Merge pull request #3 from phansys/master
Improved test suite
Diffstat (limited to 'tests/autoload.php.dist')
-rw-r--r-- | tests/autoload.php.dist | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/autoload.php.dist b/tests/autoload.php.dist new file mode 100644 index 0000000..4533624 --- /dev/null +++ b/tests/autoload.php.dist @@ -0,0 +1,17 @@ +<?php + +// if the library is the project, try to use the composer's autoload for the tests +$composerAutoload = __DIR__ . '/../vendor/autoload.php'; + +if (is_file($composerAutoload)) { + include $composerAutoload; +} else { + die('Unable to find autoload.php file, please use composer to load dependencies: + +wget http://getcomposer.org/composer.phar +php composer.phar install + +Visit http://getcomposer.org/ for more information. + +'); +}
\ No newline at end of file |