Download the PHP package nishadil/uuid without Composer

On this page you can find all versions of the php package nishadil/uuid. 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 uuid

nishadil/uuid nishadil/uuid

A PHP library for generating universally unique identifiers (UUID).

What is a UUID?

A UUID (short for Universally Unique IDentifier) ​​is a 36-character alphanumeric string that can be used to identify information. For example, they are commonly used to identify rows of data in database tables, with each row assigned a specific UUID.

Here is an example of a UUID: acde070d-8c4c-4f0d-9d8a-162843c10333

One reason UUIDs are so widely used is that they are likely to be globally unique. In other words, not only row UUIDs are unique within a row. A database table is probably the only row with that UUID on any system.

(Technically it's not impossible that the same UUID you generate could be used elsewhere, but it's highly unlikely as there are 340,282,366,920,938,463,463,374,607,431,768,211,456 possible different UUIDs.)

UUIDs version status

Versions Status Info
v1 working UUIDs using date-time and MAC address
v2 working UUIDs using date-time and MAC address, DCE security version.
v3 working UUIDs based on the MD5 hash of some data.
v4 working UUIDs with random data.
v5 working UUIDs based on the SHA1 hash of some data.
v6 working UUIDs using a timestamp and monotonic counter.
v7 working UUIDs using a Unix timestamp.
v8 working UUIDs using user-defined data.

Installation

This library can be installed using [Composer][]. To install, please use following command

How to use

Autoload the library once:

v1 (time-based):

v2 (DCE security, UID/GID domain):

v3 (name-based, MD5):

v4 (random):

v5 (name-based, SHA1):

v6 (reordered time-based):

v7 (Unix time, ms):

v8 (custom data, 16 bytes / 32 hex chars):

License

This library is licensed for use under the MIT License (MIT)


All versions of uuid with dependencies

PHP Build Version
Package Version
Requires php Version ^8.0
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 nishadil/uuid contains the following files

Loading the files please wait ...