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' => '963',
11    'patterns' => [
12        'national' => [
13            'general' => '/^[1-59]\\d{7,8}$/',
14            'fixed' => '/^(?:1(?:1\\d?|4\\d|[2356])|2[1-35]|3(?:[13]\\d|4)|4[13]|5[1-3])\\d{6}$/',
15            'mobile' => '/^9(?:22|[35][0-8]|4\\d|6[024-9]|88|9[0-489])\\d{6}$/',
16            'emergency' => '/^11[023]$/',
17        ],
18        'possible' => [
19            'general' => '/^\\d{6,9}$/',
20            'mobile' => '/^\\d{9}$/',
21            'emergency' => '/^\\d{3}$/',
22        ],
23    ],
24];
25