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
10 lines
252 B
PHP
10 lines
252 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' => [
|
||
'CO.EDUCATION',
|
||
],
|
||
'wildcards' => [],
|
||
];
|