floor9design/laravel-casts-uuid

A class for casting ramsey/uuid into laravel models
5,057
Install
composer require floor9design/laravel-casts-uuid
Latest Version:1.1.1
PHP:>=8.0
License:MIT
Last Updated:Feb 16, 2023
Links: GitHub  ·  Packagist
Maintainer: elb98rm

laravel-casts-uuid

Latest Version Software License

Build Status Build Status

Github Downloads Packagist Downloads

Introduction

The Laravel Framework supports casting of types within models. This class adds the ramsey/uuid UUID class support for laravel models.

Install

Add the following to the composer.json:

    "require": {
        "floor9design/laravel-casts-uuid": "^1.0",
    }

Setup

There are no specific config setup steps required. The class should autoload in PSR-4 compliant systems. If you are using the class on its own, simply include it when using a model:

use Floor9design\LaravelCasts\Uuid as UuidCasts;

protected $casts = [
    'uuid' => UuidCasts::class
];

Note the alias - often it is useful to alias the casting class as it can clash with other Uuid classes, such as the base Uuid class:

use Ramsey\Uuid\Uuid;

// somewhere in the code:
$uuid = Uuid::uuid4();

Testing

Build Status Build Status

Tests can be run as follows:

  • ./vendor/phpunit/phpunit/phpunit

Static analysis/code review can be performed by using phpstan:

  • ./vendor/bin/phpstan

The following tests and also creates code coverage (usually maintained at 100%)

  • ./vendor/phpunit/phpunit/phpunit --coverage-html docs/tests/

Credits

Changelog

A changelog is generated here:

License

This software is proprietary.

Related Packages

dyrynda/laravel-model-uuid

This package allows you to easily work with UUIDs in your Laravel models.

3,308,755 484
theprivateer/eloquent-uuid

UUID utility traits for Laravel

7,181 1
webpatser/laravel-uuid

Laravel integration for webpatser/uuid - High-performance drop-in UUID replaceme...

18,410,990 1,799
emadadly/laravel-uuid

laravel uuid a simple, automatic UUID generator for any model based on Laravel.

424,049 117
lukaskorl/uniquely

Uniquely identified models for Laravel 4 by using UUID as primary key

2,008 1