forked from SocialiteProviders/Saml2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOasisAttributeNameUris.php
More file actions
34 lines (19 loc) · 942 Bytes
/
OasisAttributeNameUris.php
File metadata and controls
34 lines (19 loc) · 942 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
namespace Beedooedtech\BeedooSaml2;
class OasisAttributeNameUris
{
public const COMMON_NAME = 'urn:oid:2.5.4.3';
public const DISPLAY_NAME = 'urn:oid:2.16.840.1.113730.3.1.241';
public const GIVEN_NAME = 'urn:oid:2.5.4.42';
public const MAIL = 'urn:oid:0.9.2342.19200300.100.1.3';
public const ORGANIZATIONAL_UNIT_NAME = 'urn:oid:2.5.4.11';
public const PHONE = 'urn:oid:2.5.4.20';
public const PREFERRED_FIRST_NAME = 'urn:oid:1.2.840.113994.200.47';
public const PREFERRED_MIDDLE_NAME = 'urn:oid:1.2.840.113994.200.48';
public const PREFERRED_SURNAME = 'urn:oid:1.2.840.113994.200.49';
public const REGISTERED_GIVEN_NAME = 'urn:oid:1.2.840.113994.200.32';
public const REGISTERED_SURNAME = 'urn:oid:1.2.840.113994.200.31';
public const SURNAME = 'urn:oid:2.5.4.4';
public const TITLE = 'urn:oid:2.5.4.12';
public const UID = 'urn:oid:0.9.2342.19200300.100.1.1';
}