From 69fb7579a89b9455aad5408ed5401b65b6ff297b Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Fri, 15 Jan 2021 12:18:00 +0100 Subject: [PATCH 1/1] wip #4184 @0.5 --- .gitignore | 4 ++ LVMH-SSO/.htaccess | 4 ++ LVMH-SSO/composer.json | 9 ++++ LVMH-SSO/composer.lock | 116 +++++++++++++++++++++++++++++++++++++++++ 4 files changed, 133 insertions(+) create mode 100644 .gitignore create mode 100644 LVMH-SSO/.htaccess create mode 100644 LVMH-SSO/composer.json create mode 100644 LVMH-SSO/composer.lock diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2791407 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +/LVMH-SSO/vendor/ +/LVMH-SSO/d/ +/LVMH-SSO/mf/ +/LVMH-SSO/index.html \ No newline at end of file diff --git a/LVMH-SSO/.htaccess b/LVMH-SSO/.htaccess new file mode 100644 index 0000000..ad24dde --- /dev/null +++ b/LVMH-SSO/.htaccess @@ -0,0 +1,4 @@ +AuthType Basic +AuthName "Password Protected Area" +AuthUserFile /home/fluidbook/passwd/lvmh.htpasswd +Require valid-user diff --git a/LVMH-SSO/composer.json b/LVMH-SSO/composer.json new file mode 100644 index 0000000..5761942 --- /dev/null +++ b/LVMH-SSO/composer.json @@ -0,0 +1,9 @@ +{ + "require": { + "onelogin/php-saml": "^3.5" + } + , + "require-dev": { + "roave/security-advisories": "dev-master" + } +} diff --git a/LVMH-SSO/composer.lock b/LVMH-SSO/composer.lock new file mode 100644 index 0000000..dd40ce1 --- /dev/null +++ b/LVMH-SSO/composer.lock @@ -0,0 +1,116 @@ +{ + "_readme": [ + "This file locks the dependencies of your project to a known state", + "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", + "This file is @generated automatically" + ], + "content-hash": "f45b6f27cbf89eda0849377884f0b686", + "packages": [ + { + "name": "onelogin/php-saml", + "version": "3.5.1", + "source": { + "type": "git", + "url": "https://github.com/onelogin/php-saml.git", + "reference": "593aca859b67d607923fe50d8ad7315373f5b6dd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/onelogin/php-saml/zipball/593aca859b67d607923fe50d8ad7315373f5b6dd", + "reference": "593aca859b67d607923fe50d8ad7315373f5b6dd", + "shasum": "" + }, + "require": { + "php": ">=5.4", + "robrichards/xmlseclibs": ">=3.1.1" + }, + "require-dev": { + "pdepend/pdepend": "^2.5.0", + "php-coveralls/php-coveralls": "^1.0.2 || ^2.0", + "phploc/phploc": "^2.1 || ^3.0 || ^4.0", + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1", + "sebastian/phpcpd": "^2.0 || ^3.0 || ^4.0", + "squizlabs/php_codesniffer": "^3.1.1" + }, + "suggest": { + "ext-curl": "Install curl lib to be able to use the IdPMetadataParser for parsing remote XMLs", + "ext-gettext": "Install gettext and php5-gettext libs to handle translations", + "ext-openssl": "Install openssl lib in order to handle with x509 certs (require to support sign and encryption)" + }, + "type": "library", + "autoload": { + "psr-4": { + "OneLogin\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "OneLogin PHP SAML Toolkit", + "homepage": "https://developers.onelogin.com/saml/php", + "keywords": [ + "SAML2", + "onelogin", + "saml" + ], + "support": { + "email": "sixto.garcia@onelogin.com", + "issues": "https://github.com/onelogin/php-saml/issues", + "source": "https://github.com/onelogin/php-saml/" + }, + "time": "2020-12-03T20:08:41+00:00" + }, + { + "name": "robrichards/xmlseclibs", + "version": "3.1.1", + "source": { + "type": "git", + "url": "https://github.com/robrichards/xmlseclibs.git", + "reference": "f8f19e58f26cdb42c54b214ff8a820760292f8df" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/robrichards/xmlseclibs/zipball/f8f19e58f26cdb42c54b214ff8a820760292f8df", + "reference": "f8f19e58f26cdb42c54b214ff8a820760292f8df", + "shasum": "" + }, + "require": { + "ext-openssl": "*", + "php": ">= 5.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "RobRichards\\XMLSecLibs\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "A PHP library for XML Security", + "homepage": "https://github.com/robrichards/xmlseclibs", + "keywords": [ + "security", + "signature", + "xml", + "xmldsig" + ], + "support": { + "issues": "https://github.com/robrichards/xmlseclibs/issues", + "source": "https://github.com/robrichards/xmlseclibs/tree/3.1.1" + }, + "time": "2020-09-05T13:00:25+00:00" + } + ], + "packages-dev": [], + "aliases": [], + "minimum-stability": "stable", + "stability-flags": [], + "prefer-stable": false, + "prefer-lowest": false, + "platform": [], + "platform-dev": [], + "plugin-api-version": "2.0.0" +} -- 2.39.5