mirror of
https://github.com/Respect/Validation.git
synced 2026-03-14 14:25:45 +01:00
- Parce PSL ICANN section into structured sections (rules, wildcards, exceptions) according to the format. - Updates PublicSuffix semantics for complete application of the rules. - Includes private domain suffixes now. - Refreshes the existing data. - Fixes the update-regionals.yml workflow, set it to run twice a week. References: https://github.com/publicsuffix/list/wiki/Format#format
20 lines
500 B
PHP
20 lines
500 B
PHP
<?php declare(strict_types=1);
|
||
// SPDX-FileCopyrightText: 2007–22 Mozilla Foundation
|
||
// SPDX-License-Identifier: MPL-2.0-no-copyleft-exception
|
||
return [
|
||
'exceptions' => [],
|
||
'rules' => [
|
||
'AUTH.COGNITO-IDP.EUSC-DE-EAST-1.ON.AMAZONWEBSERVICES.EU',
|
||
'BARSY.EU',
|
||
'CLOUDNS.EU',
|
||
'DEUXFLEURS.EU',
|
||
'DIRECTWP.EU',
|
||
'JELASTIC.DOGADO.EU',
|
||
'PRVW.EU',
|
||
'SPDNS.EU',
|
||
],
|
||
'wildcards' => [
|
||
'NXA.EU',
|
||
'TRANSURL.EU',
|
||
],
|
||
];
|