torifat/eloquent-single-table-inheritance

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "torifat/eloquent-single-table-inheritance",
    "description": "Single Table Inheritance (STI) implemented as a Trait for Laravel Eloquent models",
    "keywords": ["laravel", "eloquent", "sti", "single-table-inheritance", "model"],
    "homepage": "https://github.com/torifat/eloquent-single-table-inheritance",
    "type": "library",
    "require": {
        "php": "~5.4",
        "illuminate/database": "5.0.*@dev"
    },
    "require-dev": {
        "phpunit/phpunit": "~4.4",
        "mockery/mockery": "0.9.*@dev"
    },
    "license": "MIT",
    "authors": [
        {
            "name": "Rifat Nabi",
            "email": "to.rifat@gmail.com"
        }
    ],
    "autoload" : {
        "psr-4" : {
            "Rifat\\EloquentSingleTableInheritance\\": "src/"
        }
    },
    "minimum-stability": "dev"
}