Skip to content

Commit 3bde482

Browse files
committed
Use double quotes more consistently in documentation
1 parent e8031d2 commit 3bde482

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -289,8 +289,8 @@ This is the settings.json file:
289289
* Notice that if you want to validate any SAML Message sent by the HTTP-Redirect binding, you
290290
* will need to provide the whole x509cert.
291291
*/
292-
// 'certFingerprint' => '',
293-
// 'certFingerprintAlgorithm' => 'sha1',
292+
// "certFingerprint" => "",
293+
// "certFingerprintAlgorithm" => "sha1",
294294
}
295295
}
296296
```
@@ -340,7 +340,7 @@ In addition to the required settings data (idp, sp), extra settings can be defin
340340

341341
// Indicates a requirement for the <saml:Assertion>
342342
// elements received by this SP to be encrypted.
343-
'wantAssertionsEncrypted' => false,
343+
"wantAssertionsEncrypted": false,
344344

345345
// Indicates a requirement for the NameID element on the SAMLResponse
346346
// received by this SP to be present.
@@ -357,24 +357,24 @@ In addition to the required settings data (idp, sp), extra settings can be defin
357357
// Set to false and no AuthContext will be sent in the AuthNRequest,
358358
// Set true or don't present thi parameter and you will get an AuthContext 'exact' 'urn:oasis:names:tc:SAML:2.0:ac:classes:PasswordProtectedTransport'
359359
// 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'),
360-
'requestedAuthnContext': true,
360+
"requestedAuthnContext": true,
361361
// Allows the authn comparison parameter to be set, defaults to 'exact' if the setting is not present.
362-
'requestedAuthnContextComparison': 'exact',
362+
"requestedAuthnContextComparison": "exact",
363363

364364
// In some environment you will need to set how long the published metadata of the Service Provider gonna be valid.
365365
// is possible to not set the 2 following parameters (or set to null) and default values will be set (2 days, 1 week)
366366
// Provide the desire TimeStamp, for example 2015-06-26T20:00:00Z
367-
'metadataValidUntil': null,
367+
"metadataValidUntil": null,
368368
// Provide the desire Duration, for example PT518400S (6 days)
369-
'metadataCacheDuration': null,
369+
"metadataCacheDuration": null,
370370

371371
// Algorithm that the toolkit will use on signing process. Options:
372372
// 'http://www.w3.org/2000/09/xmldsig#rsa-sha1'
373373
// 'http://www.w3.org/2000/09/xmldsig#dsa-sha1'
374374
// 'http://www.w3.org/2001/04/xmldsig-more#rsa-sha256'
375375
// 'http://www.w3.org/2001/04/xmldsig-more#rsa-sha384'
376376
// 'http://www.w3.org/2001/04/xmldsig-more#rsa-sha512'
377-
'signatureAlgorithm': 'http://www.w3.org/2000/09/xmldsig#rsa-sha1'
377+
"signatureAlgorithm": "http://www.w3.org/2000/09/xmldsig#rsa-sha1"
378378
},
379379

380380
// Contact information template, it is recommended to suply a

0 commit comments

Comments
 (0)