Jaspaul/eloquent-sti

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "jaspaul/eloquent-sti",
    "description": "A simple single table inheritance library for eloquent.",
    "type": "library",
    "license": "MIT",
    "authors": [
        {
            "name": "Jaspaul Bola",
            "email": "jaspaul.b@gmail.com"
        }
    ],
    "require": {
        "php": ">=7.2",
        "illuminate/support": "^6.0",
        "illuminate/database": "^6.0"
    },
    "require-dev": {
        "phpunit/phpunit": "^8.0",
        "mockery/mockery": "^1.0",
        "squizlabs/php_codesniffer": "^3.2",
        "satooshi/php-coveralls": "^2.0",
        "orchestra/testbench": "^4.0",
        "orchestra/database": "^4.0"
    },
    "autoload": {
        "psr-4": {
            "Jaspaul\\EloquentSTI\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Tests\\": "tests/"
        }
    }
}