Skip to content
Snippets Groups Projects
composer.json 1.74 KiB
Newer Older
{
    "name": "simplesamlphp/simplesamlphp",
    "description": "A PHP implementation of a SAML 2.0 service provider and identity provider, also compatible with Shibboleth 1.3 and 2.0.",
    "type": "project",
    "keywords": [ "saml2", "shibboleth","oauth","ws-federation","sp","idp" ],
    "license": "LGPL-2.1-or-later",
    "authors": [
        {
            "name": "Andreas Åkre Solberg",
            "email": "andreas.solberg@uninett.no"
        },
        {
            "name": "Olav Morken",
            "email": "olav.morken@uninett.no"
            "name": "Jaime Perez",
            "email": "jaime.perez@uninett.no"
        }
    ],
    "autoload": {
        "psr-4": {
            "SimpleSAML\\": "lib/SimpleSAML"
        },
        "files": ["lib/_autoload_modules.php"]
    },
    "require": {
        "ext-SPL": "*",
        "ext-zlib": "*",
        "ext-pcre": "*",
        "ext-openssl": "*",
        "ext-dom": "*",
        "ext-date": "*",
        "ext-hash": "*",
        "ext-json": "*",
        "ext-mbstring": "*",
Hanne Moa's avatar
Hanne Moa committed
Brook Schofield's avatar
Brook Schofield committed
    "require-dev": {
        "ext-pdo_sqlite": "*",
Brook Schofield's avatar
Brook Schofield committed
    },
    "suggests": {
        "predis/predis": "1.1.1"
    },
    "support": {
        "issues": "https://github.com/simplesamlphp/simplesamlphp/issues",
        "source": "https://github.com/simplesamlphp/simplesamlphp"