Download the PHP package rafalswierczek/uuid4 without Composer

On this page you can find all versions of the php package rafalswierczek/uuid4. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package uuid4

Super simple UUID v4 generator in PHP

Installation:

composer require rafalswierczek/uuid4

Usage:

Explanation:

UUID v4 is data of 128 random bits (with small modifications) represented in hexadecimal notation.

Data is divided into 16 octets (from 0 to 15), 8 bits each.

Octets are grouped into sections with following names:

Result of UUID4 in hex notation looks like this:

f2e0aa63-22f2-410c-bcfa-9475cf573193

As you can see, for example time_low has 4 octets, each is as follows f2, e0, aa, 63 in hex notation.

Now once you have 128 random bits, you have to modify octet 8 in the way that two most significant bits (MSB) are set to: 0 and 1. For example, let's say 8 octet is as follows: 01101101. Now you have to make sure that two bits on the left are 00 and then you can add desired 10 so the result is: 10101101. It's done this way:

01101101 & 00111111 = 00101101

00101101 | 10000000 = 10101101

Once clock_seq_and_reserved is updated it's time to modify octet 6 (first 8 bits of time_high_and_version). You have to do the same steps but with 00001111 for AND and 01000000 for OR. For example if octet 6 is 10100101, the result is 01000101 so first 4 bits are replaced with 0100 which are bits reserved for UUID v4.

After modifying octet 8 and 6 of 128 random bits and converting it to hex notation you have ready to use UUID v4 string :)

RFC: https://datatracker.ietf.org/doc/html/rfc4122#section-4.4


All versions of uuid4 with dependencies

PHP Build Version
Package Version
No informations.
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package rafalswierczek/uuid4 contains the following files

Loading the files please wait ....