herpaderpaldent/seat-groups

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "herpaderpaldent/seat-groups",
    "description": "A module for SeAT that adds the ability of using groups to assign roles to user that are in a group",
    "type": "seat-plugin",
    "require": {
        "php": ">=7.1",
        "laravel/framework": "5.5.*",
        "eveseat/web": "~3.0.15"
    },
    "require-dev": {
        "orchestra/testbench": "~3.5",
        "orchestra/database" : "~3.5",
        "phpunit/phpunit": "~6.0",
        "spatie/phpunit-watcher": "^1.8",
        "codeclimate/php-test-reporter": "^0.4.4",
        "laravel/homestead": "^8.5"
    },
    "conflict": {
        "herpaderpaldent/seat-notifications": "<2.0.0"
    },
    "license": "MIT",
    "authors": [
        {
            "name": "Felix Huber",
            "email": "felix.a.huber@gmx.net"
        }
    ],
    "minimum-stability": "alpha",
    "prefer-stable": true,
    "autoload": {
        "psr-4": {
            "Herpaderpaldent\\Seat\\SeatGroups\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Herpaderpaldent\\Seat\\SeatGroups\\Test\\": "tests/"
        }
    },
    "scripts":{
        "test": "vendor/bin/phpunit",
        "watch": "vendor/bin/phpunit-watcher watch"
    },
    "extra": {
        "laravel": {
            "providers": [
                "Herpaderpaldent\\Seat\\SeatGroups\\GroupsServiceProvider"
            ]
        }
    }
}