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' => '376',
11    'patterns' => [
12        'national' => [
13            'general' => '/^(?:[346-9]|180)\d{5}$/',
14            'fixed' => '/^[78]\d{5}$/',
15            'mobile' => '/^[346]\d{5}$/',
16            'tollfree' => '/^180[02]\d{4}$/',
17            'premium' => '/^9\d{5}$/',
18            'emergency' => '/^11[0268]$/',
19        ],
20        'possible' => [
21            'general' => '/^\d{6,8}$/',
22            'fixed' => '/^\d{6}$/',
23            'mobile' => '/^\d{6}$/',
24            'tollfree' => '/^\d{8}$/',
25            'premium' => '/^\d{6}$/',
26            'emergency' => '/^\d{3}$/',
27        ],
28    ],
29];
30