shoperti/cuid

Collision-resistant ids optimized for horizontal scaling and performance.

v1.0.0 2015-10-05 20:45 UTC

This package is auto-updated.

Last update: 2024-04-09 13:13:42 UTC


README

Build Status StyleCI

This is a port from https://github.com/ericelliott/cuid to PHP. Please refer to the original repo for more information.

Installation

Begin by installing this package through Composer. Edit your project's composer.json file to require shoperti/cuid.

"require": {
  "shoperti/cuid": "~1.0"
}

Next, update Composer from the Terminal:

composer update

Examples

// Create a new cuid
$cuid = new Shoperti\Cuid\Cuid::cuid();

// Create a new cuid slug
$cuid = new Shoperti\Cuid\Cuid::slug();