PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Michael Cummings   PHP Create UUID v4 type   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Create UUID v4 type
A custom Doctrine data type for UUID v4 values
Author: By
Last change: Updated version in composer.json file.
Updated description in composer.json file.
Fixed formatting in file as well.
Date: 4 years ago
Size: 907 bytes
 

Contents

Class file image Download
{ "name": "dragonrun1/uuid64type", "description": "A custom Doctrine datatype for UUIDv4 values in database tables that offers a more compact format that can be useful for primary key columns.", "type": "library", "license": "BSD-3-Clause", "version": "1.0.1", "authors": [ { "name": "Michael Cummings", "email": "dragonrun1@gmail.com" } ], "autoload": { "psr-4": { "Uuid64Type\\": [ "bin/", "src/" ] } }, "bin": "bin/Uuid64", "config": { "optimize-autoloader": true, "sort-packages": true }, "require": { "php": ">=7.3,<7.5", "ext-PDO": ">=1.0.0", "ext-SPL": "*", "ext-pdo_mysql": "*", "ext-sodium": "*", "doctrine/orm": "^2.7" }, "require-dev": { "roave/security-advisories": "dev-master" } }