├── COPYING ├── COPYING.LESSER ├── NOTICE ├── README.md ├── composer.json ├── phpbench.json └── src ├── Exception ├── BadMethodCall.php ├── CannotDetermineVersion.php ├── DceIdentifierNotFound.php ├── IdentifierException.php ├── InvalidArgument.php ├── MacAddressNotFound.php ├── MissingFunction.php └── NotComparable.php ├── NodeBasedUuid.php ├── Service ├── BytesGenerator │ ├── BytesGenerator.php │ ├── FixedBytesGenerator.php │ ├── MonotonicBytesGenerator.php │ └── RandomBytesGenerator.php ├── Cache │ └── InMemoryCache.php ├── Clock │ ├── ClockSequence.php │ ├── FrozenClock.php │ ├── FrozenClockSequence.php │ ├── GeneratorState.php │ ├── GeneratorStateCache.php │ ├── InvalidGeneratorState.php │ ├── MonotonicClockSequence.php │ ├── Precision.php │ ├── RandomClockSequence.php │ ├── Rfc4122ClockSequence.php │ └── SystemClock.php ├── Dce │ ├── Dce.php │ ├── StaticDce.php │ └── SystemDce.php ├── Hash │ ├── FixedHash.php │ ├── Hash.php │ └── Md5Hash.php ├── Nic │ ├── Nic.php │ ├── RandomNic.php │ ├── StaticNic.php │ └── SystemNic.php ├── Os │ ├── Os.php │ └── PhpOs.php └── Sequence │ ├── FrozenSequence.php │ ├── MonotonicSequence.php │ ├── RandomSequence.php │ ├── Sequence.php │ └── SequenceOverflow.php ├── Snowflake.php ├── Snowflake ├── DiscordSnowflake.php ├── DiscordSnowflakeFactory.php ├── Epoch.php ├── GenericSnowflake.php ├── GenericSnowflakeFactory.php ├── InstagramSnowflake.php ├── InstagramSnowflakeFactory.php ├── Internal │ ├── Format.php │ ├── Mask.php │ ├── Standard.php │ ├── StandardFactory.php │ ├── Time.php │ └── Validation.php ├── MastodonSnowflake.php ├── MastodonSnowflakeFactory.php ├── TwitterSnowflake.php └── TwitterSnowflakeFactory.php ├── SnowflakeFactory.php ├── TimeBasedUuid.php ├── TimeBasedUuidFactory.php ├── Ulid.php ├── Ulid ├── Internal │ ├── Format.php │ ├── Mask.php │ ├── Standard.php │ └── Validation.php ├── MaxUlid.php ├── NilUlid.php ├── Ulid.php └── UlidFactory.php ├── UlidFactory.php ├── Uuid.php ├── Uuid ├── DceDomain.php ├── Internal │ ├── Binary.php │ ├── Format.php │ ├── Mask.php │ ├── NodeBased.php │ ├── Standard.php │ ├── StandardFactory.php │ ├── Time.php │ ├── TimeBased.php │ └── Validation.php ├── MaxUuid.php ├── MicrosoftGuid.php ├── MicrosoftGuidFactory.php ├── NamespaceId.php ├── NilUuid.php ├── NonstandardUuid.php ├── UntypedUuid.php ├── UuidFactory.php ├── UuidV1.php ├── UuidV1Factory.php ├── UuidV2.php ├── UuidV2Factory.php ├── UuidV3.php ├── UuidV3Factory.php ├── UuidV4.php ├── UuidV4Factory.php ├── UuidV5.php ├── UuidV5Factory.php ├── UuidV6.php ├── UuidV6Factory.php ├── UuidV7.php ├── UuidV7Factory.php ├── UuidV8.php ├── UuidV8Factory.php ├── Variant.php └── Version.php └── UuidFactory.php /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/COPYING.LESSER -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/composer.json -------------------------------------------------------------------------------- /phpbench.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/phpbench.json -------------------------------------------------------------------------------- /src/Exception/BadMethodCall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Exception/BadMethodCall.php -------------------------------------------------------------------------------- /src/Exception/CannotDetermineVersion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Exception/CannotDetermineVersion.php -------------------------------------------------------------------------------- /src/Exception/DceIdentifierNotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Exception/DceIdentifierNotFound.php -------------------------------------------------------------------------------- /src/Exception/IdentifierException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Exception/IdentifierException.php -------------------------------------------------------------------------------- /src/Exception/InvalidArgument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Exception/InvalidArgument.php -------------------------------------------------------------------------------- /src/Exception/MacAddressNotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Exception/MacAddressNotFound.php -------------------------------------------------------------------------------- /src/Exception/MissingFunction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Exception/MissingFunction.php -------------------------------------------------------------------------------- /src/Exception/NotComparable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Exception/NotComparable.php -------------------------------------------------------------------------------- /src/NodeBasedUuid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/NodeBasedUuid.php -------------------------------------------------------------------------------- /src/Service/BytesGenerator/BytesGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Service/BytesGenerator/BytesGenerator.php -------------------------------------------------------------------------------- /src/Service/BytesGenerator/FixedBytesGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Service/BytesGenerator/FixedBytesGenerator.php -------------------------------------------------------------------------------- /src/Service/BytesGenerator/MonotonicBytesGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Service/BytesGenerator/MonotonicBytesGenerator.php -------------------------------------------------------------------------------- /src/Service/BytesGenerator/RandomBytesGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Service/BytesGenerator/RandomBytesGenerator.php -------------------------------------------------------------------------------- /src/Service/Cache/InMemoryCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Service/Cache/InMemoryCache.php -------------------------------------------------------------------------------- /src/Service/Clock/ClockSequence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Service/Clock/ClockSequence.php -------------------------------------------------------------------------------- /src/Service/Clock/FrozenClock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Service/Clock/FrozenClock.php -------------------------------------------------------------------------------- /src/Service/Clock/FrozenClockSequence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Service/Clock/FrozenClockSequence.php -------------------------------------------------------------------------------- /src/Service/Clock/GeneratorState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Service/Clock/GeneratorState.php -------------------------------------------------------------------------------- /src/Service/Clock/GeneratorStateCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Service/Clock/GeneratorStateCache.php -------------------------------------------------------------------------------- /src/Service/Clock/InvalidGeneratorState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Service/Clock/InvalidGeneratorState.php -------------------------------------------------------------------------------- /src/Service/Clock/MonotonicClockSequence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Service/Clock/MonotonicClockSequence.php -------------------------------------------------------------------------------- /src/Service/Clock/Precision.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Service/Clock/Precision.php -------------------------------------------------------------------------------- /src/Service/Clock/RandomClockSequence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Service/Clock/RandomClockSequence.php -------------------------------------------------------------------------------- /src/Service/Clock/Rfc4122ClockSequence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Service/Clock/Rfc4122ClockSequence.php -------------------------------------------------------------------------------- /src/Service/Clock/SystemClock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Service/Clock/SystemClock.php -------------------------------------------------------------------------------- /src/Service/Dce/Dce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Service/Dce/Dce.php -------------------------------------------------------------------------------- /src/Service/Dce/StaticDce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Service/Dce/StaticDce.php -------------------------------------------------------------------------------- /src/Service/Dce/SystemDce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Service/Dce/SystemDce.php -------------------------------------------------------------------------------- /src/Service/Hash/FixedHash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Service/Hash/FixedHash.php -------------------------------------------------------------------------------- /src/Service/Hash/Hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Service/Hash/Hash.php -------------------------------------------------------------------------------- /src/Service/Hash/Md5Hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Service/Hash/Md5Hash.php -------------------------------------------------------------------------------- /src/Service/Nic/Nic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Service/Nic/Nic.php -------------------------------------------------------------------------------- /src/Service/Nic/RandomNic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Service/Nic/RandomNic.php -------------------------------------------------------------------------------- /src/Service/Nic/StaticNic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Service/Nic/StaticNic.php -------------------------------------------------------------------------------- /src/Service/Nic/SystemNic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Service/Nic/SystemNic.php -------------------------------------------------------------------------------- /src/Service/Os/Os.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Service/Os/Os.php -------------------------------------------------------------------------------- /src/Service/Os/PhpOs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Service/Os/PhpOs.php -------------------------------------------------------------------------------- /src/Service/Sequence/FrozenSequence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Service/Sequence/FrozenSequence.php -------------------------------------------------------------------------------- /src/Service/Sequence/MonotonicSequence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Service/Sequence/MonotonicSequence.php -------------------------------------------------------------------------------- /src/Service/Sequence/RandomSequence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Service/Sequence/RandomSequence.php -------------------------------------------------------------------------------- /src/Service/Sequence/Sequence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Service/Sequence/Sequence.php -------------------------------------------------------------------------------- /src/Service/Sequence/SequenceOverflow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Service/Sequence/SequenceOverflow.php -------------------------------------------------------------------------------- /src/Snowflake.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Snowflake.php -------------------------------------------------------------------------------- /src/Snowflake/DiscordSnowflake.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Snowflake/DiscordSnowflake.php -------------------------------------------------------------------------------- /src/Snowflake/DiscordSnowflakeFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Snowflake/DiscordSnowflakeFactory.php -------------------------------------------------------------------------------- /src/Snowflake/Epoch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Snowflake/Epoch.php -------------------------------------------------------------------------------- /src/Snowflake/GenericSnowflake.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Snowflake/GenericSnowflake.php -------------------------------------------------------------------------------- /src/Snowflake/GenericSnowflakeFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Snowflake/GenericSnowflakeFactory.php -------------------------------------------------------------------------------- /src/Snowflake/InstagramSnowflake.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Snowflake/InstagramSnowflake.php -------------------------------------------------------------------------------- /src/Snowflake/InstagramSnowflakeFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Snowflake/InstagramSnowflakeFactory.php -------------------------------------------------------------------------------- /src/Snowflake/Internal/Format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Snowflake/Internal/Format.php -------------------------------------------------------------------------------- /src/Snowflake/Internal/Mask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Snowflake/Internal/Mask.php -------------------------------------------------------------------------------- /src/Snowflake/Internal/Standard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Snowflake/Internal/Standard.php -------------------------------------------------------------------------------- /src/Snowflake/Internal/StandardFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Snowflake/Internal/StandardFactory.php -------------------------------------------------------------------------------- /src/Snowflake/Internal/Time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Snowflake/Internal/Time.php -------------------------------------------------------------------------------- /src/Snowflake/Internal/Validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Snowflake/Internal/Validation.php -------------------------------------------------------------------------------- /src/Snowflake/MastodonSnowflake.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Snowflake/MastodonSnowflake.php -------------------------------------------------------------------------------- /src/Snowflake/MastodonSnowflakeFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Snowflake/MastodonSnowflakeFactory.php -------------------------------------------------------------------------------- /src/Snowflake/TwitterSnowflake.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Snowflake/TwitterSnowflake.php -------------------------------------------------------------------------------- /src/Snowflake/TwitterSnowflakeFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Snowflake/TwitterSnowflakeFactory.php -------------------------------------------------------------------------------- /src/SnowflakeFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/SnowflakeFactory.php -------------------------------------------------------------------------------- /src/TimeBasedUuid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/TimeBasedUuid.php -------------------------------------------------------------------------------- /src/TimeBasedUuidFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/TimeBasedUuidFactory.php -------------------------------------------------------------------------------- /src/Ulid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Ulid.php -------------------------------------------------------------------------------- /src/Ulid/Internal/Format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Ulid/Internal/Format.php -------------------------------------------------------------------------------- /src/Ulid/Internal/Mask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Ulid/Internal/Mask.php -------------------------------------------------------------------------------- /src/Ulid/Internal/Standard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Ulid/Internal/Standard.php -------------------------------------------------------------------------------- /src/Ulid/Internal/Validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Ulid/Internal/Validation.php -------------------------------------------------------------------------------- /src/Ulid/MaxUlid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Ulid/MaxUlid.php -------------------------------------------------------------------------------- /src/Ulid/NilUlid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Ulid/NilUlid.php -------------------------------------------------------------------------------- /src/Ulid/Ulid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Ulid/Ulid.php -------------------------------------------------------------------------------- /src/Ulid/UlidFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Ulid/UlidFactory.php -------------------------------------------------------------------------------- /src/UlidFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/UlidFactory.php -------------------------------------------------------------------------------- /src/Uuid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Uuid.php -------------------------------------------------------------------------------- /src/Uuid/DceDomain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Uuid/DceDomain.php -------------------------------------------------------------------------------- /src/Uuid/Internal/Binary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Uuid/Internal/Binary.php -------------------------------------------------------------------------------- /src/Uuid/Internal/Format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Uuid/Internal/Format.php -------------------------------------------------------------------------------- /src/Uuid/Internal/Mask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Uuid/Internal/Mask.php -------------------------------------------------------------------------------- /src/Uuid/Internal/NodeBased.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Uuid/Internal/NodeBased.php -------------------------------------------------------------------------------- /src/Uuid/Internal/Standard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Uuid/Internal/Standard.php -------------------------------------------------------------------------------- /src/Uuid/Internal/StandardFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Uuid/Internal/StandardFactory.php -------------------------------------------------------------------------------- /src/Uuid/Internal/Time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Uuid/Internal/Time.php -------------------------------------------------------------------------------- /src/Uuid/Internal/TimeBased.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Uuid/Internal/TimeBased.php -------------------------------------------------------------------------------- /src/Uuid/Internal/Validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Uuid/Internal/Validation.php -------------------------------------------------------------------------------- /src/Uuid/MaxUuid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Uuid/MaxUuid.php -------------------------------------------------------------------------------- /src/Uuid/MicrosoftGuid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Uuid/MicrosoftGuid.php -------------------------------------------------------------------------------- /src/Uuid/MicrosoftGuidFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Uuid/MicrosoftGuidFactory.php -------------------------------------------------------------------------------- /src/Uuid/NamespaceId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Uuid/NamespaceId.php -------------------------------------------------------------------------------- /src/Uuid/NilUuid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Uuid/NilUuid.php -------------------------------------------------------------------------------- /src/Uuid/NonstandardUuid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Uuid/NonstandardUuid.php -------------------------------------------------------------------------------- /src/Uuid/UntypedUuid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Uuid/UntypedUuid.php -------------------------------------------------------------------------------- /src/Uuid/UuidFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Uuid/UuidFactory.php -------------------------------------------------------------------------------- /src/Uuid/UuidV1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Uuid/UuidV1.php -------------------------------------------------------------------------------- /src/Uuid/UuidV1Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Uuid/UuidV1Factory.php -------------------------------------------------------------------------------- /src/Uuid/UuidV2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Uuid/UuidV2.php -------------------------------------------------------------------------------- /src/Uuid/UuidV2Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Uuid/UuidV2Factory.php -------------------------------------------------------------------------------- /src/Uuid/UuidV3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Uuid/UuidV3.php -------------------------------------------------------------------------------- /src/Uuid/UuidV3Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Uuid/UuidV3Factory.php -------------------------------------------------------------------------------- /src/Uuid/UuidV4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Uuid/UuidV4.php -------------------------------------------------------------------------------- /src/Uuid/UuidV4Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Uuid/UuidV4Factory.php -------------------------------------------------------------------------------- /src/Uuid/UuidV5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Uuid/UuidV5.php -------------------------------------------------------------------------------- /src/Uuid/UuidV5Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Uuid/UuidV5Factory.php -------------------------------------------------------------------------------- /src/Uuid/UuidV6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Uuid/UuidV6.php -------------------------------------------------------------------------------- /src/Uuid/UuidV6Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Uuid/UuidV6Factory.php -------------------------------------------------------------------------------- /src/Uuid/UuidV7.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Uuid/UuidV7.php -------------------------------------------------------------------------------- /src/Uuid/UuidV7Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Uuid/UuidV7Factory.php -------------------------------------------------------------------------------- /src/Uuid/UuidV8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Uuid/UuidV8.php -------------------------------------------------------------------------------- /src/Uuid/UuidV8Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Uuid/UuidV8Factory.php -------------------------------------------------------------------------------- /src/Uuid/Variant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Uuid/Variant.php -------------------------------------------------------------------------------- /src/Uuid/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/Uuid/Version.php -------------------------------------------------------------------------------- /src/UuidFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramsey/identifier/HEAD/src/UuidFactory.php --------------------------------------------------------------------------------