horat1us/yii2-uuid-behavior

Yii2 UUID generation behavior

Installs: 4 676

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 2

Open Issues: 0

pkg:composer/horat1us/yii2-uuid-behavior

1.2.0 2024-11-11 15:08 UTC

This package is auto-updated.

Last update: 2025-10-11 17:53:04 UTC


README

Build Status codecov

Behavior to generate UUID values (mostly, for ActiveRecord primary key).

Installation

Using packagist.org:

composer require horat1us/yii2-uuid-behavior:^1.0

Usage

To generate UUID for primary key follow example:

<?php

namespace App;

use Horat1us\Yii\UuidBehavior;
use yii\db;

/**
* Class Record
 * @package App
 * 
 * @property string $uuid // primary key in database, without default value and auto-increment
 */
class Record extends db\ActiveRecord
{
    public function behaviors(): array {
        return [
            'uuid' => [
                'class' => UuidBehavior::class,    
            ],    
        ];
    }
}

in followed example uuid in active record will be filled with random UUIDv4 before inserting.

License

MIT