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/East-Saskatchewan',
72    'Canada/Eastern',
73    'Canada/Mountain',
74    'Canada/Newfoundland',
75    'Canada/Pacific',
76    'Canada/Saskatchewan',
77    'Canada/Yukon',
78    'CET',
79    'Chile/Continental',
80    'Chile/EasterIsland',
81    'EET',
82    'EST',
83    'Etc/GMT',
84    'Etc/GMT+0',
85    'Etc/GMT+1',
86    'Etc/GMT+10',
87    'Etc/GMT+11',
88    'Etc/GMT+12',
89    'Etc/GMT+2',
90    'Etc/GMT+3',
91    'Etc/GMT+4',
92    'Etc/GMT+5',
93    'Etc/GMT+6',
94    'Etc/GMT+7',
95    'Etc/GMT+8',
96    'Etc/GMT+9',
97    'Etc/GMT-0',
98    'Etc/GMT-1',
99    'Etc/GMT-10',
100    'Etc/GMT-11',
101    'Etc/GMT-12',
102    'Etc/GMT-13',
103    'Etc/GMT-14',
104    'Etc/GMT-2',
105    'Etc/GMT-3',
106    'Etc/GMT-4',
107    'Etc/GMT-5',
108    'Etc/GMT-6',
109    'Etc/GMT-7',
110    'Etc/GMT-8',
111    'Etc/GMT-9',
112    'Etc/GMT0',
113    'Etc/Greenwich',
114    'Etc/UCT',
115    'Etc/Universal',
116    'Etc/UTC',
117    'Etc/Zulu',
118    'Europe/Belfast',
119    'Europe/Nicosia',
120    'Europe/Tiraspol',
121    'GB',
122    'GMT',
123    'GMT+0',
124    'GMT-0',
125    'HST',
126    'MET',
127    'Mexico/BajaNorte',
128    'Mexico/BajaSur',
129    'Mexico/General',
130    'MST',
131    'NZ',
132    'Pacific/Ponape',
133    'Pacific/Samoa',
134    'Pacific/Truk',
135    'Pacific/Yap',
136    'PRC',
137    'ROC',
138    'ROK',
139    'UCT',
140    'US/Alaska',
141    'US/Aleutian',
142    'US/Arizona',
143    'US/Central',
144    'US/East-Indiana',
145    'US/Eastern',
146    'US/Hawaii',
147    'US/Indiana-Starke',
148    'US/Michigan',
149    'US/Mountain',
150    'US/Pacific',
151    'US/Pacific-New',
152    'US/Samoa',
153    'WET',
154];
155