Initial commit; supports UUID version 1 generation.

This commit is contained in:
Ben Ramsey
2012-07-05 18:29:35 -05:00
commit dc93facbac
9 changed files with 949 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
error_reporting(E_ALL | E_STRICT);
// Ensure that composer has installed all dependencies
if (!file_exists(dirname(__DIR__) . DIRECTORY_SEPARATOR . 'composer.lock')) {
die("Dependencies must be installed using composer:\n\nphp composer.phar install --dev\n\n"
. "See http://getcomposer.org for help with installing composer\n");
}
// Include the Composer autoloader
include realpath(dirname(__FILE__) . '/../vendor/autoload.php');