WooCommerce - Version 5.3.0-rc.1

Version Description

Download this release

Release Info

Developer sadowski
Plugin Icon 128x128 WooCommerce
Version 5.3.0-rc.1
Comparing to
See all releases

Code changes from version 5.3.0-beta.1 to 5.3.0-rc.1

i18n/languages/woocommerce.pot CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the WooCommerce plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: WooCommerce 5.3.0-beta\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-04-16T19:03:34+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.4.0\n"
15
  "X-Domain: woocommerce\n"
2
  # This file is distributed under the same license as the WooCommerce plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: WooCommerce 5.3.0-RC.1\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-04-23T21:11:13+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.4.0\n"
15
  "X-Domain: woocommerce\n"
includes/admin/class-wc-admin-setup-wizard.php CHANGED
@@ -481,7 +481,7 @@ class WC_Admin_Setup_Wizard {
481
  $state = WC()->countries->get_base_state();
482
  $country = WC()->countries->get_base_country();
483
  $postcode = WC()->countries->get_base_postcode();
484
- $currency = get_option( 'woocommerce_currency', 'GBP' );
485
  $product_type = get_option( 'woocommerce_product_type', 'both' );
486
  $sell_in_person = get_option( 'woocommerce_sell_in_person', 'none_selected' );
487
 
481
  $state = WC()->countries->get_base_state();
482
  $country = WC()->countries->get_base_country();
483
  $postcode = WC()->countries->get_base_postcode();
484
+ $currency = get_option( 'woocommerce_currency', 'USD' );
485
  $product_type = get_option( 'woocommerce_product_type', 'both' );
486
  $sell_in_person = get_option( 'woocommerce_sell_in_person', 'none_selected' );
487
 
includes/admin/settings/class-wc-settings-general.php CHANGED
@@ -229,7 +229,7 @@ class WC_Settings_General extends WC_Settings_Page {
229
  'title' => __( 'Currency', 'woocommerce' ),
230
  'desc' => __( 'This controls what currency prices are listed at in the catalog and which currency gateways will take payments in.', 'woocommerce' ),
231
  'id' => 'woocommerce_currency',
232
- 'default' => 'GBP',
233
  'type' => 'select',
234
  'class' => 'wc-enhanced-select',
235
  'desc_tip' => true,
229
  'title' => __( 'Currency', 'woocommerce' ),
230
  'desc' => __( 'This controls what currency prices are listed at in the catalog and which currency gateways will take payments in.', 'woocommerce' ),
231
  'id' => 'woocommerce_currency',
232
+ 'default' => 'USD',
233
  'type' => 'select',
234
  'class' => 'wc-enhanced-select',
235
  'desc_tip' => true,
readme.txt CHANGED
@@ -193,6 +193,7 @@ WooCommerce comes with some sample data you can use to see how products look; im
193
  * Tweak - Lost password form alignment issues. #29496
194
  * Tweak - Improve accessibility by adding `aria-hidden="true"` on strikethrough prices. #29603
195
  * Tweak - Default store location to US California. #29654
 
196
 
197
  ** WooCommerce Blocks - 4.8.0 & 4.9.0 & 4.9.1 **
198
 
193
  * Tweak - Lost password form alignment issues. #29496
194
  * Tweak - Improve accessibility by adding `aria-hidden="true"` on strikethrough prices. #29603
195
  * Tweak - Default store location to US California. #29654
196
+ * Tweak - Default store currency to USD. #29752
197
 
198
  ** WooCommerce Blocks - 4.8.0 & 4.9.0 & 4.9.1 **
199
 
vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
- return ComposerAutoloaderInit47e23124e2a312d52f64b1f85897b9d8::getLoader();
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInitbe5ec34edc9729c87bbc54d529a6a86b::getLoader();
vendor/autoload_packages.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jp47e23124e2a312d52f64b1f85897b9d8;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpbe5ec34edc9729c87bbc54d529a6a86b;
9
 
10
  // phpcs:ignore
11
 
vendor/composer/ClassLoader.php CHANGED
@@ -37,11 +37,13 @@ namespace Composer\Autoload;
37
  *
38
  * @author Fabien Potencier <fabien@symfony.com>
39
  * @author Jordi Boggiano <j.boggiano@seld.be>
40
- * @see http://www.php-fig.org/psr/psr-0/
41
- * @see http://www.php-fig.org/psr/psr-4/
42
  */
43
  class ClassLoader
44
  {
 
 
45
  // PSR-4
46
  private $prefixLengthsPsr4 = array();
47
  private $prefixDirsPsr4 = array();
@@ -57,6 +59,13 @@ class ClassLoader
57
  private $missingClasses = array();
58
  private $apcuPrefix;
59
 
 
 
 
 
 
 
 
60
  public function getPrefixes()
61
  {
62
  if (!empty($this->prefixesPsr0)) {
@@ -300,6 +309,17 @@ class ClassLoader
300
  public function register($prepend = false)
301
  {
302
  spl_autoload_register(array($this, 'loadClass'), true, $prepend);
 
 
 
 
 
 
 
 
 
 
 
303
  }
304
 
305
  /**
@@ -308,6 +328,10 @@ class ClassLoader
308
  public function unregister()
309
  {
310
  spl_autoload_unregister(array($this, 'loadClass'));
 
 
 
 
311
  }
312
 
313
  /**
@@ -367,6 +391,16 @@ class ClassLoader
367
  return $file;
368
  }
369
 
 
 
 
 
 
 
 
 
 
 
370
  private function findFileWithExtension($class, $ext)
371
  {
372
  // PSR-4 lookup
37
  *
38
  * @author Fabien Potencier <fabien@symfony.com>
39
  * @author Jordi Boggiano <j.boggiano@seld.be>
40
+ * @see https://www.php-fig.org/psr/psr-0/
41
+ * @see https://www.php-fig.org/psr/psr-4/
42
  */
43
  class ClassLoader
44
  {
45
+ private $vendorDir;
46
+
47
  // PSR-4
48
  private $prefixLengthsPsr4 = array();
49
  private $prefixDirsPsr4 = array();
59
  private $missingClasses = array();
60
  private $apcuPrefix;
61
 
62
+ private static $registeredLoaders = array();
63
+
64
+ public function __construct($vendorDir = null)
65
+ {
66
+ $this->vendorDir = $vendorDir;
67
+ }
68
+
69
  public function getPrefixes()
70
  {
71
  if (!empty($this->prefixesPsr0)) {
309
  public function register($prepend = false)
310
  {
311
  spl_autoload_register(array($this, 'loadClass'), true, $prepend);
312
+
313
+ if (null === $this->vendorDir) {
314
+ return;
315
+ }
316
+
317
+ if ($prepend) {
318
+ self::$registeredLoaders = array($this->vendorDir => $this) + self::$registeredLoaders;
319
+ } else {
320
+ unset(self::$registeredLoaders[$this->vendorDir]);
321
+ self::$registeredLoaders[$this->vendorDir] = $this;
322
+ }
323
  }
324
 
325
  /**
328
  public function unregister()
329
  {
330
  spl_autoload_unregister(array($this, 'loadClass'));
331
+
332
+ if (null !== $this->vendorDir) {
333
+ unset(self::$registeredLoaders[$this->vendorDir]);
334
+ }
335
  }
336
 
337
  /**
391
  return $file;
392
  }
393
 
394
+ /**
395
+ * Returns the currently registered loaders indexed by their corresponding vendor directories.
396
+ *
397
+ * @return self[]
398
+ */
399
+ public static function getRegisteredLoaders()
400
+ {
401
+ return self::$registeredLoaders;
402
+ }
403
+
404
  private function findFileWithExtension($class, $ext)
405
  {
406
  // PSR-4 lookup
vendor/composer/InstalledVersions.php ADDED
@@ -0,0 +1,387 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+
4
+
5
+
6
+
7
+
8
+
9
+
10
+
11
+
12
+
13
+ namespace Composer;
14
+
15
+ use Composer\Autoload\ClassLoader;
16
+ use Composer\Semver\VersionParser;
17
+
18
+
19
+
20
+
21
+
22
+
23
+ class InstalledVersions
24
+ {
25
+ private static $installed = array (
26
+ 'root' =>
27
+ array (
28
+ 'pretty_version' => 'dev-trunk',
29
+ 'version' => 'dev-trunk',
30
+ 'aliases' =>
31
+ array (
32
+ ),
33
+ 'reference' => '715ee5818558a6cfe78a3e60b40a9196c4ab4b1d',
34
+ 'name' => 'woocommerce/woocommerce',
35
+ ),
36
+ 'versions' =>
37
+ array (
38
+ 'automattic/jetpack-autoloader' =>
39
+ array (
40
+ 'pretty_version' => '2.10.1',
41
+ 'version' => '2.10.1.0',
42
+ 'aliases' =>
43
+ array (
44
+ ),
45
+ 'reference' => '20393c4677765c3e737dcb5aee7a3f7b90dce4b3',
46
+ ),
47
+ 'automattic/jetpack-constants' =>
48
+ array (
49
+ 'pretty_version' => 'v1.5.1',
50
+ 'version' => '1.5.1.0',
51
+ 'aliases' =>
52
+ array (
53
+ ),
54
+ 'reference' => '18f772daddc8be5df76c9f4a92e017a3c2569a5b',
55
+ ),
56
+ 'composer/installers' =>
57
+ array (
58
+ 'pretty_version' => 'v1.10.0',
59
+ 'version' => '1.10.0.0',
60
+ 'aliases' =>
61
+ array (
62
+ ),
63
+ 'reference' => '1a0357fccad9d1cc1ea0c9a05b8847fbccccb78d',
64
+ ),
65
+ 'maxmind-db/reader' =>
66
+ array (
67
+ 'pretty_version' => 'v1.6.0',
68
+ 'version' => '1.6.0.0',
69
+ 'aliases' =>
70
+ array (
71
+ ),
72
+ 'reference' => 'febd4920bf17c1da84cef58e56a8227dfb37fbe4',
73
+ ),
74
+ 'pelago/emogrifier' =>
75
+ array (
76
+ 'pretty_version' => 'v3.1.0',
77
+ 'version' => '3.1.0.0',
78
+ 'aliases' =>
79
+ array (
80
+ ),
81
+ 'reference' => 'f6a5c7d44612d86c3901c93f1592f5440e6b2cd8',
82
+ ),
83
+ 'psr/container' =>
84
+ array (
85
+ 'pretty_version' => '1.0.0',
86
+ 'version' => '1.0.0.0',
87
+ 'aliases' =>
88
+ array (
89
+ ),
90
+ 'reference' => 'b7ce3b176482dbbc1245ebf52b181af44c2cf55f',
91
+ ),
92
+ 'roundcube/plugin-installer' =>
93
+ array (
94
+ 'replaced' =>
95
+ array (
96
+ 0 => '*',
97
+ ),
98
+ ),
99
+ 'shama/baton' =>
100
+ array (
101
+ 'replaced' =>
102
+ array (
103
+ 0 => '*',
104
+ ),
105
+ ),
106
+ 'symfony/css-selector' =>
107
+ array (
108
+ 'pretty_version' => 'v3.3.6',
109
+ 'version' => '3.3.6.0',
110
+ 'aliases' =>
111
+ array (
112
+ ),
113
+ 'reference' => '4d882dced7b995d5274293039370148e291808f2',
114
+ ),
115
+ 'woocommerce/action-scheduler' =>
116
+ array (
117
+ 'pretty_version' => '3.1.6',
118
+ 'version' => '3.1.6.0',
119
+ 'aliases' =>
120
+ array (
121
+ ),
122
+ 'reference' => '275d0ba54b1c263dfc62688de2fa9a25a373edf8',
123
+ ),
124
+ 'woocommerce/woocommerce' =>
125
+ array (
126
+ 'pretty_version' => 'dev-trunk',
127
+ 'version' => 'dev-trunk',
128
+ 'aliases' =>
129
+ array (
130
+ ),
131
+ 'reference' => '715ee5818558a6cfe78a3e60b40a9196c4ab4b1d',
132
+ ),
133
+ 'woocommerce/woocommerce-admin' =>
134
+ array (
135
+ 'pretty_version' => '2.2.1',
136
+ 'version' => '2.2.1.0',
137
+ 'aliases' =>
138
+ array (
139
+ ),
140
+ 'reference' => '78cc9c5ef7de5be5bd0f9208483e5ae97422be9a',
141
+ ),
142
+ 'woocommerce/woocommerce-blocks' =>
143
+ array (
144
+ 'pretty_version' => 'v4.9.1',
145
+ 'version' => '4.9.1.0',
146
+ 'aliases' =>
147
+ array (
148
+ ),
149
+ 'reference' => '62f32bfb45dfcb2ba3ca349a6ed0a8cf48ddefce',
150
+ ),
151
+ ),
152
+ );
153
+ private static $canGetVendors;
154
+ private static $installedByVendor = array();
155
+
156
+
157
+
158
+
159
+
160
+
161
+
162
+ public static function getInstalledPackages()
163
+ {
164
+ $packages = array();
165
+ foreach (self::getInstalled() as $installed) {
166
+ $packages[] = array_keys($installed['versions']);
167
+ }
168
+
169
+
170
+ if (1 === \count($packages)) {
171
+ return $packages[0];
172
+ }
173
+
174
+ return array_keys(array_flip(\call_user_func_array('array_merge', $packages)));
175
+ }
176
+
177
+
178
+
179
+
180
+
181
+
182
+
183
+
184
+
185
+ public static function isInstalled($packageName)
186
+ {
187
+ foreach (self::getInstalled() as $installed) {
188
+ if (isset($installed['versions'][$packageName])) {
189
+ return true;
190
+ }
191
+ }
192
+
193
+ return false;
194
+ }
195
+
196
+
197
+
198
+
199
+
200
+
201
+
202
+
203
+
204
+
205
+
206
+
207
+
208
+
209
+ public static function satisfies(VersionParser $parser, $packageName, $constraint)
210
+ {
211
+ $constraint = $parser->parseConstraints($constraint);
212
+ $provided = $parser->parseConstraints(self::getVersionRanges($packageName));
213
+
214
+ return $provided->matches($constraint);
215
+ }
216
+
217
+
218
+
219
+
220
+
221
+
222
+
223
+
224
+
225
+
226
+ public static function getVersionRanges($packageName)
227
+ {
228
+ foreach (self::getInstalled() as $installed) {
229
+ if (!isset($installed['versions'][$packageName])) {
230
+ continue;
231
+ }
232
+
233
+ $ranges = array();
234
+ if (isset($installed['versions'][$packageName]['pretty_version'])) {
235
+ $ranges[] = $installed['versions'][$packageName]['pretty_version'];
236
+ }
237
+ if (array_key_exists('aliases', $installed['versions'][$packageName])) {
238
+ $ranges = array_merge($ranges, $installed['versions'][$packageName]['aliases']);
239
+ }
240
+ if (array_key_exists('replaced', $installed['versions'][$packageName])) {
241
+ $ranges = array_merge($ranges, $installed['versions'][$packageName]['replaced']);
242
+ }
243
+ if (array_key_exists('provided', $installed['versions'][$packageName])) {
244
+ $ranges = array_merge($ranges, $installed['versions'][$packageName]['provided']);
245
+ }
246
+
247
+ return implode(' || ', $ranges);
248
+ }
249
+
250
+ throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
251
+ }
252
+
253
+
254
+
255
+
256
+
257
+ public static function getVersion($packageName)
258
+ {
259
+ foreach (self::getInstalled() as $installed) {
260
+ if (!isset($installed['versions'][$packageName])) {
261
+ continue;
262
+ }
263
+
264
+ if (!isset($installed['versions'][$packageName]['version'])) {
265
+ return null;
266
+ }
267
+
268
+ return $installed['versions'][$packageName]['version'];
269
+ }
270
+
271
+ throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
272
+ }
273
+
274
+
275
+
276
+
277
+
278
+ public static function getPrettyVersion($packageName)
279
+ {
280
+ foreach (self::getInstalled() as $installed) {
281
+ if (!isset($installed['versions'][$packageName])) {
282
+ continue;
283
+ }
284
+
285
+ if (!isset($installed['versions'][$packageName]['pretty_version'])) {
286
+ return null;
287
+ }
288
+
289
+ return $installed['versions'][$packageName]['pretty_version'];
290
+ }
291
+
292
+ throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
293
+ }
294
+
295
+
296
+
297
+
298
+
299
+ public static function getReference($packageName)
300
+ {
301
+ foreach (self::getInstalled() as $installed) {
302
+ if (!isset($installed['versions'][$packageName])) {
303
+ continue;
304
+ }
305
+
306
+ if (!isset($installed['versions'][$packageName]['reference'])) {
307
+ return null;
308
+ }
309
+
310
+ return $installed['versions'][$packageName]['reference'];
311
+ }
312
+
313
+ throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
314
+ }
315
+
316
+
317
+
318
+
319
+
320
+ public static function getRootPackage()
321
+ {
322
+ $installed = self::getInstalled();
323
+
324
+ return $installed[0]['root'];
325
+ }
326
+
327
+
328
+
329
+
330
+
331
+
332
+
333
+ public static function getRawData()
334
+ {
335
+ return self::$installed;
336
+ }
337
+
338
+
339
+
340
+
341
+
342
+
343
+
344
+
345
+
346
+
347
+
348
+
349
+
350
+
351
+
352
+
353
+
354
+
355
+
356
+ public static function reload($data)
357
+ {
358
+ self::$installed = $data;
359
+ self::$installedByVendor = array();
360
+ }
361
+
362
+
363
+
364
+
365
+ private static function getInstalled()
366
+ {
367
+ if (null === self::$canGetVendors) {
368
+ self::$canGetVendors = method_exists('Composer\Autoload\ClassLoader', 'getRegisteredLoaders');
369
+ }
370
+
371
+ $installed = array();
372
+
373
+ if (self::$canGetVendors) {
374
+ foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) {
375
+ if (isset(self::$installedByVendor[$vendorDir])) {
376
+ $installed[] = self::$installedByVendor[$vendorDir];
377
+ } elseif (is_file($vendorDir.'/composer/installed.php')) {
378
+ $installed[] = self::$installedByVendor[$vendorDir] = require $vendorDir.'/composer/installed.php';
379
+ }
380
+ }
381
+ }
382
+
383
+ $installed[] = self::$installed;
384
+
385
+ return $installed;
386
+ }
387
+ }
vendor/composer/autoload_classmap.php CHANGED
@@ -192,41 +192,6 @@ return array(
192
  'Automattic\\WooCommerce\\Admin\\Notes\\StartDropshippingBusiness' => $baseDir . '/packages/woocommerce-admin/src/Notes/StartDropshippingBusiness.php',
193
  'Automattic\\WooCommerce\\Admin\\Notes\\TestCheckout' => $baseDir . '/packages/woocommerce-admin/src/Notes/TestCheckout.php',
194
  'Automattic\\WooCommerce\\Admin\\Notes\\TrackingOptIn' => $baseDir . '/packages/woocommerce-admin/src/Notes/TrackingOptIn.php',
195
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Note' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
196
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
197
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Choose_Niche' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
198
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Coupon_Page_Moved' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
199
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Customize_Store_With_Blocks' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
200
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Deactivate_Plugin' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
201
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Draw_Attention' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
202
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_EU_VAT_Number' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
203
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Edit_Products_On_The_Move' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
204
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Facebook_Marketing_Expert' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
205
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_First_Product' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
206
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Giving_Feedback_Notes' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
207
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Insight_First_Sale' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
208
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Install_JP_And_WCS_Plugins' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
209
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Launch_Checklist' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
210
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Marketing' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
211
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Migrate_From_Shopify' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
212
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Mobile_App' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
213
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Need_Some_Inspiration' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
214
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_New_Sales_Record' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
215
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Onboarding_Email_Marketing' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
216
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Onboarding_Payments' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
217
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Online_Clothing_Store' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
218
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Order_Milestones' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
219
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Performance_On_Mobile' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
220
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Personalize_Store' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
221
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Real_Time_Order_Alerts' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
222
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Selling_Online_Courses' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
223
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Set_Up_Additional_Payment_Types' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
224
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Start_Dropshipping_Business' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
225
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Test_Checkout' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
226
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Tracking_Opt_In' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
227
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_WooCommerce_Payments' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
228
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_WooCommerce_Subscriptions' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
229
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Woo_Subscriptions_Notes' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
230
  'Automattic\\WooCommerce\\Admin\\Notes\\WelcomeToWooCommerceForStoreUsers' => $baseDir . '/packages/woocommerce-admin/src/Notes/WelcomeToWooCommerceForStoreUsers.php',
231
  'Automattic\\WooCommerce\\Admin\\Notes\\WooCommercePayments' => $baseDir . '/packages/woocommerce-admin/src/Notes/WooCommercePayments.php',
232
  'Automattic\\WooCommerce\\Admin\\Notes\\WooCommerceSubscriptions' => $baseDir . '/packages/woocommerce-admin/src/Notes/WooCommerceSubscriptions.php',
@@ -489,6 +454,7 @@ return array(
489
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\ServiceProviderAggregate' => $baseDir . '/lib/packages/League/Container/ServiceProvider/ServiceProviderAggregate.php',
490
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\ServiceProviderAggregateInterface' => $baseDir . '/lib/packages/League/Container/ServiceProvider/ServiceProviderAggregateInterface.php',
491
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\ServiceProviderInterface' => $baseDir . '/lib/packages/League/Container/ServiceProvider/ServiceProviderInterface.php',
 
492
  'Composer\\Installers\\AglInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/AglInstaller.php',
493
  'Composer\\Installers\\AimeosInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/AimeosInstaller.php',
494
  'Composer\\Installers\\AnnotateCmsInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php',
192
  'Automattic\\WooCommerce\\Admin\\Notes\\StartDropshippingBusiness' => $baseDir . '/packages/woocommerce-admin/src/Notes/StartDropshippingBusiness.php',
193
  'Automattic\\WooCommerce\\Admin\\Notes\\TestCheckout' => $baseDir . '/packages/woocommerce-admin/src/Notes/TestCheckout.php',
194
  'Automattic\\WooCommerce\\Admin\\Notes\\TrackingOptIn' => $baseDir . '/packages/woocommerce-admin/src/Notes/TrackingOptIn.php',
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
195
  'Automattic\\WooCommerce\\Admin\\Notes\\WelcomeToWooCommerceForStoreUsers' => $baseDir . '/packages/woocommerce-admin/src/Notes/WelcomeToWooCommerceForStoreUsers.php',
196
  'Automattic\\WooCommerce\\Admin\\Notes\\WooCommercePayments' => $baseDir . '/packages/woocommerce-admin/src/Notes/WooCommercePayments.php',
197
  'Automattic\\WooCommerce\\Admin\\Notes\\WooCommerceSubscriptions' => $baseDir . '/packages/woocommerce-admin/src/Notes/WooCommerceSubscriptions.php',
454
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\ServiceProviderAggregate' => $baseDir . '/lib/packages/League/Container/ServiceProvider/ServiceProviderAggregate.php',
455
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\ServiceProviderAggregateInterface' => $baseDir . '/lib/packages/League/Container/ServiceProvider/ServiceProviderAggregateInterface.php',
456
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\ServiceProviderInterface' => $baseDir . '/lib/packages/League/Container/ServiceProvider/ServiceProviderInterface.php',
457
+ 'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
458
  'Composer\\Installers\\AglInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/AglInstaller.php',
459
  'Composer\\Installers\\AimeosInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/AimeosInstaller.php',
460
  'Composer\\Installers\\AnnotateCmsInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php',
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInit47e23124e2a312d52f64b1f85897b9d8
6
  {
7
  private static $loader;
8
 
@@ -22,15 +22,17 @@ class ComposerAutoloaderInit47e23124e2a312d52f64b1f85897b9d8
22
  return self::$loader;
23
  }
24
 
25
- spl_autoload_register(array('ComposerAutoloaderInit47e23124e2a312d52f64b1f85897b9d8', 'loadClassLoader'), true, true);
26
- self::$loader = $loader = new \Composer\Autoload\ClassLoader();
27
- spl_autoload_unregister(array('ComposerAutoloaderInit47e23124e2a312d52f64b1f85897b9d8', 'loadClassLoader'));
 
 
28
 
29
  $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
30
  if ($useStaticLoader) {
31
- require_once __DIR__ . '/autoload_static.php';
32
 
33
- call_user_func(\Composer\Autoload\ComposerStaticInit47e23124e2a312d52f64b1f85897b9d8::getInitializer($loader));
34
  } else {
35
  $map = require __DIR__ . '/autoload_namespaces.php';
36
  foreach ($map as $namespace => $path) {
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
+ class ComposerAutoloaderInitbe5ec34edc9729c87bbc54d529a6a86b
6
  {
7
  private static $loader;
8
 
22
  return self::$loader;
23
  }
24
 
25
+ require __DIR__ . '/platform_check.php';
26
+
27
+ spl_autoload_register(array('ComposerAutoloaderInitbe5ec34edc9729c87bbc54d529a6a86b', 'loadClassLoader'), true, true);
28
+ self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
29
+ spl_autoload_unregister(array('ComposerAutoloaderInitbe5ec34edc9729c87bbc54d529a6a86b', 'loadClassLoader'));
30
 
31
  $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
32
  if ($useStaticLoader) {
33
+ require __DIR__ . '/autoload_static.php';
34
 
35
+ call_user_func(\Composer\Autoload\ComposerStaticInitbe5ec34edc9729c87bbc54d529a6a86b::getInitializer($loader));
36
  } else {
37
  $map = require __DIR__ . '/autoload_namespaces.php';
38
  foreach ($map as $namespace => $path) {
vendor/composer/autoload_static.php CHANGED
@@ -4,7 +4,7 @@
4
 
5
  namespace Composer\Autoload;
6
 
7
- class ComposerStaticInit47e23124e2a312d52f64b1f85897b9d8
8
  {
9
  public static $prefixLengthsPsr4 = array (
10
  'S' =>
@@ -284,41 +284,6 @@ class ComposerStaticInit47e23124e2a312d52f64b1f85897b9d8
284
  'Automattic\\WooCommerce\\Admin\\Notes\\StartDropshippingBusiness' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/StartDropshippingBusiness.php',
285
  'Automattic\\WooCommerce\\Admin\\Notes\\TestCheckout' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/TestCheckout.php',
286
  'Automattic\\WooCommerce\\Admin\\Notes\\TrackingOptIn' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/TrackingOptIn.php',
287
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Note' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
288
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
289
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Choose_Niche' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
290
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Coupon_Page_Moved' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
291
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Customize_Store_With_Blocks' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
292
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Deactivate_Plugin' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
293
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Draw_Attention' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
294
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_EU_VAT_Number' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
295
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Edit_Products_On_The_Move' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
296
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Facebook_Marketing_Expert' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
297
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_First_Product' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
298
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Giving_Feedback_Notes' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
299
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Insight_First_Sale' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
300
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Install_JP_And_WCS_Plugins' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
301
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Launch_Checklist' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
302
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Marketing' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
303
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Migrate_From_Shopify' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
304
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Mobile_App' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
305
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Need_Some_Inspiration' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
306
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_New_Sales_Record' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
307
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Onboarding_Email_Marketing' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
308
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Onboarding_Payments' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
309
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Online_Clothing_Store' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
310
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Order_Milestones' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
311
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Performance_On_Mobile' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
312
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Personalize_Store' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
313
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Real_Time_Order_Alerts' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
314
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Selling_Online_Courses' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
315
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Set_Up_Additional_Payment_Types' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
316
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Start_Dropshipping_Business' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
317
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Test_Checkout' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
318
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Tracking_Opt_In' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
319
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_WooCommerce_Payments' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
320
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_WooCommerce_Subscriptions' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
321
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Woo_Subscriptions_Notes' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php',
322
  'Automattic\\WooCommerce\\Admin\\Notes\\WelcomeToWooCommerceForStoreUsers' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/WelcomeToWooCommerceForStoreUsers.php',
323
  'Automattic\\WooCommerce\\Admin\\Notes\\WooCommercePayments' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/WooCommercePayments.php',
324
  'Automattic\\WooCommerce\\Admin\\Notes\\WooCommerceSubscriptions' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/WooCommerceSubscriptions.php',
@@ -581,6 +546,7 @@ class ComposerStaticInit47e23124e2a312d52f64b1f85897b9d8
581
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\ServiceProviderAggregate' => __DIR__ . '/../..' . '/lib/packages/League/Container/ServiceProvider/ServiceProviderAggregate.php',
582
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\ServiceProviderAggregateInterface' => __DIR__ . '/../..' . '/lib/packages/League/Container/ServiceProvider/ServiceProviderAggregateInterface.php',
583
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\ServiceProviderInterface' => __DIR__ . '/../..' . '/lib/packages/League/Container/ServiceProvider/ServiceProviderInterface.php',
 
584
  'Composer\\Installers\\AglInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/AglInstaller.php',
585
  'Composer\\Installers\\AimeosInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/AimeosInstaller.php',
586
  'Composer\\Installers\\AnnotateCmsInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php',
@@ -843,10 +809,10 @@ class ComposerStaticInit47e23124e2a312d52f64b1f85897b9d8
843
  public static function getInitializer(ClassLoader $loader)
844
  {
845
  return \Closure::bind(function () use ($loader) {
846
- $loader->prefixLengthsPsr4 = ComposerStaticInit47e23124e2a312d52f64b1f85897b9d8::$prefixLengthsPsr4;
847
- $loader->prefixDirsPsr4 = ComposerStaticInit47e23124e2a312d52f64b1f85897b9d8::$prefixDirsPsr4;
848
- $loader->prefixesPsr0 = ComposerStaticInit47e23124e2a312d52f64b1f85897b9d8::$prefixesPsr0;
849
- $loader->classMap = ComposerStaticInit47e23124e2a312d52f64b1f85897b9d8::$classMap;
850
 
851
  }, null, ClassLoader::class);
852
  }
4
 
5
  namespace Composer\Autoload;
6
 
7
+ class ComposerStaticInitbe5ec34edc9729c87bbc54d529a6a86b
8
  {
9
  public static $prefixLengthsPsr4 = array (
10
  'S' =>
284
  'Automattic\\WooCommerce\\Admin\\Notes\\StartDropshippingBusiness' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/StartDropshippingBusiness.php',
285
  'Automattic\\WooCommerce\\Admin\\Notes\\TestCheckout' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/TestCheckout.php',
286
  'Automattic\\WooCommerce\\Admin\\Notes\\TrackingOptIn' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/TrackingOptIn.php',
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
287
  'Automattic\\WooCommerce\\Admin\\Notes\\WelcomeToWooCommerceForStoreUsers' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/WelcomeToWooCommerceForStoreUsers.php',
288
  'Automattic\\WooCommerce\\Admin\\Notes\\WooCommercePayments' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/WooCommercePayments.php',
289
  'Automattic\\WooCommerce\\Admin\\Notes\\WooCommerceSubscriptions' => __DIR__ . '/../..' . '/packages/woocommerce-admin/src/Notes/WooCommerceSubscriptions.php',
546
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\ServiceProviderAggregate' => __DIR__ . '/../..' . '/lib/packages/League/Container/ServiceProvider/ServiceProviderAggregate.php',
547
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\ServiceProviderAggregateInterface' => __DIR__ . '/../..' . '/lib/packages/League/Container/ServiceProvider/ServiceProviderAggregateInterface.php',
548
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\ServiceProviderInterface' => __DIR__ . '/../..' . '/lib/packages/League/Container/ServiceProvider/ServiceProviderInterface.php',
549
+ 'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
550
  'Composer\\Installers\\AglInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/AglInstaller.php',
551
  'Composer\\Installers\\AimeosInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/AimeosInstaller.php',
552
  'Composer\\Installers\\AnnotateCmsInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php',
809
  public static function getInitializer(ClassLoader $loader)
810
  {
811
  return \Closure::bind(function () use ($loader) {
812
+ $loader->prefixLengthsPsr4 = ComposerStaticInitbe5ec34edc9729c87bbc54d529a6a86b::$prefixLengthsPsr4;
813
+ $loader->prefixDirsPsr4 = ComposerStaticInitbe5ec34edc9729c87bbc54d529a6a86b::$prefixDirsPsr4;
814
+ $loader->prefixesPsr0 = ComposerStaticInitbe5ec34edc9729c87bbc54d529a6a86b::$prefixesPsr0;
815
+ $loader->classMap = ComposerStaticInitbe5ec34edc9729c87bbc54d529a6a86b::$classMap;
816
 
817
  }, null, ClassLoader::class);
818
  }
vendor/composer/installed.json CHANGED
@@ -1,611 +1,625 @@
1
- [
2
- {
3
- "name": "automattic/jetpack-autoloader",
4
- "version": "2.10.1",
5
- "version_normalized": "2.10.1.0",
6
- "source": {
7
- "type": "git",
8
- "url": "https://github.com/Automattic/jetpack-autoloader.git",
9
- "reference": "20393c4677765c3e737dcb5aee7a3f7b90dce4b3"
10
- },
11
- "dist": {
12
- "type": "zip",
13
- "url": "https://api.github.com/repos/Automattic/jetpack-autoloader/zipball/20393c4677765c3e737dcb5aee7a3f7b90dce4b3",
14
- "reference": "20393c4677765c3e737dcb5aee7a3f7b90dce4b3",
15
- "shasum": ""
16
- },
17
- "require": {
18
- "composer-plugin-api": "^1.1 || ^2.0"
19
- },
20
- "require-dev": {
21
- "automattic/jetpack-changelogger": "^1.1",
22
- "yoast/phpunit-polyfills": "0.2.0"
23
- },
24
- "time": "2021-03-30T15:15:59+00:00",
25
- "type": "composer-plugin",
26
- "extra": {
27
- "class": "Automattic\\Jetpack\\Autoloader\\CustomAutoloaderPlugin",
28
- "mirror-repo": "Automattic/jetpack-autoloader",
29
- "changelogger": {
30
- "link-template": "https://github.com/Automattic/jetpack-autoloader/compare/v${old}...v${new}"
31
- },
32
- "branch-alias": {
33
- "dev-master": "2.10.x-dev"
34
- }
35
- },
36
- "installation-source": "dist",
37
- "autoload": {
38
- "classmap": [
39
- "src/AutoloadGenerator.php"
 
 
 
 
 
 
 
 
 
40
  ],
41
- "psr-4": {
42
- "Automattic\\Jetpack\\Autoloader\\": "src"
43
- }
44
- },
45
- "notification-url": "https://packagist.org/downloads/",
46
- "license": [
47
- "GPL-2.0-or-later"
48
- ],
49
- "description": "Creates a custom autoloader for a plugin or theme."
50
- },
51
- {
52
- "name": "automattic/jetpack-constants",
53
- "version": "v1.5.1",
54
- "version_normalized": "1.5.1.0",
55
- "source": {
56
- "type": "git",
57
- "url": "https://github.com/Automattic/jetpack-constants.git",
58
- "reference": "18f772daddc8be5df76c9f4a92e017a3c2569a5b"
59
- },
60
- "dist": {
61
- "type": "zip",
62
- "url": "https://api.github.com/repos/Automattic/jetpack-constants/zipball/18f772daddc8be5df76c9f4a92e017a3c2569a5b",
63
- "reference": "18f772daddc8be5df76c9f4a92e017a3c2569a5b",
64
- "shasum": ""
65
- },
66
- "require-dev": {
67
- "php-mock/php-mock": "^2.1",
68
- "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5"
69
- },
70
- "time": "2020-10-28T19:00:31+00:00",
71
- "type": "library",
72
- "installation-source": "dist",
73
- "autoload": {
74
- "classmap": [
75
- "src/"
76
- ]
77
- },
78
- "notification-url": "https://packagist.org/downloads/",
79
- "license": [
80
- "GPL-2.0-or-later"
81
- ],
82
- "description": "A wrapper for defining constants in a more testable way."
83
- },
84
- {
85
- "name": "composer/installers",
86
- "version": "v1.10.0",
87
- "version_normalized": "1.10.0.0",
88
- "source": {
89
- "type": "git",
90
- "url": "https://github.com/composer/installers.git",
91
- "reference": "1a0357fccad9d1cc1ea0c9a05b8847fbccccb78d"
92
- },
93
- "dist": {
94
- "type": "zip",
95
- "url": "https://api.github.com/repos/composer/installers/zipball/1a0357fccad9d1cc1ea0c9a05b8847fbccccb78d",
96
- "reference": "1a0357fccad9d1cc1ea0c9a05b8847fbccccb78d",
97
- "shasum": ""
98
- },
99
- "require": {
100
- "composer-plugin-api": "^1.0 || ^2.0"
101
- },
102
- "replace": {
103
- "roundcube/plugin-installer": "*",
104
- "shama/baton": "*"
105
- },
106
- "require-dev": {
107
- "composer/composer": "1.6.* || ^2.0",
108
- "composer/semver": "^1 || ^3",
109
- "phpstan/phpstan": "^0.12.55",
110
- "phpstan/phpstan-phpunit": "^0.12.16",
111
- "symfony/phpunit-bridge": "^4.2 || ^5",
112
- "symfony/process": "^2.3"
113
- },
114
- "time": "2021-01-14T11:07:16+00:00",
115
- "type": "composer-plugin",
116
- "extra": {
117
- "class": "Composer\\Installers\\Plugin",
118
- "branch-alias": {
119
- "dev-main": "1.x-dev"
120
- }
121
- },
122
- "installation-source": "dist",
123
- "autoload": {
124
- "psr-4": {
125
- "Composer\\Installers\\": "src/Composer/Installers"
126
- }
127
- },
128
- "notification-url": "https://packagist.org/downloads/",
129
- "license": [
130
- "MIT"
131
- ],
132
- "authors": [
133
- {
134
- "name": "Kyle Robinson Young",
135
- "email": "kyle@dontkry.com",
136
- "homepage": "https://github.com/shama"
137
- }
138
- ],
139
- "description": "A multi-framework Composer library installer",
140
- "homepage": "https://composer.github.io/installers/",
141
- "keywords": [
142
- "Craft",
143
- "Dolibarr",
144
- "Eliasis",
145
- "Hurad",
146
- "ImageCMS",
147
- "Kanboard",
148
- "Lan Management System",
149
- "MODX Evo",
150
- "MantisBT",
151
- "Mautic",
152
- "Maya",
153
- "OXID",
154
- "Plentymarkets",
155
- "Porto",
156
- "RadPHP",
157
- "SMF",
158
- "Starbug",
159
- "Thelia",
160
- "Whmcs",
161
- "WolfCMS",
162
- "agl",
163
- "aimeos",
164
- "annotatecms",
165
- "attogram",
166
- "bitrix",
167
- "cakephp",
168
- "chef",
169
- "cockpit",
170
- "codeigniter",
171
- "concrete5",
172
- "croogo",
173
- "dokuwiki",
174
- "drupal",
175
- "eZ Platform",
176
- "elgg",
177
- "expressionengine",
178
- "fuelphp",
179
- "grav",
180
- "installer",
181
- "itop",
182
- "joomla",
183
- "known",
184
- "kohana",
185
- "laravel",
186
- "lavalite",
187
- "lithium",
188
- "magento",
189
- "majima",
190
- "mako",
191
- "mediawiki",
192
- "modulework",
193
- "modx",
194
- "moodle",
195
- "osclass",
196
- "phpbb",
197
- "piwik",
198
- "ppi",
199
- "processwire",
200
- "puppet",
201
- "pxcms",
202
- "reindex",
203
- "roundcube",
204
- "shopware",
205
- "silverstripe",
206
- "sydes",
207
- "sylius",
208
- "symfony",
209
- "typo3",
210
- "wordpress",
211
- "yawik",
212
- "zend",
213
- "zikula"
214
- ],
215
- "funding": [
216
- {
217
- "url": "https://packagist.com",
218
- "type": "custom"
219
- },
220
- {
221
- "url": "https://github.com/composer",
222
- "type": "github"
223
- },
224
- {
225
- "url": "https://tidelift.com/funding/github/packagist/composer/composer",
226
- "type": "tidelift"
227
- }
228
- ]
229
- },
230
- {
231
- "name": "maxmind-db/reader",
232
- "version": "v1.6.0",
233
- "version_normalized": "1.6.0.0",
234
- "source": {
235
- "type": "git",
236
- "url": "https://github.com/maxmind/MaxMind-DB-Reader-php.git",
237
- "reference": "febd4920bf17c1da84cef58e56a8227dfb37fbe4"
238
- },
239
- "dist": {
240
- "type": "zip",
241
- "url": "https://api.github.com/repos/maxmind/MaxMind-DB-Reader-php/zipball/febd4920bf17c1da84cef58e56a8227dfb37fbe4",
242
- "reference": "febd4920bf17c1da84cef58e56a8227dfb37fbe4",
243
- "shasum": ""
244
- },
245
- "require": {
246
- "php": ">=5.6"
247
- },
248
- "conflict": {
249
- "ext-maxminddb": "<1.6.0,>=2.0.0"
250
- },
251
- "require-dev": {
252
- "friendsofphp/php-cs-fixer": "2.*",
253
- "php-coveralls/php-coveralls": "^2.1",
254
- "phpunit/phpcov": "^3.0",
255
- "phpunit/phpunit": "5.*",
256
- "squizlabs/php_codesniffer": "3.*"
257
- },
258
- "suggest": {
259
- "ext-bcmath": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
260
- "ext-gmp": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
261
- "ext-maxminddb": "A C-based database decoder that provides significantly faster lookups"
262
- },
263
- "time": "2019-12-19T22:59:03+00:00",
264
- "type": "library",
265
- "installation-source": "dist",
266
- "autoload": {
267
- "psr-4": {
268
- "MaxMind\\Db\\": "src/MaxMind/Db"
269
- }
270
- },
271
- "notification-url": "https://packagist.org/downloads/",
272
- "license": [
273
- "Apache-2.0"
274
- ],
275
- "authors": [
276
- {
277
- "name": "Gregory J. Oschwald",
278
- "email": "goschwald@maxmind.com",
279
- "homepage": "https://www.maxmind.com/"
280
- }
281
- ],
282
- "description": "MaxMind DB Reader API",
283
- "homepage": "https://github.com/maxmind/MaxMind-DB-Reader-php",
284
- "keywords": [
285
- "database",
286
- "geoip",
287
- "geoip2",
288
- "geolocation",
289
- "maxmind"
290
- ]
291
- },
292
- {
293
- "name": "pelago/emogrifier",
294
- "version": "v3.1.0",
295
- "version_normalized": "3.1.0.0",
296
- "source": {
297
- "type": "git",
298
- "url": "https://github.com/MyIntervals/emogrifier.git",
299
- "reference": "f6a5c7d44612d86c3901c93f1592f5440e6b2cd8"
300
- },
301
- "dist": {
302
- "type": "zip",
303
- "url": "https://api.github.com/repos/MyIntervals/emogrifier/zipball/f6a5c7d44612d86c3901c93f1592f5440e6b2cd8",
304
- "reference": "f6a5c7d44612d86c3901c93f1592f5440e6b2cd8",
305
- "shasum": ""
306
- },
307
- "require": {
308
- "ext-dom": "*",
309
- "ext-libxml": "*",
310
- "php": "^5.6 || ~7.0 || ~7.1 || ~7.2 || ~7.3 || ~7.4",
311
- "symfony/css-selector": "^2.8 || ^3.0 || ^4.0 || ^5.0"
312
- },
313
- "require-dev": {
314
- "friendsofphp/php-cs-fixer": "^2.15.3",
315
- "phpmd/phpmd": "^2.7.0",
316
- "phpunit/phpunit": "^5.7.27",
317
- "squizlabs/php_codesniffer": "^3.5.0"
318
- },
319
- "time": "2019-12-26T19:37:31+00:00",
320
- "type": "library",
321
- "extra": {
322
- "branch-alias": {
323
- "dev-master": "4.0.x-dev"
324
- }
325
- },
326
- "installation-source": "dist",
327
- "autoload": {
328
- "psr-4": {
329
- "Pelago\\": "src/"
330
- }
331
- },
332
- "notification-url": "https://packagist.org/downloads/",
333
- "license": [
334
- "MIT"
335
- ],
336
- "authors": [
337
- {
338
- "name": "Oliver Klee",
339
- "email": "github@oliverklee.de"
340
- },
341
- {
342
- "name": "Zoli Szabó",
343
- "email": "zoli.szabo+github@gmail.com"
344
- },
345
- {
346
- "name": "John Reeve",
347
- "email": "jreeve@pelagodesign.com"
348
- },
349
- {
350
- "name": "Jake Hotson",
351
- "email": "jake@qzdesign.co.uk"
352
- },
353
- {
354
- "name": "Cameron Brooks"
355
- },
356
- {
357
- "name": "Jaime Prado"
358
- }
359
- ],
360
- "description": "Converts CSS styles into inline style attributes in your HTML code",
361
- "homepage": "https://www.myintervals.com/emogrifier.php",
362
- "keywords": [
363
- "css",
364
- "email",
365
- "pre-processing"
366
- ]
367
- },
368
- {
369
- "name": "psr/container",
370
- "version": "1.0.0",
371
- "version_normalized": "1.0.0.0",
372
- "source": {
373
- "type": "git",
374
- "url": "https://github.com/php-fig/container.git",
375
- "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
376
- },
377
- "dist": {
378
- "type": "zip",
379
- "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
380
- "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
381
- "shasum": ""
382
- },
383
- "require": {
384
- "php": ">=5.3.0"
385
- },
386
- "time": "2017-02-14T16:28:37+00:00",
387
- "type": "library",
388
- "extra": {
389
- "branch-alias": {
390
- "dev-master": "1.0.x-dev"
391
- }
392
- },
393
- "installation-source": "dist",
394
- "autoload": {
395
- "psr-4": {
396
- "Psr\\Container\\": "src/"
397
- }
398
- },
399
- "notification-url": "https://packagist.org/downloads/",
400
- "license": [
401
- "MIT"
402
- ],
403
- "authors": [
404
- {
405
- "name": "PHP-FIG",
406
- "homepage": "http://www.php-fig.org/"
407
- }
408
- ],
409
- "description": "Common Container Interface (PHP FIG PSR-11)",
410
- "homepage": "https://github.com/php-fig/container",
411
- "keywords": [
412
- "PSR-11",
413
- "container",
414
- "container-interface",
415
- "container-interop",
416
- "psr"
417
- ]
418
- },
419
- {
420
- "name": "symfony/css-selector",
421
- "version": "v3.3.6",
422
- "version_normalized": "3.3.6.0",
423
- "source": {
424
- "type": "git",
425
- "url": "https://github.com/symfony/css-selector.git",
426
- "reference": "4d882dced7b995d5274293039370148e291808f2"
427
- },
428
- "dist": {
429
- "type": "zip",
430
- "url": "https://api.github.com/repos/symfony/css-selector/zipball/4d882dced7b995d5274293039370148e291808f2",
431
- "reference": "4d882dced7b995d5274293039370148e291808f2",
432
- "shasum": ""
433
- },
434
- "require": {
435
- "php": ">=5.5.9"
436
- },
437
- "time": "2017-05-01T15:01:29+00:00",
438
- "type": "library",
439
- "extra": {
440
- "branch-alias": {
441
- "dev-master": "3.3-dev"
442
- }
443
- },
444
- "installation-source": "dist",
445
- "autoload": {
446
- "psr-4": {
447
- "Symfony\\Component\\CssSelector\\": ""
448
- },
449
- "exclude-from-classmap": [
450
- "/Tests/"
451
- ]
452
- },
453
- "notification-url": "https://packagist.org/downloads/",
454
- "license": [
455
- "MIT"
456
- ],
457
- "authors": [
458
- {
459
- "name": "Jean-François Simon",
460
- "email": "jeanfrancois.simon@sensiolabs.com"
461
- },
462
- {
463
- "name": "Fabien Potencier",
464
- "email": "fabien@symfony.com"
465
- },
466
- {
467
- "name": "Symfony Community",
468
- "homepage": "https://symfony.com/contributors"
469
- }
470
- ],
471
- "description": "Symfony CssSelector Component",
472
- "homepage": "https://symfony.com"
473
- },
474
- {
475
- "name": "woocommerce/action-scheduler",
476
- "version": "3.1.6",
477
- "version_normalized": "3.1.6.0",
478
- "source": {
479
- "type": "git",
480
- "url": "https://github.com/woocommerce/action-scheduler.git",
481
- "reference": "275d0ba54b1c263dfc62688de2fa9a25a373edf8"
482
- },
483
- "dist": {
484
- "type": "zip",
485
- "url": "https://api.github.com/repos/woocommerce/action-scheduler/zipball/275d0ba54b1c263dfc62688de2fa9a25a373edf8",
486
- "reference": "275d0ba54b1c263dfc62688de2fa9a25a373edf8",
487
- "shasum": ""
488
- },
489
- "require-dev": {
490
- "phpunit/phpunit": "^5.6",
491
- "woocommerce/woocommerce-sniffs": "0.0.8",
492
- "wp-cli/wp-cli": "~1.5.1"
493
- },
494
- "time": "2020-05-12T16:22:33+00:00",
495
- "type": "wordpress-plugin",
496
- "extra": {
497
- "scripts-description": {
498
- "test": "Run unit tests",
499
- "phpcs": "Analyze code against the WordPress coding standards with PHP_CodeSniffer",
500
- "phpcbf": "Fix coding standards warnings/errors automatically with PHP Code Beautifier"
501
- }
502
- },
503
- "installation-source": "dist",
504
- "notification-url": "https://packagist.org/downloads/",
505
- "license": [
506
- "GPL-3.0-or-later"
507
- ],
508
- "description": "Action Scheduler for WordPress and WooCommerce",
509
- "homepage": "https://actionscheduler.org/"
510
- },
511
- {
512
- "name": "woocommerce/woocommerce-admin",
513
- "version": "2.2.1",
514
- "version_normalized": "2.2.1.0",
515
- "source": {
516
- "type": "git",
517
- "url": "https://github.com/woocommerce/woocommerce-admin.git",
518
- "reference": "78cc9c5ef7de5be5bd0f9208483e5ae97422be9a"
519
- },
520
- "dist": {
521
- "type": "zip",
522
- "url": "https://api.github.com/repos/woocommerce/woocommerce-admin/zipball/78cc9c5ef7de5be5bd0f9208483e5ae97422be9a",
523
- "reference": "78cc9c5ef7de5be5bd0f9208483e5ae97422be9a",
524
- "shasum": ""
525
- },
526
- "require": {
527
- "automattic/jetpack-autoloader": "^2.9.1",
528
- "composer/installers": "^1.9.0",
529
- "php": ">=7.0"
530
- },
531
- "require-dev": {
532
- "phpunit/phpunit": "7.5.20",
533
- "suin/phpcs-psr4-sniff": "^2.2",
534
- "woocommerce/woocommerce-sniffs": "0.1.0"
535
- },
536
- "time": "2021-04-02T19:30:03+00:00",
537
- "type": "wordpress-plugin",
538
- "extra": {
539
- "scripts-description": {
540
- "test": "Run unit tests",
541
- "phpcs": "Analyze code against the WordPress coding standards with PHP_CodeSniffer",
542
- "phpcbf": "Fix coding standards warnings/errors automatically with PHP Code Beautifier"
543
- }
544
- },
545
- "installation-source": "dist",
546
- "autoload": {
547
- "psr-4": {
548
- "Automattic\\WooCommerce\\Admin\\": "src/"
549
- }
550
- },
551
- "notification-url": "https://packagist.org/downloads/",
552
- "license": [
553
- "GPL-3.0-or-later"
554
- ],
555
- "description": "A modern, javascript-driven WooCommerce Admin experience.",
556
- "homepage": "https://github.com/woocommerce/woocommerce-admin"
557
- },
558
- {
559
- "name": "woocommerce/woocommerce-blocks",
560
- "version": "v4.9.1",
561
- "version_normalized": "4.9.1.0",
562
- "source": {
563
- "type": "git",
564
- "url": "https://github.com/woocommerce/woocommerce-gutenberg-products-block.git",
565
- "reference": "62f32bfb45dfcb2ba3ca349a6ed0a8cf48ddefce"
566
- },
567
- "dist": {
568
- "type": "zip",
569
- "url": "https://api.github.com/repos/woocommerce/woocommerce-gutenberg-products-block/zipball/62f32bfb45dfcb2ba3ca349a6ed0a8cf48ddefce",
570
- "reference": "62f32bfb45dfcb2ba3ca349a6ed0a8cf48ddefce",
571
- "shasum": ""
572
- },
573
- "require": {
574
- "automattic/jetpack-autoloader": "^2.9.1",
575
- "composer/installers": "^1.7.0"
576
- },
577
- "require-dev": {
578
- "phpunit/phpunit": "6.5.14",
579
- "woocommerce/woocommerce-sniffs": "0.1.0"
580
- },
581
- "time": "2021-04-13T16:11:16+00:00",
582
- "type": "wordpress-plugin",
583
- "extra": {
584
- "scripts-description": {
585
- "phpcs": "Analyze code against the WordPress coding standards with PHP_CodeSniffer",
586
- "phpcbf": "Fix coding standards warnings/errors automatically with PHP Code Beautifier"
587
- }
588
- },
589
- "installation-source": "dist",
590
- "autoload": {
591
- "psr-4": {
592
- "Automattic\\WooCommerce\\Blocks\\": "src/"
593
- }
594
- },
595
- "notification-url": "https://packagist.org/downloads/",
596
- "license": [
597
- "GPL-3.0-or-later"
598
- ],
599
- "description": "WooCommerce blocks for the Gutenberg editor.",
600
- "homepage": "https://woocommerce.com/",
601
- "keywords": [
602
- "blocks",
603
- "gutenberg",
604
- "woocommerce"
605
- ],
606
- "support": {
607
- "issues": "https://github.com/woocommerce/woocommerce-gutenberg-products-block/issues",
608
- "source": "https://github.com/woocommerce/woocommerce-gutenberg-products-block/tree/v4.9.1"
 
 
 
609
  }
610
- }
611
- ]
 
 
1
+ {
2
+ "packages": [
3
+ {
4
+ "name": "automattic/jetpack-autoloader",
5
+ "version": "2.10.1",
6
+ "version_normalized": "2.10.1.0",
7
+ "source": {
8
+ "type": "git",
9
+ "url": "https://github.com/Automattic/jetpack-autoloader.git",
10
+ "reference": "20393c4677765c3e737dcb5aee7a3f7b90dce4b3"
11
+ },
12
+ "dist": {
13
+ "type": "zip",
14
+ "url": "https://api.github.com/repos/Automattic/jetpack-autoloader/zipball/20393c4677765c3e737dcb5aee7a3f7b90dce4b3",
15
+ "reference": "20393c4677765c3e737dcb5aee7a3f7b90dce4b3",
16
+ "shasum": ""
17
+ },
18
+ "require": {
19
+ "composer-plugin-api": "^1.1 || ^2.0"
20
+ },
21
+ "require-dev": {
22
+ "automattic/jetpack-changelogger": "^1.1",
23
+ "yoast/phpunit-polyfills": "0.2.0"
24
+ },
25
+ "time": "2021-03-30T15:15:59+00:00",
26
+ "type": "composer-plugin",
27
+ "extra": {
28
+ "class": "Automattic\\Jetpack\\Autoloader\\CustomAutoloaderPlugin",
29
+ "mirror-repo": "Automattic/jetpack-autoloader",
30
+ "changelogger": {
31
+ "link-template": "https://github.com/Automattic/jetpack-autoloader/compare/v${old}...v${new}"
32
+ },
33
+ "branch-alias": {
34
+ "dev-master": "2.10.x-dev"
35
+ }
36
+ },
37
+ "installation-source": "dist",
38
+ "autoload": {
39
+ "classmap": [
40
+ "src/AutoloadGenerator.php"
41
+ ],
42
+ "psr-4": {
43
+ "Automattic\\Jetpack\\Autoloader\\": "src"
44
+ }
45
+ },
46
+ "notification-url": "https://packagist.org/downloads/",
47
+ "license": [
48
+ "GPL-2.0-or-later"
49
  ],
50
+ "description": "Creates a custom autoloader for a plugin or theme.",
51
+ "install-path": "../automattic/jetpack-autoloader"
52
+ },
53
+ {
54
+ "name": "automattic/jetpack-constants",
55
+ "version": "v1.5.1",
56
+ "version_normalized": "1.5.1.0",
57
+ "source": {
58
+ "type": "git",
59
+ "url": "https://github.com/Automattic/jetpack-constants.git",
60
+ "reference": "18f772daddc8be5df76c9f4a92e017a3c2569a5b"
61
+ },
62
+ "dist": {
63
+ "type": "zip",
64
+ "url": "https://api.github.com/repos/Automattic/jetpack-constants/zipball/18f772daddc8be5df76c9f4a92e017a3c2569a5b",
65
+ "reference": "18f772daddc8be5df76c9f4a92e017a3c2569a5b",
66
+ "shasum": ""
67
+ },
68
+ "require-dev": {
69
+ "php-mock/php-mock": "^2.1",
70
+ "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5"
71
+ },
72
+ "time": "2020-10-28T19:00:31+00:00",
73
+ "type": "library",
74
+ "installation-source": "dist",
75
+ "autoload": {
76
+ "classmap": [
77
+ "src/"
78
+ ]
79
+ },
80
+ "notification-url": "https://packagist.org/downloads/",
81
+ "license": [
82
+ "GPL-2.0-or-later"
83
+ ],
84
+ "description": "A wrapper for defining constants in a more testable way.",
85
+ "install-path": "../automattic/jetpack-constants"
86
+ },
87
+ {
88
+ "name": "composer/installers",
89
+ "version": "v1.10.0",
90
+ "version_normalized": "1.10.0.0",
91
+ "source": {
92
+ "type": "git",
93
+ "url": "https://github.com/composer/installers.git",
94
+ "reference": "1a0357fccad9d1cc1ea0c9a05b8847fbccccb78d"
95
+ },
96
+ "dist": {
97
+ "type": "zip",
98
+ "url": "https://api.github.com/repos/composer/installers/zipball/1a0357fccad9d1cc1ea0c9a05b8847fbccccb78d",
99
+ "reference": "1a0357fccad9d1cc1ea0c9a05b8847fbccccb78d",
100
+ "shasum": ""
101
+ },
102
+ "require": {
103
+ "composer-plugin-api": "^1.0 || ^2.0"
104
+ },
105
+ "replace": {
106
+ "roundcube/plugin-installer": "*",
107
+ "shama/baton": "*"
108
+ },
109
+ "require-dev": {
110
+ "composer/composer": "1.6.* || ^2.0",
111
+ "composer/semver": "^1 || ^3",
112
+ "phpstan/phpstan": "^0.12.55",
113
+ "phpstan/phpstan-phpunit": "^0.12.16",
114
+ "symfony/phpunit-bridge": "^4.2 || ^5",
115
+ "symfony/process": "^2.3"
116
+ },
117
+ "time": "2021-01-14T11:07:16+00:00",
118
+ "type": "composer-plugin",
119
+ "extra": {
120
+ "class": "Composer\\Installers\\Plugin",
121
+ "branch-alias": {
122
+ "dev-main": "1.x-dev"
123
+ }
124
+ },
125
+ "installation-source": "dist",
126
+ "autoload": {
127
+ "psr-4": {
128
+ "Composer\\Installers\\": "src/Composer/Installers"
129
+ }
130
+ },
131
+ "notification-url": "https://packagist.org/downloads/",
132
+ "license": [
133
+ "MIT"
134
+ ],
135
+ "authors": [
136
+ {
137
+ "name": "Kyle Robinson Young",
138
+ "email": "kyle@dontkry.com",
139
+ "homepage": "https://github.com/shama"
140
+ }
141
+ ],
142
+ "description": "A multi-framework Composer library installer",
143
+ "homepage": "https://composer.github.io/installers/",
144
+ "keywords": [
145
+ "Craft",
146
+ "Dolibarr",
147
+ "Eliasis",
148
+ "Hurad",
149
+ "ImageCMS",
150
+ "Kanboard",
151
+ "Lan Management System",
152
+ "MODX Evo",
153
+ "MantisBT",
154
+ "Mautic",
155
+ "Maya",
156
+ "OXID",
157
+ "Plentymarkets",
158
+ "Porto",
159
+ "RadPHP",
160
+ "SMF",
161
+ "Starbug",
162
+ "Thelia",
163
+ "Whmcs",
164
+ "WolfCMS",
165
+ "agl",
166
+ "aimeos",
167
+ "annotatecms",
168
+ "attogram",
169
+ "bitrix",
170
+ "cakephp",
171
+ "chef",
172
+ "cockpit",
173
+ "codeigniter",
174
+ "concrete5",
175
+ "croogo",
176
+ "dokuwiki",
177
+ "drupal",
178
+ "eZ Platform",
179
+ "elgg",
180
+ "expressionengine",
181
+ "fuelphp",
182
+ "grav",
183
+ "installer",
184
+ "itop",
185
+ "joomla",
186
+ "known",
187
+ "kohana",
188
+ "laravel",
189
+ "lavalite",
190
+ "lithium",
191
+ "magento",
192
+ "majima",
193
+ "mako",
194
+ "mediawiki",
195
+ "modulework",
196
+ "modx",
197
+ "moodle",
198
+ "osclass",
199
+ "phpbb",
200
+ "piwik",
201
+ "ppi",
202
+ "processwire",
203
+ "puppet",
204
+ "pxcms",
205
+ "reindex",
206
+ "roundcube",
207
+ "shopware",
208
+ "silverstripe",
209
+ "sydes",
210
+ "sylius",
211
+ "symfony",
212
+ "typo3",
213
+ "wordpress",
214
+ "yawik",
215
+ "zend",
216
+ "zikula"
217
+ ],
218
+ "funding": [
219
+ {
220
+ "url": "https://packagist.com",
221
+ "type": "custom"
222
+ },
223
+ {
224
+ "url": "https://github.com/composer",
225
+ "type": "github"
226
+ },
227
+ {
228
+ "url": "https://tidelift.com/funding/github/packagist/composer/composer",
229
+ "type": "tidelift"
230
+ }
231
+ ],
232
+ "install-path": "./installers"
233
+ },
234
+ {
235
+ "name": "maxmind-db/reader",
236
+ "version": "v1.6.0",
237
+ "version_normalized": "1.6.0.0",
238
+ "source": {
239
+ "type": "git",
240
+ "url": "https://github.com/maxmind/MaxMind-DB-Reader-php.git",
241
+ "reference": "febd4920bf17c1da84cef58e56a8227dfb37fbe4"
242
+ },
243
+ "dist": {
244
+ "type": "zip",
245
+ "url": "https://api.github.com/repos/maxmind/MaxMind-DB-Reader-php/zipball/febd4920bf17c1da84cef58e56a8227dfb37fbe4",
246
+ "reference": "febd4920bf17c1da84cef58e56a8227dfb37fbe4",
247
+ "shasum": ""
248
+ },
249
+ "require": {
250
+ "php": ">=5.6"
251
+ },
252
+ "conflict": {
253
+ "ext-maxminddb": "<1.6.0,>=2.0.0"
254
+ },
255
+ "require-dev": {
256
+ "friendsofphp/php-cs-fixer": "2.*",
257
+ "php-coveralls/php-coveralls": "^2.1",
258
+ "phpunit/phpcov": "^3.0",
259
+ "phpunit/phpunit": "5.*",
260
+ "squizlabs/php_codesniffer": "3.*"
261
+ },
262
+ "suggest": {
263
+ "ext-bcmath": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
264
+ "ext-gmp": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
265
+ "ext-maxminddb": "A C-based database decoder that provides significantly faster lookups"
266
+ },
267
+ "time": "2019-12-19T22:59:03+00:00",
268
+ "type": "library",
269
+ "installation-source": "dist",
270
+ "autoload": {
271
+ "psr-4": {
272
+ "MaxMind\\Db\\": "src/MaxMind/Db"
273
+ }
274
+ },
275
+ "notification-url": "https://packagist.org/downloads/",
276
+ "license": [
277
+ "Apache-2.0"
278
+ ],
279
+ "authors": [
280
+ {
281
+ "name": "Gregory J. Oschwald",
282
+ "email": "goschwald@maxmind.com",
283
+ "homepage": "https://www.maxmind.com/"
284
+ }
285
+ ],
286
+ "description": "MaxMind DB Reader API",
287
+ "homepage": "https://github.com/maxmind/MaxMind-DB-Reader-php",
288
+ "keywords": [
289
+ "database",
290
+ "geoip",
291
+ "geoip2",
292
+ "geolocation",
293
+ "maxmind"
294
+ ],
295
+ "install-path": "../maxmind-db/reader"
296
+ },
297
+ {
298
+ "name": "pelago/emogrifier",
299
+ "version": "v3.1.0",
300
+ "version_normalized": "3.1.0.0",
301
+ "source": {
302
+ "type": "git",
303
+ "url": "https://github.com/MyIntervals/emogrifier.git",
304
+ "reference": "f6a5c7d44612d86c3901c93f1592f5440e6b2cd8"
305
+ },
306
+ "dist": {
307
+ "type": "zip",
308
+ "url": "https://api.github.com/repos/MyIntervals/emogrifier/zipball/f6a5c7d44612d86c3901c93f1592f5440e6b2cd8",
309
+ "reference": "f6a5c7d44612d86c3901c93f1592f5440e6b2cd8",
310
+ "shasum": ""
311
+ },
312
+ "require": {
313
+ "ext-dom": "*",
314
+ "ext-libxml": "*",
315
+ "php": "^5.6 || ~7.0 || ~7.1 || ~7.2 || ~7.3 || ~7.4",
316
+ "symfony/css-selector": "^2.8 || ^3.0 || ^4.0 || ^5.0"
317
+ },
318
+ "require-dev": {
319
+ "friendsofphp/php-cs-fixer": "^2.15.3",
320
+ "phpmd/phpmd": "^2.7.0",
321
+ "phpunit/phpunit": "^5.7.27",
322
+ "squizlabs/php_codesniffer": "^3.5.0"
323
+ },
324
+ "time": "2019-12-26T19:37:31+00:00",
325
+ "type": "library",
326
+ "extra": {
327
+ "branch-alias": {
328
+ "dev-master": "4.0.x-dev"
329
+ }
330
+ },
331
+ "installation-source": "dist",
332
+ "autoload": {
333
+ "psr-4": {
334
+ "Pelago\\": "src/"
335
+ }
336
+ },
337
+ "notification-url": "https://packagist.org/downloads/",
338
+ "license": [
339
+ "MIT"
340
+ ],
341
+ "authors": [
342
+ {
343
+ "name": "Oliver Klee",
344
+ "email": "github@oliverklee.de"
345
+ },
346
+ {
347
+ "name": "Zoli Szabó",
348
+ "email": "zoli.szabo+github@gmail.com"
349
+ },
350
+ {
351
+ "name": "John Reeve",
352
+ "email": "jreeve@pelagodesign.com"
353
+ },
354
+ {
355
+ "name": "Jake Hotson",
356
+ "email": "jake@qzdesign.co.uk"
357
+ },
358
+ {
359
+ "name": "Cameron Brooks"
360
+ },
361
+ {
362
+ "name": "Jaime Prado"
363
+ }
364
+ ],
365
+ "description": "Converts CSS styles into inline style attributes in your HTML code",
366
+ "homepage": "https://www.myintervals.com/emogrifier.php",
367
+ "keywords": [
368
+ "css",
369
+ "email",
370
+ "pre-processing"
371
+ ],
372
+ "install-path": "../pelago/emogrifier"
373
+ },
374
+ {
375
+ "name": "psr/container",
376
+ "version": "1.0.0",
377
+ "version_normalized": "1.0.0.0",
378
+ "source": {
379
+ "type": "git",
380
+ "url": "https://github.com/php-fig/container.git",
381
+ "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
382
+ },
383
+ "dist": {
384
+ "type": "zip",
385
+ "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
386
+ "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
387
+ "shasum": ""
388
+ },
389
+ "require": {
390
+ "php": ">=5.3.0"
391
+ },
392
+ "time": "2017-02-14T16:28:37+00:00",
393
+ "type": "library",
394
+ "extra": {
395
+ "branch-alias": {
396
+ "dev-master": "1.0.x-dev"
397
+ }
398
+ },
399
+ "installation-source": "dist",
400
+ "autoload": {
401
+ "psr-4": {
402
+ "Psr\\Container\\": "src/"
403
+ }
404
+ },
405
+ "notification-url": "https://packagist.org/downloads/",
406
+ "license": [
407
+ "MIT"
408
+ ],
409
+ "authors": [
410
+ {
411
+ "name": "PHP-FIG",
412
+ "homepage": "http://www.php-fig.org/"
413
+ }
414
+ ],
415
+ "description": "Common Container Interface (PHP FIG PSR-11)",
416
+ "homepage": "https://github.com/php-fig/container",
417
+ "keywords": [
418
+ "PSR-11",
419
+ "container",
420
+ "container-interface",
421
+ "container-interop",
422
+ "psr"
423
+ ],
424
+ "install-path": "../psr/container"
425
+ },
426
+ {
427
+ "name": "symfony/css-selector",
428
+ "version": "v3.3.6",
429
+ "version_normalized": "3.3.6.0",
430
+ "source": {
431
+ "type": "git",
432
+ "url": "https://github.com/symfony/css-selector.git",
433
+ "reference": "4d882dced7b995d5274293039370148e291808f2"
434
+ },
435
+ "dist": {
436
+ "type": "zip",
437
+ "url": "https://api.github.com/repos/symfony/css-selector/zipball/4d882dced7b995d5274293039370148e291808f2",
438
+ "reference": "4d882dced7b995d5274293039370148e291808f2",
439
+ "shasum": ""
440
+ },
441
+ "require": {
442
+ "php": ">=5.5.9"
443
+ },
444
+ "time": "2017-05-01T15:01:29+00:00",
445
+ "type": "library",
446
+ "extra": {
447
+ "branch-alias": {
448
+ "dev-master": "3.3-dev"
449
+ }
450
+ },
451
+ "installation-source": "dist",
452
+ "autoload": {
453
+ "psr-4": {
454
+ "Symfony\\Component\\CssSelector\\": ""
455
+ },
456
+ "exclude-from-classmap": [
457
+ "/Tests/"
458
+ ]
459
+ },
460
+ "notification-url": "https://packagist.org/downloads/",
461
+ "license": [
462
+ "MIT"
463
+ ],
464
+ "authors": [
465
+ {
466
+ "name": "Jean-François Simon",
467
+ "email": "jeanfrancois.simon@sensiolabs.com"
468
+ },
469
+ {
470
+ "name": "Fabien Potencier",
471
+ "email": "fabien@symfony.com"
472
+ },
473
+ {
474
+ "name": "Symfony Community",
475
+ "homepage": "https://symfony.com/contributors"
476
+ }
477
+ ],
478
+ "description": "Symfony CssSelector Component",
479
+ "homepage": "https://symfony.com",
480
+ "install-path": "../symfony/css-selector"
481
+ },
482
+ {
483
+ "name": "woocommerce/action-scheduler",
484
+ "version": "3.1.6",
485
+ "version_normalized": "3.1.6.0",
486
+ "source": {
487
+ "type": "git",
488
+ "url": "https://github.com/woocommerce/action-scheduler.git",
489
+ "reference": "275d0ba54b1c263dfc62688de2fa9a25a373edf8"
490
+ },
491
+ "dist": {
492
+ "type": "zip",
493
+ "url": "https://api.github.com/repos/woocommerce/action-scheduler/zipball/275d0ba54b1c263dfc62688de2fa9a25a373edf8",
494
+ "reference": "275d0ba54b1c263dfc62688de2fa9a25a373edf8",
495
+ "shasum": ""
496
+ },
497
+ "require-dev": {
498
+ "phpunit/phpunit": "^5.6",
499
+ "woocommerce/woocommerce-sniffs": "0.0.8",
500
+ "wp-cli/wp-cli": "~1.5.1"
501
+ },
502
+ "time": "2020-05-12T16:22:33+00:00",
503
+ "type": "wordpress-plugin",
504
+ "extra": {
505
+ "scripts-description": {
506
+ "test": "Run unit tests",
507
+ "phpcs": "Analyze code against the WordPress coding standards with PHP_CodeSniffer",
508
+ "phpcbf": "Fix coding standards warnings/errors automatically with PHP Code Beautifier"
509
+ }
510
+ },
511
+ "installation-source": "dist",
512
+ "notification-url": "https://packagist.org/downloads/",
513
+ "license": [
514
+ "GPL-3.0-or-later"
515
+ ],
516
+ "description": "Action Scheduler for WordPress and WooCommerce",
517
+ "homepage": "https://actionscheduler.org/",
518
+ "install-path": "../../packages/action-scheduler"
519
+ },
520
+ {
521
+ "name": "woocommerce/woocommerce-admin",
522
+ "version": "2.2.1",
523
+ "version_normalized": "2.2.1.0",
524
+ "source": {
525
+ "type": "git",
526
+ "url": "https://github.com/woocommerce/woocommerce-admin.git",
527
+ "reference": "78cc9c5ef7de5be5bd0f9208483e5ae97422be9a"
528
+ },
529
+ "dist": {
530
+ "type": "zip",
531
+ "url": "https://api.github.com/repos/woocommerce/woocommerce-admin/zipball/78cc9c5ef7de5be5bd0f9208483e5ae97422be9a",
532
+ "reference": "78cc9c5ef7de5be5bd0f9208483e5ae97422be9a",
533
+ "shasum": ""
534
+ },
535
+ "require": {
536
+ "automattic/jetpack-autoloader": "^2.9.1",
537
+ "composer/installers": "^1.9.0",
538
+ "php": ">=7.0"
539
+ },
540
+ "require-dev": {
541
+ "phpunit/phpunit": "7.5.20",
542
+ "suin/phpcs-psr4-sniff": "^2.2",
543
+ "woocommerce/woocommerce-sniffs": "0.1.0"
544
+ },
545
+ "time": "2021-04-02T19:30:03+00:00",
546
+ "type": "wordpress-plugin",
547
+ "extra": {
548
+ "scripts-description": {
549
+ "test": "Run unit tests",
550
+ "phpcs": "Analyze code against the WordPress coding standards with PHP_CodeSniffer",
551
+ "phpcbf": "Fix coding standards warnings/errors automatically with PHP Code Beautifier"
552
+ }
553
+ },
554
+ "installation-source": "dist",
555
+ "autoload": {
556
+ "psr-4": {
557
+ "Automattic\\WooCommerce\\Admin\\": "src/"
558
+ }
559
+ },
560
+ "notification-url": "https://packagist.org/downloads/",
561
+ "license": [
562
+ "GPL-3.0-or-later"
563
+ ],
564
+ "description": "A modern, javascript-driven WooCommerce Admin experience.",
565
+ "homepage": "https://github.com/woocommerce/woocommerce-admin",
566
+ "install-path": "../../packages/woocommerce-admin"
567
+ },
568
+ {
569
+ "name": "woocommerce/woocommerce-blocks",
570
+ "version": "v4.9.1",
571
+ "version_normalized": "4.9.1.0",
572
+ "source": {
573
+ "type": "git",
574
+ "url": "https://github.com/woocommerce/woocommerce-gutenberg-products-block.git",
575
+ "reference": "62f32bfb45dfcb2ba3ca349a6ed0a8cf48ddefce"
576
+ },
577
+ "dist": {
578
+ "type": "zip",
579
+ "url": "https://api.github.com/repos/woocommerce/woocommerce-gutenberg-products-block/zipball/62f32bfb45dfcb2ba3ca349a6ed0a8cf48ddefce",
580
+ "reference": "62f32bfb45dfcb2ba3ca349a6ed0a8cf48ddefce",
581
+ "shasum": ""
582
+ },
583
+ "require": {
584
+ "automattic/jetpack-autoloader": "^2.9.1",
585
+ "composer/installers": "^1.7.0"
586
+ },
587
+ "require-dev": {
588
+ "phpunit/phpunit": "6.5.14",
589
+ "woocommerce/woocommerce-sniffs": "0.1.0"
590
+ },
591
+ "time": "2021-04-13T16:11:16+00:00",
592
+ "type": "wordpress-plugin",
593
+ "extra": {
594
+ "scripts-description": {
595
+ "phpcs": "Analyze code against the WordPress coding standards with PHP_CodeSniffer",
596
+ "phpcbf": "Fix coding standards warnings/errors automatically with PHP Code Beautifier"
597
+ }
598
+ },
599
+ "installation-source": "dist",
600
+ "autoload": {
601
+ "psr-4": {
602
+ "Automattic\\WooCommerce\\Blocks\\": "src/"
603
+ }
604
+ },
605
+ "notification-url": "https://packagist.org/downloads/",
606
+ "license": [
607
+ "GPL-3.0-or-later"
608
+ ],
609
+ "description": "WooCommerce blocks for the Gutenberg editor.",
610
+ "homepage": "https://woocommerce.com/",
611
+ "keywords": [
612
+ "blocks",
613
+ "gutenberg",
614
+ "woocommerce"
615
+ ],
616
+ "support": {
617
+ "issues": "https://github.com/woocommerce/woocommerce-gutenberg-products-block/issues",
618
+ "source": "https://github.com/woocommerce/woocommerce-gutenberg-products-block/tree/v4.9.1"
619
+ },
620
+ "install-path": "../../packages/woocommerce-blocks"
621
  }
622
+ ],
623
+ "dev": false,
624
+ "dev-package-names": []
625
+ }
vendor/composer/installed.php ADDED
@@ -0,0 +1,128 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php return array (
2
+ 'root' =>
3
+ array (
4
+ 'pretty_version' => 'dev-trunk',
5
+ 'version' => 'dev-trunk',
6
+ 'aliases' =>
7
+ array (
8
+ ),
9
+ 'reference' => '715ee5818558a6cfe78a3e60b40a9196c4ab4b1d',
10
+ 'name' => 'woocommerce/woocommerce',
11
+ ),
12
+ 'versions' =>
13
+ array (
14
+ 'automattic/jetpack-autoloader' =>
15
+ array (
16
+ 'pretty_version' => '2.10.1',
17
+ 'version' => '2.10.1.0',
18
+ 'aliases' =>
19
+ array (
20
+ ),
21
+ 'reference' => '20393c4677765c3e737dcb5aee7a3f7b90dce4b3',
22
+ ),
23
+ 'automattic/jetpack-constants' =>
24
+ array (
25
+ 'pretty_version' => 'v1.5.1',
26
+ 'version' => '1.5.1.0',
27
+ 'aliases' =>
28
+ array (
29
+ ),
30
+ 'reference' => '18f772daddc8be5df76c9f4a92e017a3c2569a5b',
31
+ ),
32
+ 'composer/installers' =>
33
+ array (
34
+ 'pretty_version' => 'v1.10.0',
35
+ 'version' => '1.10.0.0',
36
+ 'aliases' =>
37
+ array (
38
+ ),
39
+ 'reference' => '1a0357fccad9d1cc1ea0c9a05b8847fbccccb78d',
40
+ ),
41
+ 'maxmind-db/reader' =>
42
+ array (
43
+ 'pretty_version' => 'v1.6.0',
44
+ 'version' => '1.6.0.0',
45
+ 'aliases' =>
46
+ array (
47
+ ),
48
+ 'reference' => 'febd4920bf17c1da84cef58e56a8227dfb37fbe4',
49
+ ),
50
+ 'pelago/emogrifier' =>
51
+ array (
52
+ 'pretty_version' => 'v3.1.0',
53
+ 'version' => '3.1.0.0',
54
+ 'aliases' =>
55
+ array (
56
+ ),
57
+ 'reference' => 'f6a5c7d44612d86c3901c93f1592f5440e6b2cd8',
58
+ ),
59
+ 'psr/container' =>
60
+ array (
61
+ 'pretty_version' => '1.0.0',
62
+ 'version' => '1.0.0.0',
63
+ 'aliases' =>
64
+ array (
65
+ ),
66
+ 'reference' => 'b7ce3b176482dbbc1245ebf52b181af44c2cf55f',
67
+ ),
68
+ 'roundcube/plugin-installer' =>
69
+ array (
70
+ 'replaced' =>
71
+ array (
72
+ 0 => '*',
73
+ ),
74
+ ),
75
+ 'shama/baton' =>
76
+ array (
77
+ 'replaced' =>
78
+ array (
79
+ 0 => '*',
80
+ ),
81
+ ),
82
+ 'symfony/css-selector' =>
83
+ array (
84
+ 'pretty_version' => 'v3.3.6',
85
+ 'version' => '3.3.6.0',
86
+ 'aliases' =>
87
+ array (
88
+ ),
89
+ 'reference' => '4d882dced7b995d5274293039370148e291808f2',
90
+ ),
91
+ 'woocommerce/action-scheduler' =>
92
+ array (
93
+ 'pretty_version' => '3.1.6',
94
+ 'version' => '3.1.6.0',
95
+ 'aliases' =>
96
+ array (
97
+ ),
98
+ 'reference' => '275d0ba54b1c263dfc62688de2fa9a25a373edf8',
99
+ ),
100
+ 'woocommerce/woocommerce' =>
101
+ array (
102
+ 'pretty_version' => 'dev-trunk',
103
+ 'version' => 'dev-trunk',
104
+ 'aliases' =>
105
+ array (
106
+ ),
107
+ 'reference' => '715ee5818558a6cfe78a3e60b40a9196c4ab4b1d',
108
+ ),
109
+ 'woocommerce/woocommerce-admin' =>
110
+ array (
111
+ 'pretty_version' => '2.2.1',
112
+ 'version' => '2.2.1.0',
113
+ 'aliases' =>
114
+ array (
115
+ ),
116
+ 'reference' => '78cc9c5ef7de5be5bd0f9208483e5ae97422be9a',
117
+ ),
118
+ 'woocommerce/woocommerce-blocks' =>
119
+ array (
120
+ 'pretty_version' => 'v4.9.1',
121
+ 'version' => '4.9.1.0',
122
+ 'aliases' =>
123
+ array (
124
+ ),
125
+ 'reference' => '62f32bfb45dfcb2ba3ca349a6ed0a8cf48ddefce',
126
+ ),
127
+ ),
128
+ );
vendor/composer/jetpack_autoload_classmap.php CHANGED
@@ -763,207 +763,207 @@ return array(
763
  'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MicroweberInstaller.php'
764
  ),
765
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\ContainerAwareTrait' => array(
766
- 'version' => 'dev-release/5.3',
767
  'path' => $baseDir . '/lib/packages/League/Container/ContainerAwareTrait.php'
768
  ),
769
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Container' => array(
770
- 'version' => 'dev-release/5.3',
771
  'path' => $baseDir . '/lib/packages/League/Container/Container.php'
772
  ),
773
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\RawArgument' => array(
774
- 'version' => 'dev-release/5.3',
775
  'path' => $baseDir . '/lib/packages/League/Container/Argument/RawArgument.php'
776
  ),
777
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ClassNameWithOptionalValue' => array(
778
- 'version' => 'dev-release/5.3',
779
  'path' => $baseDir . '/lib/packages/League/Container/Argument/ClassNameWithOptionalValue.php'
780
  ),
781
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ClassName' => array(
782
- 'version' => 'dev-release/5.3',
783
  'path' => $baseDir . '/lib/packages/League/Container/Argument/ClassName.php'
784
  ),
785
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ArgumentResolverTrait' => array(
786
- 'version' => 'dev-release/5.3',
787
  'path' => $baseDir . '/lib/packages/League/Container/Argument/ArgumentResolverTrait.php'
788
  ),
789
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ArgumentResolverInterface' => array(
790
- 'version' => 'dev-release/5.3',
791
  'path' => $baseDir . '/lib/packages/League/Container/Argument/ArgumentResolverInterface.php'
792
  ),
793
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\RawArgumentInterface' => array(
794
- 'version' => 'dev-release/5.3',
795
  'path' => $baseDir . '/lib/packages/League/Container/Argument/RawArgumentInterface.php'
796
  ),
797
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ClassNameInterface' => array(
798
- 'version' => 'dev-release/5.3',
799
  'path' => $baseDir . '/lib/packages/League/Container/Argument/ClassNameInterface.php'
800
  ),
801
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Inflector\\InflectorAggregate' => array(
802
- 'version' => 'dev-release/5.3',
803
  'path' => $baseDir . '/lib/packages/League/Container/Inflector/InflectorAggregate.php'
804
  ),
805
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Inflector\\InflectorAggregateInterface' => array(
806
- 'version' => 'dev-release/5.3',
807
  'path' => $baseDir . '/lib/packages/League/Container/Inflector/InflectorAggregateInterface.php'
808
  ),
809
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Inflector\\InflectorInterface' => array(
810
- 'version' => 'dev-release/5.3',
811
  'path' => $baseDir . '/lib/packages/League/Container/Inflector/InflectorInterface.php'
812
  ),
813
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Inflector\\Inflector' => array(
814
- 'version' => 'dev-release/5.3',
815
  'path' => $baseDir . '/lib/packages/League/Container/Inflector/Inflector.php'
816
  ),
817
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\ServiceProviderAggregateInterface' => array(
818
- 'version' => 'dev-release/5.3',
819
  'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/ServiceProviderAggregateInterface.php'
820
  ),
821
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\AbstractServiceProvider' => array(
822
- 'version' => 'dev-release/5.3',
823
  'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/AbstractServiceProvider.php'
824
  ),
825
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\ServiceProviderAggregate' => array(
826
- 'version' => 'dev-release/5.3',
827
  'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/ServiceProviderAggregate.php'
828
  ),
829
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\BootableServiceProviderInterface' => array(
830
- 'version' => 'dev-release/5.3',
831
  'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/BootableServiceProviderInterface.php'
832
  ),
833
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\ServiceProviderInterface' => array(
834
- 'version' => 'dev-release/5.3',
835
  'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/ServiceProviderInterface.php'
836
  ),
837
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Definition\\DefinitionAggregate' => array(
838
- 'version' => 'dev-release/5.3',
839
  'path' => $baseDir . '/lib/packages/League/Container/Definition/DefinitionAggregate.php'
840
  ),
841
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Definition\\Definition' => array(
842
- 'version' => 'dev-release/5.3',
843
  'path' => $baseDir . '/lib/packages/League/Container/Definition/Definition.php'
844
  ),
845
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Definition\\DefinitionAggregateInterface' => array(
846
- 'version' => 'dev-release/5.3',
847
  'path' => $baseDir . '/lib/packages/League/Container/Definition/DefinitionAggregateInterface.php'
848
  ),
849
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Definition\\DefinitionInterface' => array(
850
- 'version' => 'dev-release/5.3',
851
  'path' => $baseDir . '/lib/packages/League/Container/Definition/DefinitionInterface.php'
852
  ),
853
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\ReflectionContainer' => array(
854
- 'version' => 'dev-release/5.3',
855
  'path' => $baseDir . '/lib/packages/League/Container/ReflectionContainer.php'
856
  ),
857
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Exception\\ContainerException' => array(
858
- 'version' => 'dev-release/5.3',
859
  'path' => $baseDir . '/lib/packages/League/Container/Exception/ContainerException.php'
860
  ),
861
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Exception\\NotFoundException' => array(
862
- 'version' => 'dev-release/5.3',
863
  'path' => $baseDir . '/lib/packages/League/Container/Exception/NotFoundException.php'
864
  ),
865
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\ContainerAwareInterface' => array(
866
- 'version' => 'dev-release/5.3',
867
  'path' => $baseDir . '/lib/packages/League/Container/ContainerAwareInterface.php'
868
  ),
869
  'Automattic\\WooCommerce\\Tests\\Internal\\RestApiUtilTest' => array(
870
- 'version' => 'dev-release/5.3',
871
  'path' => $baseDir . '/tests/php/src/Internal/RestApiUtilTest.php'
872
  ),
873
  'Automattic\\WooCommerce\\Tests\\Internal\\WCCom\\ConnectionHelperTest' => array(
874
- 'version' => 'dev-release/5.3',
875
  'path' => $baseDir . '/tests/php/src/Internal/WCCom/ConnectionHelperTest.php'
876
  ),
877
  'Automattic\\WooCommerce\\Tests\\Internal\\DownloadPermissionsAdjusterTest' => array(
878
- 'version' => 'dev-release/5.3',
879
  'path' => $baseDir . '/tests/php/src/Internal/DownloadPermissionsAdjusterTest.php'
880
  ),
881
  'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExtendedContainerTest' => array(
882
- 'version' => 'dev-release/5.3',
883
  'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExtendedContainerTest.php'
884
  ),
885
  'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithScalarInjectionMethodArgument' => array(
886
- 'version' => 'dev-release/5.3',
887
  'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithScalarInjectionMethodArgument.php'
888
  ),
889
  'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithDependencies' => array(
890
- 'version' => 'dev-release/5.3',
891
  'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithDependencies.php'
892
  ),
893
  'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\DependencyClass' => array(
894
- 'version' => 'dev-release/5.3',
895
  'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/DependencyClass.php'
896
  ),
897
  'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithPrivateInjectionMethod' => array(
898
- 'version' => 'dev-release/5.3',
899
  'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithPrivateInjectionMethod.php'
900
  ),
901
  'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithNonFinalInjectionMethod' => array(
902
- 'version' => 'dev-release/5.3',
903
  'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithNonFinalInjectionMethod.php'
904
  ),
905
  'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithInjectionMethodArgumentWithoutTypeHint' => array(
906
- 'version' => 'dev-release/5.3',
907
  'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithInjectionMethodArgumentWithoutTypeHint.php'
908
  ),
909
  'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\AbstractServiceProviderTest' => array(
910
- 'version' => 'dev-release/5.3',
911
  'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/AbstractServiceProviderTest.php'
912
  ),
913
  'Automattic\\WooCommerce\\Tests\\Utilities\\StringUtilTest' => array(
914
- 'version' => 'dev-release/5.3',
915
  'path' => $baseDir . '/tests/php/src/Utilities/StringUtilTest.php'
916
  ),
917
  'Automattic\\WooCommerce\\Tests\\Utilities\\NumberUtilTest' => array(
918
- 'version' => 'dev-release/5.3',
919
  'path' => $baseDir . '/tests/php/src/Utilities/NumberUtilTest.php'
920
  ),
921
  'Automattic\\WooCommerce\\Tests\\Proxies\\LegacyProxyTest' => array(
922
- 'version' => 'dev-release/5.3',
923
  'path' => $baseDir . '/tests/php/src/Proxies/LegacyProxyTest.php'
924
  ),
925
  'Automattic\\WooCommerce\\Tests\\Proxies\\ExampleClasses\\ClassThatDependsOnLegacyCode' => array(
926
- 'version' => 'dev-release/5.3',
927
  'path' => $baseDir . '/tests/php/src/Proxies/ExampleClasses/ClassThatDependsOnLegacyCode.php'
928
  ),
929
  'Automattic\\WooCommerce\\Tests\\Proxies\\MockableLegacyProxyTest' => array(
930
- 'version' => 'dev-release/5.3',
931
  'path' => $baseDir . '/tests/php/src/Proxies/MockableLegacyProxyTest.php'
932
  ),
933
  'Automattic\\WooCommerce\\Tests\\Proxies\\ClassThatDependsOnLegacyCodeTest' => array(
934
- 'version' => 'dev-release/5.3',
935
  'path' => $baseDir . '/tests/php/src/Proxies/ClassThatDependsOnLegacyCodeTest.php'
936
  ),
937
  'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\CodeHackerTestHook' => array(
938
- 'version' => 'dev-release/5.3',
939
  'path' => $baseDir . '/tests/Tools/CodeHacking/CodeHackerTestHook.php'
940
  ),
941
  'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\CodeHacker' => array(
942
- 'version' => 'dev-release/5.3',
943
  'path' => $baseDir . '/tests/Tools/CodeHacking/CodeHacker.php'
944
  ),
945
  'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\Hacks\\BypassFinalsHack' => array(
946
- 'version' => 'dev-release/5.3',
947
  'path' => $baseDir . '/tests/Tools/CodeHacking/Hacks/BypassFinalsHack.php'
948
  ),
949
  'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\Hacks\\StaticMockerHack' => array(
950
- 'version' => 'dev-release/5.3',
951
  'path' => $baseDir . '/tests/Tools/CodeHacking/Hacks/StaticMockerHack.php'
952
  ),
953
  'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\Hacks\\FunctionsMockerHack' => array(
954
- 'version' => 'dev-release/5.3',
955
  'path' => $baseDir . '/tests/Tools/CodeHacking/Hacks/FunctionsMockerHack.php'
956
  ),
957
  'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\Hacks\\CodeHack' => array(
958
- 'version' => 'dev-release/5.3',
959
  'path' => $baseDir . '/tests/Tools/CodeHacking/Hacks/CodeHack.php'
960
  ),
961
  'Automattic\\WooCommerce\\Testing\\Tools\\DependencyManagement\\DependencyManagementTestHook' => array(
962
- 'version' => 'dev-release/5.3',
963
  'path' => $baseDir . '/tests/Tools/DependencyManagement/DependencyManagementTestHook.php'
964
  ),
965
  'Automattic\\WooCommerce\\Testing\\Tools\\DependencyManagement\\MockableLegacyProxy' => array(
966
- 'version' => 'dev-release/5.3',
967
  'path' => $baseDir . '/tests/Tools/DependencyManagement/MockableLegacyProxy.php'
968
  ),
969
  'Automattic\\WooCommerce\\Blocks\\Payments\\PaymentResult' => array(
@@ -2551,75 +2551,75 @@ return array(
2551
  'path' => $baseDir . '/packages/woocommerce-admin/src/Schedulers/CustomersScheduler.php'
2552
  ),
2553
  'Automattic\\WooCommerce\\Container' => array(
2554
- 'version' => 'dev-release/5.3',
2555
  'path' => $baseDir . '/src/Container.php'
2556
  ),
2557
  'Automattic\\WooCommerce\\Internal\\RestApiUtil' => array(
2558
- 'version' => 'dev-release/5.3',
2559
  'path' => $baseDir . '/src/Internal/RestApiUtil.php'
2560
  ),
2561
  'Automattic\\WooCommerce\\Internal\\DownloadPermissionsAdjuster' => array(
2562
- 'version' => 'dev-release/5.3',
2563
  'path' => $baseDir . '/src/Internal/DownloadPermissionsAdjuster.php'
2564
  ),
2565
  'Automattic\\WooCommerce\\Internal\\WCCom\\ConnectionHelper' => array(
2566
- 'version' => 'dev-release/5.3',
2567
  'path' => $baseDir . '/src/Internal/WCCom/ConnectionHelper.php'
2568
  ),
2569
  'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ContainerException' => array(
2570
- 'version' => 'dev-release/5.3',
2571
  'path' => $baseDir . '/src/Internal/DependencyManagement/ContainerException.php'
2572
  ),
2573
  'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ExtendedContainer' => array(
2574
- 'version' => 'dev-release/5.3',
2575
  'path' => $baseDir . '/src/Internal/DependencyManagement/ExtendedContainer.php'
2576
  ),
2577
  'Automattic\\WooCommerce\\Internal\\DependencyManagement\\AbstractServiceProvider' => array(
2578
- 'version' => 'dev-release/5.3',
2579
  'path' => $baseDir . '/src/Internal/DependencyManagement/AbstractServiceProvider.php'
2580
  ),
2581
  'Automattic\\WooCommerce\\Internal\\DependencyManagement\\Definition' => array(
2582
- 'version' => 'dev-release/5.3',
2583
  'path' => $baseDir . '/src/Internal/DependencyManagement/Definition.php'
2584
  ),
2585
  'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\ProxiesServiceProvider' => array(
2586
- 'version' => 'dev-release/5.3',
2587
  'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/ProxiesServiceProvider.php'
2588
  ),
2589
  'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\DownloadPermissionsAdjusterServiceProvider' => array(
2590
- 'version' => 'dev-release/5.3',
2591
  'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/DownloadPermissionsAdjusterServiceProvider.php'
2592
  ),
2593
  'Automattic\\WooCommerce\\Checkout\\Helpers\\ReserveStock' => array(
2594
- 'version' => 'dev-release/5.3',
2595
  'path' => $baseDir . '/src/Checkout/Helpers/ReserveStock.php'
2596
  ),
2597
  'Automattic\\WooCommerce\\Checkout\\Helpers\\ReserveStockException' => array(
2598
- 'version' => 'dev-release/5.3',
2599
  'path' => $baseDir . '/src/Checkout/Helpers/ReserveStockException.php'
2600
  ),
2601
  'Automattic\\WooCommerce\\Packages' => array(
2602
- 'version' => 'dev-release/5.3',
2603
  'path' => $baseDir . '/src/Packages.php'
2604
  ),
2605
  'Automattic\\WooCommerce\\Utilities\\StringUtil' => array(
2606
- 'version' => 'dev-release/5.3',
2607
  'path' => $baseDir . '/src/Utilities/StringUtil.php'
2608
  ),
2609
  'Automattic\\WooCommerce\\Utilities\\NumberUtil' => array(
2610
- 'version' => 'dev-release/5.3',
2611
  'path' => $baseDir . '/src/Utilities/NumberUtil.php'
2612
  ),
2613
  'Automattic\\WooCommerce\\Proxies\\ActionsProxy' => array(
2614
- 'version' => 'dev-release/5.3',
2615
  'path' => $baseDir . '/src/Proxies/ActionsProxy.php'
2616
  ),
2617
  'Automattic\\WooCommerce\\Proxies\\LegacyProxy' => array(
2618
- 'version' => 'dev-release/5.3',
2619
  'path' => $baseDir . '/src/Proxies/LegacyProxy.php'
2620
  ),
2621
  'Automattic\\WooCommerce\\Autoloader' => array(
2622
- 'version' => 'dev-release/5.3',
2623
  'path' => $baseDir . '/src/Autoloader.php'
2624
  ),
2625
  'Automattic\\Jetpack\\Autoloader\\AutoloadGenerator' => array(
@@ -2643,431 +2643,431 @@ return array(
2643
  'path' => $vendorDir . '/automattic/jetpack-autoloader/src/ManifestGenerator.php'
2644
  ),
2645
  'Automattic\\WooCommerce\\RestApi\\Server' => array(
2646
- 'version' => 'dev-release/5.3',
2647
  'path' => $baseDir . '/includes/rest-api/Server.php'
2648
  ),
2649
  'Automattic\\WooCommerce\\RestApi\\Package' => array(
2650
- 'version' => 'dev-release/5.3',
2651
  'path' => $baseDir . '/includes/rest-api/Package.php'
2652
  ),
2653
  'Automattic\\WooCommerce\\RestApi\\Utilities\\SingletonTrait' => array(
2654
- 'version' => 'dev-release/5.3',
2655
  'path' => $baseDir . '/includes/rest-api/Utilities/SingletonTrait.php'
2656
  ),
2657
  'Automattic\\WooCommerce\\RestApi\\Utilities\\ImageAttachment' => array(
2658
- 'version' => 'dev-release/5.3',
2659
  'path' => $baseDir . '/includes/rest-api/Utilities/ImageAttachment.php'
2660
  ),
2661
  'WC_REST_Tax_Classes_V1_Controller' => array(
2662
- 'version' => 'dev-release/5.3',
2663
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-tax-classes-v1-controller.php'
2664
  ),
2665
  'WC_REST_Webhook_Deliveries_V1_Controller' => array(
2666
- 'version' => 'dev-release/5.3',
2667
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-webhook-deliveries-v1-controller.php'
2668
  ),
2669
  'WC_REST_Order_Refunds_V1_Controller' => array(
2670
- 'version' => 'dev-release/5.3',
2671
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-order-refunds-v1-controller.php'
2672
  ),
2673
  'WC_REST_Product_Tags_V1_Controller' => array(
2674
- 'version' => 'dev-release/5.3',
2675
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-tags-v1-controller.php'
2676
  ),
2677
  'WC_REST_Product_Categories_V1_Controller' => array(
2678
- 'version' => 'dev-release/5.3',
2679
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-categories-v1-controller.php'
2680
  ),
2681
  'WC_REST_Coupons_V1_Controller' => array(
2682
- 'version' => 'dev-release/5.3',
2683
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-coupons-v1-controller.php'
2684
  ),
2685
  'WC_REST_Taxes_V1_Controller' => array(
2686
- 'version' => 'dev-release/5.3',
2687
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-taxes-v1-controller.php'
2688
  ),
2689
  'WC_REST_Product_Attributes_V1_Controller' => array(
2690
- 'version' => 'dev-release/5.3',
2691
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-attributes-v1-controller.php'
2692
  ),
2693
  'WC_REST_Webhooks_V1_Controller' => array(
2694
- 'version' => 'dev-release/5.3',
2695
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-webhooks-v1-controller.php'
2696
  ),
2697
  'WC_REST_Orders_V1_Controller' => array(
2698
- 'version' => 'dev-release/5.3',
2699
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-orders-v1-controller.php'
2700
  ),
2701
  'WC_REST_Reports_V1_Controller' => array(
2702
- 'version' => 'dev-release/5.3',
2703
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-reports-v1-controller.php'
2704
  ),
2705
  'WC_REST_Report_Sales_V1_Controller' => array(
2706
- 'version' => 'dev-release/5.3',
2707
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-report-sales-v1-controller.php'
2708
  ),
2709
  'WC_REST_Order_Notes_V1_Controller' => array(
2710
- 'version' => 'dev-release/5.3',
2711
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-order-notes-v1-controller.php'
2712
  ),
2713
  'WC_REST_Customer_Downloads_V1_Controller' => array(
2714
- 'version' => 'dev-release/5.3',
2715
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-customer-downloads-v1-controller.php'
2716
  ),
2717
  'WC_REST_Product_Attribute_Terms_V1_Controller' => array(
2718
- 'version' => 'dev-release/5.3',
2719
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-attribute-terms-v1-controller.php'
2720
  ),
2721
  'WC_REST_Report_Top_Sellers_V1_Controller' => array(
2722
- 'version' => 'dev-release/5.3',
2723
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-report-top-sellers-v1-controller.php'
2724
  ),
2725
  'WC_REST_Product_Shipping_Classes_V1_Controller' => array(
2726
- 'version' => 'dev-release/5.3',
2727
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-shipping-classes-v1-controller.php'
2728
  ),
2729
  'WC_REST_Products_V1_Controller' => array(
2730
- 'version' => 'dev-release/5.3',
2731
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-products-v1-controller.php'
2732
  ),
2733
  'WC_REST_Product_Reviews_V1_Controller' => array(
2734
- 'version' => 'dev-release/5.3',
2735
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-reviews-v1-controller.php'
2736
  ),
2737
  'WC_REST_Customers_V1_Controller' => array(
2738
- 'version' => 'dev-release/5.3',
2739
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-customers-v1-controller.php'
2740
  ),
2741
  'WC_REST_Report_Products_Totals_Controller' => array(
2742
- 'version' => 'dev-release/5.3',
2743
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-products-totals-controller.php'
2744
  ),
2745
  'WC_REST_Data_Countries_Controller' => array(
2746
- 'version' => 'dev-release/5.3',
2747
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-data-countries-controller.php'
2748
  ),
2749
  'WC_REST_Product_Attributes_Controller' => array(
2750
- 'version' => 'dev-release/5.3',
2751
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-attributes-controller.php'
2752
  ),
2753
  'WC_REST_Posts_Controller' => array(
2754
- 'version' => 'dev-release/5.3',
2755
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-posts-controller.php'
2756
  ),
2757
  'WC_REST_Order_Refunds_Controller' => array(
2758
- 'version' => 'dev-release/5.3',
2759
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-order-refunds-controller.php'
2760
  ),
2761
  'WC_REST_Product_Variations_Controller' => array(
2762
- 'version' => 'dev-release/5.3',
2763
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-variations-controller.php'
2764
  ),
2765
  'WC_REST_CRUD_Controller' => array(
2766
- 'version' => 'dev-release/5.3',
2767
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-crud-controller.php'
2768
  ),
2769
  'WC_REST_Controller' => array(
2770
- 'version' => 'dev-release/5.3',
2771
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-controller.php'
2772
  ),
2773
  'WC_REST_Customer_Downloads_Controller' => array(
2774
- 'version' => 'dev-release/5.3',
2775
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-customer-downloads-controller.php'
2776
  ),
2777
  'WC_REST_Data_Currencies_Controller' => array(
2778
- 'version' => 'dev-release/5.3',
2779
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-data-currencies-controller.php'
2780
  ),
2781
  'WC_REST_Shipping_Methods_Controller' => array(
2782
- 'version' => 'dev-release/5.3',
2783
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-methods-controller.php'
2784
  ),
2785
  'WC_REST_Products_Controller' => array(
2786
- 'version' => 'dev-release/5.3',
2787
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-products-controller.php'
2788
  ),
2789
  'WC_REST_Reports_Controller' => array(
2790
- 'version' => 'dev-release/5.3',
2791
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-reports-controller.php'
2792
  ),
2793
  'WC_REST_Settings_Controller' => array(
2794
- 'version' => 'dev-release/5.3',
2795
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-settings-controller.php'
2796
  ),
2797
  'WC_REST_Report_Orders_Totals_Controller' => array(
2798
- 'version' => 'dev-release/5.3',
2799
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-orders-totals-controller.php'
2800
  ),
2801
  'WC_REST_Product_Tags_Controller' => array(
2802
- 'version' => 'dev-release/5.3',
2803
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-tags-controller.php'
2804
  ),
2805
  'WC_REST_System_Status_Tools_Controller' => array(
2806
- 'version' => 'dev-release/5.3',
2807
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-system-status-tools-controller.php'
2808
  ),
2809
  'WC_REST_Product_Categories_Controller' => array(
2810
- 'version' => 'dev-release/5.3',
2811
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-categories-controller.php'
2812
  ),
2813
  'WC_REST_Report_Reviews_Totals_Controller' => array(
2814
- 'version' => 'dev-release/5.3',
2815
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-reviews-totals-controller.php'
2816
  ),
2817
  'WC_REST_Data_Continents_Controller' => array(
2818
- 'version' => 'dev-release/5.3',
2819
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-data-continents-controller.php'
2820
  ),
2821
  'WC_REST_Orders_Controller' => array(
2822
- 'version' => 'dev-release/5.3',
2823
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-orders-controller.php'
2824
  ),
2825
  'WC_REST_Taxes_Controller' => array(
2826
- 'version' => 'dev-release/5.3',
2827
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-taxes-controller.php'
2828
  ),
2829
  'WC_REST_Shipping_Zones_Controller_Base' => array(
2830
- 'version' => 'dev-release/5.3',
2831
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zones-controller-base.php'
2832
  ),
2833
  'WC_REST_Data_Controller' => array(
2834
- 'version' => 'dev-release/5.3',
2835
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-data-controller.php'
2836
  ),
2837
  'WC_REST_Shipping_Zone_Locations_Controller' => array(
2838
- 'version' => 'dev-release/5.3',
2839
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zone-locations-controller.php'
2840
  ),
2841
  'WC_REST_Report_Sales_Controller' => array(
2842
- 'version' => 'dev-release/5.3',
2843
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-sales-controller.php'
2844
  ),
2845
  'WC_REST_Tax_Classes_Controller' => array(
2846
- 'version' => 'dev-release/5.3',
2847
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-tax-classes-controller.php'
2848
  ),
2849
  'WC_REST_Webhooks_Controller' => array(
2850
- 'version' => 'dev-release/5.3',
2851
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-webhooks-controller.php'
2852
  ),
2853
  'WC_REST_Terms_Controller' => array(
2854
- 'version' => 'dev-release/5.3',
2855
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-terms-controller.php'
2856
  ),
2857
  'WC_REST_Network_Orders_Controller' => array(
2858
- 'version' => 'dev-release/5.3',
2859
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-network-orders-controller.php'
2860
  ),
2861
  'WC_REST_Product_Attribute_Terms_Controller' => array(
2862
- 'version' => 'dev-release/5.3',
2863
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-attribute-terms-controller.php'
2864
  ),
2865
  'WC_REST_Customers_Controller' => array(
2866
- 'version' => 'dev-release/5.3',
2867
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-customers-controller.php'
2868
  ),
2869
  'WC_REST_Report_Top_Sellers_Controller' => array(
2870
- 'version' => 'dev-release/5.3',
2871
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-top-sellers-controller.php'
2872
  ),
2873
  'WC_REST_Coupons_Controller' => array(
2874
- 'version' => 'dev-release/5.3',
2875
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-coupons-controller.php'
2876
  ),
2877
  'WC_REST_Shipping_Zones_Controller' => array(
2878
- 'version' => 'dev-release/5.3',
2879
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zones-controller.php'
2880
  ),
2881
  'WC_REST_Shipping_Zone_Methods_Controller' => array(
2882
- 'version' => 'dev-release/5.3',
2883
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zone-methods-controller.php'
2884
  ),
2885
  'WC_REST_System_Status_Controller' => array(
2886
- 'version' => 'dev-release/5.3',
2887
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-system-status-controller.php'
2888
  ),
2889
  'WC_REST_Product_Reviews_Controller' => array(
2890
- 'version' => 'dev-release/5.3',
2891
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-reviews-controller.php'
2892
  ),
2893
  'WC_REST_Product_Shipping_Classes_Controller' => array(
2894
- 'version' => 'dev-release/5.3',
2895
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-shipping-classes-controller.php'
2896
  ),
2897
  'WC_REST_Setting_Options_Controller' => array(
2898
- 'version' => 'dev-release/5.3',
2899
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-setting-options-controller.php'
2900
  ),
2901
  'WC_REST_Report_Coupons_Totals_Controller' => array(
2902
- 'version' => 'dev-release/5.3',
2903
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-coupons-totals-controller.php'
2904
  ),
2905
  'WC_REST_Payment_Gateways_Controller' => array(
2906
- 'version' => 'dev-release/5.3',
2907
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-payment-gateways-controller.php'
2908
  ),
2909
  'WC_REST_Order_Notes_Controller' => array(
2910
- 'version' => 'dev-release/5.3',
2911
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-order-notes-controller.php'
2912
  ),
2913
  'WC_REST_Report_Customers_Totals_Controller' => array(
2914
- 'version' => 'dev-release/5.3',
2915
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-customers-totals-controller.php'
2916
  ),
2917
  'WC_REST_Product_Categories_V2_Controller' => array(
2918
- 'version' => 'dev-release/5.3',
2919
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-categories-v2-controller.php'
2920
  ),
2921
  'WC_REST_Shipping_Zone_Locations_V2_Controller' => array(
2922
- 'version' => 'dev-release/5.3',
2923
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-zone-locations-v2-controller.php'
2924
  ),
2925
  'WC_REST_Shipping_Zones_V2_Controller' => array(
2926
- 'version' => 'dev-release/5.3',
2927
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-zones-v2-controller.php'
2928
  ),
2929
  'WC_REST_Coupons_V2_Controller' => array(
2930
- 'version' => 'dev-release/5.3',
2931
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-coupons-v2-controller.php'
2932
  ),
2933
  'WC_REST_Taxes_V2_Controller' => array(
2934
- 'version' => 'dev-release/5.3',
2935
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-taxes-v2-controller.php'
2936
  ),
2937
  'WC_REST_Product_Variations_V2_Controller' => array(
2938
- 'version' => 'dev-release/5.3',
2939
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-variations-v2-controller.php'
2940
  ),
2941
  'WC_REST_Tax_Classes_V2_Controller' => array(
2942
- 'version' => 'dev-release/5.3',
2943
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-tax-classes-v2-controller.php'
2944
  ),
2945
  'WC_REST_Order_Refunds_V2_Controller' => array(
2946
- 'version' => 'dev-release/5.3',
2947
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-order-refunds-v2-controller.php'
2948
  ),
2949
  'WC_REST_Webhook_Deliveries_V2_Controller' => array(
2950
- 'version' => 'dev-release/5.3',
2951
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-webhook-deliveries-v2-controller.php'
2952
  ),
2953
  'WC_REST_Product_Tags_V2_Controller' => array(
2954
- 'version' => 'dev-release/5.3',
2955
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-tags-v2-controller.php'
2956
  ),
2957
  'WC_REST_Product_Shipping_Classes_V2_Controller' => array(
2958
- 'version' => 'dev-release/5.3',
2959
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-shipping-classes-v2-controller.php'
2960
  ),
2961
  'WC_REST_Report_Top_Sellers_V2_Controller' => array(
2962
- 'version' => 'dev-release/5.3',
2963
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-report-top-sellers-v2-controller.php'
2964
  ),
2965
  'WC_REST_Products_V2_Controller' => array(
2966
- 'version' => 'dev-release/5.3',
2967
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-products-v2-controller.php'
2968
  ),
2969
  'WC_REST_System_Status_Tools_V2_Controller' => array(
2970
- 'version' => 'dev-release/5.3',
2971
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-system-status-tools-v2-controller.php'
2972
  ),
2973
  'WC_REST_Shipping_Zone_Methods_V2_Controller' => array(
2974
- 'version' => 'dev-release/5.3',
2975
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-zone-methods-v2-controller.php'
2976
  ),
2977
  'WC_REST_Network_Orders_V2_Controller' => array(
2978
- 'version' => 'dev-release/5.3',
2979
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-network-orders-v2-controller.php'
2980
  ),
2981
  'WC_REST_Customers_V2_Controller' => array(
2982
- 'version' => 'dev-release/5.3',
2983
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-customers-v2-controller.php'
2984
  ),
2985
  'WC_REST_Setting_Options_V2_Controller' => array(
2986
- 'version' => 'dev-release/5.3',
2987
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-setting-options-v2-controller.php'
2988
  ),
2989
  'WC_REST_Product_Reviews_V2_Controller' => array(
2990
- 'version' => 'dev-release/5.3',
2991
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-reviews-v2-controller.php'
2992
  ),
2993
  'WC_REST_System_Status_V2_Controller' => array(
2994
- 'version' => 'dev-release/5.3',
2995
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-system-status-v2-controller.php'
2996
  ),
2997
  'WC_REST_Webhooks_V2_Controller' => array(
2998
- 'version' => 'dev-release/5.3',
2999
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-webhooks-v2-controller.php'
3000
  ),
3001
  'WC_REST_Product_Attributes_V2_Controller' => array(
3002
- 'version' => 'dev-release/5.3',
3003
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-attributes-v2-controller.php'
3004
  ),
3005
  'WC_REST_Payment_Gateways_V2_Controller' => array(
3006
- 'version' => 'dev-release/5.3',
3007
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-payment-gateways-v2-controller.php'
3008
  ),
3009
  'WC_REST_Settings_V2_Controller' => array(
3010
- 'version' => 'dev-release/5.3',
3011
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-settings-v2-controller.php'
3012
  ),
3013
  'WC_REST_Shipping_Methods_V2_Controller' => array(
3014
- 'version' => 'dev-release/5.3',
3015
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-methods-v2-controller.php'
3016
  ),
3017
  'WC_REST_Reports_V2_Controller' => array(
3018
- 'version' => 'dev-release/5.3',
3019
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-reports-v2-controller.php'
3020
  ),
3021
  'WC_REST_Report_Sales_V2_Controller' => array(
3022
- 'version' => 'dev-release/5.3',
3023
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-report-sales-v2-controller.php'
3024
  ),
3025
  'WC_REST_Orders_V2_Controller' => array(
3026
- 'version' => 'dev-release/5.3',
3027
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-orders-v2-controller.php'
3028
  ),
3029
  'WC_REST_Product_Attribute_Terms_V2_Controller' => array(
3030
- 'version' => 'dev-release/5.3',
3031
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-attribute-terms-v2-controller.php'
3032
  ),
3033
  'WC_REST_Customer_Downloads_V2_Controller' => array(
3034
- 'version' => 'dev-release/5.3',
3035
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-customer-downloads-v2-controller.php'
3036
  ),
3037
  'WC_REST_Order_Notes_V2_Controller' => array(
3038
- 'version' => 'dev-release/5.3',
3039
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-order-notes-v2-controller.php'
3040
  ),
3041
  'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\QueueHelper' => array(
3042
- 'version' => 'dev-release/5.3',
3043
  'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/QueueHelper.php'
3044
  ),
3045
  'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\CustomerHelper' => array(
3046
- 'version' => 'dev-release/5.3',
3047
  'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/CustomerHelper.php'
3048
  ),
3049
  'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\OrderHelper' => array(
3050
- 'version' => 'dev-release/5.3',
3051
  'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/OrderHelper.php'
3052
  ),
3053
  'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\CouponHelper' => array(
3054
- 'version' => 'dev-release/5.3',
3055
  'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/CouponHelper.php'
3056
  ),
3057
  'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\SettingsHelper' => array(
3058
- 'version' => 'dev-release/5.3',
3059
  'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/SettingsHelper.php'
3060
  ),
3061
  'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\ShippingHelper' => array(
3062
- 'version' => 'dev-release/5.3',
3063
  'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/ShippingHelper.php'
3064
  ),
3065
  'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\AdminNotesHelper' => array(
3066
- 'version' => 'dev-release/5.3',
3067
  'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/AdminNotesHelper.php'
3068
  ),
3069
  'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\ProductHelper' => array(
3070
- 'version' => 'dev-release/5.3',
3071
  'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/ProductHelper.php'
3072
  ),
3073
  'Automattic\\Jetpack\\Constants' => array(
763
  'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MicroweberInstaller.php'
764
  ),
765
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\ContainerAwareTrait' => array(
766
+ 'version' => 'dev-trunk',
767
  'path' => $baseDir . '/lib/packages/League/Container/ContainerAwareTrait.php'
768
  ),
769
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Container' => array(
770
+ 'version' => 'dev-trunk',
771
  'path' => $baseDir . '/lib/packages/League/Container/Container.php'
772
  ),
773
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\RawArgument' => array(
774
+ 'version' => 'dev-trunk',
775
  'path' => $baseDir . '/lib/packages/League/Container/Argument/RawArgument.php'
776
  ),
777
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ClassNameWithOptionalValue' => array(
778
+ 'version' => 'dev-trunk',
779
  'path' => $baseDir . '/lib/packages/League/Container/Argument/ClassNameWithOptionalValue.php'
780
  ),
781
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ClassName' => array(
782
+ 'version' => 'dev-trunk',
783
  'path' => $baseDir . '/lib/packages/League/Container/Argument/ClassName.php'
784
  ),
785
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ArgumentResolverTrait' => array(
786
+ 'version' => 'dev-trunk',
787
  'path' => $baseDir . '/lib/packages/League/Container/Argument/ArgumentResolverTrait.php'
788
  ),
789
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ArgumentResolverInterface' => array(
790
+ 'version' => 'dev-trunk',
791
  'path' => $baseDir . '/lib/packages/League/Container/Argument/ArgumentResolverInterface.php'
792
  ),
793
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\RawArgumentInterface' => array(
794
+ 'version' => 'dev-trunk',
795
  'path' => $baseDir . '/lib/packages/League/Container/Argument/RawArgumentInterface.php'
796
  ),
797
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ClassNameInterface' => array(
798
+ 'version' => 'dev-trunk',
799
  'path' => $baseDir . '/lib/packages/League/Container/Argument/ClassNameInterface.php'
800
  ),
801
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Inflector\\InflectorAggregate' => array(
802
+ 'version' => 'dev-trunk',
803
  'path' => $baseDir . '/lib/packages/League/Container/Inflector/InflectorAggregate.php'
804
  ),
805
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Inflector\\InflectorAggregateInterface' => array(
806
+ 'version' => 'dev-trunk',
807
  'path' => $baseDir . '/lib/packages/League/Container/Inflector/InflectorAggregateInterface.php'
808
  ),
809
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Inflector\\InflectorInterface' => array(
810
+ 'version' => 'dev-trunk',
811
  'path' => $baseDir . '/lib/packages/League/Container/Inflector/InflectorInterface.php'
812
  ),
813
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Inflector\\Inflector' => array(
814
+ 'version' => 'dev-trunk',
815
  'path' => $baseDir . '/lib/packages/League/Container/Inflector/Inflector.php'
816
  ),
817
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\ServiceProviderAggregateInterface' => array(
818
+ 'version' => 'dev-trunk',
819
  'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/ServiceProviderAggregateInterface.php'
820
  ),
821
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\AbstractServiceProvider' => array(
822
+ 'version' => 'dev-trunk',
823
  'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/AbstractServiceProvider.php'
824
  ),
825
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\ServiceProviderAggregate' => array(
826
+ 'version' => 'dev-trunk',
827
  'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/ServiceProviderAggregate.php'
828
  ),
829
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\BootableServiceProviderInterface' => array(
830
+ 'version' => 'dev-trunk',
831
  'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/BootableServiceProviderInterface.php'
832
  ),
833
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\ServiceProviderInterface' => array(
834
+ 'version' => 'dev-trunk',
835
  'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/ServiceProviderInterface.php'
836
  ),
837
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Definition\\DefinitionAggregate' => array(
838
+ 'version' => 'dev-trunk',
839
  'path' => $baseDir . '/lib/packages/League/Container/Definition/DefinitionAggregate.php'
840
  ),
841
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Definition\\Definition' => array(
842
+ 'version' => 'dev-trunk',
843
  'path' => $baseDir . '/lib/packages/League/Container/Definition/Definition.php'
844
  ),
845
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Definition\\DefinitionAggregateInterface' => array(
846
+ 'version' => 'dev-trunk',
847
  'path' => $baseDir . '/lib/packages/League/Container/Definition/DefinitionAggregateInterface.php'
848
  ),
849
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Definition\\DefinitionInterface' => array(
850
+ 'version' => 'dev-trunk',
851
  'path' => $baseDir . '/lib/packages/League/Container/Definition/DefinitionInterface.php'
852
  ),
853
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\ReflectionContainer' => array(
854
+ 'version' => 'dev-trunk',
855
  'path' => $baseDir . '/lib/packages/League/Container/ReflectionContainer.php'
856
  ),
857
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Exception\\ContainerException' => array(
858
+ 'version' => 'dev-trunk',
859
  'path' => $baseDir . '/lib/packages/League/Container/Exception/ContainerException.php'
860
  ),
861
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Exception\\NotFoundException' => array(
862
+ 'version' => 'dev-trunk',
863
  'path' => $baseDir . '/lib/packages/League/Container/Exception/NotFoundException.php'
864
  ),
865
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\ContainerAwareInterface' => array(
866
+ 'version' => 'dev-trunk',
867
  'path' => $baseDir . '/lib/packages/League/Container/ContainerAwareInterface.php'
868
  ),
869
  'Automattic\\WooCommerce\\Tests\\Internal\\RestApiUtilTest' => array(
870
+ 'version' => 'dev-trunk',
871
  'path' => $baseDir . '/tests/php/src/Internal/RestApiUtilTest.php'
872
  ),
873
  'Automattic\\WooCommerce\\Tests\\Internal\\WCCom\\ConnectionHelperTest' => array(
874
+ 'version' => 'dev-trunk',
875
  'path' => $baseDir . '/tests/php/src/Internal/WCCom/ConnectionHelperTest.php'
876
  ),
877
  'Automattic\\WooCommerce\\Tests\\Internal\\DownloadPermissionsAdjusterTest' => array(
878
+ 'version' => 'dev-trunk',
879
  'path' => $baseDir . '/tests/php/src/Internal/DownloadPermissionsAdjusterTest.php'
880
  ),
881
  'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExtendedContainerTest' => array(
882
+ 'version' => 'dev-trunk',
883
  'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExtendedContainerTest.php'
884
  ),
885
  'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithScalarInjectionMethodArgument' => array(
886
+ 'version' => 'dev-trunk',
887
  'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithScalarInjectionMethodArgument.php'
888
  ),
889
  'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithDependencies' => array(
890
+ 'version' => 'dev-trunk',
891
  'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithDependencies.php'
892
  ),
893
  'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\DependencyClass' => array(
894
+ 'version' => 'dev-trunk',
895
  'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/DependencyClass.php'
896
  ),
897
  'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithPrivateInjectionMethod' => array(
898
+ 'version' => 'dev-trunk',
899
  'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithPrivateInjectionMethod.php'
900
  ),
901
  'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithNonFinalInjectionMethod' => array(
902
+ 'version' => 'dev-trunk',
903
  'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithNonFinalInjectionMethod.php'
904
  ),
905
  'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithInjectionMethodArgumentWithoutTypeHint' => array(
906
+ 'version' => 'dev-trunk',
907
  'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithInjectionMethodArgumentWithoutTypeHint.php'
908
  ),
909
  'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\AbstractServiceProviderTest' => array(
910
+ 'version' => 'dev-trunk',
911
  'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/AbstractServiceProviderTest.php'
912
  ),
913
  'Automattic\\WooCommerce\\Tests\\Utilities\\StringUtilTest' => array(
914
+ 'version' => 'dev-trunk',
915
  'path' => $baseDir . '/tests/php/src/Utilities/StringUtilTest.php'
916
  ),
917
  'Automattic\\WooCommerce\\Tests\\Utilities\\NumberUtilTest' => array(
918
+ 'version' => 'dev-trunk',
919
  'path' => $baseDir . '/tests/php/src/Utilities/NumberUtilTest.php'
920
  ),
921
  'Automattic\\WooCommerce\\Tests\\Proxies\\LegacyProxyTest' => array(
922
+ 'version' => 'dev-trunk',
923
  'path' => $baseDir . '/tests/php/src/Proxies/LegacyProxyTest.php'
924
  ),
925
  'Automattic\\WooCommerce\\Tests\\Proxies\\ExampleClasses\\ClassThatDependsOnLegacyCode' => array(
926
+ 'version' => 'dev-trunk',
927
  'path' => $baseDir . '/tests/php/src/Proxies/ExampleClasses/ClassThatDependsOnLegacyCode.php'
928
  ),
929
  'Automattic\\WooCommerce\\Tests\\Proxies\\MockableLegacyProxyTest' => array(
930
+ 'version' => 'dev-trunk',
931
  'path' => $baseDir . '/tests/php/src/Proxies/MockableLegacyProxyTest.php'
932
  ),
933
  'Automattic\\WooCommerce\\Tests\\Proxies\\ClassThatDependsOnLegacyCodeTest' => array(
934
+ 'version' => 'dev-trunk',
935
  'path' => $baseDir . '/tests/php/src/Proxies/ClassThatDependsOnLegacyCodeTest.php'
936
  ),
937
  'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\CodeHackerTestHook' => array(
938
+ 'version' => 'dev-trunk',
939
  'path' => $baseDir . '/tests/Tools/CodeHacking/CodeHackerTestHook.php'
940
  ),
941
  'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\CodeHacker' => array(
942
+ 'version' => 'dev-trunk',
943
  'path' => $baseDir . '/tests/Tools/CodeHacking/CodeHacker.php'
944
  ),
945
  'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\Hacks\\BypassFinalsHack' => array(
946
+ 'version' => 'dev-trunk',
947
  'path' => $baseDir . '/tests/Tools/CodeHacking/Hacks/BypassFinalsHack.php'
948
  ),
949
  'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\Hacks\\StaticMockerHack' => array(
950
+ 'version' => 'dev-trunk',
951
  'path' => $baseDir . '/tests/Tools/CodeHacking/Hacks/StaticMockerHack.php'
952
  ),
953
  'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\Hacks\\FunctionsMockerHack' => array(
954
+ 'version' => 'dev-trunk',
955
  'path' => $baseDir . '/tests/Tools/CodeHacking/Hacks/FunctionsMockerHack.php'
956
  ),
957
  'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\Hacks\\CodeHack' => array(
958
+ 'version' => 'dev-trunk',
959
  'path' => $baseDir . '/tests/Tools/CodeHacking/Hacks/CodeHack.php'
960
  ),
961
  'Automattic\\WooCommerce\\Testing\\Tools\\DependencyManagement\\DependencyManagementTestHook' => array(
962
+ 'version' => 'dev-trunk',
963
  'path' => $baseDir . '/tests/Tools/DependencyManagement/DependencyManagementTestHook.php'
964
  ),
965
  'Automattic\\WooCommerce\\Testing\\Tools\\DependencyManagement\\MockableLegacyProxy' => array(
966
+ 'version' => 'dev-trunk',
967
  'path' => $baseDir . '/tests/Tools/DependencyManagement/MockableLegacyProxy.php'
968
  ),
969
  'Automattic\\WooCommerce\\Blocks\\Payments\\PaymentResult' => array(
2551
  'path' => $baseDir . '/packages/woocommerce-admin/src/Schedulers/CustomersScheduler.php'
2552
  ),
2553
  'Automattic\\WooCommerce\\Container' => array(
2554
+ 'version' => 'dev-trunk',
2555
  'path' => $baseDir . '/src/Container.php'
2556
  ),
2557
  'Automattic\\WooCommerce\\Internal\\RestApiUtil' => array(
2558
+ 'version' => 'dev-trunk',
2559
  'path' => $baseDir . '/src/Internal/RestApiUtil.php'
2560
  ),
2561
  'Automattic\\WooCommerce\\Internal\\DownloadPermissionsAdjuster' => array(
2562
+ 'version' => 'dev-trunk',
2563
  'path' => $baseDir . '/src/Internal/DownloadPermissionsAdjuster.php'
2564
  ),
2565
  'Automattic\\WooCommerce\\Internal\\WCCom\\ConnectionHelper' => array(
2566
+ 'version' => 'dev-trunk',
2567
  'path' => $baseDir . '/src/Internal/WCCom/ConnectionHelper.php'
2568
  ),
2569
  'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ContainerException' => array(
2570
+ 'version' => 'dev-trunk',
2571
  'path' => $baseDir . '/src/Internal/DependencyManagement/ContainerException.php'
2572
  ),
2573
  'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ExtendedContainer' => array(
2574
+ 'version' => 'dev-trunk',
2575
  'path' => $baseDir . '/src/Internal/DependencyManagement/ExtendedContainer.php'
2576
  ),
2577
  'Automattic\\WooCommerce\\Internal\\DependencyManagement\\AbstractServiceProvider' => array(
2578
+ 'version' => 'dev-trunk',
2579
  'path' => $baseDir . '/src/Internal/DependencyManagement/AbstractServiceProvider.php'
2580
  ),
2581
  'Automattic\\WooCommerce\\Internal\\DependencyManagement\\Definition' => array(
2582
+ 'version' => 'dev-trunk',
2583
  'path' => $baseDir . '/src/Internal/DependencyManagement/Definition.php'
2584
  ),
2585
  'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\ProxiesServiceProvider' => array(
2586
+ 'version' => 'dev-trunk',
2587
  'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/ProxiesServiceProvider.php'
2588
  ),
2589
  'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\DownloadPermissionsAdjusterServiceProvider' => array(
2590
+ 'version' => 'dev-trunk',
2591
  'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/DownloadPermissionsAdjusterServiceProvider.php'
2592
  ),
2593
  'Automattic\\WooCommerce\\Checkout\\Helpers\\ReserveStock' => array(
2594
+ 'version' => 'dev-trunk',
2595
  'path' => $baseDir . '/src/Checkout/Helpers/ReserveStock.php'
2596
  ),
2597
  'Automattic\\WooCommerce\\Checkout\\Helpers\\ReserveStockException' => array(
2598
+ 'version' => 'dev-trunk',
2599
  'path' => $baseDir . '/src/Checkout/Helpers/ReserveStockException.php'
2600
  ),
2601
  'Automattic\\WooCommerce\\Packages' => array(
2602
+ 'version' => 'dev-trunk',
2603
  'path' => $baseDir . '/src/Packages.php'
2604
  ),
2605
  'Automattic\\WooCommerce\\Utilities\\StringUtil' => array(
2606
+ 'version' => 'dev-trunk',
2607
  'path' => $baseDir . '/src/Utilities/StringUtil.php'
2608
  ),
2609
  'Automattic\\WooCommerce\\Utilities\\NumberUtil' => array(
2610
+ 'version' => 'dev-trunk',
2611
  'path' => $baseDir . '/src/Utilities/NumberUtil.php'
2612
  ),
2613
  'Automattic\\WooCommerce\\Proxies\\ActionsProxy' => array(
2614
+ 'version' => 'dev-trunk',
2615
  'path' => $baseDir . '/src/Proxies/ActionsProxy.php'
2616
  ),
2617
  'Automattic\\WooCommerce\\Proxies\\LegacyProxy' => array(
2618
+ 'version' => 'dev-trunk',
2619
  'path' => $baseDir . '/src/Proxies/LegacyProxy.php'
2620
  ),
2621
  'Automattic\\WooCommerce\\Autoloader' => array(
2622
+ 'version' => 'dev-trunk',
2623
  'path' => $baseDir . '/src/Autoloader.php'
2624
  ),
2625
  'Automattic\\Jetpack\\Autoloader\\AutoloadGenerator' => array(
2643
  'path' => $vendorDir . '/automattic/jetpack-autoloader/src/ManifestGenerator.php'
2644
  ),
2645
  'Automattic\\WooCommerce\\RestApi\\Server' => array(
2646
+ 'version' => 'dev-trunk',
2647
  'path' => $baseDir . '/includes/rest-api/Server.php'
2648
  ),
2649
  'Automattic\\WooCommerce\\RestApi\\Package' => array(
2650
+ 'version' => 'dev-trunk',
2651
  'path' => $baseDir . '/includes/rest-api/Package.php'
2652
  ),
2653
  'Automattic\\WooCommerce\\RestApi\\Utilities\\SingletonTrait' => array(
2654
+ 'version' => 'dev-trunk',
2655
  'path' => $baseDir . '/includes/rest-api/Utilities/SingletonTrait.php'
2656
  ),
2657
  'Automattic\\WooCommerce\\RestApi\\Utilities\\ImageAttachment' => array(
2658
+ 'version' => 'dev-trunk',
2659
  'path' => $baseDir . '/includes/rest-api/Utilities/ImageAttachment.php'
2660
  ),
2661
  'WC_REST_Tax_Classes_V1_Controller' => array(
2662
+ 'version' => 'dev-trunk',
2663
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-tax-classes-v1-controller.php'
2664
  ),
2665
  'WC_REST_Webhook_Deliveries_V1_Controller' => array(
2666
+ 'version' => 'dev-trunk',
2667
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-webhook-deliveries-v1-controller.php'
2668
  ),
2669
  'WC_REST_Order_Refunds_V1_Controller' => array(
2670
+ 'version' => 'dev-trunk',
2671
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-order-refunds-v1-controller.php'
2672
  ),
2673
  'WC_REST_Product_Tags_V1_Controller' => array(
2674
+ 'version' => 'dev-trunk',
2675
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-tags-v1-controller.php'
2676
  ),
2677
  'WC_REST_Product_Categories_V1_Controller' => array(
2678
+ 'version' => 'dev-trunk',
2679
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-categories-v1-controller.php'
2680
  ),
2681
  'WC_REST_Coupons_V1_Controller' => array(
2682
+ 'version' => 'dev-trunk',
2683
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-coupons-v1-controller.php'
2684
  ),
2685
  'WC_REST_Taxes_V1_Controller' => array(
2686
+ 'version' => 'dev-trunk',
2687
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-taxes-v1-controller.php'
2688
  ),
2689
  'WC_REST_Product_Attributes_V1_Controller' => array(
2690
+ 'version' => 'dev-trunk',
2691
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-attributes-v1-controller.php'
2692
  ),
2693
  'WC_REST_Webhooks_V1_Controller' => array(
2694
+ 'version' => 'dev-trunk',
2695
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-webhooks-v1-controller.php'
2696
  ),
2697
  'WC_REST_Orders_V1_Controller' => array(
2698
+ 'version' => 'dev-trunk',
2699
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-orders-v1-controller.php'
2700
  ),
2701
  'WC_REST_Reports_V1_Controller' => array(
2702
+ 'version' => 'dev-trunk',
2703
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-reports-v1-controller.php'
2704
  ),
2705
  'WC_REST_Report_Sales_V1_Controller' => array(
2706
+ 'version' => 'dev-trunk',
2707
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-report-sales-v1-controller.php'
2708
  ),
2709
  'WC_REST_Order_Notes_V1_Controller' => array(
2710
+ 'version' => 'dev-trunk',
2711
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-order-notes-v1-controller.php'
2712
  ),
2713
  'WC_REST_Customer_Downloads_V1_Controller' => array(
2714
+ 'version' => 'dev-trunk',
2715
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-customer-downloads-v1-controller.php'
2716
  ),
2717
  'WC_REST_Product_Attribute_Terms_V1_Controller' => array(
2718
+ 'version' => 'dev-trunk',
2719
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-attribute-terms-v1-controller.php'
2720
  ),
2721
  'WC_REST_Report_Top_Sellers_V1_Controller' => array(
2722
+ 'version' => 'dev-trunk',
2723
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-report-top-sellers-v1-controller.php'
2724
  ),
2725
  'WC_REST_Product_Shipping_Classes_V1_Controller' => array(
2726
+ 'version' => 'dev-trunk',
2727
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-shipping-classes-v1-controller.php'
2728
  ),
2729
  'WC_REST_Products_V1_Controller' => array(
2730
+ 'version' => 'dev-trunk',
2731
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-products-v1-controller.php'
2732
  ),
2733
  'WC_REST_Product_Reviews_V1_Controller' => array(
2734
+ 'version' => 'dev-trunk',
2735
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-reviews-v1-controller.php'
2736
  ),
2737
  'WC_REST_Customers_V1_Controller' => array(
2738
+ 'version' => 'dev-trunk',
2739
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-customers-v1-controller.php'
2740
  ),
2741
  'WC_REST_Report_Products_Totals_Controller' => array(
2742
+ 'version' => 'dev-trunk',
2743
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-products-totals-controller.php'
2744
  ),
2745
  'WC_REST_Data_Countries_Controller' => array(
2746
+ 'version' => 'dev-trunk',
2747
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-data-countries-controller.php'
2748
  ),
2749
  'WC_REST_Product_Attributes_Controller' => array(
2750
+ 'version' => 'dev-trunk',
2751
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-attributes-controller.php'
2752
  ),
2753
  'WC_REST_Posts_Controller' => array(
2754
+ 'version' => 'dev-trunk',
2755
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-posts-controller.php'
2756
  ),
2757
  'WC_REST_Order_Refunds_Controller' => array(
2758
+ 'version' => 'dev-trunk',
2759
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-order-refunds-controller.php'
2760
  ),
2761
  'WC_REST_Product_Variations_Controller' => array(
2762
+ 'version' => 'dev-trunk',
2763
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-variations-controller.php'
2764
  ),
2765
  'WC_REST_CRUD_Controller' => array(
2766
+ 'version' => 'dev-trunk',
2767
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-crud-controller.php'
2768
  ),
2769
  'WC_REST_Controller' => array(
2770
+ 'version' => 'dev-trunk',
2771
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-controller.php'
2772
  ),
2773
  'WC_REST_Customer_Downloads_Controller' => array(
2774
+ 'version' => 'dev-trunk',
2775
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-customer-downloads-controller.php'
2776
  ),
2777
  'WC_REST_Data_Currencies_Controller' => array(
2778
+ 'version' => 'dev-trunk',
2779
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-data-currencies-controller.php'
2780
  ),
2781
  'WC_REST_Shipping_Methods_Controller' => array(
2782
+ 'version' => 'dev-trunk',
2783
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-methods-controller.php'
2784
  ),
2785
  'WC_REST_Products_Controller' => array(
2786
+ 'version' => 'dev-trunk',
2787
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-products-controller.php'
2788
  ),
2789
  'WC_REST_Reports_Controller' => array(
2790
+ 'version' => 'dev-trunk',
2791
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-reports-controller.php'
2792
  ),
2793
  'WC_REST_Settings_Controller' => array(
2794
+ 'version' => 'dev-trunk',
2795
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-settings-controller.php'
2796
  ),
2797
  'WC_REST_Report_Orders_Totals_Controller' => array(
2798
+ 'version' => 'dev-trunk',
2799
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-orders-totals-controller.php'
2800
  ),
2801
  'WC_REST_Product_Tags_Controller' => array(
2802
+ 'version' => 'dev-trunk',
2803
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-tags-controller.php'
2804
  ),
2805
  'WC_REST_System_Status_Tools_Controller' => array(
2806
+ 'version' => 'dev-trunk',
2807
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-system-status-tools-controller.php'
2808
  ),
2809
  'WC_REST_Product_Categories_Controller' => array(
2810
+ 'version' => 'dev-trunk',
2811
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-categories-controller.php'
2812
  ),
2813
  'WC_REST_Report_Reviews_Totals_Controller' => array(
2814
+ 'version' => 'dev-trunk',
2815
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-reviews-totals-controller.php'
2816
  ),
2817
  'WC_REST_Data_Continents_Controller' => array(
2818
+ 'version' => 'dev-trunk',
2819
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-data-continents-controller.php'
2820
  ),
2821
  'WC_REST_Orders_Controller' => array(
2822
+ 'version' => 'dev-trunk',
2823
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-orders-controller.php'
2824
  ),
2825
  'WC_REST_Taxes_Controller' => array(
2826
+ 'version' => 'dev-trunk',
2827
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-taxes-controller.php'
2828
  ),
2829
  'WC_REST_Shipping_Zones_Controller_Base' => array(
2830
+ 'version' => 'dev-trunk',
2831
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zones-controller-base.php'
2832
  ),
2833
  'WC_REST_Data_Controller' => array(
2834
+ 'version' => 'dev-trunk',
2835
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-data-controller.php'
2836
  ),
2837
  'WC_REST_Shipping_Zone_Locations_Controller' => array(
2838
+ 'version' => 'dev-trunk',
2839
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zone-locations-controller.php'
2840
  ),
2841
  'WC_REST_Report_Sales_Controller' => array(
2842
+ 'version' => 'dev-trunk',
2843
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-sales-controller.php'
2844
  ),
2845
  'WC_REST_Tax_Classes_Controller' => array(
2846
+ 'version' => 'dev-trunk',
2847
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-tax-classes-controller.php'
2848
  ),
2849
  'WC_REST_Webhooks_Controller' => array(
2850
+ 'version' => 'dev-trunk',
2851
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-webhooks-controller.php'
2852
  ),
2853
  'WC_REST_Terms_Controller' => array(
2854
+ 'version' => 'dev-trunk',
2855
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-terms-controller.php'
2856
  ),
2857
  'WC_REST_Network_Orders_Controller' => array(
2858
+ 'version' => 'dev-trunk',
2859
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-network-orders-controller.php'
2860
  ),
2861
  'WC_REST_Product_Attribute_Terms_Controller' => array(
2862
+ 'version' => 'dev-trunk',
2863
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-attribute-terms-controller.php'
2864
  ),
2865
  'WC_REST_Customers_Controller' => array(
2866
+ 'version' => 'dev-trunk',
2867
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-customers-controller.php'
2868
  ),
2869
  'WC_REST_Report_Top_Sellers_Controller' => array(
2870
+ 'version' => 'dev-trunk',
2871
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-top-sellers-controller.php'
2872
  ),
2873
  'WC_REST_Coupons_Controller' => array(
2874
+ 'version' => 'dev-trunk',
2875
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-coupons-controller.php'
2876
  ),
2877
  'WC_REST_Shipping_Zones_Controller' => array(
2878
+ 'version' => 'dev-trunk',
2879
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zones-controller.php'
2880
  ),
2881
  'WC_REST_Shipping_Zone_Methods_Controller' => array(
2882
+ 'version' => 'dev-trunk',
2883
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zone-methods-controller.php'
2884
  ),
2885
  'WC_REST_System_Status_Controller' => array(
2886
+ 'version' => 'dev-trunk',
2887
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-system-status-controller.php'
2888
  ),
2889
  'WC_REST_Product_Reviews_Controller' => array(
2890
+ 'version' => 'dev-trunk',
2891
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-reviews-controller.php'
2892
  ),
2893
  'WC_REST_Product_Shipping_Classes_Controller' => array(
2894
+ 'version' => 'dev-trunk',
2895
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-shipping-classes-controller.php'
2896
  ),
2897
  'WC_REST_Setting_Options_Controller' => array(
2898
+ 'version' => 'dev-trunk',
2899
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-setting-options-controller.php'
2900
  ),
2901
  'WC_REST_Report_Coupons_Totals_Controller' => array(
2902
+ 'version' => 'dev-trunk',
2903
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-coupons-totals-controller.php'
2904
  ),
2905
  'WC_REST_Payment_Gateways_Controller' => array(
2906
+ 'version' => 'dev-trunk',
2907
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-payment-gateways-controller.php'
2908
  ),
2909
  'WC_REST_Order_Notes_Controller' => array(
2910
+ 'version' => 'dev-trunk',
2911
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-order-notes-controller.php'
2912
  ),
2913
  'WC_REST_Report_Customers_Totals_Controller' => array(
2914
+ 'version' => 'dev-trunk',
2915
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-customers-totals-controller.php'
2916
  ),
2917
  'WC_REST_Product_Categories_V2_Controller' => array(
2918
+ 'version' => 'dev-trunk',
2919
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-categories-v2-controller.php'
2920
  ),
2921
  'WC_REST_Shipping_Zone_Locations_V2_Controller' => array(
2922
+ 'version' => 'dev-trunk',
2923
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-zone-locations-v2-controller.php'
2924
  ),
2925
  'WC_REST_Shipping_Zones_V2_Controller' => array(
2926
+ 'version' => 'dev-trunk',
2927
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-zones-v2-controller.php'
2928
  ),
2929
  'WC_REST_Coupons_V2_Controller' => array(
2930
+ 'version' => 'dev-trunk',
2931
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-coupons-v2-controller.php'
2932
  ),
2933
  'WC_REST_Taxes_V2_Controller' => array(
2934
+ 'version' => 'dev-trunk',
2935
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-taxes-v2-controller.php'
2936
  ),
2937
  'WC_REST_Product_Variations_V2_Controller' => array(
2938
+ 'version' => 'dev-trunk',
2939
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-variations-v2-controller.php'
2940
  ),
2941
  'WC_REST_Tax_Classes_V2_Controller' => array(
2942
+ 'version' => 'dev-trunk',
2943
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-tax-classes-v2-controller.php'
2944
  ),
2945
  'WC_REST_Order_Refunds_V2_Controller' => array(
2946
+ 'version' => 'dev-trunk',
2947
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-order-refunds-v2-controller.php'
2948
  ),
2949
  'WC_REST_Webhook_Deliveries_V2_Controller' => array(
2950
+ 'version' => 'dev-trunk',
2951
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-webhook-deliveries-v2-controller.php'
2952
  ),
2953
  'WC_REST_Product_Tags_V2_Controller' => array(
2954
+ 'version' => 'dev-trunk',
2955
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-tags-v2-controller.php'
2956
  ),
2957
  'WC_REST_Product_Shipping_Classes_V2_Controller' => array(
2958
+ 'version' => 'dev-trunk',
2959
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-shipping-classes-v2-controller.php'
2960
  ),
2961
  'WC_REST_Report_Top_Sellers_V2_Controller' => array(
2962
+ 'version' => 'dev-trunk',
2963
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-report-top-sellers-v2-controller.php'
2964
  ),
2965
  'WC_REST_Products_V2_Controller' => array(
2966
+ 'version' => 'dev-trunk',
2967
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-products-v2-controller.php'
2968
  ),
2969
  'WC_REST_System_Status_Tools_V2_Controller' => array(
2970
+ 'version' => 'dev-trunk',
2971
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-system-status-tools-v2-controller.php'
2972
  ),
2973
  'WC_REST_Shipping_Zone_Methods_V2_Controller' => array(
2974
+ 'version' => 'dev-trunk',
2975
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-zone-methods-v2-controller.php'
2976
  ),
2977
  'WC_REST_Network_Orders_V2_Controller' => array(
2978
+ 'version' => 'dev-trunk',
2979
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-network-orders-v2-controller.php'
2980
  ),
2981
  'WC_REST_Customers_V2_Controller' => array(
2982
+ 'version' => 'dev-trunk',
2983
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-customers-v2-controller.php'
2984
  ),
2985
  'WC_REST_Setting_Options_V2_Controller' => array(
2986
+ 'version' => 'dev-trunk',
2987
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-setting-options-v2-controller.php'
2988
  ),
2989
  'WC_REST_Product_Reviews_V2_Controller' => array(
2990
+ 'version' => 'dev-trunk',
2991
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-reviews-v2-controller.php'
2992
  ),
2993
  'WC_REST_System_Status_V2_Controller' => array(
2994
+ 'version' => 'dev-trunk',
2995
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-system-status-v2-controller.php'
2996
  ),
2997
  'WC_REST_Webhooks_V2_Controller' => array(
2998
+ 'version' => 'dev-trunk',
2999
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-webhooks-v2-controller.php'
3000
  ),
3001
  'WC_REST_Product_Attributes_V2_Controller' => array(
3002
+ 'version' => 'dev-trunk',
3003
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-attributes-v2-controller.php'
3004
  ),
3005
  'WC_REST_Payment_Gateways_V2_Controller' => array(
3006
+ 'version' => 'dev-trunk',
3007
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-payment-gateways-v2-controller.php'
3008
  ),
3009
  'WC_REST_Settings_V2_Controller' => array(
3010
+ 'version' => 'dev-trunk',
3011
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-settings-v2-controller.php'
3012
  ),
3013
  'WC_REST_Shipping_Methods_V2_Controller' => array(
3014
+ 'version' => 'dev-trunk',
3015
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-methods-v2-controller.php'
3016
  ),
3017
  'WC_REST_Reports_V2_Controller' => array(
3018
+ 'version' => 'dev-trunk',
3019
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-reports-v2-controller.php'
3020
  ),
3021
  'WC_REST_Report_Sales_V2_Controller' => array(
3022
+ 'version' => 'dev-trunk',
3023
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-report-sales-v2-controller.php'
3024
  ),
3025
  'WC_REST_Orders_V2_Controller' => array(
3026
+ 'version' => 'dev-trunk',
3027
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-orders-v2-controller.php'
3028
  ),
3029
  'WC_REST_Product_Attribute_Terms_V2_Controller' => array(
3030
+ 'version' => 'dev-trunk',
3031
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-attribute-terms-v2-controller.php'
3032
  ),
3033
  'WC_REST_Customer_Downloads_V2_Controller' => array(
3034
+ 'version' => 'dev-trunk',
3035
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-customer-downloads-v2-controller.php'
3036
  ),
3037
  'WC_REST_Order_Notes_V2_Controller' => array(
3038
+ 'version' => 'dev-trunk',
3039
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-order-notes-v2-controller.php'
3040
  ),
3041
  'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\QueueHelper' => array(
3042
+ 'version' => 'dev-trunk',
3043
  'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/QueueHelper.php'
3044
  ),
3045
  'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\CustomerHelper' => array(
3046
+ 'version' => 'dev-trunk',
3047
  'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/CustomerHelper.php'
3048
  ),
3049
  'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\OrderHelper' => array(
3050
+ 'version' => 'dev-trunk',
3051
  'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/OrderHelper.php'
3052
  ),
3053
  'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\CouponHelper' => array(
3054
+ 'version' => 'dev-trunk',
3055
  'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/CouponHelper.php'
3056
  ),
3057
  'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\SettingsHelper' => array(
3058
+ 'version' => 'dev-trunk',
3059
  'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/SettingsHelper.php'
3060
  ),
3061
  'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\ShippingHelper' => array(
3062
+ 'version' => 'dev-trunk',
3063
  'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/ShippingHelper.php'
3064
  ),
3065
  'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\AdminNotesHelper' => array(
3066
+ 'version' => 'dev-trunk',
3067
  'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/AdminNotesHelper.php'
3068
  ),
3069
  'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\ProductHelper' => array(
3070
+ 'version' => 'dev-trunk',
3071
  'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/ProductHelper.php'
3072
  ),
3073
  'Automattic\\Jetpack\\Constants' => array(
vendor/composer/platform_check.php ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ // platform_check.php @generated by Composer
4
+
5
+ $issues = array();
6
+
7
+ if (!(PHP_VERSION_ID >= 70000)) {
8
+ $issues[] = 'Your Composer dependencies require a PHP version ">= 7.0.0". You are running ' . PHP_VERSION . '.';
9
+ }
10
+
11
+ if ($issues) {
12
+ if (!headers_sent()) {
13
+ header('HTTP/1.1 500 Internal Server Error');
14
+ }
15
+ if (!ini_get('display_errors')) {
16
+ if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') {
17
+ fwrite(STDERR, 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . implode(PHP_EOL, $issues) . PHP_EOL.PHP_EOL);
18
+ } elseif (!headers_sent()) {
19
+ echo 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . str_replace('You are running '.PHP_VERSION.'.', '', implode(PHP_EOL, $issues)) . PHP_EOL.PHP_EOL;
20
+ }
21
+ }
22
+ trigger_error(
23
+ 'Composer detected issues in your platform: ' . implode(' ', $issues),
24
+ E_USER_ERROR
25
+ );
26
+ }
vendor/jetpack-autoloader/class-autoloader-handler.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jp47e23124e2a312d52f64b1f85897b9d8;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpbe5ec34edc9729c87bbc54d529a6a86b;
9
 
10
  // phpcs:ignore
11
 
vendor/jetpack-autoloader/class-autoloader-locator.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jp47e23124e2a312d52f64b1f85897b9d8;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpbe5ec34edc9729c87bbc54d529a6a86b;
9
 
10
  // phpcs:ignore
11
 
vendor/jetpack-autoloader/class-autoloader.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jp47e23124e2a312d52f64b1f85897b9d8;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpbe5ec34edc9729c87bbc54d529a6a86b;
9
 
10
  // phpcs:ignore
11
 
vendor/jetpack-autoloader/class-container.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jp47e23124e2a312d52f64b1f85897b9d8;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpbe5ec34edc9729c87bbc54d529a6a86b;
9
 
10
  // phpcs:ignore
11
 
vendor/jetpack-autoloader/class-hook-manager.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jp47e23124e2a312d52f64b1f85897b9d8;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpbe5ec34edc9729c87bbc54d529a6a86b;
9
 
10
  // phpcs:ignore
11
 
vendor/jetpack-autoloader/class-latest-autoloader-guard.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jp47e23124e2a312d52f64b1f85897b9d8;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpbe5ec34edc9729c87bbc54d529a6a86b;
9
 
10
  // phpcs:ignore
11
 
vendor/jetpack-autoloader/class-manifest-reader.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jp47e23124e2a312d52f64b1f85897b9d8;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpbe5ec34edc9729c87bbc54d529a6a86b;
9
 
10
  // phpcs:ignore
11
 
vendor/jetpack-autoloader/class-path-processor.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jp47e23124e2a312d52f64b1f85897b9d8;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpbe5ec34edc9729c87bbc54d529a6a86b;
9
 
10
  // phpcs:ignore
11
 
vendor/jetpack-autoloader/class-php-autoloader.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jp47e23124e2a312d52f64b1f85897b9d8;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpbe5ec34edc9729c87bbc54d529a6a86b;
9
 
10
  // phpcs:ignore
11
 
vendor/jetpack-autoloader/class-plugin-locator.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jp47e23124e2a312d52f64b1f85897b9d8;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpbe5ec34edc9729c87bbc54d529a6a86b;
9
 
10
  // phpcs:ignore
11
 
vendor/jetpack-autoloader/class-plugins-handler.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jp47e23124e2a312d52f64b1f85897b9d8;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpbe5ec34edc9729c87bbc54d529a6a86b;
9
 
10
  // phpcs:ignore
11
 
vendor/jetpack-autoloader/class-shutdown-handler.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jp47e23124e2a312d52f64b1f85897b9d8;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpbe5ec34edc9729c87bbc54d529a6a86b;
9
 
10
  // phpcs:ignore
11
 
vendor/jetpack-autoloader/class-version-loader.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jp47e23124e2a312d52f64b1f85897b9d8;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpbe5ec34edc9729c87bbc54d529a6a86b;
9
 
10
  // phpcs:ignore
11
 
vendor/jetpack-autoloader/class-version-selector.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jp47e23124e2a312d52f64b1f85897b9d8;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpbe5ec34edc9729c87bbc54d529a6a86b;
9
 
10
  // phpcs:ignore
11
 
woocommerce.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: WooCommerce
4
  * Plugin URI: https://woocommerce.com/
5
  * Description: An eCommerce toolkit that helps you sell anything. Beautifully.
6
- * Version: 5.3.0-beta
7
  * Author: Automattic
8
  * Author URI: https://woocommerce.com
9
  * Text Domain: woocommerce
3
  * Plugin Name: WooCommerce
4
  * Plugin URI: https://woocommerce.com/
5
  * Description: An eCommerce toolkit that helps you sell anything. Beautifully.
6
+ * Version: 5.3.0-RC.1
7
  * Author: Automattic
8
  * Author URI: https://woocommerce.com
9
  * Text Domain: woocommerce