heiglandreas/HybridAuth

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name" : "org_heigl/hybridauth", 
    "type" : "library",
    "description" : "Lightweight Authentication Module for Zend-Framework 2 using the hybridauth-library",
    "keywords" : [ "login","social network","user", "twitter", "facebook", "github", "zf2", "module"],
    "homepage" : "http://github.com/heiglandreas/HybridAuth",
    "license" : "MIT",
    "authors" : [
    {
        "name" : "Andreas Heigl",
        "email" : "andreas@heigl.org",
        "homepage" : "http://andreas.heigl.org",
        "role" : "Developer"
    }],
    "require" : {
        "php": "^5.6 || ^7.0",
        "zendframework/zend-mvc": "^3.0",
        "zendframework/zend-servicemanager": "^3.0",
        "zendframework/zend-session": "^2.7 || ^3.0",
        "zendframework/zend-uri": "^2.5 || ^3.0",
        "zendframework/zend-view": "^2.7 || ^3.0",
        "socialconnect/auth": "^1.0",
        "guzzlehttp/guzzle": "^6.2"
    },
    "require-dev" : {
        "mockery/mockery": "^0.9.7",
        "phpunit/phpunit": "^5.7"
    },
    "autoload" : {
        "psr-4" : {
            "OrgHeiglHybridAuth\\" : "src/"
        },
        "classmap": [
            "./"
        ]
    },
    "autoload-dev" : {
        "psr-4" : {
            "OrgHeiglHybridAuthTest\\" : "tests/"
        }
    },
    "minimum-stability": "stable",
    "prefer-stable" : true
}