Skip to content
This repository has been archived by the owner on Jan 3, 2020. It is now read-only.

faustbrian-archives/eloquent-uuid

Repository files navigation

Eloquent UUID

Build Status PHP from Packagist Latest Version License

Installation

Require this package, with Composer, in the root directory of your project.

$ composer require artisanry/eloquent-uuid

Usage

<?php

namespace App;

use Artisanry\Uuid\HasUuid;
use Illuminate\Database\Eloquent\Model;

class Provider extends Model
{
    use HasUuid;

    /**
     * Indicates if the IDs are auto-incrementing.
     *
     * @var bool
     */
    public $incrementing = false;

    /**
     * Get the options for generating the uuid.
     */
    public function getUuidOptions() : UuidOptions
    {
        return UuidOptions::create()
            ->saveTo('uuid')
            ->useStrategy('uuid3')
            ->withNamespace(\Ramsey\Uuid\Uuid::NAMESPACE_DNS)
            ->withName('php.net');
    }
}

Testing

$ phpunit

Security

If you discover a security vulnerability within this package, please send an e-mail to hello@basecode.sh. All security vulnerabilities will be promptly addressed.

Credits

This project exists thanks to all the people who contribute.

License

Mozilla Public License Version 2.0 (MPL-2.0).