Add ircmaxell-RandomLib to the dev dependencies

This commit is contained in:
Ben Ramsey
2014-11-08 16:24:22 -05:00
parent 958643e7b6
commit ebea9b969b
2 changed files with 4 additions and 1 deletions
+2
View File
@@ -24,6 +24,7 @@
},
"require-dev": {
"moontoast/math": "~1.1",
"ircmaxell/random-lib": "~1.0",
"symfony/console": "~2.3",
"doctrine/dbal": ">=2.3",
"phpunit/phpunit": "~4.1",
@@ -33,6 +34,7 @@
"bin": ["bin/uuid"],
"suggest": {
"moontoast/math": "Support for converting UUID to 128-bit integer (in string form).",
"ircmaxell/random-lib": "Provides RandomLib to use with the RandomLibAdapter",
"symfony/console": "Support for use of the bin/uuid command line tool.",
"doctrine/dbal": "Allow the use of a UUID as doctrine field type."
},
+2 -1
View File
@@ -1,9 +1,10 @@
<?php
namespace Rhumsaa\Uuid;
namespace Rhumsaa\Uuid\Generator;
use RandomLib\Generator;
use RandomLib\Factory;
use Rhumsaa\Uuid\RandomGenerator;
class RandomLibAdapter implements RandomGenerator
{