|
| 1 | +<?php |
| 2 | + $settingsInfo = array ( |
| 3 | + 'strict' => false, |
| 4 | + 'debug' => false, |
| 5 | + 'sp' => array ( |
| 6 | + 'entityId' => 'http://stuff.com/endpoints/metadata.php', |
| 7 | + 'assertionConsumerService' => array ( |
| 8 | + 'url' => 'http://stuff.com/endpoints/endpoints/acs.php', |
| 9 | + ), |
| 10 | + 'singleLogoutService' => array ( |
| 11 | + 'url' => 'http://stuff.com/endpoints/endpoints/sls.php', |
| 12 | + ), |
| 13 | + 'NameIDFormat' => 'urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified', |
| 14 | + 'attributeConsumingService' => array ( |
| 15 | + 'serviceName' => 'Service Name', |
| 16 | + 'serviceDescription' => 'Service Description', |
| 17 | + 'requestedAttributes' => array ( |
| 18 | + array ( |
| 19 | + 'nameFormat' => \OneLogin_Saml2_Constants::ATTRNAME_FORMAT_BASIC, |
| 20 | + 'isRequired' => false, |
| 21 | + 'name' => 'userType', |
| 22 | + 'attributeValue' => array('userType', 'admin') |
| 23 | + ), |
| 24 | + array ( |
| 25 | + 'nameFormat' => \OneLogin_Saml2_Constants::ATTRNAME_FORMAT_URI, |
| 26 | + 'isRequired' => true, |
| 27 | + 'name' => 'urn:oid:0.9.2342.19200300.100.1.1', |
| 28 | + 'friendlyName' => 'uid' |
| 29 | + ), |
| 30 | + ) |
| 31 | + ) |
| 32 | + ), |
| 33 | + 'idp' => array ( |
| 34 | + 'entityId' => 'http://idp.example.com/', |
| 35 | + 'singleSignOnService' => array ( |
| 36 | + 'url' => 'http://idp.example.com/SSOService.php', |
| 37 | + ), |
| 38 | + 'singleLogoutService' => array ( |
| 39 | + 'url' => 'http://idp.example.com/SingleLogoutService.php', |
| 40 | + ), |
| 41 | + 'x509cert' => 'MIICgTCCAeoCCQCbOlrWDdX7FTANBgkqhkiG9w0BAQUFADCBhDELMAkGA1UEBhMCTk8xGDAWBgNVBAgTD0FuZHJlYXMgU29sYmVyZzEMMAoGA1UEBxMDRm9vMRAwDgYDVQQKEwdVTklORVRUMRgwFgYDVQQDEw9mZWlkZS5lcmxhbmcubm8xITAfBgkqhkiG9w0BCQEWEmFuZHJlYXNAdW5pbmV0dC5ubzAeFw0wNzA2MTUxMjAxMzVaFw0wNzA4MTQxMjAxMzVaMIGEMQswCQYDVQQGEwJOTzEYMBYGA1UECBMPQW5kcmVhcyBTb2xiZXJnMQwwCgYDVQQHEwNGb28xEDAOBgNVBAoTB1VOSU5FVFQxGDAWBgNVBAMTD2ZlaWRlLmVybGFuZy5ubzEhMB8GCSqGSIb3DQEJARYSYW5kcmVhc0B1bmluZXR0Lm5vMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDivbhR7P516x/S3BqKxupQe0LONoliupiBOesCO3SHbDrl3+q9IbfnfmE04rNuMcPsIxB161TdDpIesLCn7c8aPHISKOtPlAeTZSnb8QAu7aRjZq3+PbrP5uW3TcfCGPtKTytHOge/OlJbo078dVhXQ14d1EDwXJW1rRXuUt4C8QIDAQABMA0GCSqGSIb3DQEBBQUAA4GBACDVfp86HObqY+e8BUoWQ9+VMQx1ASDohBjwOsg2WykUqRXF+dLfcUH9dWR63CtZIKFDbStNomPnQz7nbK+onygwBspVEbnHuUihZq3ZUdmumQqCw4Uvs/1Uvq3orOo/WJVhTyvLgFVK2QarQ4/67OZfHd7R+POBXhophSMv1ZOo', |
| 42 | + ), |
| 43 | + |
| 44 | + 'security' => array ( |
| 45 | + 'authnRequestsSigned' => false, |
| 46 | + 'wantAssertionsSigned' => false, |
| 47 | + 'signMetadata' => false, |
| 48 | + ), |
| 49 | + 'contactPerson' => array ( |
| 50 | + 'technical' => array ( |
| 51 | + 'givenName' => 'technical_name', |
| 52 | + 'emailAddress' => '[email protected]', |
| 53 | + ), |
| 54 | + 'support' => array ( |
| 55 | + 'givenName' => 'support_name', |
| 56 | + 'emailAddress' => '[email protected]', |
| 57 | + ), |
| 58 | + ), |
| 59 | + |
| 60 | + 'organization' => array ( |
| 61 | + 'en-US' => array( |
| 62 | + 'name' => 'sp_test', |
| 63 | + 'displayname' => 'SP test', |
| 64 | + 'url' => 'http://sp.example.com', |
| 65 | + ), |
| 66 | + ), |
| 67 | + ); |
0 commit comments