razorbacks/laravel-shibboleth

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "razorbacks/laravel-shibboleth",
    "description": "Enable basic Shibboleth support for Laravel 5.x",
    "authors": [
        {
            "name": "Christopher Maio",
            "email": "cjmaio@uwm.edu"
        },
        {
            "name": "Michael Schuett",
            "email": "michaeljs1990@gmail.com"
        },
        {
            "name": "Taylor Donald Harvey Smith",
            "email": "smit2482@uwm.edu"
        },
        {
            "name": "Jeff Puckett",
            "email": "jpucket@uark.edu"
        }
    ],
    "require": {
        "illuminate/support": "5.*",
        "mrclay/shibalike": "1.0.0",
        "laravel/framework": "5.4.* || 5.5.*",
        "tymon/jwt-auth": "^0.5.10"
    },
    "autoload": {
        "psr-4": {
            "StudentAffairsUwm\\Shibboleth\\": "src/StudentAffairsUwm/Shibboleth"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "StudentAffairsUwm\\Shibboleth\\Tests\\Stubs\\": "tests/setup/Stubs",
            "App\\": "tests/setup/app"
        }
    },
    "minimum-stability": "stable",
    "require-dev": {
        "phpunit/phpunit": "^6.0",
        "orchestra/testbench": "3.4.*"
    },
    "extra": {
        "laravel": {
            "providers": [
                "StudentAffairsUwm\\Shibboleth\\ShibbolethServiceProvider"
            ]
        }
    }
}