1<?php
2
3/**
4 * A list of additional PHP timezones that are returned by
5 * DateTimeZone::listIdentifiers(DateTimeZone::ALL_WITH_BC)
6 * valid for new DateTimeZone().
7 *
8 * This list does not include those timezone identifiers that we have to map to
9 * a different identifier for some PHP versions (see php-workaround.php).
10 *
11 * Instead of using DateTimeZone::listIdentifiers(DateTimeZone::ALL_WITH_BC)
12 * directly, we use this file because DateTimeZone::ALL_WITH_BC is not properly
13 * supported by all PHP version and HHVM.
14 *
15 * @copyright Copyright (C) fruux GmbH (https://fruux.com/)
16 * @license http://sabre.io/license/ Modified BSD License
17 */
18return [
19    'Africa/Asmera',
20    'Africa/Timbuktu',
21    'America/Argentina/ComodRivadavia',
22    'America/Atka',
23    'America/Buenos_Aires',
24    'America/Catamarca',
25    'America/Coral_Harbour',
26    'America/Cordoba',
27    'America/Ensenada',
28    'America/Fort_Wayne',
29    'America/Indianapolis',
30    'America/Jujuy',
31    'America/Knox_IN',
32    'America/Louisville',
33    'America/Mendoza',
34    'America/Montreal',
35    'America/Porto_Acre',
36    'America/Rosario',
37    'America/Shiprock',
38    'America/Virgin',
39    'Antarctica/South_Pole',
40    'Asia/Ashkhabad',
41    'Asia/Calcutta',
42    'Asia/Chungking',
43    'Asia/Dacca',
44    'Asia/Istanbul',
45    'Asia/Katmandu',
46    'Asia/Macao',
47    'Asia/Saigon',
48    'Asia/Tel_Aviv',
49    'Asia/Thimbu',
50    'Asia/Ujung_Pandang',
51    'Asia/Ulan_Bator',
52    'Atlantic/Faeroe',
53    'Atlantic/Jan_Mayen',
54    'Australia/ACT',
55    'Australia/Canberra',
56    'Australia/LHI',
57    'Australia/North',
58    'Australia/NSW',
59    'Australia/Queensland',
60    'Australia/South',
61    'Australia/Tasmania',
62    'Australia/Victoria',
63    'Australia/West',
64    'Australia/Yancowinna',
65    'Brazil/Acre',
66    'Brazil/DeNoronha',
67    'Brazil/East',
68    'Brazil/West',
69    'Canada/Atlantic',
70    'Canada/Central',
71    'Canada/Eastern',
72    'Canada/Mountain',
73    'Canada/Newfoundland',
74    'Canada/Pacific',
75    'Canada/Saskatchewan',
76    'Canada/Yukon',
77    'CET',
78    'Chile/Continental',
79    'Chile/EasterIsland',
80    'EET',
81    'EST',
82    'Etc/GMT',
83    'Etc/GMT+0',
84    'Etc/GMT+1',
85    'Etc/GMT+10',
86    'Etc/GMT+11',
87    'Etc/GMT+12',
88    'Etc/GMT+2',
89    'Etc/GMT+3',
90    'Etc/GMT+4',
91    'Etc/GMT+5',
92    'Etc/GMT+6',
93    'Etc/GMT+7',
94    'Etc/GMT+8',
95    'Etc/GMT+9',
96    'Etc/GMT-0',
97    'Etc/GMT-1',
98    'Etc/GMT-10',
99    'Etc/GMT-11',
100    'Etc/GMT-12',
101    'Etc/GMT-13',
102    'Etc/GMT-14',
103    'Etc/GMT-2',
104    'Etc/GMT-3',
105    'Etc/GMT-4',
106    'Etc/GMT-5',
107    'Etc/GMT-6',
108    'Etc/GMT-7',
109    'Etc/GMT-8',
110    'Etc/GMT-9',
111    'Etc/GMT0',
112    'Etc/Greenwich',
113    'Etc/UCT',
114    'Etc/Universal',
115    'Etc/UTC',
116    'Etc/Zulu',
117    'Europe/Belfast',
118    'Europe/Nicosia',
119    'Europe/Tiraspol',
120    'GB',
121    'GMT',
122    'GMT+0',
123    'GMT-0',
124    'HST',
125    'MET',
126    'Mexico/BajaNorte',
127    'Mexico/BajaSur',
128    'Mexico/General',
129    'MST',
130    'NZ',
131    'Pacific/Ponape',
132    'Pacific/Samoa',
133    'Pacific/Truk',
134    'Pacific/Yap',
135    'PRC',
136    'ROC',
137    'ROK',
138    'UCT',
139    'US/Alaska',
140    'US/Aleutian',
141    'US/Arizona',
142    'US/Central',
143    'US/East-Indiana',
144    'US/Eastern',
145    'US/Hawaii',
146    'US/Indiana-Starke',
147    'US/Michigan',
148    'US/Mountain',
149    'US/Pacific',
150    'US/Pacific-New',
151    'US/Samoa',
152    'WET',
153];
154