Download the PHP package madmatt/saml2 without Composer
On this page you can find all versions of the php package madmatt/saml2. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download madmatt/saml2
More information about madmatt/saml2
Files in madmatt/saml2
Package saml2
Short Description SAML2 PHP library from SimpleSAMLphp
License LGPL-2.1
Informations about the package saml2
SimpleSAMLphp SAML2 library
[]
(https://travis-ci.org/simplesamlphp/saml2) [
]
(https://coveralls.io/r/simplesamlphp/saml2)
A PHP library for SAML2 related functionality. Extracted from SimpleSAMLphp, used by OpenConext. This library started as a collaboration between UNINETT and SURFnet but everyone is invited to contribute.
Before you use it
DO NOT USE THIS LIBRARY UNLESS YOU ARE INTIMATELY FAMILIAR WITH THE SAML2 SPECIFICATION.
If you are not familiar with the SAML2 specification and are simply looking to connect your application using SAML2, you should probably use SimpleSAMLphp.
While this library is tagged as stable it is currently not very developer friendly and its API is likely to change significantly in the future. It is however a starting point for collaboration between parties. So let us know what you would like to see in a PHP SAML2 library.
Note that the HTTP Artifact Binding and SOAP client do not work outside of SimpleSAMLphp.
Which version to pick?
It is strongly recommended to use the latest stable version of the 2.x
range as that is the currently supported version.
The 1.x
range should be considered deprecated. This means it will receive fixes and, if required,
functionality may be backported. This version should only be relied on if migrating the project to
the 2.x
range cannot be done yet.
The 0.x
range is discontinued and will no longer receive any fixes or features. The 0.x
range however
is functionally the same as the 1.x
range. Should your project or a dependency of your project rely on a 0.x
version
composer inline aliasing will help, by using
composer require "simplesamlphp/saml2:1.7.0 as 0.8"
allows to install 1.7.0 as if 0.8 were installed.
Usage
-
Install with Composer, run the following command in your project:
-
Provide the required external dependencies by extending and implementing the then injecting it in the ContainerSingleton (see example below).
-
Make sure you've read the security section below
- Use at will. Example:
Security
- Should you need to create a DOMDocument instance, use the
SAML2\DOMDocumentFactory
to create DOMDocuments from either a string (SAML2\DOMDocumentFactory::fromString($theXmlAsString)
), a file (SAML2\DOMDocumentFactory::fromFile($pathToTheFile)
) or just a new instance (SAML2\DOMDocumentFactory::create()
). This in order to protect yourself against the XXE Processing Vulnerability, as well as XML Entity Expansion attacks
License
This library is licensed under the LGPL license version 2.1. For more details see LICENSE.
All versions of saml2 with dependencies
ext-openssl Version *
ext-dom Version *
robrichards/xmlseclibs Version ^2.0
psr/log Version ~1.0