├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── RELEASE.md ├── composer.json ├── phpunit.xml.dist ├── src └── Lootils │ └── Uuid │ ├── Exception.php │ └── Uuid.php └── test └── UUIDTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | composer.lock 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lootils/uuid/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lootils/uuid/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lootils/uuid/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lootils/uuid/HEAD/RELEASE.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lootils/uuid/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lootils/uuid/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Lootils/Uuid/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lootils/uuid/HEAD/src/Lootils/Uuid/Exception.php -------------------------------------------------------------------------------- /src/Lootils/Uuid/Uuid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lootils/uuid/HEAD/src/Lootils/Uuid/Uuid.php -------------------------------------------------------------------------------- /test/UUIDTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lootils/uuid/HEAD/test/UUIDTest.php --------------------------------------------------------------------------------