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' => '975',
11    'patterns' => [
12        'national' => [
13            'general' => '/^[1-8]\\d{6,7}$/',
14            'fixed' => '/^(?:2[3-6]|[34][5-7]|5[236]|6[2-46]|7[246]|8[2-4])\\d{5}$/',
15            'mobile' => '/^[17]7\\d{6}$/',
16            'emergency' => '/^11[023]$/',
17        ],
18        'possible' => [
19            'general' => '/^\\d{6,8}$/',
20            'fixed' => '/^\\d{6,7}$/',
21            'mobile' => '/^\\d{8}$/',
22            'emergency' => '/^\\d{3}$/',
23        ],
24    ],
25];
26