From a0efdb644f869cd4736809f243bc072784b61734 Mon Sep 17 00:00:00 2001 From: oittaa <8972248+oittaa@users.noreply.github.com> Date: Wed, 10 Jul 2024 22:19:34 +0200 Subject: [PATCH] Draft -> RFC 9562 (#92) --- README.md | 7 +++---- composer.json | 2 +- src/UUID.php | 21 ++++++++++----------- 3 files changed, 14 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 4d4b236..c4cfdc5 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ # uuid-php -A small PHP class for generating [RFC 4122][RFC 4122] version 3, 4, and 5 universally unique identifiers (UUID). Additionally supports [draft][draft] versions 6, 7, and 8. +A small PHP class for generating [RFC 9562][RFC 9562] universally unique identifiers (UUID) from version 3 to version 8. If all you want is a unique ID, you should call `uuid4()`. @@ -13,7 +13,7 @@ If you're regularly generating more than thousand UUIDs per second, you might wa ## Minimal UUID v4 implementation -Credits go to [this answer][stackoverflow uuid4] on Stackoverflow for this minimal RFC 4122 compliant solution. +Credits go to [this answer][stackoverflow uuid4] on Stackoverflow for this minimal RFC 9562 compliant solution. ```php