Skip to content

Commit 119eb9f

Browse files
authored
Merge pull request #172 from chukkwagon/master
Fix invalid JSON in readme.md
2 parents 367d6dc + 5cd77ca commit 119eb9f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ In addition to the required settings data (idp, sp), extra settings can be defin
365365

366366
// Indicates a requirement for the <saml:Assertion>
367367
// elements received by this SP to be encrypted.
368-
'wantAssertionsEncrypted' => false,
368+
"wantAssertionsEncrypted": false,
369369

370370
// Indicates a requirement for the NameID element on the SAMLResponse
371371
// received by this SP to be present.
@@ -382,24 +382,24 @@ In addition to the required settings data (idp, sp), extra settings can be defin
382382
// Set to false and no AuthContext will be sent in the AuthNRequest,
383383
// Set true or don't present this parameter and you will get an AuthContext 'exact' 'urn:oasis:names:tc:SAML:2.0:ac:classes:PasswordProtectedTransport'
384384
// Set an array with the possible auth context values: array ('urn:oasis:names:tc:SAML:2.0:ac:classes:Password', 'urn:oasis:names:tc:SAML:2.0:ac:classes:X509'),
385-
'requestedAuthnContext': true,
385+
"requestedAuthnContext": true,
386386
// Allows the authn comparison parameter to be set, defaults to 'exact' if the setting is not present.
387-
'requestedAuthnContextComparison': 'exact',
387+
"requestedAuthnContextComparison": "exact",
388388

389389
// In some environment you will need to set how long the published metadata of the Service Provider gonna be valid.
390390
// is possible to not set the 2 following parameters (or set to null) and default values will be set (2 days, 1 week)
391391
// Provide the desired Timestamp, for example 2015-06-26T20:00:00Z
392-
'metadataValidUntil': null,
392+
"metadataValidUntil": null,
393393
// Provide the desired duration, for example PT518400S (6 days)
394-
'metadataCacheDuration': null,
394+
"metadataCacheDuration": null,
395395

396396
// Algorithm that the toolkit will use on signing process. Options:
397397
// 'http://www.w3.org/2000/09/xmldsig#rsa-sha1'
398398
// 'http://www.w3.org/2000/09/xmldsig#dsa-sha1'
399399
// 'http://www.w3.org/2001/04/xmldsig-more#rsa-sha256'
400400
// 'http://www.w3.org/2001/04/xmldsig-more#rsa-sha384'
401401
// 'http://www.w3.org/2001/04/xmldsig-more#rsa-sha512'
402-
'signatureAlgorithm' => 'http://www.w3.org/2000/09/xmldsig#rsa-sha1'
402+
"signatureAlgorithm": "http://www.w3.org/2000/09/xmldsig#rsa-sha1"
403403
},
404404

405405
// Contact information template, it is recommended to supply

0 commit comments

Comments
 (0)