1<?php
2
3/**
4 * @see       https://github.com/laminas/laminas-i18n for the canonical source repository
5 * @copyright https://github.com/laminas/laminas-i18n/blob/master/COPYRIGHT.md
6 * @license   https://github.com/laminas/laminas-i18n/blob/master/LICENSE.md New BSD License
7 */
8
9return [
10    'code' => '687',
11    'patterns' => [
12        'national' => [
13            'general' => '/^[2-47-9]\\d{5}$/',
14            'fixed' => '/^(?:2[03-9]|3[0-5]|4[1-7]|88)\\d{4}$/',
15            'mobile' => '/^(?:[79]\\d|8[0-79])\\d{4}$/',
16            'premium' => '/^36\\d{4}$/',
17            'shortcode' => '/^10(?:0[06]|1[02-46]|20|3[0125]|42|5[058]|77)$/',
18            'emergency' => '/^1[5-8]$/',
19        ],
20        'possible' => [
21            'general' => '/^\\d{6}$/',
22            'shortcode' => '/^\\d{4}$/',
23            'emergency' => '/^\\d{2}$/',
24        ],
25    ],
26];
27