horat1us/yii2-uuid-behavior

Yii2 UUID generation behavior

1.1.0 2019-06-04 17:05 UTC

This package is auto-updated.

Last update: 2024-04-05 04:16:41 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