Skip to content
Snippets Groups Projects
composer.json 4.71 KiB
Newer Older
{
    "name": "simplesamlphp/simplesamlphp",
    "description": "A PHP implementation of a SAML 2.0 service provider and identity provider.",
    "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": {
Tim van Dijen's avatar
Tim van Dijen committed
            "SimpleSAML\\": "src/SimpleSAML",
            "SimpleSAML\\Module\\admin\\": "modules/admin/src",
            "SimpleSAML\\Module\\core\\": "modules/core/src",
            "SimpleSAML\\Module\\cron\\": "modules/cron/src",
            "SimpleSAML\\Module\\exampleauth\\": "modules/exampleauth/src",
            "SimpleSAML\\Module\\multiauth\\": "modules/multiauth/src",
            "SimpleSAML\\Module\\saml\\": "modules/saml/src"
        },
        "files": ["src/_autoload_modules.php"]
    "autoload-dev": {
        "psr-4": {
Tim van Dijen's avatar
Tim van Dijen committed
            "SimpleSAML\\Test\\": ["tests", "tests/src/SimpleSAML"],
            "SimpleSAML\\Test\\Module\\admin\\": ["tests//modules/admin/src"],
            "SimpleSAML\\Test\\Module\\core\\": ["tests/modules/core/src"],
            "SimpleSAML\\Test\\Module\\cron\\": ["tests/modules/cron/src"],
            "SimpleSAML\\Test\\Module\\exampleauth\\": ["tests/modules/exampleauth/src"],
            "SimpleSAML\\Test\\Module\\multiauth\\": ["tests/modules/multiauth/src"],
            "SimpleSAML\\Test\\Module\\saml\\": ["tests/modules/saml/src"]
        },
        "files": ["tests/_autoload_modules.php"]
    "require": {
Tim van Dijen's avatar
Tim van Dijen committed
        "php": "^8.0",
Tim van Dijen's avatar
Tim van Dijen committed
        "ext-fileinfo": "*",
        "ext-filter": "*",
Tim van Dijen's avatar
Tim van Dijen committed
        "ext-libxml": "*",
        "ext-posix": "*",
Tim van Dijen's avatar
Tim van Dijen committed
        "ext-session": "*",
        "ext-simplexml": "*",
Tim van Dijen's avatar
Tim van Dijen committed
        "ext-spl": "*",
        "ext-xml": "*",
Tim van Dijen's avatar
Tim van Dijen committed

Brook Schofield's avatar
Brook Schofield committed
    "require-dev": {
Brook Schofield's avatar
Brook Schofield committed
    },
    "suggest": {
        "predis/predis": "Needed if a Redis server is used to store session information",
        "ext-curl": "Needed in order to check for updates automatically",
        "ext-memcached": "Needed if a Memcached server is used to store session information",
        "ext-pdo": "Needed if a database backend is used, either for authentication or to store session information",
        "ext-mysql": "Needed if a MySQL backend is used, either for authentication or to store session information",
        "ext-pgsql": "Needed if a PostgreSQL backend is used, either for authentication or to store session information"
    "support": {
        "issues": "https://github.com/simplesamlphp/simplesamlphp/issues",
        "source": "https://github.com/simplesamlphp/simplesamlphp"
Tim van Dijen's avatar
Tim van Dijen committed
    },
    "config": {
        "allow-plugins": {
            "composer/package-versions-deprecated": true,
Tim van Dijen's avatar
Tim van Dijen committed
            "simplesamlphp/composer-module-installer": true,
            "muglug/package-versions-56": true
Tim van Dijen's avatar
Tim van Dijen committed
    },
    "extra": {
        "branch-alias": {
            "dev-master": "3.0.x-dev"
        }