brokeyourbike/uid-keys-laravel

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "brokeyourbike/uid-keys",
    "description": "A simple drop-in solution for providing UUID and ULID support for the IDs of your Eloquent models.",
    "type": "library",
    "license": "MPL-2.0",
    "keywords": [
        "php",
        "laravel",
        "eloquent",
        "uuid",
        "ulid"
    ],
    "authors": [
        {
            "name": "Ivan Stasiuk",
            "email": "ivan@stasi.uk",
            "homepage": "https://stasi.uk"
        }
    ],
    "autoload": {
        "psr-4": {
            "BrokeYourBike\\UidKeys\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "BrokeYourBike\\UidKeys\\Tests\\": "tests/"
        }
    },
    "require": {
        "php": "^8.1",
        "laravel/framework": "^8.0|^9.0",
        "symfony/uid": "^6.0"
    },
    "require-dev": {
        "bamarni/composer-bin-plugin": "^1.4",
        "phpunit/phpunit": "^9.5",
        "orchestra/testbench": "^6"
    },
    "config": {
        "sort-packages": true,
        "allow-plugins": {
            "bamarni/composer-bin-plugin": true
        }
    },
    "version": "0.1.1"
}