wooserv/php-objectid

Fast, lightweight MongoDB-style ObjectId generator for PHP.

Installs: 4

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/wooserv/php-objectid

v1.0.0 2025-11-09 02:32 UTC

This package is auto-updated.

Last update: 2025-11-09 02:38:18 UTC


README

Fast, lightweight MongoDB-style ObjectId generator for PHP.

Tests License

Installation

composer require wooserv/php-objectid

Usage

use WooServ\ObjectId\ObjectId;

$id = ObjectId::generate();

if (ObjectId::isValid($id)) {
    echo "Timestamp: " . date('Y-m-d H:i:s', ObjectId::getTimestamp($id));
}