{
    "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" ],
    "homepage": "https://simplesamlphp.org",
    "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\\": "src/SimpleSAML",
            "SimpleSAML\\Module\\admin\\": "modules/admin/src",
            "SimpleSAML\\Module\\core\\": "modules/core/src",
            "SimpleSAML\\Module\\cron\\": "modules/cron/src",
            "SimpleSAML\\Module\\debugsp\\": "modules/debugsp/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": {
            "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\\debugsp\\": ["tests/modules/debugsp/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": {
        "php": "^8.3",
        "ext-date": "*",
        "ext-dom": "*",
        "ext-fileinfo": "*",
        "ext-filter": "*",
        "ext-hash": "*",
        "ext-json": "*",
        "ext-libxml": "*",
        "ext-mbstring": "*",
        "ext-openssl": "*",
        "ext-pcre": "*",
        "ext-session": "*",
        "ext-simplexml": "*",
        "ext-SPL": "*",
        "ext-zlib": "*",

        "composer-runtime-api": "^2.2",
        "gettext/gettext": "~5.7",
        "gettext/php-scanner": "^2.0",
        "gettext/translator": "~1.2",
        "phpmailer/phpmailer": "~7.0",
        "psr/event-dispatcher": "~1.0",
        "psr/log": "~3.0",
        "robrichards/xmlseclibs": "^3.1.5",
        "simplesamlphp/assert": "~2.0",
        "simplesamlphp/composer-module-installer": "~1.7",
        "simplesamlphp/saml2": "~6.1",
        "simplesamlphp/saml2-legacy": "~4.20",
        "simplesamlphp/simplesamlphp-assets-base": "~2.5.0",
        "simplesamlphp/xml-common": "~2.7",
        "simplesamlphp/xml-security": "~2.3",
        "symfony/cache": "~7.4",
        "symfony/config": "~7.4",
        "symfony/console": "~7.4",
        "symfony/dependency-injection": "~7.4",
        "symfony/event-dispatcher": "~7.4",
        "symfony/expression-language": "~7.4",
        "symfony/filesystem": "~7.4",
        "symfony/finder": "~7.4",
        "symfony/framework-bundle": "~7.4",
        "symfony/http-client": "~7.4",
        "symfony/http-client-contracts": "~3.5",
        "symfony/http-foundation": "~7.4",
        "symfony/http-kernel": "~7.4",
        "symfony/intl": "~7.4",
        "symfony/password-hasher": "~7.4",
        "symfony/polyfill-intl-icu": "~1.33",
        "symfony/routing": "~7.4",
        "symfony/translation": "~7.4",
        "symfony/translation-contracts": "~3.6",
        "symfony/twig-bridge": "~7.4",
        "symfony/var-exporter": "~7.4",
        "symfony/yaml": "~7.4",
        "twig/intl-extra": "~3.21",
        "twig/twig": "~3.21",
        "simplesamlphp/simplesamlphp-module-authorize": "~1.8.0",
        "simplesamlphp/simplesamlphp-module-consent": "~1.5.0",
        "simplesamlphp/simplesamlphp-module-consentadmin": "~1.2.1",
        "simplesamlphp/simplesamlphp-module-discopower": "~1.6.0",
        "simplesamlphp/simplesamlphp-module-ldap": "~2.5.2",
        "simplesamlphp/simplesamlphp-module-metarefresh": "~1.3.1",
        "simplesamlphp/simplesamlphp-module-radius": "~2.1.1",
        "simplesamlphp/simplesamlphp-module-sqlauth": "~1.4.0"
    },
    "require-dev": {
        "ext-curl": "*",
        "ext-pdo_sqlite": "*",

        "mikey179/vfsstream": "~1.6",
        "predis/predis": "~3.3",
        "simplesamlphp/simplesamlphp-test-framework": "~1.11.6 || dev-master"
    },
    "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-intl": "Needed if translations for non-English languages are required.",
        "ext-ldap": "Needed if an LDAP backend is used",
        "ext-memcache": "Needed if a Memcache 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"
    },
    "config": {
        "allow-plugins": {
            "composer/package-versions-deprecated": true,
            "dealerdirect/phpcodesniffer-composer-installer": true,
            "muglug/package-versions-56": true,
            "phpstan/extension-installer": true,
            "simplesamlphp/composer-module-installer": true,
            "simplesamlphp/composer-xmlprovider-installer": true
        }
    },
    "extra": {
        "branch-alias": {
            "dev-master": "2.5.x-dev",
            "dev-simplesamlphp-2.5": "2.5.x-dev",
            "dev-simplesamlphp-2.6": "2.6.x-dev",
            "dev-simplesamlphp-3.0": "3.0.x-dev"
        }
    },
    "scripts": {
        "translations:unused": "./bin/translations translations:unused",
        "translations:update:translatable": "./bin/translations translations:update:translatable",
        "clear-symfony-cache": [
            "./bin/console     cache:clear --no-warmup",
            "./bin/console ssp-cache:clear --no-warmup"
        ],
        "post-update-cmd": [
            "echo 'Post-update tasks completed!'"
        ],
        "post-install-cmd": [
            "echo 'Post-install tasks completed!'"
        ]
    },
    "version": "v2.5.2"
}
