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' => '960',
11    'patterns' => [
12        'national' => [
13            'general' => '/^(?:[3467]\\d{6}|9(?:00\\d{7}|\\d{6}))$/',
14            'fixed' => '/^(?:3(?:0[01]|3[0-59])|6(?:[567][02468]|8[024689]|90))\\d{4}$/',
15            'mobile' => '/^(?:46[46]|7[3-9]\\d|9[6-9]\\d)\\d{4}$/',
16            'pager' => '/^781\\d{4}$/',
17            'premium' => '/^900\\d{7}$/',
18            'shortcode' => '/^1(?:[19]0|23)$/',
19            'emergency' => '/^1(?:02|19)$/',
20        ],
21        'possible' => [
22            'general' => '/^\\d{7,10}$/',
23            'fixed' => '/^\\d{7}$/',
24            'mobile' => '/^\\d{7}$/',
25            'pager' => '/^\\d{7}$/',
26            'premium' => '/^\\d{10}$/',
27            'shortcode' => '/^\\d{3}$/',
28            'emergency' => '/^\\d{3}$/',
29        ],
30    ],
31];
32