87 : array
88 {
89 return [
90 "email_ascii" => [
91 "john.doe@example.com",
92 "john.doe",
93 "example.com"
94 ],
95 "email_unicode" => [
96 "jöhn.doe@exämple.com",
97 "jöhn.doe",
98 "exämple.com"
99 ],
100 "email_unicode2" => [
101 "Ωéяגخ本आ한@Ωéяגخ本आ한.com",
102 "Ωéяגخ本आ한",
103 "Ωéяגخ本आ한.com"
104 ],
105 "email_unicode3" => [
106 "hi@📖💡🤓.ws",
107 "hi",
108 "📖💡🤓.ws"
109 ],
110 "email_short_no_dot" => [
111 "hi@example.com",
112 "hi",
113 "example.com"
114 ],
115 "email_domain_hyphen" => [
116 "someone@domain-with-hyphens.com",
117 "someone",
118 "domain-with-hyphens.com"
119 ],
120 "email_domain_subdomain" => [
121 "someone@subdomain.domain.org",
122 "someone",
123 "subdomain.domain.org"
124 ],
125 "email_domain_many_subdomains" => [
126 "someone@en.m.wikipedia.org",
127 "someone",
128 "en.m.wikipedia.org"
129 ],
130 "email_localhost" => [
131 "someone@localhost",
132 "someone",
133 "localhost"
134 ],
135 "email_ip_127" => [
136 "someone@[127.0.0.1]",
137 "someone",
138 "[127.0.0.1]"
139 ],
140 "email_quoted_string" => [
141 '"quoted.string"@example.com',
142 '"quoted.string"',
143 "example.com"
144 ]
145 ];
146 }