-
-
Notifications
You must be signed in to change notification settings - Fork 472
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move the creation of the LogoutRequest and the LogoutResponse object …
…to separate functions
- Loading branch information
Showing
2 changed files
with
42 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -84,15 +84,15 @@ Installation | |
|
||
git clone [email protected]:SAML-Toolkits/php-saml.git | ||
|
||
Then pull the 3.X.X branch/tag | ||
Then pull the 4.X.X branch/tag | ||
|
||
#### Option 2. Download from github #### | ||
|
||
The toolkit is hosted on github. You can download it from: | ||
|
||
* https://github.com/SAML-Toolkits/php-saml/releases | ||
|
||
Search for 3.X.X releases | ||
Search for 4.X.X releases | ||
|
||
Copy the core of the library inside the php application. (each application has its | ||
structure so take your time to locate the PHP SAML toolkit in the best place). | ||
|
@@ -124,7 +124,7 @@ Compatibility | |
|
||
This 4.X.X supports PHP >=7.3 . | ||
|
||
It is not compatible with PHP5.6 or PHP7.0. | ||
It is not compatible with PHP5.6 or PHP7.0, PHP7.1 or PHP7.2 | ||
|
||
Namespaces | ||
---------- | ||
|
@@ -1257,6 +1257,9 @@ Main class of SAML PHP Toolkit | |
* `getLastRequestID` - Gets the ID of the last AuthNRequest or LogoutRequest generated by the Service Provider. | ||
* `getLastRequestXML` - Returns the most recently-constructed/processed XML SAML request (AuthNRequest, LogoutRequest) | ||
* `getLastResponseXML` - Returns the most recently-constructed/processed XML SAML response (SAMLResponse, LogoutResponse). If the SAMLResponse had an encrypted assertion, decrypts it. | ||
* `buildAuthnRequest` - Creates an AuthnRequest | ||
* `buildLogoutRequest` - Creates an LogoutRequest | ||
* `buildLogoutResponse` - Constructs a Logout Response object (Initialize params from settings and if provided load the Logout Response). | ||
|
||
|
||
##### OneLogin\Saml2\AuthnRequest - `AuthnRequest.php` ##### | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters