WooCommerce - Version 5.8.0

Version Description

2021-10-12 =

WooCommerce

  • Add - modified_before and modified_after filtering parameters to REST API for products, orders and coupons. #30585
  • Add - woocommerce_quantity_input_min_admin and woocommerce_quantity_input_step_admin filters. #30705
  • Dev - Action Scheduler updated to 3.3.0. #30719
  • Dev - Add order argument to woocommerce_order_actions filter. #30475
  • Fix - During product quick edit, the featured setting is sometimes not shown correctly as checked. #30639
  • Fix - Offsets not calculated correctly sometimes on select2 dropdowns causing usability issues. #30690
  • Fix - Select2 dropdown search input not getting focus when select2 dropdown element gets focused. #30626
  • Tweak - Add individual item remove notices based on the context of the line item in the order. #30650
  • Tweak - Change the shop page summary which was not relevant to the public. #30573
  • Tweak - Deleted unneeded double spaces in text strings. #30487
  • Tweak - Open Browse all extensions link in a new tab. #30640

** WooCommerce Admin - 2.7.1 & 2.7.2**

  • Fix - Fix analytics crashing on daylight saving. #7763
  • Fix - Allow super admins all capabilities within WooCommerce Admin. #7489
  • Fix - Fix end date for last periods. #6584
  • Fix - Fix up onboarding profiler not working when opted out of tracking. #7490
  • Fix - Making Business Details sticky in onboarding wizard. #7426
  • Fix - Missing RTL for onboarding styles. #7531
  • Fix - Skip scheduling action if Action Scheduler tables have not been set up. #7521
  • Fix - Update country region typeahead for better autofill support. #7497
  • Fix - Use installable extensions for local state versus free extensions. #7585
  • Fix - Fix fatal error and unrelated results in analytics. #7682
  • Fix - Harden the reports directory. #7691
  • Fix - Update task-item logic to only display content when expanded is true. #7611
  • Add - Show Pinterest in installed marketing extensions (if installed). #7417
  • Add - Added MailchimpScheduler that runs daily to subscribe store_email in the profile data. #7579
  • Add - Added shipping plugin recommendations to settings page. #7446
  • Add - Adding endpoint to snooze onboarding task. #7539
  • Add - Adding undo snooze task endpoint. #7560
  • Add - Add task dismissal endpoints. #7538
  • Update - Add HK and SG countries to WC Pay intl support. #7558
  • Update - Create task list REST API endpoint. #7512
  • Update - Deleted OnboardingEmailMarketing note class. #7595
  • Update - Removes the use of the depreciated woocommerce_shared_settings hook. #7480
  • Update - Removes non WooCommerce Admin specific settings from the wc_admin namespace in the wc/data settings store (ex: countries). #7480
  • Update - Updating eway logo in payment suggestions defaults. #7562
  • Update - Update marketing task completion logic. #7586
  • Dev - Add email address field to OBW. #7552
  • Tweak - Add navigation items for the Marketplace menu. #7529
  • Tweak - Change all analytics strings and labels to sentence case. #6501
  • Tweak - Delete unneeded double spaces in text strings. #7502
  • Tweak - Remove the preloaded onboarding options. #7338
  • Tweak - Update analytics card header text styles. #6506
  • Enhancement - Align Table fields with the fallback on isNumeric. #7431

WooCommerce Blocks - 5.7.1 & 5.8.0 & 5.9.0 & 5.9.1

  • Add - Extensibility point for extensions to filter payment methods. #4668
  • Add - "Filter Products by Stock" block. #4145
  • Add - Introduced the __experimental_woocommerce_blocks_checkout_update_order_from_request hook to the Checkout Store API. #4610.
  • Fix - Add label element to <BlockTitle> component. #4585
  • Fix - Disable Cart, Checkout, All Products & filters blocks from the widgets screen.
  • Fix - Infinite recursion when removing an attribute filter from the Active filters block. #4816
  • Fix - Prevent Product Category List from displaying incorrectly when used on the shop page. #4587
  • Fix - Product Search block displaying incorrectly. #4740
  • Tweak - Add Extensibility info to Store API readme. #4605
  • Tweak - Update documentation for the snackbarNoticeVisibility filter. #4508
  • Tweak - Add documentation for extensionCartUpdate method - this allows extensions to update the client-side cart after it has been modified on the server. #4377

Action Scheduler 3.3.0

  • Enhancement - Adds as_has_scheduled_action() to provide a performant way to test for existing actions. #645
  • Dev - Now supports queries that use multiple statuses. #649
  • Dev - Minimum requirements for WordPress and PHP bumped (to 5.2 and 5.6 respectively). #723
  • Fix - Improves compatibility with environments where NO_ZERO_DATE is enabled. #519
  • Fix - Adds safety checks to guard against errors when our database tables cannot be created. #645

See changelog for all versions.

Download this release

Release Info

Developer barry.hughes
Plugin Icon 128x128 WooCommerce
Version 5.8.0
Comparing to
See all releases

Code changes from version 5.8.0-rc.1 to 5.8.0

Files changed (54) hide show
  1. i18n/languages/woocommerce.pot +6 -6
  2. packages/woocommerce-admin/languages/woocommerce-admin.pot +6 -7
  3. packages/woocommerce-admin/readme.txt +2 -1409
  4. packages/woocommerce-admin/src/API/Reports/TimeInterval.php +11 -13
  5. packages/woocommerce-admin/src/Composer/Package.php +1 -1
  6. packages/woocommerce-admin/src/FeaturePlugin.php +1 -1
  7. packages/woocommerce-admin/vendor/autoload.php +1 -1
  8. packages/woocommerce-admin/vendor/autoload_packages.php +1 -1
  9. packages/woocommerce-admin/vendor/composer/ClassLoader.php +141 -14
  10. packages/woocommerce-admin/vendor/composer/InstalledVersions.php +337 -0
  11. packages/woocommerce-admin/vendor/composer/autoload_classmap.php +1 -0
  12. packages/woocommerce-admin/vendor/composer/autoload_real.php +8 -6
  13. packages/woocommerce-admin/vendor/composer/autoload_static.php +5 -4
  14. packages/woocommerce-admin/vendor/composer/installed.json +201 -195
  15. packages/woocommerce-admin/vendor/composer/installed.php +53 -0
  16. packages/woocommerce-admin/vendor/composer/jetpack_autoload_psr4.php +1 -1
  17. packages/woocommerce-admin/vendor/composer/platform_check.php +26 -0
  18. packages/woocommerce-admin/vendor/jetpack-autoloader/class-autoloader-handler.php +1 -1
  19. packages/woocommerce-admin/vendor/jetpack-autoloader/class-autoloader-locator.php +1 -1
  20. packages/woocommerce-admin/vendor/jetpack-autoloader/class-autoloader.php +1 -1
  21. packages/woocommerce-admin/vendor/jetpack-autoloader/class-container.php +1 -1
  22. packages/woocommerce-admin/vendor/jetpack-autoloader/class-hook-manager.php +1 -1
  23. packages/woocommerce-admin/vendor/jetpack-autoloader/class-latest-autoloader-guard.php +1 -1
  24. packages/woocommerce-admin/vendor/jetpack-autoloader/class-manifest-reader.php +1 -1
  25. packages/woocommerce-admin/vendor/jetpack-autoloader/class-path-processor.php +1 -1
  26. packages/woocommerce-admin/vendor/jetpack-autoloader/class-php-autoloader.php +1 -1
  27. packages/woocommerce-admin/vendor/jetpack-autoloader/class-plugin-locator.php +1 -1
  28. packages/woocommerce-admin/vendor/jetpack-autoloader/class-plugins-handler.php +1 -1
  29. packages/woocommerce-admin/vendor/jetpack-autoloader/class-shutdown-handler.php +1 -1
  30. packages/woocommerce-admin/vendor/jetpack-autoloader/class-version-loader.php +1 -1
  31. packages/woocommerce-admin/vendor/jetpack-autoloader/class-version-selector.php +1 -1
  32. packages/woocommerce-admin/woocommerce-admin.php +1 -1
  33. readme.txt +25 -23
  34. vendor/autoload.php +1 -1
  35. vendor/autoload_packages.php +1 -1
  36. vendor/composer/autoload_real.php +4 -4
  37. vendor/composer/autoload_static.php +5 -5
  38. vendor/composer/installed.json +7 -7
  39. vendor/composer/jetpack_autoload_classmap.php +1984 -1984
  40. vendor/jetpack-autoloader/class-autoloader-handler.php +1 -1
  41. vendor/jetpack-autoloader/class-autoloader-locator.php +1 -1
  42. vendor/jetpack-autoloader/class-autoloader.php +1 -1
  43. vendor/jetpack-autoloader/class-container.php +1 -1
  44. vendor/jetpack-autoloader/class-hook-manager.php +1 -1
  45. vendor/jetpack-autoloader/class-latest-autoloader-guard.php +1 -1
  46. vendor/jetpack-autoloader/class-manifest-reader.php +1 -1
  47. vendor/jetpack-autoloader/class-path-processor.php +1 -1
  48. vendor/jetpack-autoloader/class-php-autoloader.php +1 -1
  49. vendor/jetpack-autoloader/class-plugin-locator.php +1 -1
  50. vendor/jetpack-autoloader/class-plugins-handler.php +1 -1
  51. vendor/jetpack-autoloader/class-shutdown-handler.php +1 -1
  52. vendor/jetpack-autoloader/class-version-loader.php +1 -1
  53. vendor/jetpack-autoloader/class-version-selector.php +1 -1
  54. woocommerce.php +1 -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.8.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-09-24T19:23:03+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: woocommerce\n"
@@ -31926,18 +31926,18 @@ msgstr ""
31926
 
31927
  #. translators: 1: parameter name
31928
  #. translators: 1: parameter name
31929
- #: packages/woocommerce-admin/src/API/Reports/TimeInterval.php:587
31930
- #: packages/woocommerce-admin/src/API/Reports/TimeInterval.php:619
31931
  msgid "%1$s is not a numerically indexed array."
31932
  msgstr ""
31933
 
31934
  #. translators: %s: parameter name
31935
- #: packages/woocommerce-admin/src/API/Reports/TimeInterval.php:599
31936
  msgid "%s must contain 2 numbers."
31937
  msgstr ""
31938
 
31939
  #. translators: %s: parameter name
31940
- #: packages/woocommerce-admin/src/API/Reports/TimeInterval.php:631
31941
  msgid "%s must contain 2 valid dates."
31942
  msgstr ""
31943
 
2
  # This file is distributed under the same license as the WooCommerce plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: WooCommerce 5.8.0\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-10-12T16:27:50+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: woocommerce\n"
31926
 
31927
  #. translators: 1: parameter name
31928
  #. translators: 1: parameter name
31929
+ #: packages/woocommerce-admin/src/API/Reports/TimeInterval.php:585
31930
+ #: packages/woocommerce-admin/src/API/Reports/TimeInterval.php:617
31931
  msgid "%1$s is not a numerically indexed array."
31932
  msgstr ""
31933
 
31934
  #. translators: %s: parameter name
31935
+ #: packages/woocommerce-admin/src/API/Reports/TimeInterval.php:597
31936
  msgid "%s must contain 2 numbers."
31937
  msgstr ""
31938
 
31939
  #. translators: %s: parameter name
31940
+ #: packages/woocommerce-admin/src/API/Reports/TimeInterval.php:629
31941
  msgid "%s must contain 2 valid dates."
31942
  msgstr ""
31943
 
packages/woocommerce-admin/languages/woocommerce-admin.pot CHANGED
@@ -2,10 +2,10 @@
2
  # This file is distributed under the same license as the WooCommerce Admin package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: WooCommerce Admin 2.7.1-rc.1\n"
6
  "Report-Msgid-Bugs-To: "
7
  "https://wordpress.org/support/plugin/woocommerce-admin\n"
8
- "POT-Creation-Date: 2021-09-23 22:13:52+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=utf-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
@@ -101,9 +101,8 @@ msgstr ""
101
  #: src/API/Reports/Taxes/Controller.php:307
102
  #: src/API/Reports/Variations/Controller.php:416 src/Features/Analytics.php:228
103
  #: src/Features/Navigation/CoreMenu.php:85 src/ReportCSVEmail.php:36
104
- #: client/analytics/report/get-reports.js:78
105
- #: client/analytics/report/products/config.js:43
106
  #: client/analytics/report/revenue/table.js:65
 
107
  #: client/analytics/report/taxes/config.js:47
108
  #: client/analytics/report/taxes/table.js:58
109
  #: client/analytics/report/variations/config.js:44
@@ -2531,17 +2530,17 @@ msgstr ""
2531
  msgid "Sorry, fetching tax data failed."
2532
  msgstr ""
2533
 
2534
- #: src/API/Reports/TimeInterval.php:587 src/API/Reports/TimeInterval.php:619
2535
  #. translators: 1: parameter name
2536
  msgid "%1$s is not a numerically indexed array."
2537
  msgstr ""
2538
 
2539
- #: src/API/Reports/TimeInterval.php:599
2540
  #. translators: %s: parameter name
2541
  msgid "%s must contain 2 numbers."
2542
  msgstr ""
2543
 
2544
- #: src/API/Reports/TimeInterval.php:631
2545
  #. translators: %s: parameter name
2546
  msgid "%s must contain 2 valid dates."
2547
  msgstr ""
2
  # This file is distributed under the same license as the WooCommerce Admin package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: WooCommerce Admin 2.7.2\n"
6
  "Report-Msgid-Bugs-To: "
7
  "https://wordpress.org/support/plugin/woocommerce-admin\n"
8
+ "POT-Creation-Date: 2021-10-11 21:10:59+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=utf-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
101
  #: src/API/Reports/Taxes/Controller.php:307
102
  #: src/API/Reports/Variations/Controller.php:416 src/Features/Analytics.php:228
103
  #: src/Features/Navigation/CoreMenu.php:85 src/ReportCSVEmail.php:36
 
 
104
  #: client/analytics/report/revenue/table.js:65
105
+ #: client/analytics/report/get-reports.js:78
106
  #: client/analytics/report/taxes/config.js:47
107
  #: client/analytics/report/taxes/table.js:58
108
  #: client/analytics/report/variations/config.js:44
2530
  msgid "Sorry, fetching tax data failed."
2531
  msgstr ""
2532
 
2533
+ #: src/API/Reports/TimeInterval.php:585 src/API/Reports/TimeInterval.php:617
2534
  #. translators: 1: parameter name
2535
  msgid "%1$s is not a numerically indexed array."
2536
  msgstr ""
2537
 
2538
+ #: src/API/Reports/TimeInterval.php:597
2539
  #. translators: %s: parameter name
2540
  msgid "%s must contain 2 numbers."
2541
  msgstr ""
2542
 
2543
+ #: src/API/Reports/TimeInterval.php:629
2544
  #. translators: %s: parameter name
2545
  msgid "%s must contain 2 valid dates."
2546
  msgstr ""
packages/woocommerce-admin/readme.txt CHANGED
@@ -2,9 +2,9 @@
2
  Contributors: woocommerce, automattic
3
  Tags: ecommerce, e-commerce, store, sales, reports, analytics, dashboard, activity, notices, insights, stats, woo commerce, woocommerce
4
  Requires at least: 5.4.0
5
- Tested up to: 5.7.0
6
  Requires PHP: 7.0
7
- Stable tag: 2.7.1-rc.1
8
  License: GPLv3
9
  License URI: https://github.com/woocommerce/woocommerce-admin/blob/main/license.txt
10
 
@@ -70,1410 +70,3 @@ Release and roadmap notes are available on the [WooCommerce Developers Blog](htt
70
  1. WooCommerce Admin Dashboard
71
  2. Activity Panels
72
  3. Analytics
73
-
74
- == Changelog ==
75
-
76
- == Unreleased ==
77
-
78
- - Add: Add unit tests around extended payment gateway controller #7133
79
- - Add: Add payment gateway suggestion unit tests #7142
80
- - Add: Feature toggle to disable Analytics UI #7168
81
- - Add: SlotFill to Abbreviated Notification panel #7091
82
- - Dev: Add `woocommerce_admin_export_id` filter for customizing the export file name #7178
83
- - Dev: Remove old payment gateway task components #7224
84
- - Fix: Currency display on Orders activity card on homescreen #7181
85
- - Fix: Fix obsolete key property in gateway defaults #7229
86
- - Fix: Fixing button state logic for remote payment gateways #7200
87
- - Add: Add a logger to Remote Inbox Notifications #7194
88
- - Add: Add a logger to the rule evaluator #7194
89
- - Fix: WCPay not working in local payments task #7151
90
- - Fix: Include onboarding settings on the analytic pages #7109
91
- - Fix: Load Analytics API only when feature is turned on #7193
92
- - Fix: Localize string for description #7219
93
- - Fix: RemoteFreeExtension hide bundle when all of its plugins are not visible #7182
94
- - Add: Adding tests for PaymentGatewaySuggestions > List component #7201
95
- - Fix: Report export filtering bug. #7165
96
- - Fix: Use tab char for the CSV injection prevention. #7154
97
- - Fix: Use saved form values if available when switching tabs #7226
98
- - Fix: Skip schedule customer data deletion on site deletion #7214
99
- - Fix: The use of gridicons for Analytics section controls. #7237
100
- - Fix: WCPay not working in local payments task #7151
101
- - Fix: WordPress 5.8 compatibility UI fixes #7255
102
- - Fix: CurrencyFactory constructor to use proper function #7261
103
- - Fix: Currency display on Orders activity card on homescreen #7181
104
- - Fix: Report export filtering bug. #7165
105
- - Fix: Use tab char for the CSV injection prevention. #7154
106
- - Fix: Fix and refactor explat polling to use setTimeout #7274
107
- - Tweak: Remove performance indicators when Analytics Flag disabled #7234
108
- - Tweak: Revert Card component removal #7167
109
- - Tweak: Repurpose disable wc-admin filter to remove optional features #7232
110
- - Tweak: Removed unused feature flags #7233
111
- - Update: Notes to use a date range. #7222
112
-
113
- == 2.4.0 6/10/2021 ==
114
- - Dev: Add Jetpack Backup admin note #6738
115
- - Add: Adding WCPay payment configuration defaults. #7097
116
- - Fix: Transformer casing is incorrect and creates an error on case-sensitive systems #7104
117
- - Dev: Reduce the specificity and complexity of the ReportError component #6846
118
- - Add: Create onboarding package to house refactored WCPay card and relevant components #7058
119
- - Fix: Preventing redundant notices when installing plugins via payments task list. #7026
120
- - Fix: Autocompleter for custom Search in CompareFilter #6911
121
- - Fix: Include onboarding settings on the analytic pages #7109
122
- - Dev: Converting <SettingsForm /> component to TypeScript. #6981
123
- - Enhancement: Adding Slotfills for remote payments and SettingsForm component. #6932
124
- - Fix: Make `Search` accept synchronous `autocompleter.options`. #6884
125
- - Fix: Set autoload to false for all remote inbox notifications options. #7060
126
- - Add: Consume remote payment methods on frontend #6867
127
- - Add: Extend payment gateways REST endpoint #6919
128
- - Add: Add remote payment gateway recommendations initial docs #6962
129
- - Add: Add loading placeholders for payment gateways task #7123
130
- - Add: Note date range logic for GivingFeedback, and InsightFirstSale note. #6969
131
- - Add: Add transient notices feature #6809
132
- - Add: Add transformers in remote inbox notifications #6948
133
- - Add: Add Mercado Pago as default fallback payment gateway #7043
134
- - Add: Add in Razorpay as default fallback payment gateway #7096
135
- - Add: Get post install scripts from gateway and enqueue in client #6967
136
- - Add: Add eWAY as default fallback gateway #7108
137
- - Add: Free extension list powered by remote config #6952
138
- - Add: Add PayPal to fallback payment gateways #7001
139
- - Add: Add a data store for WC Payments REST APIs #6918
140
- - Add: Progressive setup checklist copy and call to action buttons. #6956
141
- - Add: Add Paystack as fallback gateway #7025
142
- - Add: Add Square as default fallback gateway #7107
143
- - Add: Add COD method to default payment gateway recommendations #7057
144
- - Add: Add BACS as default fallback payment gateway #7073
145
- - Add: A/B test of progressive checklist features. #7089
146
- - Add: Add payment gateway return URL and action #7095
147
- - Add: Add Mollie to the default payment gateways. #7092
148
- - Add: Show task and activity notifications in the Inbox panel #7017
149
- - Add: Adding WCPay payment configuration defaults. #7097
150
- - Add: Create onboarding package to house refactored WCPay card and relevant components #7058
151
- - Dev: Add Jetpack Backup admin note #6738
152
- - Dev: Reduce the specificity and complexity of the ReportError component #6846
153
- - Dev: Converting <SettingsForm /> component to TypeScript. #6981
154
- - Dev: Update package-lock to fix versioning of local packages. #6843
155
- - Dev: Use rule processing for remote payment methods #6830
156
- - Dev: Update E2E jest config, so it correctly creates screenshots on failure. #6858
157
- - Dev: Fixed storybook build script #6875
158
- - Dev: Removed allowed keys list for adding woocommerce_meta data. #6889 🎉 @xristos3490
159
- - Dev: Delete all products when running product import tests, unskip previously skipped test. #6905
160
- - Dev: Add payment method selector to onboarding store #6921
161
- - Dev: Add disabled prop to SelectControl #6902
162
- - Dev: Add filter variation to tracks data in products analytics. #6913
163
- - Dev: Offload remote inbox notifications engine run using action-scheduler. #6995
164
- - Dev: Add source param support for notes query. #6979
165
- - Dev: Remove the use of Dashicons and replace with @wordpress/icons or gridicons. #7020
166
- - Dev: Refactor inbox panel components and moved to experimental package. #7006
167
- - Dev: Business features uncheck creative mail by default #7139
168
- - Dev: Remove support for IE11. #7112
169
- - Dev: Drop styling support for IE11. #7137
170
- - Dev: Remove react-docgen docs in favor of Storybook #7055
171
- - Enhancement: Add expand/collapse to extendable task list. #6910
172
- - Enhancement: Add task hierarchy support to extended task list. #6916
173
- - Enhancement: Add remind me later option to task list. #6923
174
- - Enhancement: Enable Remote Free Extensions List #7144
175
- - Enhancement: Adding Slotfills for remote payments and SettingsForm component. #6932
176
- - Fix: Rule Processing Transformer to handle dotNotation default value #7009
177
- - Fix: Remove Navigation's uneeded SlotFill context #6832
178
- - Fix: Report filters expecting specific ordering. #6847
179
- - Fix: Render bug with report comparison mode selections. #6862
180
- - Fix: Throw exception if the data store cannot be loaded when trying to use notes. #6771
181
- - Fix: Autocompleter for custom Search in FilterPicker #6880
182
- - Fix: Get currency from CurrencyContext #6723
183
- - Fix: Correct the left position of transient notices when the new nav is used. #6914
184
- - Fix: Exclude WC Shipping for store that are only offering downloadable products #6917
185
- - Fix: SelectControl focus and de-focus bug #6906
186
- - Fix: Multiple preload tag output bug. #6998
187
- - Fix: Call existing filters for leaderboards in analytics. #6626
188
- - Fix: Set target to blank for the external links #6999
189
- - Fix style regression with the Chart header. #7002
190
- - Fix styling of the advanced filter operator selection. #7005
191
- - Fix: Deprecated warnings from select control @wordpress/data-controls. #7007
192
- - Fix: Bug with Orders Report coupon exclusion filter. #7021
193
- - Fix: Show Google Listing and Ads in installed marketing extensions section. #7029
194
- - Fix: Attribute filter bug with "any X" variations. #7046
195
- - Fix: Notices not dissapearing. #7077
196
- - Fix: Keyboard accessibility on the free features tab. #7149
197
- - Fix: Fix error handling when remote free extension API returns empty array. #7147
198
- - Fix: Transformer casing is incorrect and creates an error on case-sensitive systems #7104
199
- - Fix: Preventing redundant notices when installing plugins via payments task list. #7026
200
- - Fix: Autocompleter for custom Search in CompareFilter #6911
201
- - Fix: Add target to the button to open it in a new tab #7110
202
- - Fix: Make `Search` accept synchronous `autocompleter.options`. #6884
203
- - Fix: Set autoload to false for all remote inbox notifications options. #7060
204
- - Fix: Issue where summary stats were not showing in Analytics > Stock. #7161
205
- - Tweak: Only fetch remote payment gateway recommendations when opted in #6964
206
- - Tweak: Setup checklist copy revert. #7015
207
- - Update: Task list component with new Experimental Task list. #6849
208
- - Update: Optimize payment gateway resolution #7124
209
- - Update: Experimental task list import to the experimental package. #6950
210
- - Update: Redirect to WC Home after setting up a payment method #6891
211
- - Update: Hook up payments gateway data store #7038
212
- - Update: Update remote payment docs gateway methods #7079
213
- - Update: Remove original business step flow #7103
214
- - Update: WooCommerce Shipping copy on onboarding steps #7148
215
-
216
- == 2.3.1 5/24/2021 ==
217
- - Tweak: Store profiler - Changed MailPoet's title and description #6990
218
- - Update: Payment recommendation screen transition and add external link icon. #7022
219
- - Fix: A JS exception being thrown on the product tags page. #7053
220
- - Fix: Show Google Listing and Ads in installed marketing extensions section. #7029
221
- - Tweak: Adjust WC Pay supported countries #7048
222
-
223
- == 2.3.0 5/13/2021 ==
224
- - Add: Add plugin installer to allow installation of plugins via URL #6805
225
- - Add: Optional children prop to SummaryNumber component #6748
226
- - Dev: Add data source filter to remote inbox notification system #6794
227
- - Dev: Introduce usage of ExPlat, an A/B testing tool. See https://woocommerce.com/usage-tracking/ for more #6669
228
- - Dev: Add support for nonces in note actions #6726
229
- - Dev: Add support for running php unit tests in PHP 8. #6678
230
- - Dev: Add event recording to start of gateway connections #6801
231
- - Feature: Add recommended payment methods in payment settings. #6760
232
- - Fix: Event tracking for merchant email notes #6616
233
- - Fix: Use the store timezone to make time data requests #6632
234
- - Fix: Update the checked input radio button margin style #6701
235
- - Fix: Convert date to timestamp before passing to set_date_prop to persist timezone #6795
236
- - Fix: Make pagination buttons height and width consistent #6725
237
- - Fix: Retain persisted queries when navigating to Homescreen #6614
238
- - Fix: Update folded header style #6724
239
- - Fix: Unreleated variations showing up in the Products reports #6647
240
- - Fix: Check active plugins before getting the PayPal onboarding status #6625
241
- - Fix: Remove no-reply from inbox notification emails #6644
242
- - Fix: Set up shipping costs task, redirect to shipping settings after completion. #6791
243
- - Fix: Onboarding logic on WooCommerce update to keep task list present. #6803
244
- - Fix: Pause inbox message “GivingFeedbackNotes” #6802
245
- - Fix: Missed DB version number updates causing unnecessary upgrades. #6818
246
- - Fix: Parsing bad JSON string data from user WooCommerce meta. #6819
247
- - Fix: Remove PayPal for India #6828
248
- - Performance: Avoid updating customer info synchronously from the front end. #6765
249
- - Tweak: Add settings_section event prop for CES #6762
250
- - Tweak: Refactor payments to allow management of methods #6786
251
- - Tweak: Add tracking data for the preview site button #6623
252
- - Tweak: Update WC Payments copy on the task list #6734
253
- - Tweak: Update payment gateway suggestions semantics to be more consistent #7130
254
- - Tweak: Add check to see if value for contains is array, show warning if not. #6645
255
- - Tweak: Sort the extension task list by completion status and allow toggling visibility. #6792
256
- - Tweak: Only fetch remote payment gateway recommendations when opted in #6964
257
- - Update: Replace marketing extension - Google Listings and Ads. #6939
258
- - Update: Update choose niche note cta URL #6733
259
- - Update: UI updates to Payment Task screen #6766
260
- - Update: Update payment gateway suggestions semantics to be more consistent #7130
261
- - Update: Adding setup required icon for non-configured payment methods #6811
262
-
263
- == 2.2.6 5/7/2021 ==
264
-
265
- - Fix: Address an issue with OBW when installing only WooCommerce payments and Jetpack. #6957
266
-
267
- == 2.2.5 5/7/2021 ==
268
-
269
- - Fix: Calling of get_script_asset_filename with extra parameter #6955
270
-
271
- == 2.2.4 5/7/2021 ==
272
-
273
- - Dev: Fix a bug where trying to load an asset registry causes a crash. #6951
274
-
275
- == 2.2.3 5/6/2021 ==
276
-
277
- - Dev: Do a git clean before the core release. #6945
278
-
279
- == 2.2.2 4/28/2021 ==
280
-
281
- - Fix: Disable the continue btn on OBW when requested are being made #6838
282
- - Tweak: Revert WCPay international support for bundled package #6901
283
- - Tweak: Store profiler - Changed MailPoet's title and description #6886
284
- - Tweak: Update PayU logo #6829
285
-
286
- == 2.2.0 3/30/2021 ==
287
-
288
- - Fix: Check if features are currently being enabled #6688
289
- - Add: Next new novel navigation nudge note #6610
290
- - Fix: Fix the activity panel toggle not closing on click #6679
291
- - Tweak: Add default value for contains op #6622
292
- - Fix: Fix use of feature checks and remove deprecated method calls #6687
293
- - Dev: Close activity panel tabs by default and track #6566
294
- - Dev: Update undefined task name properties for help panel tracks #6565
295
- - Fix: Allow the manager role to query certain options #6577
296
- - Dev: Refactor profile wizard benefits step and add tests #6583
297
- - Fix: Delete customer data on network user deletion #6574
298
- - Fix: Fix Themes step visibility in IE 11 #6578
299
- - Fix: Fix hidden menu title on smaller screens #6562
300
- - Fix: Add gross sales column to CSV export #6567
301
- - Dev: Add filter to profile wizard steps #6564
302
- - Tweak: Adjust targeting store age for the Add First Product note #6554
303
- - Tweak: Improve WC Shipping & Tax logic #6547
304
- - Tweak: Update Insight inbox note content #6555
305
- - Dev: Add nav intro modal tests #6518
306
- - Dev: Use wc filter to get status tabs for tools category #6525
307
- - Tweak: Remove mobile activity panel toggle #6539
308
- - Dev: Add nav header component tests #6509
309
- - Add: Add legacy report items to new navigation #6507
310
- - Dev: Add initial tests for navigation Menu class #6492
311
- - Dev: Remove active item from navigation store #6486
312
- - Dev: Add navigation container tests #6464
313
- - Add: Add preview site button on the appearance task #6457
314
- - Fix: Add check for navigating being enabled. #6462
315
- - Dev: Add nav favorite button tests #6446
316
- - Dev: Add a changelog lint check to PRs. #6414
317
- - Dev: Add navigation favorites tests #6409
318
- - Fix: Move the shipping input and text 1px lower. #6408
319
- - Dev: support use of Array.flat in client and packages. #6411
320
- - Fix: Correct the Klarna slug #6440
321
- - Tweak: Refactor autoloader to remove global variable. #6412
322
- - Dev: Deprecate Onboarding::has_woocommerce_support. #6401
323
- - Fix: Broken link anchors to online documentation. #6455
324
- - Dev: Add Dependency Extraction Webpack Plugin #5762
325
- - Dev: Add client-side filter for Navigation rootBackUrl #6505
326
- - Add: Back button to go to home screen from tasks in the task list. #6397
327
- - Fix: Update payment card style on mobile #6413
328
- - Fix: Missing i18n in Welcome modal. #6456
329
- - Fix: Restore visual styles back to Analytics tabs. #5913
330
- - Add: Add a "rather not say" option to revenue in the profile wizard. #6475
331
- - Fix: Update contrast and hover / active colors for analytics dropdown buttons #6504
332
- - Dev: Remove `items_purchased` and `account_type` props from onboarding profile API. #6520
333
- - Dev: Added warning when WC-Admin is active but not being used #6453
334
- - Fix: Associated Order Number for refunds was hidden #6428
335
- - Add: Remove Mollie promo note on install #6510
336
- - Add: Remote Inbox Notifications rule to trigger when WooCommerce Admin is upgraded. #6040
337
- - Dev: Store profiler - Added MailPoet to Business Details step #6503
338
- - Dev: Store profiler - Added MailPoet to new Business Details step #6515
339
- - Dev: Add tilde (~) to represent client root directory for imports. #6517
340
- - Fix: Fix issue where Loader::is_admin_page() would error if WooCommerce admin is disabled. #6563
341
- - Add: Add Ireland to Square payment method #6559
342
- - Add: CES survey for search product, order, customer #6420
343
- - Add: CES survey for importing products #6419
344
- - Add: CES survey for adding product categories, tags, and attributes #6418
345
- - Add: Additional analytics tracking for the business details step. #6575
346
- - Add: Include tracking for mail poet installs in the selective bundle install #6603
347
- - Dev: Add script automation for gathering hooks and filters. #6454
348
- - Dev: Add TypeScript to CustomerFeedbackModal component. #6498
349
- - Fix: Correct a bug where the JP connection flow would not happen when installing JP in the OBW. #6521
350
- - Dev: Add TypeScript and page objects to the E2E test suite. #6582
351
- - Dev: Introduce Typescript to Navigation utils #6477
352
- - Add: Paystack payment provider to several african countries. #6579
353
- - Dev: Payments task: include Mercado Pago #6572
354
- - Dev: Ensure script asset.php files are included in builds #6635
355
- - Fix: Show management links when the task list is complete (even if its not hidden). #6657
356
- - Fix: Adding New Zealand and Ireland to selective bundle option, previously missed. #6649
357
- - Fix: Update the Mercado option used for enabling/disabling. #6677
358
- - Dev: Ensure production script asset names don't include .min suffix #6681
359
- - Fix: Improve AddFirstProduct email note contents. #6617
360
- - Fix: Missing margin between cards and viewport in setup wizard #6620
361
-
362
- == 2.1.4 3/29/2021 ==
363
-
364
- - Fix: Adding New Zealand and Ireland to selective bundle option, previously missed. #6649
365
-
366
- == 2.1.3 3/14/2021 ==
367
-
368
- - Feature: Increase target audience for business feature step. #6508
369
- - Fix: Correct a bug where the JP connection flow would not happen when installing JP in the OBW. #6521
370
- - Fix: Add customer name column to CSV export #6556
371
-
372
- == 2.1.2 3/10/2021 ==
373
-
374
- - Fix: Add guard to "Deactivate Plugin" note handlers to prevent fatal error. #6532
375
- - Fix: Crash of Analytics > Settings page when Gutenberg is installed. #6540
376
-
377
- == 2.1.1 3/4/2021 ==
378
-
379
- - Fix: Restore missing Correct the Klarna slug #6440
380
-
381
- == 2.1.0 3/4/2021 ==
382
-
383
- - Dev: Allow highlight tooltip to use body tag as parent. #6309
384
- - Dev: Remove Google fonts and material icons. #6343
385
- - Add: Remove CES actions for adding and editing a product and editing an order #6355
386
- - Dev: Add filter to allow enabling the WP toolbar within the new navigation. #6371
387
- - Dev: Add unit tests to Navigation's Container component. #6344
388
- - Fix: Enqueue scripts called incorrectly in php unit tests #6358
389
- - Fix: Removed @woocommerce/components/card from OBW #6374
390
- - Fix: Email notes now are turned off by default #6324
391
- - Add: CES track settings tab on updating settings #6368
392
- - Fix: Top bar slightly overlaps wp-admin navigation on mobile #6292
393
- - Fix: Hide tooltip in welcome modal #6142
394
- - Fix: update single column home screen width to 680px #6297
395
- - Fix: Recommended Payment Banner missing in Safari #6375
396
- - Tweak: Order and styles updates to nav footer #6373
397
- - Enhancement: Move capability checks to client #6365
398
- - Tweak: Enqueue beta features scripts on enqueue_scripts action instead of filter #6358
399
- - Enhancement: Navigation: Add test to container component #6344
400
- - Fix: Empty nav menu #6366
401
- - Enhancement: override wpbody styles when nav present #6354
402
- - Fix: Check if tax was successfully added before displaying notice #6229
403
- - Fix: Update timing of InboxPanel state changes for the unread indicator #6246
404
- - Tweak: Set `is_deleted` from the database when instantiating a `Note` #6322
405
- - Tweak: New Settings: Turn off in dev mode #6348
406
- - Add: Favorites tooltip to the navigation #6312
407
- - Fix: Display" option fails to collapse upon invoking "Help" option #6233
408
- - Enhancement: Move favorited menu items to primary menu #6290
409
- - Dev: Use box sizing and padding to fix nav and admin menu styling #6335
410
- - Tweak: Update inline documentation for navigation Screen class #6173
411
- - Tweak: Remove categories without menu items #6329
412
- - Add: Core settings redirection to new settings pages #6091
413
- - Add: Settings feature and pages #6089
414
- - Add: Settings client pages #6092
415
- - Add: Favoriting extensions client UI #6287
416
- - Dev: Refactor head and body heights #6247
417
- - Fix: Removal of core settings pages #6328
418
- - Dev: Fix the react state update error on homescreen. #6320
419
- - Tweak: Navigation: Migrate methods to `admin_menu` hook #6319
420
- - Tweak: Move admin menu manipulation from admin_head to admin_menu #6310
421
- - Tweak: Updates to copy and punctuation to be more conversational and consistent. #6298
422
- - Dev: Change `siteUrl` to `homeUrl` on navigation site title #6240
423
- - Dev: Add navigation favorites data store #6275
424
- - Add: Add navigation intro modal. #6367
425
- - Fix: Fix double prefixing of full navigation URLs #6460
426
- - Fix: Reset Navigation submenu before making Flyout #6396
427
- - Dev: Add a changelog lint check to PRs. #6414
428
- - Fix: Move the shipping input and text 1px lower. #6408
429
- - Add: WC Admin Docker setup with WP-ENV
430
-
431
- == 2.0.3 03/10/2021 ==
432
-
433
- - Fix: Crash of Analytics > Settings page when Gutenberg is installed. #6540
434
-
435
- == 2.0.2 25/05/2021 ==
436
-
437
- - Fix: Correct the Klarna slug #6440
438
-
439
- == 2.0.0 02/05/2021 ==
440
-
441
- - Tweak: Bump minimum supported version of PHP to 7.0. #6046
442
- - Fix: allow for more terms to be shown for product attributes in the Analytics orders report. #5868
443
- - Tweak: update the content and timing of the NeedSomeInspiration note. #6076
444
- - Fix: Add support for a floating-point number as a SummaryNumber's delta. #5926
445
- - Add: new inbox message - Getting started in Ecommerce - watch this webinar. #6086
446
- - Add: Remote inbox notifications contains comparison and fix product rule. #6073
447
- - Update: store deprecation welcome modal support doc link #6094
448
- - Enhancement: Allowing users to create products by selecting a template. #5892
449
- - Dev: Add wait script for mysql to be ready for phpunit tests in docker. #6185
450
- - Update: Homescreen layout, moving Inbox panel for better interaction. #6122
451
- - Dev: Remove old debug code for connecting to Calypso / Wordpress.com. #6097
452
- - Tweak: Adjust the Marketing note not to show until store is at least 5 days. #6083
453
- - Add: Task list payments - include Mollie as an option. #6257
454
- - Tweak: Refactored extended task list. #6081
455
- - Fix: Fixed the Add First Product email note checks. #6260
456
- - Fix: Onboarding - Fixed "Business Details" error. #6271
457
- - Enhancement: Use the new Paypal payments plugin for onboarding. #6261
458
- - Fix: Show management links when only main task list is hidden. #6291
459
- - Dev: Allow highlight tooltip to use body tag as parent. #6309
460
- - Add: Allow users to install the PayU plugin in the payments setup task. #6332
461
- - Fix: Persist the enabling of plugins in the payments setup task. #6332
462
-
463
- == 1.9.0 1/15/2021 ==
464
-
465
- - Fix: Add Customer Type column to the Orders report table. #5820
466
- - Fix: Product exclusion filter on Orders Report.
467
- - Fix: Typo in Variation Stats DataStore context filter value.
468
- - Fix: support custom attributes in Attribute advanced report filter.
469
- - Fix: Don't show Stock and Reviews Homescreen panels too early.
470
- - Tweak: Remove deprecated use of Jetpack in shipping label banner. #5929
471
- - Fix: Undefined $collate variable when database does not have collation capability. #5992
472
- - Tweak: Remove visit_count from track, and update task count logic. #5996
473
- - Fix: Moved certified owner label for review to title. ##5877
474
- - Fix: Move collapsible config to panels object, to allow for more control. #5855
475
- - Enhancement: Show Help panel tooltip when user visits unfinished task more then once. #5826
476
- - Tweak: Fix inconsistent REST API paramater name for customer type filtering.
477
- - Enhancement: Tasks extensibility in Home Screen. #5794
478
- - Enhancement: Add page parameter to override default wc-admin page in Navigation API. #5821
479
- - Fix: Invalidate product count if the last product was updated in the list. #5790
480
- - Fix: Updating (non wordpress user) customer with order data
481
- - Dev: Add documentation for filter `woocommerce_admin_pages_list` and `wc_admin_register_page` #5844
482
- - Dev: Revert work done in #4857 for automated shipping after OBW is completed #5971
483
- - Add: Welcome modal when coming from Calypso #6004
484
- - Enhancement: Add an a/b experiment for installing free business features #5786
485
- - Dev: Add `onChangeCallback` feature to the wc-admin <Form> component #5786
486
- - Dev: Add merchant email notifications #5922
487
- - Add: Email note to add first product. #6024
488
- - Add: Note for users coming from Calypso. #6030
489
- - Fix: Fixed error hiding core task list. #6050
490
- - Enhancement: Add an "unread" indicator to inbox messages. #6047
491
- - Tweak: update the content for the ChooseNiche note. #6048
492
- - Fix: Generate JSON translation chunks on plugin activation #6028
493
- - Dev: Update travis CI distribution. #6067
494
- - Add: Manage activity from home screen inbox message. #6072
495
-
496
- == 1.8.3 1/5/2021 ==
497
-
498
- - Fix: Compile the debug module so it can be used in older browsers like IE11. #5987
499
-
500
- == 1.8.2 12/22/2020 ==
501
-
502
- - Fix: Completed tasks tracking causing infinite loop #5941
503
- - Fix: Remove Navigation access #5940
504
-
505
- == 1.8.1 12/15/2020 ==
506
-
507
- - Fix: Product exclusion filter on Orders Report.
508
- - Fix: Typo in Variation Stats DataStore context filter value. #5784
509
-
510
- == 1.8.0 12/7/2020 ==
511
-
512
- - Enhancement: Add "filter by variations in reports" inbox note. #5208
513
- - Tweak: Fix inconsistent REST API parameter name for customer type filtering. #5823
514
- - Fix: Move collapsible config to panels object, to allow for more control. #5855
515
- - Enhancement: Tasks extensibility in Home Screen. #5794
516
- - Enhancement: Add page parameter to override default wc-admin page in Navigation API. #5821
517
- - Fix: Invalidate product count if the last product was updated in the list. #5790
518
- - Fix: Add Customer Type column to the Orders report table. #5820
519
- - Fix: Product exclusion filter on Orders Report. #5822
520
- - Enhancement: Introduce the customer effort score (CES) feature.
521
- - Enhancement: Rework task extensibility in the homescreen. #5794
522
- - Enhancement: Migrate the reviews panel to the homescreen. #5706
523
- - Tweak: Improve styles of the tax task. #5709
524
- - Tweak: Do not show store setup link on the homescreen. #5801
525
- - Tweak: Revert the #5001 work to order tasks by completion. #5721
526
- - Tweak: Revert the smart tax defaults work. #5720
527
- - Fix: Show the customer type column in Orders report table. #5820
528
- - Fix: make sure 'Customers' page updates after order update. #5776
529
- - Tweak: Do not show store setup activity panel on the homescreen. #5801
530
- - Fix: Fix fatal errors when child themes are installed in a subdirectory. #5783
531
- - Enhancement: Migrate reviews panel to home screen. #5706
532
- - Enhancement: Add Razorpay to payment task for stores in India - #5775
533
- - Fix: Allow actionable statuses in orders endpoint(s) filters. #5733
534
- - Enhancement: Migrate Stock Panel to Homescreen. #5729
535
- - Tweak: Don't show the Orders panel on the homescreen with the Task List. #5552
536
- - Enhancement: Add enhanced placeholders for Marketing components. #5611
537
- - Tweak: Continue showing tasklist even if list is complete, only hide if set to hidden. #5673
538
- - Enhancement: Allow switching on/off the navigation feature in plugin and core builds. #5697
539
- - Fix: snackbar dismissal bug. #5696
540
- - Tweak: Remove check for Jetpack and WCS from Stripe onboarding task. #4933
541
- - Fix: Only import the Gridicons we need, to reduce package size. #5668
542
- - Fix: Stop order panels flickering on load. #5655
543
- - Fix: Load wc-tracks to avoid fatal errors. #5645 #5638
544
- - Fix: Preventing desktop-sized navigation placeholder from appearing on mobile during load. #5616
545
-
546
- = 1.7.0 11/11/2020 =
547
- - Enhancement: Variations report. #5167
548
- - Enhancement: Add ability to toggle homescreen layouts. #5429
549
- - Enhancement: Accordion component #5474
550
- - Enhancement: Badge component #5520
551
- - Fix: Added support for custom actionable statuses. #5550
552
- - Fix: wrong casing used on the PayPal brand name #5514 🎉 @rtpHarry
553
- - Fix: Import @wordpress/base-styles/default-custom-properties #5491
554
- - Fix: downloads report #5441
555
- - Fix: missing custom autocompleter attribute in Search component of Advanced Filter #5448
556
- - Fix: empty no posts state on Marketing page. #5411
557
- - Fix: visual issues in the Search component. #5199
558
- - Fix: Inconsistent line endings in readme.txt. #5281
559
- - Fix: popover menu to expand menu item width to 100% #5519
560
- - Fix: Wrong class name for querying Categories Report #5522 🎉 @zzap
561
- - Fix: Remove label printing mention for non us countries #5527
562
- - Fix: First product script navigation dependency #5584
563
- - Fix: Added support for custom actionable statuses #5550
564
- - Fix: Display the store management links last on the homescreen #5579
565
- - Fix: Ensure the "Set up additional payment providers" inbox notification is shown when relevant after completing the OBW. #5547
566
- - Tweak: Remove customer analytics data upon order deletion #5171
567
- - Tweak: Updating Stripe key field validation to support test keys #5201
568
- - Tweak: Wrap search control selected items in list #5231
569
- - Tweak: Update store setup link to redirect to setup wizard #5200
570
- - Tweak: Removing breadcrumbs from wc-admin header #5232
571
- - Tweak: Use consistent markdown headers in navigation readme #5417
572
- - Tweak: Remove Store Setup Alert #5499
573
- - Tweak: Customers: Update column heading for date registered #5542
574
- - Tweak: alter homescreen layout. #5465
575
- - Dev: Home Screen - migrate orders panel. #5455
576
- - Dev: Store Profiler - include Creative Mail as a free extension #5543
577
- - Dev: Add undefined check in intervals data util #5546
578
- - Dev: Fix wakeup visibility for PHP 8 compatibility #5211
579
- - Dev: Fix header height and positioning for wc nav #5173
580
- - Dev: Add remote inbox notification rule processors for country and state #5203
581
- - Dev: Rename admin notes classes and file names to fit conventions #514
582
- - Dev: remove checks of store registration that are no longer needed. #5170
583
- - Dev: Fix version update script for composer.json #5165
584
- - Dev: Remove getAdminLink from data package #5158
585
- - Dev: Bump @woocommerce/components dependencies. #5153
586
- - Dev: Add note status remote inbox notifications rule processor #5207
587
- - Dev: Make code chunk filenames more stable. #5229
588
- - Dev: Inbox Panel component moved #5252
589
- - Dev: Added animation to Inbox note deletion #5263
590
- - Dev: Update starter pack dependencies #5254
591
- - Dev: Ensure test zips have latest packages from npm and composer. #5313
592
- - Dev: Add remote inbox notifications rule allowing access to any option #5206
593
- - Dev: Add manage orders on the go admin note #5159
594
- - Dev: Add WooCommerceDependencyExtractionWebpackPlugin package #5198
595
- - Dev: Migrate devdocs examples to Storybook stories #5271
596
- - Dev: Remove Enzyme in favor of React Testing Library #5299
597
- - Dev: Add exclusion rule to PHPCS config for TODO comments #5388
598
- - Dev: Remove no longer used isPanelEmpty logic. #5423
599
- - Dev: Use new @wordpress/components Card on Marketing page. #5428
600
- - Dev: Add PSR-4 naming checks to PHP linting. #5512
601
- - Dev: Rearrange the store management links under categories add filter woocommerce_admin_homescreen_quicklinks. #5476
602
- - Dev: Restyle the setup task list header to display incomplete tasks #5520
603
-
604
- = 1.6.2 10/16/2020 =
605
- - Fix: Missing activity panels on ugraded sites #5400
606
- - Fix: Casting of onboarding profile data to array #5415
607
- - Fix: Gutenberg 9.1.1 compat for inbox on home screen not showing #5416
608
- - Fix: i18n of Performance Indicator strings #5405
609
- - Fix: Gutenberg 9.1.1 compat for empty data sets #5409
610
-
611
- = 1.6.1 10/13/2020 =
612
- - Fix: Hide setup checklist shortcut when setup checklist skipped #5360
613
- - Fix: use of undefined function on WC < 4.0.0.
614
-
615
- = 1.6.0 10/9/2020 =
616
- - Dev: Reviews wp.data store #4941
617
- - Dev: Notes wp.data store #4943
618
- - Dev: Add woocommerce_analytics_update_order_stats_data filter #4934
619
- - Dev: Remove unused lib/date #4987
620
- - Dev: Exports wp.data store #4958
621
- - Dev: Remove _experimentalResolveSelect usage #4949
622
- - Dev: Items wp.data store #5009
623
- - Dev: Import wp.data store #4982
624
- - Dev: Remove `fresh-data` wc-api dependency #5075
625
- - Dev: Add initial e2e test suite #5028
626
- - Dev: Combine translation chunks when languages updated #5094
627
- - Dev: Add filters for columns in reports #5134
628
- - Dev: Don't include "min" suffix in build JS files for core build #5130
629
- - Enhancement: Add free local shipping zone on profile complete #4857
630
- - Enhancement: Add woocommerce/tracks package #5107
631
- - Enhancement: Add filter to allow modification of report columns #4984
632
- - Enhancement: Add WooCommerce Mobile Banner #5037
633
- - Enhancement: Add Product Attribute advanced filter #5038
634
- - Enhancement: Add support for advanced filters with multiple instances #5050
635
- - Enhancement: Automated taxes smart default #5076
636
- - Enhancement: Add product attribute filter to Orders report #5068
637
- - Tweak: Remove payment task actions #4917
638
- - Tweak: Don't import from React, use @wordpress/element #4978
639
- - Tweak: Use filtered headers array in onColumnsChange callback #4964
640
- - Tweak: Orders panel get selectors form wc-api #4997
641
- - Tweak: Group tasks by completion in setup checklist #5001
642
- - Tweak: Replace useFilters with WP withFilters #4962
643
- - Tweak: Refactor header component to function #5023
644
- - Tweak: Refactor task list status to onboarding data store #4998
645
- - Tweak: Add monthly pricing toggle in OBW #5015
646
- - Tweak: OBW style updates #5059
647
- - Tweak: Remove chevron icons from Fish Setup task list #5114
648
- - Tweak: Add option to not charge sales tax in setup checklist #5111
649
- - Tweak: Enable homescreen for all sites #5108
650
- - Tweak: Enable remote inbox in all envs #5160
651
- - Tweak: Add opt-out for remote inbox #5162
652
- - Fix: Table component onQueryChange default prop #4959
653
- - Fix: Dependency declarations in woocommerce/components #4972
654
- - Fix: Text domains in stock report #4980
655
- - Fix: Typo in reports store action creators #4992
656
- - Fix: Note data actions and consolidate query constants #4990
657
- - Fix: Advanced filters screen reader text #5032
658
- - Fix: Show full variation name in products report #5056
659
- - Fix: Card to connect to woocommerce.com #5129
660
- - Fix: Search all variation attribute values #5141
661
- - Fix: Force float before addition in taxes #5149
662
-
663
- = 1.5.0 2020-08-07 =
664
- - Dev: New notification: Don't forget to test your checkout. #4805
665
- - Dev: Enable tax calculation before redirecting to standard tax rates page. #4878
666
- - Fix: Use clipRule and fillRule props. #4889, part of #4864
667
- - Dev: Added event recording to Orders, Stock, and Reviews panels. #4861
668
- - Dev: Added personalization to purchase extension task. #4849
669
- - Dev: Display modal with more info about the new homescreen. #4890
670
- - Dev: Task list - add a shortcut back to store setup. #4853
671
- - Dev: Update the colors of the illustrations in the welcome modal. #4945
672
- - Enhancement: Add eWAY to Payment Setup for AU/NZ Stores. #4947
673
-
674
- = 1.4.0 2020-07-22 =
675
- - Fix: Update returning customer total to include customers whose first order was within the report date range #4430
676
- - Fix: Fix an error in the Analytics/Orders table when there is an order deleted directly from the database #4630
677
- - Fix: Reselecting advanced filters in the customer list #4650
678
- - Fix: Reporting of deleted coupons #4671
679
- - Fix: Preventing refresh after answering a survey note #4711
680
- - Fix: Regular filters not working #4704
681
- - Fix: React warning in test that the key prop wasn't assigned in List #4808
682
- - Fix: Center continue buttons in the onboarding profile wizard #4082
683
- - Fix: Homepage template used in setup checklist customization task #4807
684
- - Fix: Errant Jetpack activation prompt in Stats Overview home screen widget #4817
685
- - Fix: Unable to activate theme with uppercase name #4393 🎉 @ayubadiputra
686
- - Fix: Set active theme when OBW is shown via the task list #4834
687
- - Enhancement: Add option to dismiss tasks in Setup Checklist #4733
688
- - Enhancement: Show contextual help menu when working on store setup tasks. #4779
689
- - Enhancement: Add automatic PayPal account creation flow. #4804
690
- - Enhancement: Move the WooCommerce > Coupons dashboard menu item to Marketing > Coupons. #4786
691
- - Tweak: Add education and travel to the onboarding industry types #4694
692
- - Tweak: Refactor Jetpack connection flows #4655
693
- - Tweak: Refactor tax task to use promise chain #4683
694
- - Tweak: Add bundle install UI to Business Details step #4695
695
- - Tweak: Include Product Bundles and Product Add-ons as OBW product options #4705
696
- - Tweak: Toggle the “Physical products” checkbox on by default #4702
697
- - Tweak: Variation Names: Allow long names to be shown #4715
698
- - Tweak: Limit inbox status to unactioned notes #4765
699
- - Tweak: Only show usage tracking modal once in OBW. #4766
700
- - Tweak: Add WooCommerce Payments to Setup Checklist. #4793
701
- - Tweak: Update connection flow for Bundle UI #4717
702
- - Tweak: Style improvements for Marketing hub. #4794
703
- - Tweak: Added skip profiler functionality #4721
704
- - Tweak: Reordered home screen tasks #4754
705
- - Tweak: Create single source of truth for task list array #4825
706
- - Tweak: Rework the store details onboarding screen #4771
707
- - Tweak: Design of Product Types step in Onboarding #4707
708
- - Tweak: Add copy that WCS TOS will be accepted upon install #4799
709
- - Dev: Customize webpack jsonpFunction to avoid potential collision with other Webpack bundles #4644 🎉 @aaemnnosttv
710
- - Dev: Update @wordpress/base-styles and replace deprecated variables #4759
711
-
712
- = 1.3.2 2020-07-29 =
713
- - Fix: bug preventing saving user preferences on WP 5.3. #4869
714
-
715
- = 1.3.1 2020-07-20 =
716
- - Fix: PHP Fatal errors when columns are missing from the Notes table. #4831
717
-
718
- = 1.3.0 2020-07-08 =
719
- - Enhancement: Add Jetpack stats to performance indicatorts / homepage #4291
720
- - Enhancement: New "Store Management" quick links card on WooCommerce home screen. #4350
721
- - Enhancement: Inbox notifications layout updates #4218
722
- - Enhancement: New Home Screen #4303
723
- - Enhancement: Use WordPress Core colors for styling accents. #4558
724
- - Dev: Add jest-dom eslint plugin. #4327
725
- - Dev: Migrate onboarding data store to wp.data #4433
726
- - Dev: Remove use of `IconButton` in favor of `Button` #4415
727
- - Dev: Fix error handling for plugins on server error #4462
728
- - Dev: update @wordpress/components and @wordpress/base-styles #4427
729
- - Dev: Migrate user store to wp.data #4505
730
- - Dev: Add options data store to wp.data #4144
731
- - Dev: Runtime feature config override #4523
732
- - Dev: Check that the possibly_add_note function exists before calling it #4680
733
- - Dev: Remove unnecessary rest API init action. #4691
734
- - Dev: Don't include sourcemaps or unminified JS for "core" builds. #4642
735
- - Fix: misaligned 'required' text on selects #4307
736
- - Fix: exception when opening dashboard after selecting extensions to purchase #4357
737
- - Fix: REST API collections schema #4377
738
- - Fix: Monetary Advanced Filters in Customers Report with correct currency object prop. #4356
739
- - Fix: In App purchase "back link" #4301
740
- - Fix: Search results selectable by clicking on item text or icon #4474
741
- - Fix: Filters' static query parameters #4458
742
- - Fix: The WCPay method not appearing as recommended sometimes #4345
743
- - Fix: Removed URLSearchParams method #4501
744
- - Fix: REST API collections schema. #4484
745
- - Fix: null issue in wpNavMenuClassChange #4513 🎉 @gradosevic
746
- - Fix: RTL stylesheet loading for split code chunks. #4542
747
- - Fix: Don't show store location step in tax and shipping tasks if the address has already been provided #4507
748
- - Fix: Check for enabled methods before payment task completion #4530
749
- - Fix: Solved a problem with the method onChoose in the last onboarding step. #4583
750
- - Fix: Only mark purchase task as complete when products exist #4574
751
- - Fix: Remove unnecessary rest_api_init action that caused incompatibility issues with other plugins. #4691
752
- - Fix: Fix WCPay sometimes not appearing on the task list #4647
753
- - Tweak: make revenue report total sales column optional #4397
754
- - Tweak: Adjustments to WooCommerce Payments setup task #4373
755
- - Tweak: Handling of plugin installs in OBW #4411
756
- - Tweak: Update design of Setup Checklist #4434
757
- - Tweak: Add scrollable styling to left side of Table, and keep updated #4179
758
- - Tweak - Add custom autocompleter support to Search componen #4518
759
- - Tweak: reduce asset filename length. #4535
760
- - Tweak: Use single dash for country/state dropdown options #4553
761
- - Tweak: Use label tag for toggleable shipping zones #4554
762
- - Tweak: Tweak - Make it easier to add submenu items to the Marketing menu #4561
763
- - Tweak: Remove duplicate/redundant inbox note after first order received. #4659
764
- - Tweak: Fix the embed page CSS so the top content sits better #4622
765
-
766
-
767
- = 1.2.4 2020-06-11 =
768
- - Tweak: reduce asset filename length and remove tilde characters. #4535
769
- - Fix: RTL stylesheet loading for split code chunks. #4542
770
-
771
- = 1.2.3 2020-05-22 =
772
- - Tweak: Updates to WooCommerce Payments in Setup Checklist #4293
773
-
774
- = 1.2.2 2020-05-18 =
775
- - Fix: Respect tracking opt-in before new page load. #4368
776
- - Enhancement: Add Jetpack connection to plugin benefits step #4374
777
-
778
- = 1.2.0 2020-05-18 =
779
- - Enhancement: Add onboarding payments note #4157
780
- - Enhancement: Marketing Inbox Note #4030
781
- - Performance: Use Route based code splitting to reduce bundle size #4094
782
- - Performance: trim down inbox note API request. #3977
783
- - Fix: Proper display of elements in wc-admin pages when in a RTL environment. #4051
784
- - Fix: Update UX when knowledge base articles fail to retrieve #4133
785
- - Fix: Updated messaging after last step in OBW. #4148
786
- - Fix: Reset profiler when visiting old OBW URL #4166.
787
- - Fix: Dashboard flash before OBW chunk loads #4259
788
- - Tweak: Enable the default homepage template to be filtered #4072 🎉 @stevegrunwell
789
- - Tweak: Create admin note if Jetpack or WooCommerce Services plugin doesn't get installed due to an error during OBW #3888
790
- - Tweak: Update Email Marketing note. #4167
791
- - Tweak: Adjust "demo products" verbiage to "Sample Products" #4184 🎉 @jobthomas
792
- - Tweak: Don't reschedule imports on failed imports #4263
793
- - Tweak: Remove obsolete inbox messages #4182
794
- - Dev: Make query selector for admin alerts more specific #4289 🎉 @pauloiankoski
795
- - Dev: Guard against null themes in OBW #4244
796
- - Dev: Update wcadmin db version after db callback #4323
797
- - Dev: Only migrate options on version change #4324
798
- - Dev: Use PAGE_ROOT constant to reduce redundant strings #4238 🎉 @codemascot
799
- - Dev: Decouple Plugins DataStore from onboarding feature #4048
800
- - Dev: Move API out of Onboarding #4093
801
- - Dev: Add Profiler Step View Tracks #4141
802
- - Dev: Add React Testing Library #4221
803
- - Dev: Add List and Link components to Storybook #4219
804
- - Dev: Cast Shipping Total to float #4042 🎉 @barryhughes
805
- - Dev: Dynamic Currency with Context API #4027
806
- - Dev: Remove Duplicate array entry #4049 🎉 @tivnet
807
-
808
- = 1.1.3 2020-05-18 =
809
- - Tweak: Onboarding: Add Jetpack flow back to onboarding profiler. #4382
810
- - Fix: Respect tracking opt-in before new page load. #4368
811
-
812
- = 1.1.2 N/A =
813
- - Version bumped on Composer/Packagist but not released to WordPress.org.
814
-
815
- = 1.1.1 2020-05-05 =
816
- - Fix: Storefront should show at top of theme options in onboarding wizard. #4187
817
- - Tweak: Remove Stripe auto-connect from payment task. #4164
818
- - Tweak: Hide suggested extensions in Marketing Tab if opted out of "Marketplace Suggestions"
819
-
820
- = 1.1.0 2020-04-23 =
821
- - Tweak: Added link to "go shopping" button #3712
822
- - Fix: Make analytics tables use the site's date format setting #3715
823
- - Fix: Alignment of select text #3723 🎉 @edmundcwm
824
- - Tweak: Add PayFast payment gateway option for sites in South Africa #3738
825
- - Tweak: Onboarding: Update screen order and remove Jetpack connection in profiler #3739
826
- - Tweak: Onboarding - business step: add more options in the competitors list and other fixes #3812
827
- - Tweak: Onboarding: Redesign plugin benefits screen #3764
828
- - Fix: inconsistent wording downloads report #3844 🎉 @jobthomas
829
- - Tweak: Onboarding: Use full width template for homepage in stores using Storefront #3846
830
- - Tweak: Remove 'add first product' note. #3876
831
- - Enhancement: Improve focus on task list #3796
832
- - Enhancement: Allow individual payment method setup in the onboarding task list #3782
833
- - Tweak: Onboarding: Add toggles to configured payments in task list #3801
834
- - Onboarding: Add offline payment methods #3832
835
- - Fix: Verify Stripe API keys in payment set up step. #3910
836
- - Fix: Connect to WooCommerce.com note disappears before connecting. #3909
837
- - Tweak: Onboarding - payments task: filter payment gateways if the user selects CBD #3745
838
- - Enahncement: Create flat rate or free shipping methods from the onboarding task list #3927
839
- - Fix: Add WooCommerce support if store is using default theme #3908
840
- - Fix: Make WooCommerce breadcrumbs use WooCommerce Branding if it is installed #3798
841
- - Fix undefined variable slug on theme activation error #3942 🎉 2nad@m1992
842
- - Tweak: Style and icon updates for Activity Panel #3965
843
- - Fix: handle cases where coupon dates are in an unexpected format. #3984
844
- - Enhancement: "Personalize your store" reminder: new inbox notification #3895
845
- - Fix: Onboarding: only validate other platform name for 'other' selling venues #4011
846
- - Performance: only query necessary data in Orders Panel. #3969
847
- - Tweak: Remove icon-button classes from Tag component #3993
848
- - Enhancement: WooCommerce Shipping order page banner prompt #3955
849
- - Performance: speed up indicators endpoint response. #3997
850
- - Enahncement: Add WC Pay to startup checklist
851
- - Enhancement: Marketing Tab
852
- - Enhancement: Add WooCommerce Payments Inbox note #4013
853
- - Fix: Added hook to delete woocommerce_onboarding_homepage_post_id #4015
854
- - Performance: only query requested stat totals in reports. #4009
855
- - Fix: Show admin notices on legacy admin screens. #4019
856
- - Tweak: Reduce the number of default widgets on the dashboard. #4035
857
- - Tweak: Onboarding: Remove plugins step from profiler #3974
858
- - Fix: wc-admin pages work in Internet Explorer 11. #4037
859
- - Dev: Handle orphaned order statuses in analytics settings. #4090
860
- - Tweak: Overwrite button overflow css from Wordpress 5.4 defaults #4108
861
- - Dev: Fix usage of WP_Error in non-global namespaces. #4115
862
- - Tweak: business details step: increase max-height on competitors listbox #4111
863
- - Fix: OBW: Allow CBD only for US stores #4117
864
-
865
-
866
- = 1.0.3 2020-03-22 =
867
-
868
- - Fix: Stop calling protected has_satisfied_dependencies() on outdated plugin. #3938
869
- - Fix: Rename image assets in OBW business details step. #3931
870
- - Fix: Stop using WP Post store for Action Scheduler. #3936
871
-
872
- = 1.0.2 2020-03-18 =
873
-
874
- - Enhancement: Onboarding: business step: add Google Ads extension install #3725
875
- - Dev: Update prestart script so readme.txt stable tag is updated #3911
876
- - Tweak: create database tables on an earlier hook to avoid conflicts with core WooCommerce. #3896
877
- - Fix - Made the admin note loading more resilient to prevent failures when loading notes with invalid content_data. #3926
878
-
879
- = 1.0.1 2020-03-12 =
880
-
881
- - Fix: Add Report Extension Example: Add default props to ReportFilters
882
- - Fix: Product report sorting by SKU when some products don't have SKUs
883
- - Dev: Add Changelog script
884
- - Fix: type warning on install timestamp in PHP 7.4
885
- - Fix: PHP error when WooCommerce core is Network Active on Multisites.
886
- - Fix: missing database table errors on WooCommerce upgrade.
887
- - Fix: undefined const WC_ADMIN_VERSION_NUMBER when WP < 5.3
888
- - Dev: Fix failing tests after WC core merge.
889
- - Dev: Bump WooCommerce tested up to tag
890
-
891
- = 1.0.0 2020-03-5 =
892
-
893
- - Fix: Customers Report: fix missing report param in search #3778
894
- - Fix: OBW Connect: Fix requesting state #3786
895
- - Fix: OBW: Fix retry plugin install button disappearing #3787
896
- - Fix: Update Country Labeling to Match Core #3790
897
- - Fix: Onboarding: Enable taxes when automatic taxes are setup #3795
898
- - Dev: Onboarding: Remove old development flags #3809
899
- - Fix: Padding on Jetpack notices when activity panel is present. $3418
900
- - Fix: Taxes Report search. #3815
901
- - Fix: Taxes Report search bug and adds initial documentation. #3816
902
- - Fix: Activity Panels: Remove W Panel #3827
903
- - Fix: Tracking on migrated options #3828
904
-
905
- = 0.26.1 2020-02-26 =
906
-
907
- - Fix: Remove free text Search option when no query exists #3755
908
- - Fix: StoreAlert: Fix typo in API description #3757 👏 @akirk
909
- - Fix: WP Coding Standards PR Regressions #3760
910
- - Fix: OBW: sideloading image test error #3762
911
- - Fix: coding standards violations #3763
912
- - Fix: Product titles include encoded entities #3765
913
- - Fix: Add deactivation hook to Package.php #3770
914
- - Fix: Add active version functions #3772
915
-
916
- = 0.26.0 2020-02-21 =
917
-
918
- - Fix: Warning in product data store when tax amount is non-numeric. #3656
919
- - Fix: Enable onboarding in production. #3680
920
- - Enhancement: Move Customers report to WooCommerce Menu #3632
921
- - Performance: Remove slow physical products query from non setup checklist pages #3722
922
- - Tweak: use cron instead of Action Scheduler for unsnoozing notes. #3662
923
- - Dev: Add tracks events when profiler steps are completed #3726
924
- - Dev: Ensure continue setup loads the onboarding profiler #3646
925
- - Fix: Added new control in /packages/components/src/select-control/list.js #3700
926
- - Fix: Alignment of select text #3723 👏 @edmundcwm
927
- - Performance: Make Stock Panel indicator more performant. #3729
928
- - Performance: Remove sideloaded images to save on build size #3731
929
- - Fix: Create Onboarding homepage without redirect #3727
930
- - Add: Deactivation note for feature plugin #3687
931
- - Dev: Travis tests on Github for release branch #3751
932
-
933
- = 0.25.1 2020-02-07 =
934
-
935
- - Dev: Enable onboarding #3651 (Onboarding)
936
- - Now `decodeEntities` method is used to correct the breadcrumb. #3653 (Activity Panel)
937
- - Fix: Fix styling of search control in report table header and filters. #3603 (Analytics, Components, Packages)
938
- 🤯
939
-
940
- = 0.25.0 2020-01-29 =
941
-
942
- - Fix: Onboarding: Mark profiler complete on WC update #3590 (On Merge to WC Core, Onboarding)
943
- - Dev: fix strict standards in Scheduler classes #3583
944
- - Task: Avoid redundant/unnecessary cleanup. #3580 (On Merge to WC Core)
945
- - Fix: Fix styling of search control in report table header and filters. #3603 (Analytics, Components, Packages)
946
- - Fix: report table search component. #3618 (Analytics, Components, Packages)
947
- - Performance: Remove unnecessary use of lodash get #3598 (Onboarding)
948
- - Tweak: don't modify page titles for existing WooCommerce pages. #3585 (On Merge to WC Core)
949
- - Dev: Handle custom currency formats #3349 (Components, Packages)
950
- - Fix: Update broken note action hooks #3535 (Activity Panel, Inbox)
951
- - Dev: Onboarding: Only Show Retry Button on Plugin install failure #3545
952
- - Dev: SelectControl: Add an option to show all options on refocus #3551 (Components, Packages)
953
- - Fix: SQL error in category table sort. #3521 (Analytics)
954
- - Dev: Onboarding: Add option to track appearance completion #3503 (Onboarding)
955
- - Enhancement: add customer privacy erasure support. #3511 (Analytics)
956
- - Fix: handle uninstallation when in feature plugin mode. #3546 (On Merge to WC Core)
957
- - Fix: Exception on dashboard once Onboarding tasks are complete #3513
958
- - Tweak: Onboarding - Add Skip Step link on Themes Step. #3490 (Onboarding)
959
- - Bug: Add SelectControl debouncing and keyboard fixes #3507 (Components, Packages)
960
- - Tweak: Included RegExp for JS files in examples.config.js #3510 (Build, Extensibility) 👏 @yash-webkul
961
- - Bug: Onboarding: Don't show skip link if no plugins exist to skip #3485 (Onboarding)
962
- - Fix: Make package-based load inert when plugin is active. #3555 (On Merge to WC Core)
963
- - Dev: Onboarding: Add purchase products task list item #3472 (Onboarding)
964
- - Fix: Properly style theme selection button in Site Profiler #3489
965
- - Dev: Onboarding: Add tracks to extension purchase task and modal #3493 (Onboarding)
966
- - Tweak: Change Refunds to Returns on the dashboard. #3514
967
- - Dev: Update translation scripts and instructions for creating `.json` files. #3433 (Build)
968
- - Bug: Onboarding: Add in tracks for failed plugin installation #3483 (Onboarding)
969
- - Dev: Onboarding: Add theme install and activation endpoints #3482 (Onboarding, REST API)
970
- - Fix: component styles for WordPress 5.3. #3357 (Build, Components, Design, Packages)
971
- - Dev: Onboarding: Add another option to platforms. #3471 (Onboarding)
972
- - Fix: `CompareFilter` functionality regression. #3421 (Analytics, Components, Packages)
973
- - Fix: don't run database migrations on new installs. #3473
974
- - Fix: WC-Admin header on settings and status pages. #3389 (Activity Panel)
975
- - Enhancement: allow filtering of hidden WP notices. #3391 (Activity Panel, Extensibility)
976
- - Fix: show pending product reviews when comment moderation is disabled. #3459 (Activity Panel)
977
- - Dev: AssetDataRegistry: update SQL example #3418
978
- - Tweak: Scroll to notices when displayed while the notice area is scrolled out of view. #3390 (Activity Panel)
979
- - Dev: DataStores: normalize contexts to plural #3419
980
- - Enhancement: allow report cache layer to be turned off. #3434
981
- - Bug: Fix user data fields filter name. #3428 (Dashboard)
982
- - Fix: error when trying to download report data. #3429 (Analytics)
983
- - Dev: Update to latest PHPUnit 7 #3571 (Build)
984
- - Fix: invalidate Reports cache when changing Analytics settings. #3465 (Analytics, REST API, Settings)
985
- - Bug: Onboarding: Skip Shipping connect step if Jetpack is already connected #3486 (Onboarding)
986
- - Fix: Time zone offset calculation on customer last active date. #3388 (Analytics)
987
- - Dev: Default the Calypso environment to production #3347 (Onboarding)
988
- - Bug: Onboarding: Update shipping task button text #3400 (Onboarding)
989
- - Bug: Onboarding: Update check for TOS accepted in tax step #3245 (Onboarding)
990
- - Fix: remove the header when user doesn't have required permissions #3386 (Activity Panel)
991
- - Dev: Add autocomplete props to address fields in onboarding and adjust country/state matching #3338 (Onboarding)
992
- - Dev: Add purchase modal at the end of the profile wizard #3444 (Onboarding)
993
- - Dev: Standardize hook and filter prefixes. #3339 (On Merge to WC Core)
994
- - Fix: make report filter date props optional #3359 (Components, Extensibility, Packages)
995
- - Tweak: Add/disable plugin filter #3361
996
- - Dev: Onboarding - Add button to continue setup after importing products #3402 (Build, Onboarding)
997
-
998
- = 0.24.0 2020-01-06 =
999
-
1000
- - Bug: Add SelectControl debouncing and keyboard fixes #3507 (Components, Packages)
1001
- - Fix: Properly style theme selection button in Site Profiler #3489
1002
- - Dev: Update translation scripts and instructions for creating `.json` files. #3433 (Build)
1003
- - Dev: Add initial documentation for the historical data import. #3506 (Documentation)
1004
- - Dev: Onboarding: Add purchase products task list item #3472 (Onboarding)
1005
- - Dev: Onboarding: Add another option to platforms. #3471 (Onboarding)
1006
- - Dev: Add singular/plural distinction to onboarding plugins installation #3517 (Onboarding)
1007
- - Dev: Onboarding: Add theme install and activation endpoints #3482 (Onboarding, REST API)
1008
- - Tweak: Onboarding - Add Skip Step link on Themes Step. #3490 (Onboarding)
1009
- - Bug: Onboarding: Skip Shipping connect step if Jetpack is already connected #3486 (Onboarding)
1010
- - Bug: CI: use PR repo instead of main repo when checking out branches. #3512 (Build)
1011
- - Tweak: Included RegExp for JS files in examples.config.js #3510 (Build, Extensibility) 👏 @yash-webkul
1012
- - Dev: Onboarding: Add tracks to extension purchase task and modal #3493 (Onboarding)
1013
- - Tweak: Change Refunds to Returns on the dashboard. #3514
1014
- - Fix: invalidate Reports cache when changing Analytics settings. #3465 (Analytics, REST API, Settings)
1015
- - Dev: DataStores: normalize contexts to plural #3419
1016
- - Dev: AssetDataRegistry: update SQL example #3418
1017
- - Fix: show pending product reviews when comment moderation is disabled. #3459 (Activity Panel)
1018
- - Enhancement: allow report cache layer to be turned off. #3434
1019
- - Tweak: Scroll to notices when displayed while the notice area is scrolled out of view. #3390 (Activity Panel)
1020
- - Dev: Add autocomplete props to address fields in onboarding and adjust country/state matching #3338 (Onboarding)
1021
- - Dev: Update instructions for documenting new components. #3443 (Components, Documentation)
1022
- - Dev: Add purchase modal at the end of the profile wizard #3444 (Onboarding)
1023
- - Fix: component styles for WordPress 5.3. #3357 (Build, Components, Design, Packages)
1024
- - Bug: Onboarding: Don't show skip link if no plugins exist to skip #3485 (Onboarding)
1025
- - Bug: Onboarding: Add in tracks for failed plugin installation #3483 (Onboarding)
1026
- - Dev: Fix the "is this card useful" prompt display #3427 (Onboarding)
1027
- - Tweak: Add/disable plugin filter #3361
1028
- - Bug: Onboarding: Update shipping task button text #3400 (Onboarding)
1029
- - Dev: Default the Calypso environment to production #3347 (Onboarding)
1030
- - Dev: Standardize hook and filter prefixes. #3339 (On Merge to WC Core)
1031
- - Fix: WC-Admin header on settings and status pages. #3389 (Activity Panel)
1032
- - Dev: Fix revenue question translation with currency conversion #3358 (Onboarding, Packages)
1033
- - Fix: make report filter date props optional #3359 (Components, Extensibility, Packages)
1034
- - Dev: Onboarding - Add button to continue setup after importing products #3402 (Build, Onboarding)
1035
- - Bug: Onboarding: Update check for TOS accepted in tax step #3245 (Onboarding)
1036
-
1037
- = 0.23.3 2019-12-26 =
1038
-
1039
- - Fix: don't run database migrations on new installs. #3473
1040
-
1041
- = 0.23.2 2019-12-19 =
1042
-
1043
- - Enhancement: allow filtering of hidden WP notices. #3391 (Activity Panel, Extensibility)
1044
- - Fix: error when trying to download report data. #3429 (Analytics)
1045
- - Bug: Fix user data fields filter name. #3428 (Dashboard)
1046
- - Fix: `CompareFilter` functionality regression. #3421 (Analytics, Components, Packages)
1047
- - Fix: Time zone offset calculation on customer last active date. #3388 (Analytics)
1048
- - Fix: remove the header when user doesn't have required permissions #3386 (Activity Panel)
1049
-
1050
- = 0.23.1 2019-12-08 =
1051
-
1052
- - Fix: undefined function error.
1053
-
1054
- = 0.23.0 2019-12-06 =
1055
-
1056
- - Dev: Add currency extension #3328 (Packages)
1057
- - Fix: errant moment locale data loading. #3362 (Components, Packages)
1058
- - Dev: Packages: Prep for release. #3325 (Build, Components, Packages)
1059
- - Bug: Settings: Persist date range selection #3293
1060
- - Dev: Remove Newspack dependency. #3302
1061
- - Dev: DB Updates: invalidate cache after update #3299
1062
- - Fix: beginning of next day calculation on daylight saving time on the days the time changes. #3333 (Analytics)
1063
- - Tweak: Add a filter that allows disabling WooCommerce Admin. #3350 (On Merge to WC Core)
1064
- - Fix: Retrieve week last year data by calendar date instead of week alignment. #3271 (Analytics, Packages)
1065
- - Bug: Check if extended_info is set for order report items #3315 (REST API)
1066
- - Tweak: remove global settings dependency from Navigation package. #3294 (Components, Packages)
1067
- - Fix: Fix checkout of main branch in CI environment. #3296 (Build)
1068
- - Fix: decouple Date package from global wcSettings object. #3278 (Components, Packages)
1069
- - Fix: Make the order count between customer and table total consistent. #3290 (Analytics)
1070
- - Fix: decouple Currency and Number packages from global wcSettings object. #3277 (Components, Packages)
1071
- - Bug: Filter invalid statuses from saved statuses #3268
1072
- - Dev: use a filter to set default locale #3273
1073
- - Dev: Allow core inclusion via Package.php #3196 (Build)
1074
- - Dev: Fix filter gap on analytics select controls #3259 (Components, Packages)
1075
- - Bug: Correcting and clarifying analytics terms and calculations #3104 (Analytics, Components, Packages)
1076
- - Dev: rename data store get_* to add_* functions where function does not return values #3275
1077
- - Tweak: Search component: remove dependency on settings global from countries autocompleter. #3262 (Components, Packages)
1078
- - Dev: PHPCS fixes for onboarding files #3269 (Documentation)
1079
- - Dev: Add a tracks queue to delay event recording & log embed page views #3250
1080
- - Dev: Make WooCommerce brand localizable #3247
1081
- - Fix: Add single customer REST API end point. #3174 (REST API)
1082
- - Dev: fix typos in JS docs #3248
1083
- - Bug: Select control: fix misalignment and hide scroll bar #3215 (Components, Packages)
1084
- - Dev: capitalize WooCommerce Services #3249
1085
-
1086
- = 0.22.0 2019-11-13 =
1087
-
1088
- - Fix: Incorrect calculation of tax summary on Taxes screen. #3158 (Analytics)
1089
- - Fix: Correct product and coupon count on edited orders. #3103 (Analytics)
1090
- - Bug: Update filter picker to use key instead of id #3214 (Analytics, Components, Packages)
1091
- - Enhancement: prompt stores to add their first product(s). #3119 (Inbox)
1092
- - Dev: Move Analytics REST endpoints to `wc-analytics` namespace. #3204 (Components, Packages)
1093
- - Tweak: add usage tracking inbox notice. #3112 (Activity Panel, Inbox)
1094
- - Task: Fix PHP linter errors. #3188
1095
- - Enhancement: Add query filters to data stores.
1096
- - Dev: Refactor data store classes. #2961 (REST API)
1097
- - Dev: WooCommerce Admin has been marked as compatible with WooCommerce 3.8.0. #3201
1098
- - Bug: Fix ellipsis menu style #3141 (Analytics, Components, Packages)
1099
- - Tweak: Field misalignment in product edit screen. #3145
1100
- - Dev: update tested to version for WC and WP #3162
1101
- - none needed. #3138 (Documentation)
1102
-
1103
- = 0.21.0 2019-10-30 =
1104
-
1105
- - Fix: report export format when generated server-side. #2987 (Analytics, Packages)
1106
- - Tweak: automatically update DB version during plugin updates. #3113
1107
- - Tweak: add visual feedback for Inbox Note Actions #3039 (Activity Panel, Build, Inbox)
1108
- - Fix: Address discrepancies in Revenue totals between Analytics screens. #3095 (Analytics)
1109
- - Tweak: track inbox note views. #3096 (Activity Panel, Build, Inbox)
1110
- - Dev: Fix asset image URL and business extension images #3062
1111
- - Dev: Fix broken plugin builds by adding missing feature flag check #3053 (Build)
1112
- - Enhancement: add management link to Reviews panel. #3011 (Activity Panel)
1113
- - Fix: Error in category comparison chart. #3027 (Analytics, REST API)
1114
- - Dev: Add the ability to create custom plugin builds #3044 (Build)
1115
- - Fix: create table error during import. #3022 (Analytics, Build)
1116
- - Tweak: Moved WC-Admin specific actions from TableCard to ReportTable. #2900 (Build, Components, Packages)
1117
-
1118
- = 0.20.1 2019-09-24 =
1119
-
1120
- - Fix: use category lookup id instead of term taxonomy id (#3027)
1121
- - Fix: Update order stats table status index length. (#3022)
1122
-
1123
- = 0.20.0 2019-09-24 =
1124
-
1125
- - Dev: Fix issue #2992 (order number in orders panel) #2994
1126
- - Dev: Replace lodash isNaN() with native Number.isNaN() #2998 (Build, Packages)
1127
- - Enhancement: add option to email a download link when exporting reports. #2899 (Analytics, REST API)
1128
- - Dev: Ignore filename rules for PSR-4 classes. #2967 (Build)
1129
- - Fix: Catch notices that are hooked earlier than priority 10. #2981
1130
- - Dev: Category Lookup Table - Fix Category Segments #2253
1131
- - Performance: add caching layer to analytics. #2970 (Analytics)
1132
- - Dev: Replace lodash isFinite() with native Number.isFinite() #2977 (Build, Components, Packages)
1133
- - Bug: Fix conflict with Blocks 2.4 #2846
1134
- - Dev: Add filter to notes datastore where clauses. #2819
1135
- - Dev: Copy component READMEs to docs folder before GH page deploy. #2952 (Build)
1136
- - Dev: Add GitHub pages deploy step to Travis config. #2940 (Build, Documentation)
1137
- - Dev: Fix plugin installation when working from a push instead of a pull request. #2950 (Build)
1138
- - Dev: Fix pull request branch detection on CI (try #2) #2944 (Build)
1139
- - Dev: Only build pushes to main branch. #2941 (Build)
1140
- - Performance: reduce JS bundle size. #2933 (Build)
1141
- - Dev: Fix pull request branch detection on CI #2942 (Build)
1142
- - Dev: refresh component documentation #2872 (Build, Components, Documentation, Packages)
1143
- - Dev: Simplified intervals_missing method of DataStore class #2920 👏 @codemascot
1144
- - Dev: Simplified intervals_missing method of TimeInterval class #2920 👏 @codemascot
1145
-
1146
- = 0.19.0 2019-09-24 =
1147
-
1148
- - Dev: Use upstream webpack-rtl-plugin #2870 (Build)
1149
- - Dev: Fix variable name typo #2922
1150
- - Fix: persist date_last_active for customer reports #2881 (Analytics) 👏 @cojennin
1151
- - Tweak: consistent naming for report columns. #2845 (Design)
1152
- - Tweak: schedule customer lookup table updates instead of running during checkout. #2832
1153
- - Tweak: have Import note action scroll to import section of settings screen. #2799 (Activity Panel, Components, Inbox, Packages)
1154
- - Bug: Fix chart type buttons misalignment #2871 (Components, Packages)
1155
- - Updated to color-studio v2 and refreshed the color scheme #2837 (Build, Components, Packages)
1156
- - Tweak: change report charts filter name. #2843 (Components, Documentation, Packages)
1157
- - Dev: Update no data message in table #2854 (Components, Packages)
1158
-
1159
- = 0.18.0 2019-08-28 =
1160
-
1161
- - Fix: Product in dropdown clickable in FF/Safari #2839 (Components, Packages) 👏 @cojennin
1162
- - Fix: gross order total calculation. #2817 (Analytics)
1163
- - Fix: Date calculation on notes being double adjusted to UTC. #2818 (Inbox)
1164
- - Bug: Orders report now shows coupons in Coupon(s) column #2812 (Analytics) 👏 @cojennin
1165
- - Fix: Bug navigating from DevDoc component pages to WP dashboard pages. #2827 (Documentation)
1166
- - Enhancement: add Facebook extension inbox note. #2798 (Activity Panel, Inbox)
1167
- - Enhancement: handle simple to variable product changes in reports. #2814 (Analytics)
1168
- - Dev: Release Scripts: Update to reflect refactor #2796 (Build)
1169
- - Fix: Import all used Gutenberg component styles. #2679
1170
- - Fix: report column visibility preference bug. #2806 (Analytics, Components, Packages, Settings)
1171
- - Dev: Components: prepare changelogs for release #2802 (Build, Components, Packages)
1172
- - Fix: remove date picker from Customers Report. #2805 (Analytics)
1173
- - Tweak: add empty dataset treatment for report tables. #2801 (Analytics, Components, Packages)
1174
- - Dev: Search List Control: fix long count values cut-off in IE11 #2783 (Components, Packages)
1175
- - Dev: Update List actionable items to be wrapped with Link #2779 (Components, Packages)
1176
-
1177
- = 0.17.0 2019-08-15 =
1178
-
1179
- - Fix: chart data fetch/render over long time periods #2785 (Analytics)
1180
- - Task: update the class filename exclusion to /src/ for PSR-4 #2794
1181
- - Tweak: Increase zIndex on popover elements. #2777
1182
- - Fix: chart display when comparing categories. #2710 (Analytics)
1183
- - Fix: Allow WooCommerce Admin to be deleted through the plugin screen when WooCommerce is not active. #2762
1184
- - Fix: Charts being partially rendered on long time periods. #2776 (Analytics)
1185
- - Task: update WC tested to version to 3.7.0 #2782
1186
- - Fix: Customer last active date showing `Invalid date`. #2764 (Analytics)
1187
- - Task: Update report endpoints to be PSR-4 autoloaded #2755 (Build)
1188
- - Bug: Fix daily cron event (PSR-4) #2754 (Build)
1189
- - Fix: issue where product category update button was not always clickable #2753
1190
- - Fix: Add version parameter to `_doing_it_wrong` on `current_screen`. #2733
1191
- - Task: Update feature classes to be PSR-4 autoloaded. #2736 (Build)
1192
- - Fix: Short circuit admin title filter when applied by third parties too early. #2744
1193
- - Fix: chart display when comparing categories. #2708 (Analytics)
1194
- - Bug: Only apply current submenu CSS reset on non-embed pages. #2687
1195
- - Dev: Add `wc_admin_get_feature_config` filter to feature config array. #2689
1196
-
1197
- = 0.16.0 2019-07-24 =
1198
-
1199
- - Tweak: Change verbiage of feedback notification. #2677
1200
- - Dev: Update unit tests to work with PHPUnit 7+. #2678
1201
- - Fix: Bug that was preventing confirmation dialog from showing after saving settings. #2660
1202
- - Fix: completed orders lingering in activity panel. #2659 (Activity Panel, REST API)
1203
- - Dev: Webpack: Use wp.url instead of bundling package #2663 (Build)
1204
- - Fix: Location of unread indicators in activity panel. #2662
1205
- - Bug: Fix missing nav on connected admin pages. #2676
1206
- - Task: Add priority 2 Tracks events #2633 (Components, Packages)
1207
- - Dev: Replace 'stringifyQuery' with 'addQueryArgs' #2655 (Build, Components, Packages)
1208
- - Task: Add priority 3 Tracks events #2638 (Components, Packages)
1209
- - Fix: Z-index issue in empty message on chart #2646 (Components, Packages)
1210
- - Dev: Tests setup: bring in Woo Core dependencies #2640 (Build)
1211
- - Fix: Disable placeholder animation when prefers-reduced-motion is set #2645 (Accessibility)
1212
- - Task: Add instructions for translating to contributing docs. #2618 (Documentation)
1213
- - Dev: show example extension list as list in readme #2619 (Documentation)
1214
- - Fix: react-spring breaking IE11 #2698 (Build)
1215
-
1216
- = 0.15.0 2019-07-11 =
1217
-
1218
- - Fix: Compare checkboxes in report tables #2571
1219
- - Dev: Introduce a new Products by Tag(s) block #554
1220
- - Dev: Tracks: Fix Link onclick #2594 (Components, Packages)
1221
- - Fix: Use correct links in DevDocs. #2602 (Documentation)
1222
- - Fix: Prevent error when no actionable order statuses are set #2577
1223
- - Fix: exclude old WC auto-draft orders from import #2612 (Analytics)
1224
- - Dev: Fix: propType validation warnings on embedded pages #2607
1225
- - Fix: Only calculate one order row when the order has multiple coupons. #2484 (Analytics)
1226
- - Fix: Cast is_snoozable as int prior to database save #2573
1227
- - Performance: check for scheduled snooze action once per hour instead of every admin request. #2593
1228
- - Fix: Update layout of Settings Page and notify users when settings are not saved. #2544
1229
- - Dev: Update color-studio to 1.0.5 #2575 (Build, Packages)
1230
- - Task: Add tracks event to Store Alert and Inbox Notification action clicks #2559
1231
- - Fix: Change size of Header to 56px - fixes bug in product edit page toolbar being hidden.
1232
- - Dev: Add countLabel prop to SearchListItem #2569 (Components, Packages)
1233
- - Task: Send tracks event for snoozing store alerts. #2560
1234
- - Fix: Stock notifs: fix low_stock_amount for variations #2546
1235
- - Enhancement: Add Report CSV Export Endpoint #2526 (Analytics, REST API)
1236
- - Tweak: remove placeholder link. #2561
1237
- - Fix: WordPress Notifications Activity Panel falsely saying there are notices to be seen. #2552
1238
- - Dev: Route handling: Remove hash in favor of path parameter #2444 (Components, Packages)
1239
- - Dev: Customizable dashboard: handle turned off feature flag #2548
1240
- - Dev: Dashboard: Add Tracks events #2550 (Dashboard)
1241
- - Task: Tracks: Add chart and table events #2557
1242
- - Fix: Fixes issue with alerts on mobile #2537
1243
- - Bug: Fix batch queue range bug. #2521
1244
- - Dev: Advanced Filters: Add Tracks events #2525 (Components, Packages)
1245
- - Tweak: Open external note action links in a new tab #2462 (Activity Panel, Inbox)
1246
- - Tweak: fix some report endpoint default params. #2496 (REST API)
1247
- - Enhancement: Remove updated stock products from Activity Panel #2442 (Activity Panel)
1248
- - Fix: Track name for activity panel open event #2532
1249
- - Enhancement: Add Reports CSV Exporter Class #2502 (Analytics)
1250
- - Fix: margins on non-update notices. #2487 👏 @benignant
1251
- - Enhancement: add state/region to Customers Report. #2463 (Analytics) 👏 @KZeni
1252
-
1253
- = 0.14.0 2019-06-24 =
1254
-
1255
- - Dev: Action Scheduler: fix potential endless sync #2425
1256
- - Dev: Fix Activity Panel being overlapped by editor toolbar #2446 (Activity Panel)
1257
- - Bug: add match=any support for advanced orders table filter #2228
1258
- - Dev: update tested to version in plugin repo readme.txt #2443
1259
- - Fix: PHP errors on missing refund orders during import. #2464 (Analytics)
1260
- - Dev: Allow keyboard interaction in Stock Activity Panel form #2447 (Accessibility, Activity Panel)
1261
- - Dev: Activity Panels: Add track event when panels are opened. #2498 (Build)
1262
- - Dev: Add wp-api-fetch script to dependencies #2460
1263
- - Dev: Remove the "wpClosedMenu" page setting #2441 (Build)
1264
- - Enhancement: Report Tables: Add example extension #2440 (Build, Components, Extensibility, Packages)
1265
- - Fix: fix type in readme changelog for 0.13.0 #2457 (Documentation)
1266
- - Tweak: Add test to catch missing version updates. #2424 (Build)
1267
- - Dev: Fix revenue and orders charts using the wrong endpoint in the Dashboard #2417 (Dashboard)
1268
- - Fix: handle internal `rest_do_request()` error conditions. #2423 (Dashboard)
1269
- - Dev: Fix conflicts with WordPress.com toolbar #2431 (Activity Panel)
1270
- - Task: Remove test menu from Orders panel #2438 (Activity Panel)
1271
- - Dev: Table queries: remove befor/after from no interval endpoints #2422
1272
- - Tweak: Reduce style dependencies on WP core, avoid errantly including WP core's Google Fonts. #2432 (Components)
1273
- - Dev: Update Dashboard Charts naming and order #2429 (Dashboard)
1274
- - Bug: Fix search bar in Orders page not being tapable on mobile #2384
1275
-
1276
- = 0.13.2 2019-06-13 =
1277
-
1278
- - Fix: Bump plugin version for database update.
1279
-
1280
- = 0.13.1 2019-06-12 =
1281
-
1282
- - Fix: Exit deactivate early if WooCommerce not active. #2410
1283
-
1284
- = 0.13.0 2019-06-12 =
1285
-
1286
- - Fix: Notes: update sales record link #2397
1287
- - Enhancement: Settings: Add default date settings #2292 (Components, Dashboard, Packages)
1288
- - Dev: Add tracks to import jobs #2193
1289
- - Dev: Notes: Add filters to disable milestone and sales record notes. #2227
1290
- - Enhancement: Trigger an action server side when admin note actions are clicked #2325
1291
- - Dev: Fix Activity Panel layout on mobile #2405 (Activity Panel)
1292
- - Dev: Add uninstall file to release ZIP #2402 (Build)
1293
- - Bug: Fix wrong average numbers in chart legends #2352 (Analytics, Components, Packages)
1294
- - Dev: Add date_created_gmt property to orders endpoint #2086 (Activity Panel)
1295
- - Enhancement: Add progress bars to Historical Data Import screen #2312
1296
- - Bug: Fix some data not to being imported when 'skip_existing' option is enabled #2385
1297
- - Fix: Double space at 191 row #2369 👏 @shoheitanaka
1298
- - Enhancement: Only show unactioned notes in the Inbox panel. #2327 (Inbox)
1299
- - Bug: Don't create Notices tab in Activity Panel if notices HTML element was removed by a plugin #2378
1300
- - Tweak: Allow paragraph tags in admin notes. #2344 (Inbox)
1301
- - Tweak: Allow note action URLs to be empty. #2324 (Inbox)
1302
- - Bug: Prevent inactive tabs from making requests #2377
1303
- - Task: Remove second beta warning from readme #2362
1304
- - Fix: Misspelling at update config.js #2368 👏 @shoheitanaka
1305
- - Dev: Transpile newspack-components package #2348 (Build)
1306
- - Dev: Low stock handling inconsistencies with WooCommerce 3.6+ #2191
1307
- - Dev: Remove d3-array dependency #2286 (Build)
1308
- - Dev: Dashboard Extentions: Add a section #2280 (Build, Components, Extensibility, Packages)
1309
- - Fix: Move StoreAlerts below screen meta links on embed pages. #2291
1310
- - Fix: Extensions: fix registering a page #2301 (Extensibility)
1311
- - Dev: Fix `box-shadow-8dp` error. #2290 (Components, Packages)
1312
- - Fix: Dashboard Extension Example: Make namespace unique #2302 (Extensibility)
1313
- - Dev: Persisted Queries: Avoid adding to non time related screens #2225 (Build)
1314
- - Dev: Remove customizable dashboard heading #2321 (Dashboard)
1315
- - Bug: Add missing space in Orders Activity Panel card #2306 (Activity Panel)
1316
- - Task: Remove beta warning from readme. #2340
1317
- - Dev: Dashboard: Extend charts data #2258 (Dashboard, Extensibility)
1318
- - Bug: Handle `WC_Admin_Notices`. #2245 (Activity Panel, On Merge to WC Core)
1319
- - Bug: Exclude auto-draft and trashed orders from imports. #2265
1320
- - Fix: wc-api: Remove reference to import update functions #2277 (Dashboard)
1321
- - Enhancement: Add support for “primary” admin notice actions. #2269
1322
- - Enhancement: Allow links in admin notice content. #2272
1323
- - Fix: Remove errant import update operation from `wp-api` spec. #2271
1324
- - Dev: Hook up import/totals endpoint to Historical Data Import screen #2208
1325
- - Fix: Refactor main file into singleton class structure #2226
1326
-
1327
- = 0.12.0 2019-05-14 =
1328
-
1329
- - Fix: dashboard issues #2194
1330
- - Fix: Dashboard: re-arrange section dropdown order #2216
1331
- - Fix: Refactor page handler API #2209
1332
- - Fix: EllipsisMenu misalignment in wide containers #2207
1333
- - Dev: Handle “all guests” when getting customers from orders. #2038
1334
- - Dev: Order milestones: prevent order count queries from being issues on every request. #2224
1335
- - Dev: Replace Rebuild reports settings with Import Historical Data #2198
1336
- - Dev: add a defaultValue parameter to the ReportFilters component #2150 👏 @rrennick
1337
- - Dev: Record refunds separate from order entries #2083
1338
- - Dev: Add refund filtering to order reports #2179
1339
- - Dev: Hook up API Historical Data screen to API endpoints #2177
1340
- - Fix: Show Y grid ticks/lines in charts where all values are lower than 1 #2147
1341
- - Fix: Dashboard: Rename class/feature to remove conflict with legacy dashboard widget #2138
1342
- - Fix: add defaultOrder field to tablecard header #2139 👏 @rrennick
1343
- - Fix: Travis: Exit scripts with error when one occurs #2184
1344
- - Dev: Save section/block preferences in user data #2148
1345
- - Fix: Vertically center Dashboard 'Add more' button #2171
1346
- - Fix: Don't make an API call when there are no performance indicators #2157
1347
- - Dev: Add Historical Data Import Screen #2073
1348
- - Fix: Fix customer type filter param in orders report #2169
1349
- - Dev: EllipsisMenu: Refactor children to renderContent #2154
1350
- - Dev: Dashboard: Section add, remove, move up, and move down #2134
1351
- - Fix: Persist chart interval in Dashboard #2156
1352
- - Dev: Allow renaming Dashboard sections #2131
1353
- - Dev: Add import endpoint and controller #2034
1354
- - Fix: Prevent chart type buttons breaking in two lines #2135
1355
- - Dev: Support Sequential Order Numbers in Downloads Report order number filter #1907
1356
- - Dev: Scroll to top of the table when navigating table pages #2051
1357
- - Dev: Add empty state for the Reviews panels #2124
1358
-
1359
- = 0.11.0 2019-04-17 =
1360
-
1361
- - Dev: Extend report submenu items #2033
1362
- - Dev: Extension Examples #2018
1363
- - Dev: Update admin notes readme #2043
1364
- - Dev: Add profile wizard base page #1933
1365
- - Dev: Method to publish core ready features #1863
1366
- - Dev: Add PHP autofix to pre-commit hook #2022
1367
- - Dev: PHP Lint fixes #2023
1368
- - Dev: Update Link in readme to Proper Location #2026
1369
- - Dev: Split D3Chart utils/axis file #2000
1370
- - Dev: Remove coupon_total from order stats table #1975
1371
- - Fix: Transpile acorn-jsx package #2064
1372
- - Fix: Inbox: Giving Feedback Notice #2019 👏 @Mr-AjayM
1373
- - Fix: Check if welcome message notice exists before creating it #2063
1374
- - Fix: Respect manual offsets in default before/after params #2035
1375
- - Fix: Fix wrong dates in Reviews and Orders panels of the Activity Panel #2013
1376
- - Fix: Make customer name extendable #1976
1377
- - Fix: center mobile icon vertically #1990 👏 @rrennick
1378
- - Fix: search filter focus #1994
1379
- - Fix: Fix date filter layout on Android #1996
1380
- - Fix: Order Status filter: <select> is not vertically aligned #1971 👏 @dinhtungdu
1381
- - Fix: add filter length condition to enable filter check #1983 👏 @rrennick
1382
- - Fix: lookup product title in order meta if product has been deleted #1977 👏 @rrennick
1383
- - Fix: Cast order totals as floats when calculating net total #1945
1384
- - Enhancement: Add empty state in Stock panel #2049
1385
- - Enhancement: Add empty state in Orders panel #2037
1386
- - Enhancement: Hook up Stock panel #1998
1387
- - Enhancement: Add order milestone notifications. #1872
1388
- - Enhancement: Add leaderboard controller and endpoint #1995
1389
- - Enhancement: Hook up leaderboards endpoint to dashboard #2004
1390
- - Enhancement: Activity Panel: Add a mobile app note #2008
1391
- - Enhancement: Scroll to top only when URL changes #1989
1392
- - Enhancement: Allow negative values in charts #1979
1393
-
1394
- = 0.10.0 2019-04-02 =
1395
-
1396
- - Dev: Properly namespaced methods in wc-admin.php. props @ronakganatra9 #1804
1397
- - Dev: Changed text-domain to `woocommerce-admin` #1795
1398
- - Dev: Updates to plugin header #1764
1399
- - Dev: Clear scheduled actions on plugin deactivate #1715
1400
- - Dev: Refactor getFilterQuery #1873
1401
- - Dev: Update npm dependencies #1913
1402
- - Fix: ESLint error in leaderboards #1914
1403
- - Fix: REST API Requests failing with isUnboundedRequest #1954
1404
- - Fix: Bugs in Reviews panel #1947
1405
- - Fix: Scroll to top of page when changing reports #1958
1406
- - Fix: Update variations controller filter names #1949
1407
- - Fix: Sku sorting in variations report #1952 #1801 props @ronakganatra9
1408
- - Fix: REST API customers exact match filters
1409
- - Fix: EmptyContent on narrow viewports #1703
1410
- - Fix: Empty chart and summary numbers in Categories Report #1698
1411
- - Fix: Display chart and summary numbers placeholders when loading search terms #1694
1412
- - Fix: Display order number on reports #1706
1413
- - Fix: Missing Date Picker Calendar in RTL #1810
1414
- - Fix: Circles on chart hover #1816
1415
- - Fix: Date Range dropdown for RTL locales #1803
1416
- - Fix: Sorting by tax_code in Taxes Report #1811
1417
- - Fix: Charts in RTL locales #1794
1418
- - Fix: RTL css #1781
1419
- - Fix: CSS Lint issues in store-alerts #1793
1420
- - Fix: Products stats segmentation when filtering categories #1779
1421
- - Fix: Remove timezone from appendTimestamp() output #1778
1422
- - Fix: REST API Make variations and coupons endpoints return zero-value items #1765
1423
- - Fix: REST API make categories return zero-value items #1755
1424
- - Fix: REST API Make products and rates endpoints return zero-value items #1722
1425
- - Fix: Taxes report, sort taxes numerically #1766
1426
- - Fix: Chart comparison mode single category #1762
1427
- - Fix: Simplify options in filters #1748
1428
- - Fix: Show compared keys in chart legends even if their values are 0 #1754
1429
- - Fix: IE11 Leaderboard issue
1430
- - Fix: Use IDs instead of labels to identify chart legend items #1730
1431
- - Fix: Update table columns visibility when loading finishes #1729
1432
- - Fix: Update chart colors #1731
1433
- - Fix: Date Picker css tabs #1717
1434
- - Fix: Infinite loop in customer population #1936
1435
- - Fix: PHP notices on orders data store #1870
1436
- - Fix: Table links to internal reports #1824
1437
- - Accessibility: Add button focus style to report chart interval selector #1740
1438
- - Enhancement: Add "Cancel All" method to ActionScheduler Store #1813
1439
- - Enhancement: Add store notice for processing historical data #1763
1440
- - Enhancement: Ensure other scheduled actions are claimed before WC Admin actions #1759
1441
- - Enhancement: Load on hold reviews in the Activity Panel: #1871
1442
- - Enhancement: Add overlay to Product Placeholder image #1880
1443
- - Enhancement: Added "Remind me later" ability to StoreAlert component #1848
1444
- - Enhancement: Set reviews Activity Panel unread indicator based off REST API data #1824
1445
- - Enhancement: Set orders Activity Panel unread indicator based off REST API data #1860
1446
- - Enhancement: Hide Reviews Activity Panel if reviews are disabled #1852
1447
- - Enhancement: Lookup product title in order meta if product has been deleted #1977
1448
- - Performance: Avoid un-needed chart re-renders #1780
1449
- - Performance: Don't run lookup table historical population on activation of plugin #1741
1450
- - Performance: Don't dispatch REST API requests when window/tab is hidden #1732
1451
- - Performance: Only check for unsnooze note on admin_init #1960
1452
-
1453
- = 0.8.0 - 2019-02-28 =
1454
-
1455
- - Table Component: Reset search on compare
1456
- - MenuItem Component: Added isCheckBox prop
1457
- - a11y: Enhancements to “Rows per Table” on the dashboard
1458
- - Taxes Report: Fix comparison mode and segmentation labels
1459
- - Fix css linter errors
1460
- - Test Framework: Require WordPress 5.0 or greater to run phpunit
1461
- - Table Component: Fix search positioning in small viewports
1462
- - Chart Component: Preserve chart colors bug fix
1463
- - Navigation: Close wp-admin menu when navigating between reports in narrow viewports
1464
- - Analytics: Don’t show variation table when in an active search
1465
- - Dashboard: Fix for style of summary number placeholders
1466
- - Downloads/Customers Report: Fix for filters
1467
- - Product Variation name format now matches Woo core
1468
- - phpcs fixes in unit tests
1469
- - Chart: Mouse pointer now displayed in entire clickable area
1470
- - Analytics: Sort tabular data when selecting a Summary Number
1471
- - Chart: Fixes for the legend totals
1472
- - Build: Move IE11 css to specific css file
1473
- - Downloads Report: Fix for sorting bug
1474
- - Stock Report: fix the product link
1475
- - Chart: Refactor of d3 logic
1476
- - Autocompleter: Increase debounce time to reduce API requests
1477
- - Segmented Selection Component: fix for missing borders
1478
- - Chart: Add messaging when no data is available for selected filters
1479
- - Setup: Improvements to install flow
2
  Contributors: woocommerce, automattic
3
  Tags: ecommerce, e-commerce, store, sales, reports, analytics, dashboard, activity, notices, insights, stats, woo commerce, woocommerce
4
  Requires at least: 5.4.0
5
+ Tested up to: 5.8.1
6
  Requires PHP: 7.0
7
+ Stable tag: 2.7.2
8
  License: GPLv3
9
  License URI: https://github.com/woocommerce/woocommerce-admin/blob/main/license.txt
10
 
70
  1. WooCommerce Admin Dashboard
71
  2. Activity Panels
72
  3. Analytics
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
packages/woocommerce-admin/src/API/Reports/TimeInterval.php CHANGED
@@ -302,24 +302,18 @@ class TimeInterval {
302
  * @return DateTime
303
  */
304
  public static function next_day_start( $datetime, $reversed = false ) {
305
- $seconds_into_day = (int) $datetime->format( 'H' ) * HOUR_IN_SECONDS + (int) $datetime->format( 'i' ) * MINUTE_IN_SECONDS + (int) $datetime->format( 's' );
 
306
 
307
- // The day boundary is actually next midnight when going in reverse, so set it to day -1 at 23:59:59.
308
  if ( $reversed ) {
309
- $timestamp = (int) $datetime->format( 'U' );
310
- $next_day_timestamp = $timestamp - ( $seconds_into_day + 1 );
311
  } else {
312
- $day_increment = new \DateInterval( 'P1D' ); // Plus 1 Day.
313
- $next_datetime = clone $datetime;
314
- $next_datetime->add( $day_increment );
315
- $timestamp = (int) $next_datetime->format( 'U' );
316
- $next_day_timestamp = $timestamp - $seconds_into_day;
317
  }
318
 
319
- $next_day = new \DateTime();
320
- $next_day->setTimestamp( $next_day_timestamp );
321
- $next_day->setTimezone( new \DateTimeZone( wc_timezone_string() ) );
322
- return $next_day;
323
  }
324
 
325
  /**
@@ -332,8 +326,12 @@ class TimeInterval {
332
  public static function next_week_start( $datetime, $reversed = false ) {
333
  $first_day_of_week = absint( get_option( 'start_of_week' ) );
334
  $initial_week_no = self::week_number( $datetime, $first_day_of_week );
 
335
 
336
  do {
 
 
 
337
  $datetime = self::next_day_start( $datetime, $reversed );
338
  $current_week_no = self::week_number( $datetime, $first_day_of_week );
339
  } while ( $current_week_no === $initial_week_no );
302
  * @return DateTime
303
  */
304
  public static function next_day_start( $datetime, $reversed = false ) {
305
+ $oneday = new \DateInterval( 'P1D' );
306
+ $new_datetime = clone $datetime;
307
 
 
308
  if ( $reversed ) {
309
+ $new_datetime->sub( $oneday );
310
+ $new_datetime->setTime( 23, 59, 59 );
311
  } else {
312
+ $new_datetime->add( $oneday );
313
+ $new_datetime->setTime( 0, 0, 0 );
 
 
 
314
  }
315
 
316
+ return $new_datetime;
 
 
 
317
  }
318
 
319
  /**
326
  public static function next_week_start( $datetime, $reversed = false ) {
327
  $first_day_of_week = absint( get_option( 'start_of_week' ) );
328
  $initial_week_no = self::week_number( $datetime, $first_day_of_week );
329
+ $failsafe_count = 0;
330
 
331
  do {
332
+ if ( $failsafe_count++ >= 7 ) {
333
+ break;
334
+ }
335
  $datetime = self::next_day_start( $datetime, $reversed );
336
  $current_week_no = self::week_number( $datetime, $first_day_of_week );
337
  } while ( $current_week_no === $initial_week_no );
packages/woocommerce-admin/src/Composer/Package.php CHANGED
@@ -26,7 +26,7 @@ class Package {
26
  *
27
  * @var string
28
  */
29
- const VERSION = '2.7.1-rc.1';
30
 
31
  /**
32
  * Package active.
26
  *
27
  * @var string
28
  */
29
+ const VERSION = '2.7.2';
30
 
31
  /**
32
  * Package active.
packages/woocommerce-admin/src/FeaturePlugin.php CHANGED
@@ -146,7 +146,7 @@ class FeaturePlugin {
146
  $this->define( 'WC_ADMIN_PLUGIN_FILE', WC_ADMIN_ABSPATH . 'woocommerce-admin.php' );
147
  // WARNING: Do not directly edit this version number constant.
148
  // It is updated as part of the prebuild process from the package.json value.
149
- $this->define( 'WC_ADMIN_VERSION_NUMBER', '2.7.1-rc.1' );
150
  }
151
 
152
  /**
146
  $this->define( 'WC_ADMIN_PLUGIN_FILE', WC_ADMIN_ABSPATH . 'woocommerce-admin.php' );
147
  // WARNING: Do not directly edit this version number constant.
148
  // It is updated as part of the prebuild process from the package.json value.
149
+ $this->define( 'WC_ADMIN_VERSION_NUMBER', '2.7.2' );
150
  }
151
 
152
  /**
packages/woocommerce-admin/vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
- return ComposerAutoloaderInita590ce72028997c975d5a9f504d57170::getLoader();
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInita6c66f5b79474f9cb8d8c01d58aec0c3::getLoader();
packages/woocommerce-admin/vendor/autoload_packages.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jpa590ce72028997c975d5a9f504d57170;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpa6c66f5b79474f9cb8d8c01d58aec0c3;
9
 
10
  // phpcs:ignore
11
 
packages/woocommerce-admin/vendor/composer/ClassLoader.php CHANGED
@@ -37,26 +37,80 @@ 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();
 
 
 
 
48
  private $fallbackDirsPsr4 = array();
49
 
50
  // PSR-0
 
 
 
 
51
  private $prefixesPsr0 = array();
 
 
 
 
52
  private $fallbackDirsPsr0 = array();
53
 
 
54
  private $useIncludePath = false;
 
 
 
 
 
55
  private $classMap = array();
 
 
56
  private $classMapAuthoritative = false;
 
 
 
 
 
57
  private $missingClasses = array();
 
 
58
  private $apcuPrefix;
59
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
60
  public function getPrefixes()
61
  {
62
  if (!empty($this->prefixesPsr0)) {
@@ -66,28 +120,47 @@ class ClassLoader
66
  return array();
67
  }
68
 
 
 
 
 
69
  public function getPrefixesPsr4()
70
  {
71
  return $this->prefixDirsPsr4;
72
  }
73
 
 
 
 
 
74
  public function getFallbackDirs()
75
  {
76
  return $this->fallbackDirsPsr0;
77
  }
78
 
 
 
 
 
79
  public function getFallbackDirsPsr4()
80
  {
81
  return $this->fallbackDirsPsr4;
82
  }
83
 
 
 
 
 
84
  public function getClassMap()
85
  {
86
  return $this->classMap;
87
  }
88
 
89
  /**
90
- * @param array $classMap Class to filename map
 
 
 
91
  */
92
  public function addClassMap(array $classMap)
93
  {
@@ -102,9 +175,11 @@ class ClassLoader
102
  * Registers a set of PSR-0 directories for a given prefix, either
103
  * appending or prepending to the ones previously set for this prefix.
104
  *
105
- * @param string $prefix The prefix
106
- * @param array|string $paths The PSR-0 root directories
107
- * @param bool $prepend Whether to prepend the directories
 
 
108
  */
109
  public function add($prefix, $paths, $prepend = false)
110
  {
@@ -147,11 +222,13 @@ class ClassLoader
147
  * Registers a set of PSR-4 directories for a given namespace, either
148
  * appending or prepending to the ones previously set for this namespace.
149
  *
150
- * @param string $prefix The prefix/namespace, with trailing '\\'
151
- * @param array|string $paths The PSR-4 base directories
152
- * @param bool $prepend Whether to prepend the directories
153
  *
154
  * @throws \InvalidArgumentException
 
 
155
  */
156
  public function addPsr4($prefix, $paths, $prepend = false)
157
  {
@@ -195,8 +272,10 @@ class ClassLoader
195
  * Registers a set of PSR-0 directories for a given prefix,
196
  * replacing any others previously set for this prefix.
197
  *
198
- * @param string $prefix The prefix
199
- * @param array|string $paths The PSR-0 base directories
 
 
200
  */
201
  public function set($prefix, $paths)
202
  {
@@ -211,10 +290,12 @@ class ClassLoader
211
  * Registers a set of PSR-4 directories for a given namespace,
212
  * replacing any others previously set for this namespace.
213
  *
214
- * @param string $prefix The prefix/namespace, with trailing '\\'
215
- * @param array|string $paths The PSR-4 base directories
216
  *
217
  * @throws \InvalidArgumentException
 
 
218
  */
219
  public function setPsr4($prefix, $paths)
220
  {
@@ -234,6 +315,8 @@ class ClassLoader
234
  * Turns on searching the include path for class files.
235
  *
236
  * @param bool $useIncludePath
 
 
237
  */
238
  public function setUseIncludePath($useIncludePath)
239
  {
@@ -256,6 +339,8 @@ class ClassLoader
256
  * that have not been registered with the class map.
257
  *
258
  * @param bool $classMapAuthoritative
 
 
259
  */
260
  public function setClassMapAuthoritative($classMapAuthoritative)
261
  {
@@ -276,6 +361,8 @@ class ClassLoader
276
  * APCu prefix to use to cache found/not-found classes, if the extension is enabled.
277
  *
278
  * @param string|null $apcuPrefix
 
 
279
  */
280
  public function setApcuPrefix($apcuPrefix)
281
  {
@@ -296,25 +383,44 @@ class ClassLoader
296
  * Registers this instance as an autoloader.
297
  *
298
  * @param bool $prepend Whether to prepend the autoloader or not
 
 
299
  */
300
  public function register($prepend = false)
301
  {
302
  spl_autoload_register(array($this, 'loadClass'), true, $prepend);
 
 
 
 
 
 
 
 
 
 
 
303
  }
304
 
305
  /**
306
  * Unregisters this instance as an autoloader.
 
 
307
  */
308
  public function unregister()
309
  {
310
  spl_autoload_unregister(array($this, 'loadClass'));
 
 
 
 
311
  }
312
 
313
  /**
314
  * Loads the given class or interface.
315
  *
316
  * @param string $class The name of the class
317
- * @return bool|null True if loaded, null otherwise
318
  */
319
  public function loadClass($class)
320
  {
@@ -323,6 +429,8 @@ class ClassLoader
323
 
324
  return true;
325
  }
 
 
326
  }
327
 
328
  /**
@@ -367,6 +475,21 @@ class ClassLoader
367
  return $file;
368
  }
369
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
370
  private function findFileWithExtension($class, $ext)
371
  {
372
  // PSR-4 lookup
@@ -438,6 +561,10 @@ class ClassLoader
438
  * Scope isolated include.
439
  *
440
  * Prevents access to $this/self from included files.
 
 
 
 
441
  */
442
  function includeFile($file)
443
  {
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
+ /** @var ?string */
46
+ private $vendorDir;
47
+
48
  // PSR-4
49
+ /**
50
+ * @var array[]
51
+ * @psalm-var array<string, array<string, int>>
52
+ */
53
  private $prefixLengthsPsr4 = array();
54
+ /**
55
+ * @var array[]
56
+ * @psalm-var array<string, array<int, string>>
57
+ */
58
  private $prefixDirsPsr4 = array();
59
+ /**
60
+ * @var array[]
61
+ * @psalm-var array<string, string>
62
+ */
63
  private $fallbackDirsPsr4 = array();
64
 
65
  // PSR-0
66
+ /**
67
+ * @var array[]
68
+ * @psalm-var array<string, array<string, string[]>>
69
+ */
70
  private $prefixesPsr0 = array();
71
+ /**
72
+ * @var array[]
73
+ * @psalm-var array<string, string>
74
+ */
75
  private $fallbackDirsPsr0 = array();
76
 
77
+ /** @var bool */
78
  private $useIncludePath = false;
79
+
80
+ /**
81
+ * @var string[]
82
+ * @psalm-var array<string, string>
83
+ */
84
  private $classMap = array();
85
+
86
+ /** @var bool */
87
  private $classMapAuthoritative = false;
88
+
89
+ /**
90
+ * @var bool[]
91
+ * @psalm-var array<string, bool>
92
+ */
93
  private $missingClasses = array();
94
+
95
+ /** @var ?string */
96
  private $apcuPrefix;
97
 
98
+ /**
99
+ * @var self[]
100
+ */
101
+ private static $registeredLoaders = array();
102
+
103
+ /**
104
+ * @param ?string $vendorDir
105
+ */
106
+ public function __construct($vendorDir = null)
107
+ {
108
+ $this->vendorDir = $vendorDir;
109
+ }
110
+
111
+ /**
112
+ * @return string[]
113
+ */
114
  public function getPrefixes()
115
  {
116
  if (!empty($this->prefixesPsr0)) {
120
  return array();
121
  }
122
 
123
+ /**
124
+ * @return array[]
125
+ * @psalm-return array<string, array<int, string>>
126
+ */
127
  public function getPrefixesPsr4()
128
  {
129
  return $this->prefixDirsPsr4;
130
  }
131
 
132
+ /**
133
+ * @return array[]
134
+ * @psalm-return array<string, string>
135
+ */
136
  public function getFallbackDirs()
137
  {
138
  return $this->fallbackDirsPsr0;
139
  }
140
 
141
+ /**
142
+ * @return array[]
143
+ * @psalm-return array<string, string>
144
+ */
145
  public function getFallbackDirsPsr4()
146
  {
147
  return $this->fallbackDirsPsr4;
148
  }
149
 
150
+ /**
151
+ * @return string[] Array of classname => path
152
+ * @psalm-var array<string, string>
153
+ */
154
  public function getClassMap()
155
  {
156
  return $this->classMap;
157
  }
158
 
159
  /**
160
+ * @param string[] $classMap Class to filename map
161
+ * @psalm-param array<string, string> $classMap
162
+ *
163
+ * @return void
164
  */
165
  public function addClassMap(array $classMap)
166
  {
175
  * Registers a set of PSR-0 directories for a given prefix, either
176
  * appending or prepending to the ones previously set for this prefix.
177
  *
178
+ * @param string $prefix The prefix
179
+ * @param string[]|string $paths The PSR-0 root directories
180
+ * @param bool $prepend Whether to prepend the directories
181
+ *
182
+ * @return void
183
  */
184
  public function add($prefix, $paths, $prepend = false)
185
  {
222
  * Registers a set of PSR-4 directories for a given namespace, either
223
  * appending or prepending to the ones previously set for this namespace.
224
  *
225
+ * @param string $prefix The prefix/namespace, with trailing '\\'
226
+ * @param string[]|string $paths The PSR-4 base directories
227
+ * @param bool $prepend Whether to prepend the directories
228
  *
229
  * @throws \InvalidArgumentException
230
+ *
231
+ * @return void
232
  */
233
  public function addPsr4($prefix, $paths, $prepend = false)
234
  {
272
  * Registers a set of PSR-0 directories for a given prefix,
273
  * replacing any others previously set for this prefix.
274
  *
275
+ * @param string $prefix The prefix
276
+ * @param string[]|string $paths The PSR-0 base directories
277
+ *
278
+ * @return void
279
  */
280
  public function set($prefix, $paths)
281
  {
290
  * Registers a set of PSR-4 directories for a given namespace,
291
  * replacing any others previously set for this namespace.
292
  *
293
+ * @param string $prefix The prefix/namespace, with trailing '\\'
294
+ * @param string[]|string $paths The PSR-4 base directories
295
  *
296
  * @throws \InvalidArgumentException
297
+ *
298
+ * @return void
299
  */
300
  public function setPsr4($prefix, $paths)
301
  {
315
  * Turns on searching the include path for class files.
316
  *
317
  * @param bool $useIncludePath
318
+ *
319
+ * @return void
320
  */
321
  public function setUseIncludePath($useIncludePath)
322
  {
339
  * that have not been registered with the class map.
340
  *
341
  * @param bool $classMapAuthoritative
342
+ *
343
+ * @return void
344
  */
345
  public function setClassMapAuthoritative($classMapAuthoritative)
346
  {
361
  * APCu prefix to use to cache found/not-found classes, if the extension is enabled.
362
  *
363
  * @param string|null $apcuPrefix
364
+ *
365
+ * @return void
366
  */
367
  public function setApcuPrefix($apcuPrefix)
368
  {
383
  * Registers this instance as an autoloader.
384
  *
385
  * @param bool $prepend Whether to prepend the autoloader or not
386
+ *
387
+ * @return void
388
  */
389
  public function register($prepend = false)
390
  {
391
  spl_autoload_register(array($this, 'loadClass'), true, $prepend);
392
+
393
+ if (null === $this->vendorDir) {
394
+ return;
395
+ }
396
+
397
+ if ($prepend) {
398
+ self::$registeredLoaders = array($this->vendorDir => $this) + self::$registeredLoaders;
399
+ } else {
400
+ unset(self::$registeredLoaders[$this->vendorDir]);
401
+ self::$registeredLoaders[$this->vendorDir] = $this;
402
+ }
403
  }
404
 
405
  /**
406
  * Unregisters this instance as an autoloader.
407
+ *
408
+ * @return void
409
  */
410
  public function unregister()
411
  {
412
  spl_autoload_unregister(array($this, 'loadClass'));
413
+
414
+ if (null !== $this->vendorDir) {
415
+ unset(self::$registeredLoaders[$this->vendorDir]);
416
+ }
417
  }
418
 
419
  /**
420
  * Loads the given class or interface.
421
  *
422
  * @param string $class The name of the class
423
+ * @return true|null True if loaded, null otherwise
424
  */
425
  public function loadClass($class)
426
  {
429
 
430
  return true;
431
  }
432
+
433
+ return null;
434
  }
435
 
436
  /**
475
  return $file;
476
  }
477
 
478
+ /**
479
+ * Returns the currently registered loaders indexed by their corresponding vendor directories.
480
+ *
481
+ * @return self[]
482
+ */
483
+ public static function getRegisteredLoaders()
484
+ {
485
+ return self::$registeredLoaders;
486
+ }
487
+
488
+ /**
489
+ * @param string $class
490
+ * @param string $ext
491
+ * @return string|false
492
+ */
493
  private function findFileWithExtension($class, $ext)
494
  {
495
  // PSR-4 lookup
561
  * Scope isolated include.
562
  *
563
  * Prevents access to $this/self from included files.
564
+ *
565
+ * @param string $file
566
+ * @return void
567
+ * @private
568
  */
569
  function includeFile($file)
570
  {
packages/woocommerce-admin/vendor/composer/InstalledVersions.php ADDED
@@ -0,0 +1,337 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /*
4
+ * This file is part of Composer.
5
+ *
6
+ * (c) Nils Adermann <naderman@naderman.de>
7
+ * Jordi Boggiano <j.boggiano@seld.be>
8
+ *
9
+ * For the full copyright and license information, please view the LICENSE
10
+ * file that was distributed with this source code.
11
+ */
12
+
13
+ namespace Composer;
14
+
15
+ use Composer\Autoload\ClassLoader;
16
+ use Composer\Semver\VersionParser;
17
+
18
+ /**
19
+ * This class is copied in every Composer installed project and available to all
20
+ *
21
+ * See also https://getcomposer.org/doc/07-runtime.md#installed-versions
22
+ *
23
+ * To require its presence, you can require `composer-runtime-api ^2.0`
24
+ */
25
+ class InstalledVersions
26
+ {
27
+ private static $installed;
28
+ private static $canGetVendors;
29
+ private static $installedByVendor = array();
30
+
31
+ /**
32
+ * Returns a list of all package names which are present, either by being installed, replaced or provided
33
+ *
34
+ * @return string[]
35
+ * @psalm-return list<string>
36
+ */
37
+ public static function getInstalledPackages()
38
+ {
39
+ $packages = array();
40
+ foreach (self::getInstalled() as $installed) {
41
+ $packages[] = array_keys($installed['versions']);
42
+ }
43
+
44
+ if (1 === \count($packages)) {
45
+ return $packages[0];
46
+ }
47
+
48
+ return array_keys(array_flip(\call_user_func_array('array_merge', $packages)));
49
+ }
50
+
51
+ /**
52
+ * Returns a list of all package names with a specific type e.g. 'library'
53
+ *
54
+ * @param string $type
55
+ * @return string[]
56
+ * @psalm-return list<string>
57
+ */
58
+ public static function getInstalledPackagesByType($type)
59
+ {
60
+ $packagesByType = array();
61
+
62
+ foreach (self::getInstalled() as $installed) {
63
+ foreach ($installed['versions'] as $name => $package) {
64
+ if (isset($package['type']) && $package['type'] === $type) {
65
+ $packagesByType[] = $name;
66
+ }
67
+ }
68
+ }
69
+
70
+ return $packagesByType;
71
+ }
72
+
73
+ /**
74
+ * Checks whether the given package is installed
75
+ *
76
+ * This also returns true if the package name is provided or replaced by another package
77
+ *
78
+ * @param string $packageName
79
+ * @param bool $includeDevRequirements
80
+ * @return bool
81
+ */
82
+ public static function isInstalled($packageName, $includeDevRequirements = true)
83
+ {
84
+ foreach (self::getInstalled() as $installed) {
85
+ if (isset($installed['versions'][$packageName])) {
86
+ return $includeDevRequirements || empty($installed['versions'][$packageName]['dev_requirement']);
87
+ }
88
+ }
89
+
90
+ return false;
91
+ }
92
+
93
+ /**
94
+ * Checks whether the given package satisfies a version constraint
95
+ *
96
+ * e.g. If you want to know whether version 2.3+ of package foo/bar is installed, you would call:
97
+ *
98
+ * Composer\InstalledVersions::satisfies(new VersionParser, 'foo/bar', '^2.3')
99
+ *
100
+ * @param VersionParser $parser Install composer/semver to have access to this class and functionality
101
+ * @param string $packageName
102
+ * @param string|null $constraint A version constraint to check for, if you pass one you have to make sure composer/semver is required by your package
103
+ * @return bool
104
+ */
105
+ public static function satisfies(VersionParser $parser, $packageName, $constraint)
106
+ {
107
+ $constraint = $parser->parseConstraints($constraint);
108
+ $provided = $parser->parseConstraints(self::getVersionRanges($packageName));
109
+
110
+ return $provided->matches($constraint);
111
+ }
112
+
113
+ /**
114
+ * Returns a version constraint representing all the range(s) which are installed for a given package
115
+ *
116
+ * It is easier to use this via isInstalled() with the $constraint argument if you need to check
117
+ * whether a given version of a package is installed, and not just whether it exists
118
+ *
119
+ * @param string $packageName
120
+ * @return string Version constraint usable with composer/semver
121
+ */
122
+ public static function getVersionRanges($packageName)
123
+ {
124
+ foreach (self::getInstalled() as $installed) {
125
+ if (!isset($installed['versions'][$packageName])) {
126
+ continue;
127
+ }
128
+
129
+ $ranges = array();
130
+ if (isset($installed['versions'][$packageName]['pretty_version'])) {
131
+ $ranges[] = $installed['versions'][$packageName]['pretty_version'];
132
+ }
133
+ if (array_key_exists('aliases', $installed['versions'][$packageName])) {
134
+ $ranges = array_merge($ranges, $installed['versions'][$packageName]['aliases']);
135
+ }
136
+ if (array_key_exists('replaced', $installed['versions'][$packageName])) {
137
+ $ranges = array_merge($ranges, $installed['versions'][$packageName]['replaced']);
138
+ }
139
+ if (array_key_exists('provided', $installed['versions'][$packageName])) {
140
+ $ranges = array_merge($ranges, $installed['versions'][$packageName]['provided']);
141
+ }
142
+
143
+ return implode(' || ', $ranges);
144
+ }
145
+
146
+ throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
147
+ }
148
+
149
+ /**
150
+ * @param string $packageName
151
+ * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as version, use satisfies or getVersionRanges if you need to know if a given version is present
152
+ */
153
+ public static function getVersion($packageName)
154
+ {
155
+ foreach (self::getInstalled() as $installed) {
156
+ if (!isset($installed['versions'][$packageName])) {
157
+ continue;
158
+ }
159
+
160
+ if (!isset($installed['versions'][$packageName]['version'])) {
161
+ return null;
162
+ }
163
+
164
+ return $installed['versions'][$packageName]['version'];
165
+ }
166
+
167
+ throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
168
+ }
169
+
170
+ /**
171
+ * @param string $packageName
172
+ * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as version, use satisfies or getVersionRanges if you need to know if a given version is present
173
+ */
174
+ public static function getPrettyVersion($packageName)
175
+ {
176
+ foreach (self::getInstalled() as $installed) {
177
+ if (!isset($installed['versions'][$packageName])) {
178
+ continue;
179
+ }
180
+
181
+ if (!isset($installed['versions'][$packageName]['pretty_version'])) {
182
+ return null;
183
+ }
184
+
185
+ return $installed['versions'][$packageName]['pretty_version'];
186
+ }
187
+
188
+ throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
189
+ }
190
+
191
+ /**
192
+ * @param string $packageName
193
+ * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as reference
194
+ */
195
+ public static function getReference($packageName)
196
+ {
197
+ foreach (self::getInstalled() as $installed) {
198
+ if (!isset($installed['versions'][$packageName])) {
199
+ continue;
200
+ }
201
+
202
+ if (!isset($installed['versions'][$packageName]['reference'])) {
203
+ return null;
204
+ }
205
+
206
+ return $installed['versions'][$packageName]['reference'];
207
+ }
208
+
209
+ throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
210
+ }
211
+
212
+ /**
213
+ * @param string $packageName
214
+ * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as install path. Packages of type metapackages also have a null install path.
215
+ */
216
+ public static function getInstallPath($packageName)
217
+ {
218
+ foreach (self::getInstalled() as $installed) {
219
+ if (!isset($installed['versions'][$packageName])) {
220
+ continue;
221
+ }
222
+
223
+ return isset($installed['versions'][$packageName]['install_path']) ? $installed['versions'][$packageName]['install_path'] : null;
224
+ }
225
+
226
+ throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
227
+ }
228
+
229
+ /**
230
+ * @return array
231
+ * @psalm-return array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}
232
+ */
233
+ public static function getRootPackage()
234
+ {
235
+ $installed = self::getInstalled();
236
+
237
+ return $installed[0]['root'];
238
+ }
239
+
240
+ /**
241
+ * Returns the raw installed.php data for custom implementations
242
+ *
243
+ * @deprecated Use getAllRawData() instead which returns all datasets for all autoloaders present in the process. getRawData only returns the first dataset loaded, which may not be what you expect.
244
+ * @return array[]
245
+ * @psalm-return array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}
246
+ */
247
+ public static function getRawData()
248
+ {
249
+ @trigger_error('getRawData only returns the first dataset loaded, which may not be what you expect. Use getAllRawData() instead which returns all datasets for all autoloaders present in the process.', E_USER_DEPRECATED);
250
+
251
+ if (null === self::$installed) {
252
+ // only require the installed.php file if this file is loaded from its dumped location,
253
+ // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937
254
+ if (substr(__DIR__, -8, 1) !== 'C') {
255
+ self::$installed = include __DIR__ . '/installed.php';
256
+ } else {
257
+ self::$installed = array();
258
+ }
259
+ }
260
+
261
+ return self::$installed;
262
+ }
263
+
264
+ /**
265
+ * Returns the raw data of all installed.php which are currently loaded for custom implementations
266
+ *
267
+ * @return array[]
268
+ * @psalm-return list<array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>
269
+ */
270
+ public static function getAllRawData()
271
+ {
272
+ return self::getInstalled();
273
+ }
274
+
275
+ /**
276
+ * Lets you reload the static array from another file
277
+ *
278
+ * This is only useful for complex integrations in which a project needs to use
279
+ * this class but then also needs to execute another project's autoloader in process,
280
+ * and wants to ensure both projects have access to their version of installed.php.
281
+ *
282
+ * A typical case would be PHPUnit, where it would need to make sure it reads all
283
+ * the data it needs from this class, then call reload() with
284
+ * `require $CWD/vendor/composer/installed.php` (or similar) as input to make sure
285
+ * the project in which it runs can then also use this class safely, without
286
+ * interference between PHPUnit's dependencies and the project's dependencies.
287
+ *
288
+ * @param array[] $data A vendor/composer/installed.php data set
289
+ * @return void
290
+ *
291
+ * @psalm-param array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>} $data
292
+ */
293
+ public static function reload($data)
294
+ {
295
+ self::$installed = $data;
296
+ self::$installedByVendor = array();
297
+ }
298
+
299
+ /**
300
+ * @return array[]
301
+ * @psalm-return list<array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>
302
+ */
303
+ private static function getInstalled()
304
+ {
305
+ if (null === self::$canGetVendors) {
306
+ self::$canGetVendors = method_exists('Composer\Autoload\ClassLoader', 'getRegisteredLoaders');
307
+ }
308
+
309
+ $installed = array();
310
+
311
+ if (self::$canGetVendors) {
312
+ foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) {
313
+ if (isset(self::$installedByVendor[$vendorDir])) {
314
+ $installed[] = self::$installedByVendor[$vendorDir];
315
+ } elseif (is_file($vendorDir.'/composer/installed.php')) {
316
+ $installed[] = self::$installedByVendor[$vendorDir] = require $vendorDir.'/composer/installed.php';
317
+ if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) {
318
+ self::$installed = $installed[count($installed) - 1];
319
+ }
320
+ }
321
+ }
322
+ }
323
+
324
+ if (null === self::$installed) {
325
+ // only require the installed.php file if this file is loaded from its dumped location,
326
+ // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937
327
+ if (substr(__DIR__, -8, 1) !== 'C') {
328
+ self::$installed = require __DIR__ . '/installed.php';
329
+ } else {
330
+ self::$installed = array();
331
+ }
332
+ }
333
+ $installed[] = self::$installed;
334
+
335
+ return $installed;
336
+ }
337
+ }
packages/woocommerce-admin/vendor/composer/autoload_classmap.php CHANGED
@@ -7,4 +7,5 @@ $baseDir = dirname($vendorDir);
7
 
8
  return array(
9
  'Automattic\\Jetpack\\Autoloader\\AutoloadGenerator' => $vendorDir . '/automattic/jetpack-autoloader/src/AutoloadGenerator.php',
 
10
  );
7
 
8
  return array(
9
  'Automattic\\Jetpack\\Autoloader\\AutoloadGenerator' => $vendorDir . '/automattic/jetpack-autoloader/src/AutoloadGenerator.php',
10
+ 'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
11
  );
packages/woocommerce-admin/vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInita590ce72028997c975d5a9f504d57170
6
  {
7
  private static $loader;
8
 
@@ -22,15 +22,17 @@ class ComposerAutoloaderInita590ce72028997c975d5a9f504d57170
22
  return self::$loader;
23
  }
24
 
25
- spl_autoload_register(array('ComposerAutoloaderInita590ce72028997c975d5a9f504d57170', 'loadClassLoader'), true, true);
26
- self::$loader = $loader = new \Composer\Autoload\ClassLoader();
27
- spl_autoload_unregister(array('ComposerAutoloaderInita590ce72028997c975d5a9f504d57170', '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\ComposerStaticInita590ce72028997c975d5a9f504d57170::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 ComposerAutoloaderInita6c66f5b79474f9cb8d8c01d58aec0c3
6
  {
7
  private static $loader;
8
 
22
  return self::$loader;
23
  }
24
 
25
+ require __DIR__ . '/platform_check.php';
26
+
27
+ spl_autoload_register(array('ComposerAutoloaderInita6c66f5b79474f9cb8d8c01d58aec0c3', 'loadClassLoader'), true, true);
28
+ self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
29
+ spl_autoload_unregister(array('ComposerAutoloaderInita6c66f5b79474f9cb8d8c01d58aec0c3', '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\ComposerStaticInita6c66f5b79474f9cb8d8c01d58aec0c3::getInitializer($loader));
36
  } else {
37
  $map = require __DIR__ . '/autoload_namespaces.php';
38
  foreach ($map as $namespace => $path) {
packages/woocommerce-admin/vendor/composer/autoload_static.php CHANGED
@@ -4,7 +4,7 @@
4
 
5
  namespace Composer\Autoload;
6
 
7
- class ComposerStaticInita590ce72028997c975d5a9f504d57170
8
  {
9
  public static $prefixLengthsPsr4 = array (
10
  'C' =>
@@ -35,14 +35,15 @@ class ComposerStaticInita590ce72028997c975d5a9f504d57170
35
 
36
  public static $classMap = array (
37
  'Automattic\\Jetpack\\Autoloader\\AutoloadGenerator' => __DIR__ . '/..' . '/automattic/jetpack-autoloader/src/AutoloadGenerator.php',
 
38
  );
39
 
40
  public static function getInitializer(ClassLoader $loader)
41
  {
42
  return \Closure::bind(function () use ($loader) {
43
- $loader->prefixLengthsPsr4 = ComposerStaticInita590ce72028997c975d5a9f504d57170::$prefixLengthsPsr4;
44
- $loader->prefixDirsPsr4 = ComposerStaticInita590ce72028997c975d5a9f504d57170::$prefixDirsPsr4;
45
- $loader->classMap = ComposerStaticInita590ce72028997c975d5a9f504d57170::$classMap;
46
 
47
  }, null, ClassLoader::class);
48
  }
4
 
5
  namespace Composer\Autoload;
6
 
7
+ class ComposerStaticInita6c66f5b79474f9cb8d8c01d58aec0c3
8
  {
9
  public static $prefixLengthsPsr4 = array (
10
  'C' =>
35
 
36
  public static $classMap = array (
37
  'Automattic\\Jetpack\\Autoloader\\AutoloadGenerator' => __DIR__ . '/..' . '/automattic/jetpack-autoloader/src/AutoloadGenerator.php',
38
+ 'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
39
  );
40
 
41
  public static function getInitializer(ClassLoader $loader)
42
  {
43
  return \Closure::bind(function () use ($loader) {
44
+ $loader->prefixLengthsPsr4 = ComposerStaticInita6c66f5b79474f9cb8d8c01d58aec0c3::$prefixLengthsPsr4;
45
+ $loader->prefixDirsPsr4 = ComposerStaticInita6c66f5b79474f9cb8d8c01d58aec0c3::$prefixDirsPsr4;
46
+ $loader->classMap = ComposerStaticInita6c66f5b79474f9cb8d8c01d58aec0c3::$classMap;
47
 
48
  }, null, ClassLoader::class);
49
  }
packages/woocommerce-admin/vendor/composer/installed.json CHANGED
@@ -1,200 +1,206 @@
1
- [
2
- {
3
- "name": "automattic/jetpack-autoloader",
4
- "version": "v2.10.2",
5
- "version_normalized": "2.10.2.0",
6
- "source": {
7
- "type": "git",
8
- "url": "https://github.com/Automattic/jetpack-autoloader.git",
9
- "reference": "79a541381c1617b02980ab48d4ed0a0fb6ba462d"
10
- },
11
- "dist": {
12
- "type": "zip",
13
- "url": "https://api.github.com/repos/Automattic/jetpack-autoloader/zipball/79a541381c1617b02980ab48d4ed0a0fb6ba462d",
14
- "reference": "79a541381c1617b02980ab48d4ed0a0fb6ba462d",
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-04-27T14:41:27+00:00",
25
- "type": "composer-plugin",
26
- "extra": {
27
- "autotagger": true,
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
- },
52
- {
53
- "name": "composer/installers",
54
- "version": "v1.11.0",
55
- "version_normalized": "1.11.0.0",
56
- "source": {
57
- "type": "git",
58
- "url": "https://github.com/composer/installers.git",
59
- "reference": "ae03311f45dfe194412081526be2e003960df74b"
60
- },
61
- "dist": {
62
- "type": "zip",
63
- "url": "https://api.github.com/repos/composer/installers/zipball/ae03311f45dfe194412081526be2e003960df74b",
64
- "reference": "ae03311f45dfe194412081526be2e003960df74b",
65
- "shasum": ""
66
- },
67
- "require": {
68
- "composer-plugin-api": "^1.0 || ^2.0"
69
  },
70
- "replace": {
71
- "roundcube/plugin-installer": "*",
72
- "shama/baton": "*"
73
- },
74
- "require-dev": {
75
- "composer/composer": "1.6.* || ^2.0",
76
- "composer/semver": "^1 || ^3",
77
- "phpstan/phpstan": "^0.12.55",
78
- "phpstan/phpstan-phpunit": "^0.12.16",
79
- "symfony/phpunit-bridge": "^4.2 || ^5",
80
- "symfony/process": "^2.3"
81
- },
82
- "time": "2021-04-28T06:42:17+00:00",
83
- "type": "composer-plugin",
84
- "extra": {
85
- "class": "Composer\\Installers\\Plugin",
86
- "branch-alias": {
87
- "dev-main": "1.x-dev"
88
- }
89
- },
90
- "installation-source": "dist",
91
- "autoload": {
92
- "psr-4": {
93
- "Composer\\Installers\\": "src/Composer/Installers"
94
- }
95
- },
96
- "notification-url": "https://packagist.org/downloads/",
97
- "license": [
98
- "MIT"
99
- ],
100
- "authors": [
101
- {
102
- "name": "Kyle Robinson Young",
103
- "email": "kyle@dontkry.com",
104
- "homepage": "https://github.com/shama"
105
- }
106
- ],
107
- "description": "A multi-framework Composer library installer",
108
- "homepage": "https://composer.github.io/installers/",
109
- "keywords": [
110
- "Craft",
111
- "Dolibarr",
112
- "Eliasis",
113
- "Hurad",
114
- "ImageCMS",
115
- "Kanboard",
116
- "Lan Management System",
117
- "MODX Evo",
118
- "MantisBT",
119
- "Mautic",
120
- "Maya",
121
- "OXID",
122
- "Plentymarkets",
123
- "Porto",
124
- "RadPHP",
125
- "SMF",
126
- "Starbug",
127
- "Thelia",
128
- "Whmcs",
129
- "WolfCMS",
130
- "agl",
131
- "aimeos",
132
- "annotatecms",
133
- "attogram",
134
- "bitrix",
135
- "cakephp",
136
- "chef",
137
- "cockpit",
138
- "codeigniter",
139
- "concrete5",
140
- "croogo",
141
- "dokuwiki",
142
- "drupal",
143
- "eZ Platform",
144
- "elgg",
145
- "expressionengine",
146
- "fuelphp",
147
- "grav",
148
- "installer",
149
- "itop",
150
- "joomla",
151
- "known",
152
- "kohana",
153
- "laravel",
154
- "lavalite",
155
- "lithium",
156
- "magento",
157
- "majima",
158
- "mako",
159
- "mediawiki",
160
- "miaoxing",
161
- "modulework",
162
- "modx",
163
- "moodle",
164
- "osclass",
165
- "phpbb",
166
- "piwik",
167
- "ppi",
168
- "processwire",
169
- "puppet",
170
- "pxcms",
171
- "reindex",
172
- "roundcube",
173
- "shopware",
174
- "silverstripe",
175
- "sydes",
176
- "sylius",
177
- "symfony",
178
- "tastyigniter",
179
- "typo3",
180
- "wordpress",
181
- "yawik",
182
- "zend",
183
- "zikula"
184
- ],
185
- "funding": [
186
- {
187
- "url": "https://packagist.com",
188
- "type": "custom"
189
  },
190
- {
191
- "url": "https://github.com/composer",
192
- "type": "github"
 
 
 
 
193
  },
194
- {
195
- "url": "https://tidelift.com/funding/github/packagist/composer/composer",
196
- "type": "tidelift"
197
- }
198
- ]
199
- }
200
- ]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "packages": [
3
+ {
4
+ "name": "automattic/jetpack-autoloader",
5
+ "version": "v2.10.2",
6
+ "version_normalized": "2.10.2.0",
7
+ "source": {
8
+ "type": "git",
9
+ "url": "https://github.com/Automattic/jetpack-autoloader.git",
10
+ "reference": "79a541381c1617b02980ab48d4ed0a0fb6ba462d"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  },
12
+ "dist": {
13
+ "type": "zip",
14
+ "url": "https://api.github.com/repos/Automattic/jetpack-autoloader/zipball/79a541381c1617b02980ab48d4ed0a0fb6ba462d",
15
+ "reference": "79a541381c1617b02980ab48d4ed0a0fb6ba462d",
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-04-27T14:41:27+00:00",
26
+ "type": "composer-plugin",
27
+ "extra": {
28
+ "autotagger": true,
29
+ "class": "Automattic\\Jetpack\\Autoloader\\CustomAutoloaderPlugin",
30
+ "mirror-repo": "Automattic/jetpack-autoloader",
31
+ "changelogger": {
32
+ "link-template": "https://github.com/Automattic/jetpack-autoloader/compare/v${old}...v${new}"
33
+ },
34
+ "branch-alias": {
35
+ "dev-master": "2.10.x-dev"
36
+ }
37
+ },
38
+ "installation-source": "dist",
39
+ "autoload": {
40
+ "classmap": [
41
+ "src/AutoloadGenerator.php"
42
+ ],
43
+ "psr-4": {
44
+ "Automattic\\Jetpack\\Autoloader\\": "src"
45
+ }
46
+ },
47
+ "notification-url": "https://packagist.org/downloads/",
48
+ "license": [
49
+ "GPL-2.0-or-later"
50
  ],
51
+ "description": "Creates a custom autoloader for a plugin or theme.",
52
+ "install-path": "../automattic/jetpack-autoloader"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
  },
54
+ {
55
+ "name": "composer/installers",
56
+ "version": "v1.11.0",
57
+ "version_normalized": "1.11.0.0",
58
+ "source": {
59
+ "type": "git",
60
+ "url": "https://github.com/composer/installers.git",
61
+ "reference": "ae03311f45dfe194412081526be2e003960df74b"
62
+ },
63
+ "dist": {
64
+ "type": "zip",
65
+ "url": "https://api.github.com/repos/composer/installers/zipball/ae03311f45dfe194412081526be2e003960df74b",
66
+ "reference": "ae03311f45dfe194412081526be2e003960df74b",
67
+ "shasum": ""
68
+ },
69
+ "require": {
70
+ "composer-plugin-api": "^1.0 || ^2.0"
71
+ },
72
+ "replace": {
73
+ "roundcube/plugin-installer": "*",
74
+ "shama/baton": "*"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
75
  },
76
+ "require-dev": {
77
+ "composer/composer": "1.6.* || ^2.0",
78
+ "composer/semver": "^1 || ^3",
79
+ "phpstan/phpstan": "^0.12.55",
80
+ "phpstan/phpstan-phpunit": "^0.12.16",
81
+ "symfony/phpunit-bridge": "^4.2 || ^5",
82
+ "symfony/process": "^2.3"
83
  },
84
+ "time": "2021-04-28T06:42:17+00:00",
85
+ "type": "composer-plugin",
86
+ "extra": {
87
+ "class": "Composer\\Installers\\Plugin",
88
+ "branch-alias": {
89
+ "dev-main": "1.x-dev"
90
+ }
91
+ },
92
+ "installation-source": "dist",
93
+ "autoload": {
94
+ "psr-4": {
95
+ "Composer\\Installers\\": "src/Composer/Installers"
96
+ }
97
+ },
98
+ "notification-url": "https://packagist.org/downloads/",
99
+ "license": [
100
+ "MIT"
101
+ ],
102
+ "authors": [
103
+ {
104
+ "name": "Kyle Robinson Young",
105
+ "email": "kyle@dontkry.com",
106
+ "homepage": "https://github.com/shama"
107
+ }
108
+ ],
109
+ "description": "A multi-framework Composer library installer",
110
+ "homepage": "https://composer.github.io/installers/",
111
+ "keywords": [
112
+ "Craft",
113
+ "Dolibarr",
114
+ "Eliasis",
115
+ "Hurad",
116
+ "ImageCMS",
117
+ "Kanboard",
118
+ "Lan Management System",
119
+ "MODX Evo",
120
+ "MantisBT",
121
+ "Mautic",
122
+ "Maya",
123
+ "OXID",
124
+ "Plentymarkets",
125
+ "Porto",
126
+ "RadPHP",
127
+ "SMF",
128
+ "Starbug",
129
+ "Thelia",
130
+ "Whmcs",
131
+ "WolfCMS",
132
+ "agl",
133
+ "aimeos",
134
+ "annotatecms",
135
+ "attogram",
136
+ "bitrix",
137
+ "cakephp",
138
+ "chef",
139
+ "cockpit",
140
+ "codeigniter",
141
+ "concrete5",
142
+ "croogo",
143
+ "dokuwiki",
144
+ "drupal",
145
+ "eZ Platform",
146
+ "elgg",
147
+ "expressionengine",
148
+ "fuelphp",
149
+ "grav",
150
+ "installer",
151
+ "itop",
152
+ "joomla",
153
+ "known",
154
+ "kohana",
155
+ "laravel",
156
+ "lavalite",
157
+ "lithium",
158
+ "magento",
159
+ "majima",
160
+ "mako",
161
+ "mediawiki",
162
+ "miaoxing",
163
+ "modulework",
164
+ "modx",
165
+ "moodle",
166
+ "osclass",
167
+ "phpbb",
168
+ "piwik",
169
+ "ppi",
170
+ "processwire",
171
+ "puppet",
172
+ "pxcms",
173
+ "reindex",
174
+ "roundcube",
175
+ "shopware",
176
+ "silverstripe",
177
+ "sydes",
178
+ "sylius",
179
+ "symfony",
180
+ "tastyigniter",
181
+ "typo3",
182
+ "wordpress",
183
+ "yawik",
184
+ "zend",
185
+ "zikula"
186
+ ],
187
+ "funding": [
188
+ {
189
+ "url": "https://packagist.com",
190
+ "type": "custom"
191
+ },
192
+ {
193
+ "url": "https://github.com/composer",
194
+ "type": "github"
195
+ },
196
+ {
197
+ "url": "https://tidelift.com/funding/github/packagist/composer/composer",
198
+ "type": "tidelift"
199
+ }
200
+ ],
201
+ "install-path": "./installers"
202
+ }
203
+ ],
204
+ "dev": false,
205
+ "dev-package-names": []
206
+ }
packages/woocommerce-admin/vendor/composer/installed.php ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php return array(
2
+ 'root' => array(
3
+ 'pretty_version' => '2.7.2',
4
+ 'version' => '2.7.2.0',
5
+ 'type' => 'wordpress-plugin',
6
+ 'install_path' => __DIR__ . '/../../',
7
+ 'aliases' => array(),
8
+ 'reference' => NULL,
9
+ 'name' => 'woocommerce/woocommerce-admin',
10
+ 'dev' => false,
11
+ ),
12
+ 'versions' => array(
13
+ 'automattic/jetpack-autoloader' => array(
14
+ 'pretty_version' => 'v2.10.2',
15
+ 'version' => '2.10.2.0',
16
+ 'type' => 'composer-plugin',
17
+ 'install_path' => __DIR__ . '/../automattic/jetpack-autoloader',
18
+ 'aliases' => array(),
19
+ 'reference' => '79a541381c1617b02980ab48d4ed0a0fb6ba462d',
20
+ 'dev_requirement' => false,
21
+ ),
22
+ 'composer/installers' => array(
23
+ 'pretty_version' => 'v1.11.0',
24
+ 'version' => '1.11.0.0',
25
+ 'type' => 'composer-plugin',
26
+ 'install_path' => __DIR__ . '/./installers',
27
+ 'aliases' => array(),
28
+ 'reference' => 'ae03311f45dfe194412081526be2e003960df74b',
29
+ 'dev_requirement' => false,
30
+ ),
31
+ 'roundcube/plugin-installer' => array(
32
+ 'dev_requirement' => false,
33
+ 'replaced' => array(
34
+ 0 => '*',
35
+ ),
36
+ ),
37
+ 'shama/baton' => array(
38
+ 'dev_requirement' => false,
39
+ 'replaced' => array(
40
+ 0 => '*',
41
+ ),
42
+ ),
43
+ 'woocommerce/woocommerce-admin' => array(
44
+ 'pretty_version' => '2.7.2',
45
+ 'version' => '2.7.2.0',
46
+ 'type' => 'wordpress-plugin',
47
+ 'install_path' => __DIR__ . '/../../',
48
+ 'aliases' => array(),
49
+ 'reference' => NULL,
50
+ 'dev_requirement' => false,
51
+ ),
52
+ ),
53
+ );
packages/woocommerce-admin/vendor/composer/jetpack_autoload_psr4.php CHANGED
@@ -11,7 +11,7 @@ return array(
11
  'path' => array( $vendorDir . '/composer/installers/src/Composer/Installers' )
12
  ),
13
  'Automattic\\WooCommerce\\Admin\\' => array(
14
- 'version' => '2.7.1.0-RC1',
15
  'path' => array( $baseDir . '/src' )
16
  ),
17
  'Automattic\\Jetpack\\Autoloader\\' => array(
11
  'path' => array( $vendorDir . '/composer/installers/src/Composer/Installers' )
12
  ),
13
  'Automattic\\WooCommerce\\Admin\\' => array(
14
+ 'version' => '2.7.2.0',
15
  'path' => array( $baseDir . '/src' )
16
  ),
17
  'Automattic\\Jetpack\\Autoloader\\' => array(
packages/woocommerce-admin/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
+ }
packages/woocommerce-admin/vendor/jetpack-autoloader/class-autoloader-handler.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jpa590ce72028997c975d5a9f504d57170;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpa6c66f5b79474f9cb8d8c01d58aec0c3;
9
 
10
  // phpcs:ignore
11
 
packages/woocommerce-admin/vendor/jetpack-autoloader/class-autoloader-locator.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jpa590ce72028997c975d5a9f504d57170;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpa6c66f5b79474f9cb8d8c01d58aec0c3;
9
 
10
  // phpcs:ignore
11
 
packages/woocommerce-admin/vendor/jetpack-autoloader/class-autoloader.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jpa590ce72028997c975d5a9f504d57170;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpa6c66f5b79474f9cb8d8c01d58aec0c3;
9
 
10
  // phpcs:ignore
11
 
packages/woocommerce-admin/vendor/jetpack-autoloader/class-container.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jpa590ce72028997c975d5a9f504d57170;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpa6c66f5b79474f9cb8d8c01d58aec0c3;
9
 
10
  // phpcs:ignore
11
 
packages/woocommerce-admin/vendor/jetpack-autoloader/class-hook-manager.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jpa590ce72028997c975d5a9f504d57170;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpa6c66f5b79474f9cb8d8c01d58aec0c3;
9
 
10
  // phpcs:ignore
11
 
packages/woocommerce-admin/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\jpa590ce72028997c975d5a9f504d57170;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpa6c66f5b79474f9cb8d8c01d58aec0c3;
9
 
10
  // phpcs:ignore
11
 
packages/woocommerce-admin/vendor/jetpack-autoloader/class-manifest-reader.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jpa590ce72028997c975d5a9f504d57170;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpa6c66f5b79474f9cb8d8c01d58aec0c3;
9
 
10
  // phpcs:ignore
11
 
packages/woocommerce-admin/vendor/jetpack-autoloader/class-path-processor.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jpa590ce72028997c975d5a9f504d57170;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpa6c66f5b79474f9cb8d8c01d58aec0c3;
9
 
10
  // phpcs:ignore
11
 
packages/woocommerce-admin/vendor/jetpack-autoloader/class-php-autoloader.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jpa590ce72028997c975d5a9f504d57170;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpa6c66f5b79474f9cb8d8c01d58aec0c3;
9
 
10
  // phpcs:ignore
11
 
packages/woocommerce-admin/vendor/jetpack-autoloader/class-plugin-locator.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jpa590ce72028997c975d5a9f504d57170;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpa6c66f5b79474f9cb8d8c01d58aec0c3;
9
 
10
  // phpcs:ignore
11
 
packages/woocommerce-admin/vendor/jetpack-autoloader/class-plugins-handler.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jpa590ce72028997c975d5a9f504d57170;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpa6c66f5b79474f9cb8d8c01d58aec0c3;
9
 
10
  // phpcs:ignore
11
 
packages/woocommerce-admin/vendor/jetpack-autoloader/class-shutdown-handler.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jpa590ce72028997c975d5a9f504d57170;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpa6c66f5b79474f9cb8d8c01d58aec0c3;
9
 
10
  // phpcs:ignore
11
 
packages/woocommerce-admin/vendor/jetpack-autoloader/class-version-loader.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jpa590ce72028997c975d5a9f504d57170;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpa6c66f5b79474f9cb8d8c01d58aec0c3;
9
 
10
  // phpcs:ignore
11
 
packages/woocommerce-admin/vendor/jetpack-autoloader/class-version-selector.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jpa590ce72028997c975d5a9f504d57170;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpa6c66f5b79474f9cb8d8c01d58aec0c3;
9
 
10
  // phpcs:ignore
11
 
packages/woocommerce-admin/woocommerce-admin.php CHANGED
@@ -7,7 +7,7 @@
7
  * Author URI: https://woocommerce.com/
8
  * Text Domain: woocommerce-admin
9
  * Domain Path: /languages
10
- * Version: 2.7.1-rc.1
11
  * Requires at least: 5.4
12
  * Requires PHP: 7.0
13
  *
7
  * Author URI: https://woocommerce.com/
8
  * Text Domain: woocommerce-admin
9
  * Domain Path: /languages
10
+ * Version: 2.7.2
11
  * Requires at least: 5.4
12
  * Requires PHP: 7.0
13
  *
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: e-commerce, store, sales, sell, woo, shop, cart, checkout, downloadable, d
4
  Requires at least: 5.6
5
  Tested up to: 5.8
6
  Requires PHP: 7.0
7
- Stable tag: 5.7.1
8
  License: GPLv3
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -176,47 +176,49 @@ WooCommerce comes with some sample data you can use to see how products look; im
176
  * Tweak - Deleted unneeded double spaces in text strings. #30487
177
  * Tweak - Open Browse all extensions link in a new tab. #30640
178
 
179
- ** WooCommerce Admin - 2.7.1 **
180
 
181
- * Fix - Allow super admins all capabilities within WooCommerce Admin
182
- * Fix - Fix end date for last periods
183
- * Fix - Fix up onboarding profiler not working when opted out of tracking
184
- * Fix - Making Business Details sticky in onboarding wizard
 
185
  * Fix - Missing RTL for onboarding styles. #7531
186
- * Fix - No changelog necessary as it is in the component package. #7423
187
- * Fix - Skip scheduling action if Action Scheduler tables have not been set up #7521
188
  * Fix - Update country region typeahead for better autofill support. #7497
189
  * Fix - Use installable extensions for local state versus free extensions. #7585
190
- * Fix - Fix fatal error and unrelated results in analytics.
191
- * Fix - Harden the reports directory #7691
192
  * Fix - Update task-item logic to only display content when expanded is true. #7611
193
- * Add - Show Pinterest in installed marketing extensions (if installed) #7417
194
- * Add - Added MailchimpScheduler that runs daily to subscribe store_email in the profile data #7579
195
- * Add - Added shipping plugin recommendations to settings page (#7446).
196
- * Add - Adding endpoint to snooze onboarding task
197
- * Add - Adding undo snooze task endpoint
198
- * Add - Add task dismissal endpoints #7538
199
  * Update - Add HK and SG countries to WC Pay intl support. #7558
200
- * Update - Create task list REST API endpoint #7512
201
- * Update - Deleted OnboardingEmailMarketing note class #7595
202
  * Update - Removes the use of the depreciated woocommerce_shared_settings hook. #7480
203
- * Update - Updating eway logo in payment suggestions defaults
 
204
  * Update - Update marketing task completion logic. #7586
205
- * Dev - Add email address field to OBW #7552
206
  * Tweak - Add navigation items for the Marketplace menu. #7529
207
  * Tweak - Change all analytics strings and labels to sentence case. #6501
208
  * Tweak - Delete unneeded double spaces in text strings. #7502
209
- * Tweak - Remove the preloaded onboarding options
210
- * Tweak - Update analytics card header text styles #6506
211
  * Enhancement - Align Table fields with the fallback on isNumeric. #7431
212
 
213
- **WooCommerce Blocks - 5.7.1 & 5.8.0 & 5.9.0**
214
 
215
  * Add - Extensibility point for extensions to filter payment methods. #4668
216
  * Add - "Filter Products by Stock" block. #4145
217
  * Add - Introduced the `__experimental_woocommerce_blocks_checkout_update_order_from_request` hook to the Checkout Store API. #4610.
218
  * Fix - Add label element to `<BlockTitle>` component. #4585
219
  * Fix - Disable Cart, Checkout, All Products & filters blocks from the widgets screen.
 
220
  * Fix - Prevent Product Category List from displaying incorrectly when used on the shop page. #4587
221
  * Fix - Product Search block displaying incorrectly. #4740
222
  * Tweak - Add Extensibility info to Store API readme. #4605
4
  Requires at least: 5.6
5
  Tested up to: 5.8
6
  Requires PHP: 7.0
7
+ Stable tag: 5.8.0
8
  License: GPLv3
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
10
 
176
  * Tweak - Deleted unneeded double spaces in text strings. #30487
177
  * Tweak - Open Browse all extensions link in a new tab. #30640
178
 
179
+ ** WooCommerce Admin - 2.7.1 & 2.7.2**
180
 
181
+ * Fix - Fix analytics crashing on daylight saving. #7763
182
+ * Fix - Allow super admins all capabilities within WooCommerce Admin. #7489
183
+ * Fix - Fix end date for last periods. #6584
184
+ * Fix - Fix up onboarding profiler not working when opted out of tracking. #7490
185
+ * Fix - Making Business Details sticky in onboarding wizard. #7426
186
  * Fix - Missing RTL for onboarding styles. #7531
187
+ * Fix - Skip scheduling action if Action Scheduler tables have not been set up. #7521
 
188
  * Fix - Update country region typeahead for better autofill support. #7497
189
  * Fix - Use installable extensions for local state versus free extensions. #7585
190
+ * Fix - Fix fatal error and unrelated results in analytics. #7682
191
+ * Fix - Harden the reports directory. #7691
192
  * Fix - Update task-item logic to only display content when expanded is true. #7611
193
+ * Add - Show Pinterest in installed marketing extensions (if installed). #7417
194
+ * Add - Added MailchimpScheduler that runs daily to subscribe store_email in the profile data. #7579
195
+ * Add - Added shipping plugin recommendations to settings page. #7446
196
+ * Add - Adding endpoint to snooze onboarding task. #7539
197
+ * Add - Adding undo snooze task endpoint. #7560
198
+ * Add - Add task dismissal endpoints. #7538
199
  * Update - Add HK and SG countries to WC Pay intl support. #7558
200
+ * Update - Create task list REST API endpoint. #7512
201
+ * Update - Deleted OnboardingEmailMarketing note class. #7595
202
  * Update - Removes the use of the depreciated woocommerce_shared_settings hook. #7480
203
+ * Update - Removes non WooCommerce Admin specific settings from the `wc_admin` namespace in the `wc/data` settings store (ex: countries). #7480
204
+ * Update - Updating eway logo in payment suggestions defaults. #7562
205
  * Update - Update marketing task completion logic. #7586
206
+ * Dev - Add email address field to OBW. #7552
207
  * Tweak - Add navigation items for the Marketplace menu. #7529
208
  * Tweak - Change all analytics strings and labels to sentence case. #6501
209
  * Tweak - Delete unneeded double spaces in text strings. #7502
210
+ * Tweak - Remove the preloaded onboarding options. #7338
211
+ * Tweak - Update analytics card header text styles. #6506
212
  * Enhancement - Align Table fields with the fallback on isNumeric. #7431
213
 
214
+ **WooCommerce Blocks - 5.7.1 & 5.8.0 & 5.9.0 & 5.9.1**
215
 
216
  * Add - Extensibility point for extensions to filter payment methods. #4668
217
  * Add - "Filter Products by Stock" block. #4145
218
  * Add - Introduced the `__experimental_woocommerce_blocks_checkout_update_order_from_request` hook to the Checkout Store API. #4610.
219
  * Fix - Add label element to `<BlockTitle>` component. #4585
220
  * Fix - Disable Cart, Checkout, All Products & filters blocks from the widgets screen.
221
+ * Fix - Infinite recursion when removing an attribute filter from the Active filters block. #4816
222
  * Fix - Prevent Product Category List from displaying incorrectly when used on the shop page. #4587
223
  * Fix - Product Search block displaying incorrectly. #4740
224
  * Tweak - Add Extensibility info to Store API readme. #4605
vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
- return ComposerAutoloaderInit112174c5cd4c97cc6a7410c4b1e4391d::getLoader();
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInitd9fc8cc13800a8a61ffc0d1db6eed0da::getLoader();
vendor/autoload_packages.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jp112174c5cd4c97cc6a7410c4b1e4391d;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpd9fc8cc13800a8a61ffc0d1db6eed0da;
9
 
10
  // phpcs:ignore
11
 
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInit112174c5cd4c97cc6a7410c4b1e4391d
6
  {
7
  private static $loader;
8
 
@@ -22,15 +22,15 @@ class ComposerAutoloaderInit112174c5cd4c97cc6a7410c4b1e4391d
22
  return self::$loader;
23
  }
24
 
25
- spl_autoload_register(array('ComposerAutoloaderInit112174c5cd4c97cc6a7410c4b1e4391d', 'loadClassLoader'), true, true);
26
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
27
- spl_autoload_unregister(array('ComposerAutoloaderInit112174c5cd4c97cc6a7410c4b1e4391d', '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\ComposerStaticInit112174c5cd4c97cc6a7410c4b1e4391d::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 ComposerAutoloaderInitd9fc8cc13800a8a61ffc0d1db6eed0da
6
  {
7
  private static $loader;
8
 
22
  return self::$loader;
23
  }
24
 
25
+ spl_autoload_register(array('ComposerAutoloaderInitd9fc8cc13800a8a61ffc0d1db6eed0da', 'loadClassLoader'), true, true);
26
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
27
+ spl_autoload_unregister(array('ComposerAutoloaderInitd9fc8cc13800a8a61ffc0d1db6eed0da', '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\ComposerStaticInitd9fc8cc13800a8a61ffc0d1db6eed0da::getInitializer($loader));
34
  } else {
35
  $map = require __DIR__ . '/autoload_namespaces.php';
36
  foreach ($map as $namespace => $path) {
vendor/composer/autoload_static.php CHANGED
@@ -4,7 +4,7 @@
4
 
5
  namespace Composer\Autoload;
6
 
7
- class ComposerStaticInit112174c5cd4c97cc6a7410c4b1e4391d
8
  {
9
  public static $prefixLengthsPsr4 = array (
10
  'S' =>
@@ -899,10 +899,10 @@ class ComposerStaticInit112174c5cd4c97cc6a7410c4b1e4391d
899
  public static function getInitializer(ClassLoader $loader)
900
  {
901
  return \Closure::bind(function () use ($loader) {
902
- $loader->prefixLengthsPsr4 = ComposerStaticInit112174c5cd4c97cc6a7410c4b1e4391d::$prefixLengthsPsr4;
903
- $loader->prefixDirsPsr4 = ComposerStaticInit112174c5cd4c97cc6a7410c4b1e4391d::$prefixDirsPsr4;
904
- $loader->prefixesPsr0 = ComposerStaticInit112174c5cd4c97cc6a7410c4b1e4391d::$prefixesPsr0;
905
- $loader->classMap = ComposerStaticInit112174c5cd4c97cc6a7410c4b1e4391d::$classMap;
906
 
907
  }, null, ClassLoader::class);
908
  }
4
 
5
  namespace Composer\Autoload;
6
 
7
+ class ComposerStaticInitd9fc8cc13800a8a61ffc0d1db6eed0da
8
  {
9
  public static $prefixLengthsPsr4 = array (
10
  'S' =>
899
  public static function getInitializer(ClassLoader $loader)
900
  {
901
  return \Closure::bind(function () use ($loader) {
902
+ $loader->prefixLengthsPsr4 = ComposerStaticInitd9fc8cc13800a8a61ffc0d1db6eed0da::$prefixLengthsPsr4;
903
+ $loader->prefixDirsPsr4 = ComposerStaticInitd9fc8cc13800a8a61ffc0d1db6eed0da::$prefixDirsPsr4;
904
+ $loader->prefixesPsr0 = ComposerStaticInitd9fc8cc13800a8a61ffc0d1db6eed0da::$prefixesPsr0;
905
+ $loader->classMap = ComposerStaticInitd9fc8cc13800a8a61ffc0d1db6eed0da::$classMap;
906
 
907
  }, null, ClassLoader::class);
908
  }
vendor/composer/installed.json CHANGED
@@ -542,17 +542,17 @@
542
  },
543
  {
544
  "name": "woocommerce/woocommerce-admin",
545
- "version": "2.7.1-rc.1",
546
- "version_normalized": "2.7.1.0-RC1",
547
  "source": {
548
  "type": "git",
549
  "url": "https://github.com/woocommerce/woocommerce-admin.git",
550
- "reference": "3e873f3a3733ef81fc3352a21dd152840550fffe"
551
  },
552
  "dist": {
553
  "type": "zip",
554
- "url": "https://api.github.com/repos/woocommerce/woocommerce-admin/zipball/3e873f3a3733ef81fc3352a21dd152840550fffe",
555
- "reference": "3e873f3a3733ef81fc3352a21dd152840550fffe",
556
  "shasum": ""
557
  },
558
  "require": {
@@ -566,7 +566,7 @@
566
  "suin/phpcs-psr4-sniff": "^2.2",
567
  "woocommerce/woocommerce-sniffs": "0.1.0"
568
  },
569
- "time": "2021-09-23T22:13:54+00:00",
570
  "type": "wordpress-plugin",
571
  "extra": {
572
  "scripts-description": {
@@ -609,7 +609,7 @@
609
  "homepage": "https://github.com/woocommerce/woocommerce-admin",
610
  "support": {
611
  "issues": "https://github.com/woocommerce/woocommerce-admin/issues",
612
- "source": "https://github.com/woocommerce/woocommerce-admin/tree/v2.7.1-rc.1"
613
  }
614
  },
615
  {
542
  },
543
  {
544
  "name": "woocommerce/woocommerce-admin",
545
+ "version": "2.7.2",
546
+ "version_normalized": "2.7.2.0",
547
  "source": {
548
  "type": "git",
549
  "url": "https://github.com/woocommerce/woocommerce-admin.git",
550
+ "reference": "9ce54862556815e74cfe2476fae0eb30fcfd65d6"
551
  },
552
  "dist": {
553
  "type": "zip",
554
+ "url": "https://api.github.com/repos/woocommerce/woocommerce-admin/zipball/9ce54862556815e74cfe2476fae0eb30fcfd65d6",
555
+ "reference": "9ce54862556815e74cfe2476fae0eb30fcfd65d6",
556
  "shasum": ""
557
  },
558
  "require": {
566
  "suin/phpcs-psr4-sniff": "^2.2",
567
  "woocommerce/woocommerce-sniffs": "0.1.0"
568
  },
569
+ "time": "2021-10-11T21:11:02+00:00",
570
  "type": "wordpress-plugin",
571
  "extra": {
572
  "scripts-description": {
609
  "homepage": "https://github.com/woocommerce/woocommerce-admin",
610
  "support": {
611
  "issues": "https://github.com/woocommerce/woocommerce-admin/issues",
612
+ "source": "https://github.com/woocommerce/woocommerce-admin/tree/v2.7.2"
613
  }
614
  },
615
  {
vendor/composer/jetpack_autoload_classmap.php CHANGED
@@ -6,214 +6,238 @@ $vendorDir = dirname(__DIR__);
6
  $baseDir = dirname($vendorDir);
7
 
8
  return array(
9
- 'Symfony\\Component\\CssSelector\\Tests\\Parser\\Handler\\CommentHandlerTest' => array(
10
  'version' => '3.3.6.0',
11
- 'path' => $vendorDir . '/symfony/css-selector/Tests/Parser/Handler/CommentHandlerTest.php'
12
  ),
13
- 'Symfony\\Component\\CssSelector\\Tests\\Parser\\Handler\\StringHandlerTest' => array(
14
  'version' => '3.3.6.0',
15
- 'path' => $vendorDir . '/symfony/css-selector/Tests/Parser/Handler/StringHandlerTest.php'
16
  ),
17
- 'Symfony\\Component\\CssSelector\\Tests\\Parser\\Handler\\NumberHandlerTest' => array(
18
  'version' => '3.3.6.0',
19
- 'path' => $vendorDir . '/symfony/css-selector/Tests/Parser/Handler/NumberHandlerTest.php'
20
  ),
21
- 'Symfony\\Component\\CssSelector\\Tests\\Parser\\Handler\\WhitespaceHandlerTest' => array(
22
  'version' => '3.3.6.0',
23
- 'path' => $vendorDir . '/symfony/css-selector/Tests/Parser/Handler/WhitespaceHandlerTest.php'
24
  ),
25
- 'Symfony\\Component\\CssSelector\\Tests\\Parser\\Handler\\AbstractHandlerTest' => array(
26
  'version' => '3.3.6.0',
27
- 'path' => $vendorDir . '/symfony/css-selector/Tests/Parser/Handler/AbstractHandlerTest.php'
28
  ),
29
- 'Symfony\\Component\\CssSelector\\Tests\\Parser\\Handler\\IdentifierHandlerTest' => array(
30
  'version' => '3.3.6.0',
31
- 'path' => $vendorDir . '/symfony/css-selector/Tests/Parser/Handler/IdentifierHandlerTest.php'
32
  ),
33
- 'Symfony\\Component\\CssSelector\\Tests\\Parser\\Handler\\HashHandlerTest' => array(
34
  'version' => '3.3.6.0',
35
- 'path' => $vendorDir . '/symfony/css-selector/Tests/Parser/Handler/HashHandlerTest.php'
36
  ),
37
- 'Symfony\\Component\\CssSelector\\Tests\\Parser\\Shortcut\\HashParserTest' => array(
38
  'version' => '3.3.6.0',
39
- 'path' => $vendorDir . '/symfony/css-selector/Tests/Parser/Shortcut/HashParserTest.php'
40
  ),
41
- 'Symfony\\Component\\CssSelector\\Tests\\Parser\\Shortcut\\ClassParserTest' => array(
42
  'version' => '3.3.6.0',
43
- 'path' => $vendorDir . '/symfony/css-selector/Tests/Parser/Shortcut/ClassParserTest.php'
44
  ),
45
- 'Symfony\\Component\\CssSelector\\Tests\\Parser\\Shortcut\\ElementParserTest' => array(
46
  'version' => '3.3.6.0',
47
- 'path' => $vendorDir . '/symfony/css-selector/Tests/Parser/Shortcut/ElementParserTest.php'
48
  ),
49
- 'Symfony\\Component\\CssSelector\\Tests\\Parser\\Shortcut\\EmptyStringParserTest' => array(
50
  'version' => '3.3.6.0',
51
- 'path' => $vendorDir . '/symfony/css-selector/Tests/Parser/Shortcut/EmptyStringParserTest.php'
52
  ),
53
- 'Symfony\\Component\\CssSelector\\Tests\\Parser\\TokenStreamTest' => array(
54
  'version' => '3.3.6.0',
55
- 'path' => $vendorDir . '/symfony/css-selector/Tests/Parser/TokenStreamTest.php'
56
  ),
57
- 'Symfony\\Component\\CssSelector\\Tests\\Parser\\ReaderTest' => array(
58
  'version' => '3.3.6.0',
59
- 'path' => $vendorDir . '/symfony/css-selector/Tests/Parser/ReaderTest.php'
60
  ),
61
- 'Symfony\\Component\\CssSelector\\Tests\\Parser\\ParserTest' => array(
62
  'version' => '3.3.6.0',
63
- 'path' => $vendorDir . '/symfony/css-selector/Tests/Parser/ParserTest.php'
64
  ),
65
- 'Symfony\\Component\\CssSelector\\Tests\\Node\\ClassNodeTest' => array(
66
  'version' => '3.3.6.0',
67
- 'path' => $vendorDir . '/symfony/css-selector/Tests/Node/ClassNodeTest.php'
68
  ),
69
- 'Symfony\\Component\\CssSelector\\Tests\\Node\\SelectorNodeTest' => array(
70
  'version' => '3.3.6.0',
71
- 'path' => $vendorDir . '/symfony/css-selector/Tests/Node/SelectorNodeTest.php'
72
  ),
73
- 'Symfony\\Component\\CssSelector\\Tests\\Node\\NegationNodeTest' => array(
74
  'version' => '3.3.6.0',
75
- 'path' => $vendorDir . '/symfony/css-selector/Tests/Node/NegationNodeTest.php'
76
  ),
77
- 'Symfony\\Component\\CssSelector\\Tests\\Node\\AttributeNodeTest' => array(
78
  'version' => '3.3.6.0',
79
- 'path' => $vendorDir . '/symfony/css-selector/Tests/Node/AttributeNodeTest.php'
80
  ),
81
- 'Symfony\\Component\\CssSelector\\Tests\\Node\\FunctionNodeTest' => array(
82
  'version' => '3.3.6.0',
83
- 'path' => $vendorDir . '/symfony/css-selector/Tests/Node/FunctionNodeTest.php'
84
  ),
85
- 'Symfony\\Component\\CssSelector\\Tests\\Node\\HashNodeTest' => array(
86
  'version' => '3.3.6.0',
87
- 'path' => $vendorDir . '/symfony/css-selector/Tests/Node/HashNodeTest.php'
88
  ),
89
- 'Symfony\\Component\\CssSelector\\Tests\\Node\\AbstractNodeTest' => array(
90
  'version' => '3.3.6.0',
91
- 'path' => $vendorDir . '/symfony/css-selector/Tests/Node/AbstractNodeTest.php'
92
  ),
93
- 'Symfony\\Component\\CssSelector\\Tests\\Node\\CombinedSelectorNodeTest' => array(
94
  'version' => '3.3.6.0',
95
- 'path' => $vendorDir . '/symfony/css-selector/Tests/Node/CombinedSelectorNodeTest.php'
96
  ),
97
- 'Symfony\\Component\\CssSelector\\Tests\\Node\\PseudoNodeTest' => array(
98
  'version' => '3.3.6.0',
99
- 'path' => $vendorDir . '/symfony/css-selector/Tests/Node/PseudoNodeTest.php'
100
  ),
101
- 'Symfony\\Component\\CssSelector\\Tests\\Node\\ElementNodeTest' => array(
102
  'version' => '3.3.6.0',
103
- 'path' => $vendorDir . '/symfony/css-selector/Tests/Node/ElementNodeTest.php'
104
  ),
105
- 'Symfony\\Component\\CssSelector\\Tests\\Node\\SpecificityTest' => array(
106
  'version' => '3.3.6.0',
107
- 'path' => $vendorDir . '/symfony/css-selector/Tests/Node/SpecificityTest.php'
108
  ),
109
- 'Symfony\\Component\\CssSelector\\Tests\\XPath\\TranslatorTest' => array(
110
  'version' => '3.3.6.0',
111
- 'path' => $vendorDir . '/symfony/css-selector/Tests/XPath/TranslatorTest.php'
112
  ),
113
- 'Symfony\\Component\\CssSelector\\Tests\\CssSelectorConverterTest' => array(
114
  'version' => '3.3.6.0',
115
- 'path' => $vendorDir . '/symfony/css-selector/Tests/CssSelectorConverterTest.php'
116
  ),
117
- 'Symfony\\Component\\CssSelector\\Parser\\Handler\\HandlerInterface' => array(
118
  'version' => '3.3.6.0',
119
- 'path' => $vendorDir . '/symfony/css-selector/Parser/Handler/HandlerInterface.php'
120
  ),
121
- 'Symfony\\Component\\CssSelector\\Parser\\Handler\\IdentifierHandler' => array(
122
  'version' => '3.3.6.0',
123
- 'path' => $vendorDir . '/symfony/css-selector/Parser/Handler/IdentifierHandler.php'
124
  ),
125
- 'Symfony\\Component\\CssSelector\\Parser\\Handler\\StringHandler' => array(
126
  'version' => '3.3.6.0',
127
- 'path' => $vendorDir . '/symfony/css-selector/Parser/Handler/StringHandler.php'
128
  ),
129
- 'Symfony\\Component\\CssSelector\\Parser\\Handler\\HashHandler' => array(
130
  'version' => '3.3.6.0',
131
- 'path' => $vendorDir . '/symfony/css-selector/Parser/Handler/HashHandler.php'
132
  ),
133
- 'Symfony\\Component\\CssSelector\\Parser\\Handler\\WhitespaceHandler' => array(
134
  'version' => '3.3.6.0',
135
- 'path' => $vendorDir . '/symfony/css-selector/Parser/Handler/WhitespaceHandler.php'
136
  ),
137
- 'Symfony\\Component\\CssSelector\\Parser\\Handler\\NumberHandler' => array(
138
  'version' => '3.3.6.0',
139
- 'path' => $vendorDir . '/symfony/css-selector/Parser/Handler/NumberHandler.php'
140
  ),
141
- 'Symfony\\Component\\CssSelector\\Parser\\Handler\\CommentHandler' => array(
142
  'version' => '3.3.6.0',
143
- 'path' => $vendorDir . '/symfony/css-selector/Parser/Handler/CommentHandler.php'
144
  ),
145
- 'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\TokenizerEscaping' => array(
146
  'version' => '3.3.6.0',
147
- 'path' => $vendorDir . '/symfony/css-selector/Parser/Tokenizer/TokenizerEscaping.php'
148
  ),
149
- 'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\Tokenizer' => array(
150
  'version' => '3.3.6.0',
151
- 'path' => $vendorDir . '/symfony/css-selector/Parser/Tokenizer/Tokenizer.php'
152
  ),
153
- 'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\TokenizerPatterns' => array(
154
  'version' => '3.3.6.0',
155
- 'path' => $vendorDir . '/symfony/css-selector/Parser/Tokenizer/TokenizerPatterns.php'
156
  ),
157
- 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\ElementParser' => array(
158
  'version' => '3.3.6.0',
159
- 'path' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/ElementParser.php'
160
  ),
161
- 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\EmptyStringParser' => array(
162
  'version' => '3.3.6.0',
163
- 'path' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/EmptyStringParser.php'
164
  ),
165
- 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\HashParser' => array(
166
  'version' => '3.3.6.0',
167
- 'path' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/HashParser.php'
168
  ),
169
- 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\ClassParser' => array(
170
  'version' => '3.3.6.0',
171
- 'path' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/ClassParser.php'
172
  ),
173
- 'Symfony\\Component\\CssSelector\\Parser\\Reader' => array(
174
  'version' => '3.3.6.0',
175
- 'path' => $vendorDir . '/symfony/css-selector/Parser/Reader.php'
176
  ),
177
- 'Symfony\\Component\\CssSelector\\Parser\\Token' => array(
178
  'version' => '3.3.6.0',
179
- 'path' => $vendorDir . '/symfony/css-selector/Parser/Token.php'
180
  ),
181
- 'Symfony\\Component\\CssSelector\\Parser\\ParserInterface' => array(
182
  'version' => '3.3.6.0',
183
- 'path' => $vendorDir . '/symfony/css-selector/Parser/ParserInterface.php'
184
  ),
185
- 'Symfony\\Component\\CssSelector\\Parser\\Parser' => array(
186
  'version' => '3.3.6.0',
187
- 'path' => $vendorDir . '/symfony/css-selector/Parser/Parser.php'
188
  ),
189
- 'Symfony\\Component\\CssSelector\\Parser\\TokenStream' => array(
190
  'version' => '3.3.6.0',
191
- 'path' => $vendorDir . '/symfony/css-selector/Parser/TokenStream.php'
192
  ),
193
- 'Symfony\\Component\\CssSelector\\Node\\FunctionNode' => array(
194
  'version' => '3.3.6.0',
195
- 'path' => $vendorDir . '/symfony/css-selector/Node/FunctionNode.php'
196
  ),
197
- 'Symfony\\Component\\CssSelector\\Node\\SelectorNode' => array(
198
  'version' => '3.3.6.0',
199
- 'path' => $vendorDir . '/symfony/css-selector/Node/SelectorNode.php'
200
  ),
201
- 'Symfony\\Component\\CssSelector\\Node\\NegationNode' => array(
202
  'version' => '3.3.6.0',
203
- 'path' => $vendorDir . '/symfony/css-selector/Node/NegationNode.php'
204
  ),
205
- 'Symfony\\Component\\CssSelector\\Node\\NodeInterface' => array(
206
  'version' => '3.3.6.0',
207
- 'path' => $vendorDir . '/symfony/css-selector/Node/NodeInterface.php'
208
  ),
209
- 'Symfony\\Component\\CssSelector\\Node\\Specificity' => array(
210
  'version' => '3.3.6.0',
211
- 'path' => $vendorDir . '/symfony/css-selector/Node/Specificity.php'
 
 
 
 
212
  ),
213
  'Symfony\\Component\\CssSelector\\Node\\CombinedSelectorNode' => array(
214
  'version' => '3.3.6.0',
215
  'path' => $vendorDir . '/symfony/css-selector/Node/CombinedSelectorNode.php'
216
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
217
  'Symfony\\Component\\CssSelector\\Node\\AttributeNode' => array(
218
  'version' => '3.3.6.0',
219
  'path' => $vendorDir . '/symfony/css-selector/Node/AttributeNode.php'
@@ -226,90 +250,62 @@ return array(
226
  'version' => '3.3.6.0',
227
  'path' => $vendorDir . '/symfony/css-selector/Node/HashNode.php'
228
  ),
229
- 'Symfony\\Component\\CssSelector\\Node\\PseudoNode' => array(
230
  'version' => '3.3.6.0',
231
- 'path' => $vendorDir . '/symfony/css-selector/Node/PseudoNode.php'
232
  ),
233
  'Symfony\\Component\\CssSelector\\Node\\AbstractNode' => array(
234
  'version' => '3.3.6.0',
235
  'path' => $vendorDir . '/symfony/css-selector/Node/AbstractNode.php'
236
  ),
237
- 'Symfony\\Component\\CssSelector\\Node\\ElementNode' => array(
238
  'version' => '3.3.6.0',
239
- 'path' => $vendorDir . '/symfony/css-selector/Node/ElementNode.php'
240
  ),
241
- 'Symfony\\Component\\CssSelector\\Exception\\SyntaxErrorException' => array(
242
  'version' => '3.3.6.0',
243
- 'path' => $vendorDir . '/symfony/css-selector/Exception/SyntaxErrorException.php'
244
  ),
245
- 'Symfony\\Component\\CssSelector\\Exception\\ParseException' => array(
246
  'version' => '3.3.6.0',
247
- 'path' => $vendorDir . '/symfony/css-selector/Exception/ParseException.php'
248
  ),
249
- 'Symfony\\Component\\CssSelector\\Exception\\InternalErrorException' => array(
250
  'version' => '3.3.6.0',
251
- 'path' => $vendorDir . '/symfony/css-selector/Exception/InternalErrorException.php'
252
  ),
253
- 'Symfony\\Component\\CssSelector\\Exception\\ExpressionErrorException' => array(
254
  'version' => '3.3.6.0',
255
- 'path' => $vendorDir . '/symfony/css-selector/Exception/ExpressionErrorException.php'
256
  ),
257
- 'Symfony\\Component\\CssSelector\\Exception\\ExceptionInterface' => array(
258
  'version' => '3.3.6.0',
259
- 'path' => $vendorDir . '/symfony/css-selector/Exception/ExceptionInterface.php'
260
  ),
261
- 'Symfony\\Component\\CssSelector\\XPath\\Extension\\PseudoClassExtension' => array(
262
- 'version' => '3.3.6.0',
263
- 'path' => $vendorDir . '/symfony/css-selector/XPath/Extension/PseudoClassExtension.php'
264
- ),
265
- 'Symfony\\Component\\CssSelector\\XPath\\Extension\\AttributeMatchingExtension' => array(
266
- 'version' => '3.3.6.0',
267
- 'path' => $vendorDir . '/symfony/css-selector/XPath/Extension/AttributeMatchingExtension.php'
268
- ),
269
- 'Symfony\\Component\\CssSelector\\XPath\\Extension\\CombinationExtension' => array(
270
- 'version' => '3.3.6.0',
271
- 'path' => $vendorDir . '/symfony/css-selector/XPath/Extension/CombinationExtension.php'
272
- ),
273
- 'Symfony\\Component\\CssSelector\\XPath\\Extension\\HtmlExtension' => array(
274
- 'version' => '3.3.6.0',
275
- 'path' => $vendorDir . '/symfony/css-selector/XPath/Extension/HtmlExtension.php'
276
- ),
277
- 'Symfony\\Component\\CssSelector\\XPath\\Extension\\NodeExtension' => array(
278
  'version' => '3.3.6.0',
279
- 'path' => $vendorDir . '/symfony/css-selector/XPath/Extension/NodeExtension.php'
280
  ),
281
  'Symfony\\Component\\CssSelector\\XPath\\Extension\\AbstractExtension' => array(
282
  'version' => '3.3.6.0',
283
  'path' => $vendorDir . '/symfony/css-selector/XPath/Extension/AbstractExtension.php'
284
  ),
285
- 'Symfony\\Component\\CssSelector\\XPath\\Extension\\FunctionExtension' => array(
286
  'version' => '3.3.6.0',
287
- 'path' => $vendorDir . '/symfony/css-selector/XPath/Extension/FunctionExtension.php'
288
  ),
289
- 'Symfony\\Component\\CssSelector\\XPath\\Extension\\ExtensionInterface' => array(
290
  'version' => '3.3.6.0',
291
- 'path' => $vendorDir . '/symfony/css-selector/XPath/Extension/ExtensionInterface.php'
292
  ),
293
  'Symfony\\Component\\CssSelector\\XPath\\Translator' => array(
294
  'version' => '3.3.6.0',
295
  'path' => $vendorDir . '/symfony/css-selector/XPath/Translator.php'
296
  ),
297
- 'Symfony\\Component\\CssSelector\\XPath\\TranslatorInterface' => array(
298
- 'version' => '3.3.6.0',
299
- 'path' => $vendorDir . '/symfony/css-selector/XPath/TranslatorInterface.php'
300
- ),
301
  'Symfony\\Component\\CssSelector\\XPath\\XPathExpr' => array(
302
  'version' => '3.3.6.0',
303
  'path' => $vendorDir . '/symfony/css-selector/XPath/XPathExpr.php'
304
  ),
305
- 'Symfony\\Component\\CssSelector\\CssSelectorConverter' => array(
306
- 'version' => '3.3.6.0',
307
- 'path' => $vendorDir . '/symfony/css-selector/CssSelectorConverter.php'
308
- ),
309
- 'Psr\\Container\\ContainerInterface' => array(
310
- 'version' => '1.0.0.0',
311
- 'path' => $vendorDir . '/psr/container/src/ContainerInterface.php'
312
- ),
313
  'Psr\\Container\\ContainerExceptionInterface' => array(
314
  'version' => '1.0.0.0',
315
  'path' => $vendorDir . '/psr/container/src/ContainerExceptionInterface.php'
@@ -318,26 +314,26 @@ return array(
318
  'version' => '1.0.0.0',
319
  'path' => $vendorDir . '/psr/container/src/NotFoundExceptionInterface.php'
320
  ),
321
- 'Pelago\\Emogrifier' => array(
322
- 'version' => '3.1.0.0',
323
- 'path' => $vendorDir . '/pelago/emogrifier/src/Emogrifier.php'
324
  ),
325
- 'Pelago\\Emogrifier\\HtmlProcessor\\HtmlPruner' => array(
326
  'version' => '3.1.0.0',
327
- 'path' => $vendorDir . '/pelago/emogrifier/src/Emogrifier/HtmlProcessor/HtmlPruner.php'
328
  ),
329
  'Pelago\\Emogrifier\\HtmlProcessor\\CssToAttributeConverter' => array(
330
  'version' => '3.1.0.0',
331
  'path' => $vendorDir . '/pelago/emogrifier/src/Emogrifier/HtmlProcessor/CssToAttributeConverter.php'
332
  ),
333
- 'Pelago\\Emogrifier\\HtmlProcessor\\AbstractHtmlProcessor' => array(
334
- 'version' => '3.1.0.0',
335
- 'path' => $vendorDir . '/pelago/emogrifier/src/Emogrifier/HtmlProcessor/AbstractHtmlProcessor.php'
336
- ),
337
  'Pelago\\Emogrifier\\HtmlProcessor\\HtmlNormalizer' => array(
338
  'version' => '3.1.0.0',
339
  'path' => $vendorDir . '/pelago/emogrifier/src/Emogrifier/HtmlProcessor/HtmlNormalizer.php'
340
  ),
 
 
 
 
341
  'Pelago\\Emogrifier\\Utilities\\ArrayIntersector' => array(
342
  'version' => '3.1.0.0',
343
  'path' => $vendorDir . '/pelago/emogrifier/src/Emogrifier/Utilities/ArrayIntersector.php'
@@ -350,10 +346,18 @@ return array(
350
  'version' => '3.1.0.0',
351
  'path' => $vendorDir . '/pelago/emogrifier/src/Emogrifier/CssInliner.php'
352
  ),
 
 
 
 
353
  'MaxMind\\Db\\Reader\\InvalidDatabaseException' => array(
354
  'version' => '1.6.0.0',
355
  'path' => $vendorDir . '/maxmind-db/reader/src/MaxMind/Db/Reader/InvalidDatabaseException.php'
356
  ),
 
 
 
 
357
  'MaxMind\\Db\\Reader\\Util' => array(
358
  'version' => '1.6.0.0',
359
  'path' => $vendorDir . '/maxmind-db/reader/src/MaxMind/Db/Reader/Util.php'
@@ -362,2497 +366,2485 @@ return array(
362
  'version' => '1.6.0.0',
363
  'path' => $vendorDir . '/maxmind-db/reader/src/MaxMind/Db/Reader/Metadata.php'
364
  ),
365
- 'MaxMind\\Db\\Reader\\Decoder' => array(
366
- 'version' => '1.6.0.0',
367
- 'path' => $vendorDir . '/maxmind-db/reader/src/MaxMind/Db/Reader/Decoder.php'
368
- ),
369
  'MaxMind\\Db\\Reader' => array(
370
  'version' => '1.6.0.0',
371
  'path' => $vendorDir . '/maxmind-db/reader/src/MaxMind/Db/Reader.php'
372
  ),
373
- 'Composer\\Installers\\ElggInstaller' => array(
374
  'version' => '1.12.0.0',
375
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ElggInstaller.php'
376
  ),
377
- 'Composer\\Installers\\WordPressInstaller' => array(
378
  'version' => '1.12.0.0',
379
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/WordPressInstaller.php'
380
  ),
381
- 'Composer\\Installers\\Plugin' => array(
382
  'version' => '1.12.0.0',
383
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/Plugin.php'
384
  ),
385
- 'Composer\\Installers\\LanManagementSystemInstaller' => array(
386
  'version' => '1.12.0.0',
387
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php'
388
  ),
389
- 'Composer\\Installers\\DframeInstaller' => array(
390
  'version' => '1.12.0.0',
391
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/DframeInstaller.php'
392
  ),
393
- 'Composer\\Installers\\UserFrostingInstaller' => array(
394
  'version' => '1.12.0.0',
395
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/UserFrostingInstaller.php'
396
  ),
397
- 'Composer\\Installers\\SyDESInstaller' => array(
398
  'version' => '1.12.0.0',
399
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/SyDESInstaller.php'
400
  ),
401
- 'Composer\\Installers\\MicroweberInstaller' => array(
402
  'version' => '1.12.0.0',
403
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MicroweberInstaller.php'
404
  ),
405
- 'Composer\\Installers\\CroogoInstaller' => array(
406
  'version' => '1.12.0.0',
407
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CroogoInstaller.php'
408
  ),
409
- 'Composer\\Installers\\BaseInstaller' => array(
410
  'version' => '1.12.0.0',
411
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/BaseInstaller.php'
412
  ),
413
- 'Composer\\Installers\\BonefishInstaller' => array(
414
  'version' => '1.12.0.0',
415
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/BonefishInstaller.php'
416
  ),
417
- 'Composer\\Installers\\OsclassInstaller' => array(
418
  'version' => '1.12.0.0',
419
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/OsclassInstaller.php'
420
  ),
421
- 'Composer\\Installers\\OxidInstaller' => array(
422
  'version' => '1.12.0.0',
423
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/OxidInstaller.php'
424
  ),
425
- 'Composer\\Installers\\StarbugInstaller' => array(
426
  'version' => '1.12.0.0',
427
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/StarbugInstaller.php'
428
  ),
429
- 'Composer\\Installers\\EliasisInstaller' => array(
430
  'version' => '1.12.0.0',
431
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/EliasisInstaller.php'
432
  ),
433
- 'Composer\\Installers\\CraftInstaller' => array(
434
  'version' => '1.12.0.0',
435
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CraftInstaller.php'
436
  ),
437
- 'Composer\\Installers\\AttogramInstaller' => array(
438
  'version' => '1.12.0.0',
439
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/AttogramInstaller.php'
440
  ),
441
- 'Composer\\Installers\\FuelphpInstaller' => array(
442
  'version' => '1.12.0.0',
443
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/FuelphpInstaller.php'
444
  ),
445
- 'Composer\\Installers\\PPIInstaller' => array(
446
  'version' => '1.12.0.0',
447
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PPIInstaller.php'
448
  ),
449
- 'Composer\\Installers\\GravInstaller' => array(
450
  'version' => '1.12.0.0',
451
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/GravInstaller.php'
452
  ),
453
- 'Composer\\Installers\\MODXEvoInstaller' => array(
454
  'version' => '1.12.0.0',
455
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MODXEvoInstaller.php'
456
  ),
457
- 'Composer\\Installers\\WHMCSInstaller' => array(
458
  'version' => '1.12.0.0',
459
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/WHMCSInstaller.php'
460
  ),
461
- 'Composer\\Installers\\PhiftyInstaller' => array(
462
  'version' => '1.12.0.0',
463
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PhiftyInstaller.php'
464
  ),
465
- 'Composer\\Installers\\FuelInstaller' => array(
466
  'version' => '1.12.0.0',
467
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/FuelInstaller.php'
468
  ),
469
- 'Composer\\Installers\\PhpBBInstaller' => array(
470
  'version' => '1.12.0.0',
471
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PhpBBInstaller.php'
472
  ),
473
- 'Composer\\Installers\\Installer' => array(
474
  'version' => '1.12.0.0',
475
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/Installer.php'
476
  ),
477
- 'Composer\\Installers\\ItopInstaller' => array(
478
  'version' => '1.12.0.0',
479
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ItopInstaller.php'
480
  ),
481
- 'Composer\\Installers\\DokuWikiInstaller' => array(
482
  'version' => '1.12.0.0',
483
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/DokuWikiInstaller.php'
484
  ),
485
- 'Composer\\Installers\\MayaInstaller' => array(
486
  'version' => '1.12.0.0',
487
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MayaInstaller.php'
488
  ),
489
- 'Composer\\Installers\\MoodleInstaller' => array(
490
  'version' => '1.12.0.0',
491
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MoodleInstaller.php'
492
  ),
493
- 'Composer\\Installers\\MakoInstaller' => array(
494
  'version' => '1.12.0.0',
495
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MakoInstaller.php'
496
  ),
497
- 'Composer\\Installers\\AnnotateCmsInstaller' => array(
498
  'version' => '1.12.0.0',
499
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php'
500
  ),
501
- 'Composer\\Installers\\ClanCatsFrameworkInstaller' => array(
502
  'version' => '1.12.0.0',
503
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php'
504
  ),
505
- 'Composer\\Installers\\MediaWikiInstaller' => array(
506
  'version' => '1.12.0.0',
507
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MediaWikiInstaller.php'
508
  ),
509
- 'Composer\\Installers\\TYPO3CmsInstaller' => array(
510
  'version' => '1.12.0.0',
511
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TYPO3CmsInstaller.php'
512
  ),
513
- 'Composer\\Installers\\KanboardInstaller' => array(
514
  'version' => '1.12.0.0',
515
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/KanboardInstaller.php'
516
  ),
517
- 'Composer\\Installers\\ImageCMSInstaller' => array(
518
  'version' => '1.12.0.0',
519
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ImageCMSInstaller.php'
520
  ),
521
- 'Composer\\Installers\\Symfony1Installer' => array(
522
  'version' => '1.12.0.0',
523
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/Symfony1Installer.php'
524
  ),
525
  'Composer\\Installers\\ChefInstaller' => array(
526
  'version' => '1.12.0.0',
527
  'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ChefInstaller.php'
528
  ),
529
- 'Composer\\Installers\\PuppetInstaller' => array(
530
- 'version' => '1.12.0.0',
531
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PuppetInstaller.php'
532
- ),
533
- 'Composer\\Installers\\KohanaInstaller' => array(
534
  'version' => '1.12.0.0',
535
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/KohanaInstaller.php'
536
  ),
537
- 'Composer\\Installers\\ReIndexInstaller' => array(
538
  'version' => '1.12.0.0',
539
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ReIndexInstaller.php'
540
  ),
541
  'Composer\\Installers\\SiteDirectInstaller' => array(
542
  'version' => '1.12.0.0',
543
  'path' => $vendorDir . '/composer/installers/src/Composer/Installers/SiteDirectInstaller.php'
544
  ),
545
- 'Composer\\Installers\\TaoInstaller' => array(
546
  'version' => '1.12.0.0',
547
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TaoInstaller.php'
548
  ),
549
- 'Composer\\Installers\\CockpitInstaller' => array(
550
  'version' => '1.12.0.0',
551
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CockpitInstaller.php'
552
  ),
553
- 'Composer\\Installers\\PimcoreInstaller' => array(
554
  'version' => '1.12.0.0',
555
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PimcoreInstaller.php'
556
  ),
557
- 'Composer\\Installers\\PrestashopInstaller' => array(
558
  'version' => '1.12.0.0',
559
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PrestashopInstaller.php'
560
  ),
561
- 'Composer\\Installers\\KirbyInstaller' => array(
562
  'version' => '1.12.0.0',
563
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/KirbyInstaller.php'
564
  ),
565
- 'Composer\\Installers\\ZikulaInstaller' => array(
566
  'version' => '1.12.0.0',
567
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ZikulaInstaller.php'
568
  ),
569
- 'Composer\\Installers\\PantheonInstaller' => array(
570
  'version' => '1.12.0.0',
571
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PantheonInstaller.php'
572
  ),
573
- 'Composer\\Installers\\TuskInstaller' => array(
574
  'version' => '1.12.0.0',
575
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TuskInstaller.php'
576
  ),
577
- 'Composer\\Installers\\LaravelInstaller' => array(
578
  'version' => '1.12.0.0',
579
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/LaravelInstaller.php'
580
  ),
581
  'Composer\\Installers\\KodiCMSInstaller' => array(
582
  'version' => '1.12.0.0',
583
  'path' => $vendorDir . '/composer/installers/src/Composer/Installers/KodiCMSInstaller.php'
584
  ),
585
- 'Composer\\Installers\\WinterInstaller' => array(
586
- 'version' => '1.12.0.0',
587
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/WinterInstaller.php'
588
- ),
589
- 'Composer\\Installers\\VanillaInstaller' => array(
590
- 'version' => '1.12.0.0',
591
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/VanillaInstaller.php'
592
- ),
593
- 'Composer\\Installers\\AglInstaller' => array(
594
- 'version' => '1.12.0.0',
595
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/AglInstaller.php'
596
- ),
597
- 'Composer\\Installers\\MajimaInstaller' => array(
598
  'version' => '1.12.0.0',
599
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MajimaInstaller.php'
600
  ),
601
- 'Composer\\Installers\\SilverStripeInstaller' => array(
602
  'version' => '1.12.0.0',
603
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/SilverStripeInstaller.php'
604
  ),
605
- 'Composer\\Installers\\PiwikInstaller' => array(
606
  'version' => '1.12.0.0',
607
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PiwikInstaller.php'
608
  ),
609
- 'Composer\\Installers\\RoundcubeInstaller' => array(
610
  'version' => '1.12.0.0',
611
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/RoundcubeInstaller.php'
612
  ),
613
- 'Composer\\Installers\\AsgardInstaller' => array(
614
  'version' => '1.12.0.0',
615
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/AsgardInstaller.php'
616
  ),
617
- 'Composer\\Installers\\VgmcpInstaller' => array(
618
  'version' => '1.12.0.0',
619
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/VgmcpInstaller.php'
620
  ),
621
- 'Composer\\Installers\\LavaLiteInstaller' => array(
622
  'version' => '1.12.0.0',
623
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/LavaLiteInstaller.php'
624
  ),
625
- 'Composer\\Installers\\SMFInstaller' => array(
626
  'version' => '1.12.0.0',
627
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/SMFInstaller.php'
628
  ),
629
- 'Composer\\Installers\\WolfCMSInstaller' => array(
630
  'version' => '1.12.0.0',
631
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/WolfCMSInstaller.php'
632
  ),
633
- 'Composer\\Installers\\PortoInstaller' => array(
634
  'version' => '1.12.0.0',
635
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PortoInstaller.php'
636
  ),
637
  'Composer\\Installers\\MauticInstaller' => array(
638
  'version' => '1.12.0.0',
639
  'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MauticInstaller.php'
640
  ),
641
- 'Composer\\Installers\\AimeosInstaller' => array(
642
  'version' => '1.12.0.0',
643
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/AimeosInstaller.php'
644
  ),
645
- 'Composer\\Installers\\DrupalInstaller' => array(
646
  'version' => '1.12.0.0',
647
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/DrupalInstaller.php'
648
  ),
649
- 'Composer\\Installers\\CakePHPInstaller' => array(
650
  'version' => '1.12.0.0',
651
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CakePHPInstaller.php'
652
  ),
653
- 'Composer\\Installers\\YawikInstaller' => array(
654
  'version' => '1.12.0.0',
655
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/YawikInstaller.php'
656
  ),
657
- 'Composer\\Installers\\MODULEWorkInstaller' => array(
658
  'version' => '1.12.0.0',
659
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php'
660
  ),
661
- 'Composer\\Installers\\PxcmsInstaller' => array(
662
  'version' => '1.12.0.0',
663
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PxcmsInstaller.php'
664
  ),
665
- 'Composer\\Installers\\HuradInstaller' => array(
666
  'version' => '1.12.0.0',
667
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/HuradInstaller.php'
668
  ),
669
- 'Composer\\Installers\\Concrete5Installer' => array(
670
  'version' => '1.12.0.0',
671
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/Concrete5Installer.php'
672
  ),
673
- 'Composer\\Installers\\SyliusInstaller' => array(
674
  'version' => '1.12.0.0',
675
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/SyliusInstaller.php'
676
  ),
677
- 'Composer\\Installers\\DolibarrInstaller' => array(
678
  'version' => '1.12.0.0',
679
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/DolibarrInstaller.php'
680
  ),
681
- 'Composer\\Installers\\EzPlatformInstaller' => array(
682
  'version' => '1.12.0.0',
683
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/EzPlatformInstaller.php'
684
  ),
685
- 'Composer\\Installers\\KnownInstaller' => array(
686
  'version' => '1.12.0.0',
687
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/KnownInstaller.php'
688
  ),
689
- 'Composer\\Installers\\OntoWikiInstaller' => array(
690
  'version' => '1.12.0.0',
691
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/OntoWikiInstaller.php'
692
  ),
693
- 'Composer\\Installers\\ShopwareInstaller' => array(
694
  'version' => '1.12.0.0',
695
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ShopwareInstaller.php'
696
  ),
697
  'Composer\\Installers\\TYPO3FlowInstaller' => array(
698
  'version' => '1.12.0.0',
699
  'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TYPO3FlowInstaller.php'
700
  ),
701
- 'Composer\\Installers\\JoomlaInstaller' => array(
702
- 'version' => '1.12.0.0',
703
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/JoomlaInstaller.php'
704
- ),
705
- 'Composer\\Installers\\ProcessWireInstaller' => array(
706
  'version' => '1.12.0.0',
707
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ProcessWireInstaller.php'
708
  ),
709
- 'Composer\\Installers\\LithiumInstaller' => array(
710
  'version' => '1.12.0.0',
711
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/LithiumInstaller.php'
712
  ),
713
- 'Composer\\Installers\\ZendInstaller' => array(
714
  'version' => '1.12.0.0',
715
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ZendInstaller.php'
716
  ),
717
- 'Composer\\Installers\\RadPHPInstaller' => array(
718
  'version' => '1.12.0.0',
719
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/RadPHPInstaller.php'
720
  ),
721
- 'Composer\\Installers\\DecibelInstaller' => array(
722
  'version' => '1.12.0.0',
723
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/DecibelInstaller.php'
724
  ),
725
- 'Composer\\Installers\\TastyIgniterInstaller' => array(
726
  'version' => '1.12.0.0',
727
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TastyIgniterInstaller.php'
728
  ),
729
- 'Composer\\Installers\\Redaxo5Installer' => array(
730
  'version' => '1.12.0.0',
731
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/Redaxo5Installer.php'
732
  ),
733
- 'Composer\\Installers\\BitrixInstaller' => array(
734
  'version' => '1.12.0.0',
735
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/BitrixInstaller.php'
736
  ),
737
  'Composer\\Installers\\CiviCrmInstaller' => array(
738
  'version' => '1.12.0.0',
739
  'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CiviCrmInstaller.php'
740
  ),
741
- 'Composer\\Installers\\PlentymarketsInstaller' => array(
742
  'version' => '1.12.0.0',
743
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php'
744
  ),
745
- 'Composer\\Installers\\MiaoxingInstaller' => array(
746
  'version' => '1.12.0.0',
747
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MiaoxingInstaller.php'
748
  ),
749
- 'Composer\\Installers\\RedaxoInstaller' => array(
750
  'version' => '1.12.0.0',
751
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/RedaxoInstaller.php'
752
  ),
753
- 'Composer\\Installers\\MagentoInstaller' => array(
754
  'version' => '1.12.0.0',
755
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MagentoInstaller.php'
756
  ),
757
- 'Composer\\Installers\\ExpressionEngineInstaller' => array(
758
  'version' => '1.12.0.0',
759
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php'
760
  ),
761
- 'Composer\\Installers\\TheliaInstaller' => array(
762
  'version' => '1.12.0.0',
763
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TheliaInstaller.php'
764
  ),
765
- 'Composer\\Installers\\CodeIgniterInstaller' => array(
766
  'version' => '1.12.0.0',
767
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php'
768
  ),
769
- 'Composer\\Installers\\ModxInstaller' => array(
770
  'version' => '1.12.0.0',
771
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ModxInstaller.php'
772
  ),
773
- 'Composer\\Installers\\OctoberInstaller' => array(
774
  'version' => '1.12.0.0',
775
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/OctoberInstaller.php'
776
  ),
777
- 'Composer\\Installers\\MantisBTInstaller' => array(
778
  'version' => '1.12.0.0',
779
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MantisBTInstaller.php'
780
  ),
781
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\ReflectionContainer' => array(
782
- 'version' => '5.8.0.0-RC1',
783
- 'path' => $baseDir . '/lib/packages/League/Container/ReflectionContainer.php'
784
  ),
785
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\ServiceProviderAggregate' => array(
786
- 'version' => '5.8.0.0-RC1',
787
- 'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/ServiceProviderAggregate.php'
788
  ),
789
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\ServiceProviderInterface' => array(
790
- 'version' => '5.8.0.0-RC1',
791
- 'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/ServiceProviderInterface.php'
792
  ),
793
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\ServiceProviderAggregateInterface' => array(
794
- 'version' => '5.8.0.0-RC1',
795
- 'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/ServiceProviderAggregateInterface.php'
796
  ),
797
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\AbstractServiceProvider' => array(
798
- 'version' => '5.8.0.0-RC1',
799
- 'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/AbstractServiceProvider.php'
800
  ),
801
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\BootableServiceProviderInterface' => array(
802
- 'version' => '5.8.0.0-RC1',
803
- 'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/BootableServiceProviderInterface.php'
804
  ),
805
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Container' => array(
806
- 'version' => '5.8.0.0-RC1',
807
- 'path' => $baseDir . '/lib/packages/League/Container/Container.php'
808
  ),
809
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\ContainerAwareInterface' => array(
810
- 'version' => '5.8.0.0-RC1',
811
- 'path' => $baseDir . '/lib/packages/League/Container/ContainerAwareInterface.php'
812
  ),
813
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Exception\\ContainerException' => array(
814
- 'version' => '5.8.0.0-RC1',
815
- 'path' => $baseDir . '/lib/packages/League/Container/Exception/ContainerException.php'
816
  ),
817
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Exception\\NotFoundException' => array(
818
- 'version' => '5.8.0.0-RC1',
819
- 'path' => $baseDir . '/lib/packages/League/Container/Exception/NotFoundException.php'
820
  ),
821
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\ContainerAwareTrait' => array(
822
- 'version' => '5.8.0.0-RC1',
823
- 'path' => $baseDir . '/lib/packages/League/Container/ContainerAwareTrait.php'
824
  ),
825
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ClassNameInterface' => array(
826
- 'version' => '5.8.0.0-RC1',
827
- 'path' => $baseDir . '/lib/packages/League/Container/Argument/ClassNameInterface.php'
828
  ),
829
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ArgumentResolverInterface' => array(
830
- 'version' => '5.8.0.0-RC1',
831
- 'path' => $baseDir . '/lib/packages/League/Container/Argument/ArgumentResolverInterface.php'
832
  ),
833
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\RawArgument' => array(
834
- 'version' => '5.8.0.0-RC1',
835
  'path' => $baseDir . '/lib/packages/League/Container/Argument/RawArgument.php'
836
  ),
837
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ArgumentResolverTrait' => array(
838
- 'version' => '5.8.0.0-RC1',
839
- 'path' => $baseDir . '/lib/packages/League/Container/Argument/ArgumentResolverTrait.php'
840
- ),
841
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ClassName' => array(
842
- 'version' => '5.8.0.0-RC1',
843
  'path' => $baseDir . '/lib/packages/League/Container/Argument/ClassName.php'
844
  ),
 
 
 
 
845
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ClassNameWithOptionalValue' => array(
846
- 'version' => '5.8.0.0-RC1',
847
  'path' => $baseDir . '/lib/packages/League/Container/Argument/ClassNameWithOptionalValue.php'
848
  ),
849
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\RawArgumentInterface' => array(
850
- 'version' => '5.8.0.0-RC1',
851
- 'path' => $baseDir . '/lib/packages/League/Container/Argument/RawArgumentInterface.php'
852
  ),
853
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Inflector\\InflectorAggregate' => array(
854
- 'version' => '5.8.0.0-RC1',
855
- 'path' => $baseDir . '/lib/packages/League/Container/Inflector/InflectorAggregate.php'
856
  ),
857
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Inflector\\InflectorInterface' => array(
858
- 'version' => '5.8.0.0-RC1',
859
- 'path' => $baseDir . '/lib/packages/League/Container/Inflector/InflectorInterface.php'
860
  ),
861
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Inflector\\InflectorAggregateInterface' => array(
862
- 'version' => '5.8.0.0-RC1',
863
- 'path' => $baseDir . '/lib/packages/League/Container/Inflector/InflectorAggregateInterface.php'
864
  ),
865
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Inflector\\Inflector' => array(
866
- 'version' => '5.8.0.0-RC1',
867
- 'path' => $baseDir . '/lib/packages/League/Container/Inflector/Inflector.php'
868
  ),
869
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Definition\\DefinitionAggregateInterface' => array(
870
- 'version' => '5.8.0.0-RC1',
871
- 'path' => $baseDir . '/lib/packages/League/Container/Definition/DefinitionAggregateInterface.php'
872
  ),
873
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Definition\\Definition' => array(
874
- 'version' => '5.8.0.0-RC1',
875
- 'path' => $baseDir . '/lib/packages/League/Container/Definition/Definition.php'
876
  ),
877
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Definition\\DefinitionInterface' => array(
878
- 'version' => '5.8.0.0-RC1',
879
- 'path' => $baseDir . '/lib/packages/League/Container/Definition/DefinitionInterface.php'
880
  ),
881
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Definition\\DefinitionAggregate' => array(
882
- 'version' => '5.8.0.0-RC1',
883
- 'path' => $baseDir . '/lib/packages/League/Container/Definition/DefinitionAggregate.php'
884
  ),
885
- 'Automattic\\WooCommerce\\Tests\\Internal\\WCCom\\ConnectionHelperTest' => array(
886
- 'version' => '5.8.0.0-RC1',
887
- 'path' => $baseDir . '/tests/php/src/Internal/WCCom/ConnectionHelperTest.php'
888
  ),
889
- 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithNonFinalInjectionMethod' => array(
890
- 'version' => '5.8.0.0-RC1',
891
- 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithNonFinalInjectionMethod.php'
892
  ),
893
- 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithScalarInjectionMethodArgument' => array(
894
- 'version' => '5.8.0.0-RC1',
895
- 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithScalarInjectionMethodArgument.php'
896
  ),
897
- 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\DependencyClass' => array(
898
- 'version' => '5.8.0.0-RC1',
899
- 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/DependencyClass.php'
900
  ),
901
- 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithPrivateInjectionMethod' => array(
902
- 'version' => '5.8.0.0-RC1',
903
- 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithPrivateInjectionMethod.php'
904
  ),
905
  'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithInjectionMethodArgumentWithoutTypeHint' => array(
906
- 'version' => '5.8.0.0-RC1',
907
  'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithInjectionMethodArgumentWithoutTypeHint.php'
908
  ),
 
 
 
 
 
 
 
 
909
  'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithDependencies' => array(
910
- 'version' => '5.8.0.0-RC1',
911
  'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithDependencies.php'
912
  ),
913
- 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\AbstractServiceProviderTest' => array(
914
- 'version' => '5.8.0.0-RC1',
915
- 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/AbstractServiceProviderTest.php'
 
 
 
 
916
  ),
917
  'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExtendedContainerTest' => array(
918
- 'version' => '5.8.0.0-RC1',
919
  'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExtendedContainerTest.php'
920
  ),
 
 
 
 
 
 
 
 
921
  'Automattic\\WooCommerce\\Tests\\Internal\\DownloadPermissionsAdjusterTest' => array(
922
- 'version' => '5.8.0.0-RC1',
923
  'path' => $baseDir . '/tests/php/src/Internal/DownloadPermissionsAdjusterTest.php'
924
  ),
925
- 'Automattic\\WooCommerce\\Tests\\Internal\\ProductAttributesLookup\\DataRegeneratorTest' => array(
926
- 'version' => '5.8.0.0-RC1',
927
- 'path' => $baseDir . '/tests/php/src/Internal/ProductAttributesLookup/DataRegeneratorTest.php'
928
- ),
929
  'Automattic\\WooCommerce\\Tests\\Internal\\ProductAttributesLookup\\LookupDataStoreTest' => array(
930
- 'version' => '5.8.0.0-RC1',
931
  'path' => $baseDir . '/tests/php/src/Internal/ProductAttributesLookup/LookupDataStoreTest.php'
932
  ),
933
  'Automattic\\WooCommerce\\Tests\\Internal\\ProductAttributesLookup\\FiltererTest' => array(
934
- 'version' => '5.8.0.0-RC1',
935
  'path' => $baseDir . '/tests/php/src/Internal/ProductAttributesLookup/FiltererTest.php'
936
  ),
937
- 'Automattic\\WooCommerce\\Tests\\Internal\\RestApiUtilTest' => array(
938
- 'version' => '5.8.0.0-RC1',
939
- 'path' => $baseDir . '/tests/php/src/Internal/RestApiUtilTest.php'
940
  ),
941
  'Automattic\\WooCommerce\\Tests\\Internal\\AssignDefaultCategoryTest' => array(
942
- 'version' => '5.8.0.0-RC1',
943
  'path' => $baseDir . '/tests/php/src/Internal/AssignDefaultCategoryTest.php'
944
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
945
  'Automattic\\WooCommerce\\Tests\\Proxies\\ExampleClasses\\ClassThatDependsOnLegacyCode' => array(
946
- 'version' => '5.8.0.0-RC1',
947
  'path' => $baseDir . '/tests/php/src/Proxies/ExampleClasses/ClassThatDependsOnLegacyCode.php'
948
  ),
949
- 'Automattic\\WooCommerce\\Tests\\Proxies\\MockableLegacyProxyTest' => array(
950
- 'version' => '5.8.0.0-RC1',
951
- 'path' => $baseDir . '/tests/php/src/Proxies/MockableLegacyProxyTest.php'
952
- ),
953
  'Automattic\\WooCommerce\\Tests\\Proxies\\LegacyProxyTest' => array(
954
- 'version' => '5.8.0.0-RC1',
955
  'path' => $baseDir . '/tests/php/src/Proxies/LegacyProxyTest.php'
956
  ),
957
  'Automattic\\WooCommerce\\Tests\\Proxies\\ClassThatDependsOnLegacyCodeTest' => array(
958
- 'version' => '5.8.0.0-RC1',
959
  'path' => $baseDir . '/tests/php/src/Proxies/ClassThatDependsOnLegacyCodeTest.php'
960
  ),
961
- 'Automattic\\WooCommerce\\Tests\\Utilities\\NumberUtilTest' => array(
962
- 'version' => '5.8.0.0-RC1',
963
- 'path' => $baseDir . '/tests/php/src/Utilities/NumberUtilTest.php'
964
  ),
965
- 'Automattic\\WooCommerce\\Tests\\Utilities\\ArrayUtilTest' => array(
966
- 'version' => '5.8.0.0-RC1',
967
- 'path' => $baseDir . '/tests/php/src/Utilities/ArrayUtilTest.php'
968
  ),
969
- 'Automattic\\WooCommerce\\Tests\\Utilities\\StringUtilTest' => array(
970
- 'version' => '5.8.0.0-RC1',
971
- 'path' => $baseDir . '/tests/php/src/Utilities/StringUtilTest.php'
972
  ),
973
  'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\CodeHacker' => array(
974
- 'version' => '5.8.0.0-RC1',
975
  'path' => $baseDir . '/tests/Tools/CodeHacking/CodeHacker.php'
976
  ),
977
- 'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\Hacks\\StaticMockerHack' => array(
978
- 'version' => '5.8.0.0-RC1',
979
- 'path' => $baseDir . '/tests/Tools/CodeHacking/Hacks/StaticMockerHack.php'
980
- ),
981
  'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\Hacks\\BypassFinalsHack' => array(
982
- 'version' => '5.8.0.0-RC1',
983
  'path' => $baseDir . '/tests/Tools/CodeHacking/Hacks/BypassFinalsHack.php'
984
  ),
985
- 'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\Hacks\\FunctionsMockerHack' => array(
986
- 'version' => '5.8.0.0-RC1',
987
- 'path' => $baseDir . '/tests/Tools/CodeHacking/Hacks/FunctionsMockerHack.php'
988
- ),
989
  'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\Hacks\\CodeHack' => array(
990
- 'version' => '5.8.0.0-RC1',
991
  'path' => $baseDir . '/tests/Tools/CodeHacking/Hacks/CodeHack.php'
992
  ),
993
- 'Automattic\\WooCommerce\\Testing\\Tools\\FakeQueue' => array(
994
- 'version' => '5.8.0.0-RC1',
995
- 'path' => $baseDir . '/tests/Tools/FakeQueue.php'
996
  ),
997
- 'Automattic\\WooCommerce\\Testing\\Tools\\DependencyManagement\\MockableLegacyProxy' => array(
998
- 'version' => '5.8.0.0-RC1',
999
- 'path' => $baseDir . '/tests/Tools/DependencyManagement/MockableLegacyProxy.php'
1000
  ),
1001
- 'Automattic\\WooCommerce\\Blocks\\Domain\\Package' => array(
1002
  'version' => '5.9.1.0',
1003
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Package.php'
1004
  ),
1005
- 'Automattic\\WooCommerce\\Blocks\\Domain\\Bootstrap' => array(
1006
  'version' => '5.9.1.0',
1007
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Bootstrap.php'
1008
  ),
1009
- 'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\FeatureGating' => array(
1010
  'version' => '5.9.1.0',
1011
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Services/FeatureGating.php'
1012
  ),
1013
- 'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\ExtendRestApi' => array(
1014
  'version' => '5.9.1.0',
1015
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Services/ExtendRestApi.php'
1016
  ),
1017
- 'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\Email\\CustomerNewAccount' => array(
1018
  'version' => '5.9.1.0',
1019
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Services/Email/CustomerNewAccount.php'
1020
  ),
1021
- 'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\DraftOrders' => array(
1022
  'version' => '5.9.1.0',
1023
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Services/DraftOrders.php'
1024
  ),
1025
- 'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\CreateAccount' => array(
1026
  'version' => '5.9.1.0',
1027
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Services/CreateAccount.php'
1028
  ),
1029
- 'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\GoogleAnalytics' => array(
1030
  'version' => '5.9.1.0',
1031
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Services/GoogleAnalytics.php'
1032
  ),
1033
- 'Automattic\\WooCommerce\\Blocks\\RestApi' => array(
1034
  'version' => '5.9.1.0',
1035
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/RestApi.php'
1036
  ),
1037
- 'Automattic\\WooCommerce\\Blocks\\Assets' => array(
1038
  'version' => '5.9.1.0',
1039
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Assets.php'
1040
  ),
1041
- 'Automattic\\WooCommerce\\Blocks\\InboxNotifications' => array(
1042
  'version' => '5.9.1.0',
1043
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/InboxNotifications.php'
1044
  ),
1045
- 'Automattic\\WooCommerce\\Blocks\\Installer' => array(
1046
  'version' => '5.9.1.0',
1047
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Installer.php'
1048
  ),
1049
- 'Automattic\\WooCommerce\\Blocks\\Integrations\\IntegrationRegistry' => array(
1050
  'version' => '5.9.1.0',
1051
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Integrations/IntegrationRegistry.php'
1052
  ),
1053
- 'Automattic\\WooCommerce\\Blocks\\Integrations\\IntegrationInterface' => array(
1054
  'version' => '5.9.1.0',
1055
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Integrations/IntegrationInterface.php'
1056
  ),
1057
- 'Automattic\\WooCommerce\\Blocks\\Assets\\AssetDataRegistry' => array(
1058
  'version' => '5.9.1.0',
1059
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Assets/AssetDataRegistry.php'
1060
  ),
1061
- 'Automattic\\WooCommerce\\Blocks\\Assets\\Api' => array(
1062
  'version' => '5.9.1.0',
1063
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Assets/Api.php'
1064
  ),
1065
- 'Automattic\\WooCommerce\\Blocks\\Package' => array(
1066
  'version' => '5.9.1.0',
1067
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Package.php'
1068
  ),
1069
- 'Automattic\\WooCommerce\\Blocks\\Utils\\ArrayUtils' => array(
1070
  'version' => '5.9.1.0',
1071
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Utils/ArrayUtils.php'
1072
  ),
1073
- 'Automattic\\WooCommerce\\Blocks\\Utils\\BlocksWpQuery' => array(
1074
  'version' => '5.9.1.0',
1075
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Utils/BlocksWpQuery.php'
1076
  ),
1077
- 'Automattic\\WooCommerce\\Blocks\\Payments\\PaymentContext' => array(
1078
  'version' => '5.9.1.0',
1079
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/PaymentContext.php'
1080
  ),
1081
- 'Automattic\\WooCommerce\\Blocks\\Payments\\PaymentResult' => array(
1082
  'version' => '5.9.1.0',
1083
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/PaymentResult.php'
1084
  ),
1085
- 'Automattic\\WooCommerce\\Blocks\\Payments\\Integrations\\Cheque' => array(
1086
  'version' => '5.9.1.0',
1087
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/Integrations/Cheque.php'
1088
  ),
1089
- 'Automattic\\WooCommerce\\Blocks\\Payments\\Integrations\\PayPal' => array(
1090
  'version' => '5.9.1.0',
1091
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/Integrations/PayPal.php'
1092
  ),
1093
- 'Automattic\\WooCommerce\\Blocks\\Payments\\Integrations\\AbstractPaymentMethodType' => array(
1094
  'version' => '5.9.1.0',
1095
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/Integrations/AbstractPaymentMethodType.php'
1096
  ),
1097
- 'Automattic\\WooCommerce\\Blocks\\Payments\\Integrations\\BankTransfer' => array(
1098
  'version' => '5.9.1.0',
1099
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/Integrations/BankTransfer.php'
1100
  ),
1101
- 'Automattic\\WooCommerce\\Blocks\\Payments\\Integrations\\Stripe' => array(
1102
  'version' => '5.9.1.0',
1103
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/Integrations/Stripe.php'
1104
  ),
1105
- 'Automattic\\WooCommerce\\Blocks\\Payments\\Integrations\\CashOnDelivery' => array(
1106
  'version' => '5.9.1.0',
1107
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/Integrations/CashOnDelivery.php'
1108
  ),
1109
- 'Automattic\\WooCommerce\\Blocks\\Payments\\PaymentMethodTypeInterface' => array(
1110
  'version' => '5.9.1.0',
1111
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/PaymentMethodTypeInterface.php'
1112
  ),
1113
- 'Automattic\\WooCommerce\\Blocks\\Payments\\Api' => array(
1114
  'version' => '5.9.1.0',
1115
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/Api.php'
1116
  ),
1117
- 'Automattic\\WooCommerce\\Blocks\\Payments\\PaymentMethodRegistry' => array(
1118
  'version' => '5.9.1.0',
1119
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/PaymentMethodRegistry.php'
1120
  ),
1121
- 'Automattic\\WooCommerce\\Blocks\\AssetsController' => array(
1122
  'version' => '5.9.1.0',
1123
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/AssetsController.php'
1124
  ),
1125
- 'Automattic\\WooCommerce\\Blocks\\Registry\\AbstractDependencyType' => array(
1126
  'version' => '5.9.1.0',
1127
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Registry/AbstractDependencyType.php'
1128
  ),
1129
- 'Automattic\\WooCommerce\\Blocks\\Registry\\Container' => array(
1130
  'version' => '5.9.1.0',
1131
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Registry/Container.php'
1132
  ),
1133
- 'Automattic\\WooCommerce\\Blocks\\Registry\\SharedType' => array(
1134
  'version' => '5.9.1.0',
1135
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Registry/SharedType.php'
1136
  ),
1137
- 'Automattic\\WooCommerce\\Blocks\\Registry\\FactoryType' => array(
1138
  'version' => '5.9.1.0',
1139
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Registry/FactoryType.php'
1140
  ),
1141
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Formatters' => array(
1142
  'version' => '5.9.1.0',
1143
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Formatters.php'
1144
  ),
1145
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\RoutesController' => array(
1146
  'version' => '5.9.1.0',
1147
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/RoutesController.php'
1148
  ),
1149
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Schemas\\CheckoutSchema' => array(
1150
  'version' => '5.9.1.0',
1151
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/CheckoutSchema.php'
1152
  ),
1153
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Schemas\\ProductAttributeSchema' => array(
1154
  'version' => '5.9.1.0',
1155
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/ProductAttributeSchema.php'
1156
  ),
1157
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Schemas\\CartExtensionsSchema' => array(
1158
  'version' => '5.9.1.0',
1159
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/CartExtensionsSchema.php'
1160
  ),
1161
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Schemas\\CartFeeSchema' => array(
1162
  'version' => '5.9.1.0',
1163
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/CartFeeSchema.php'
1164
  ),
1165
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Schemas\\ProductCategorySchema' => array(
1166
  'version' => '5.9.1.0',
1167
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/ProductCategorySchema.php'
1168
  ),
1169
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Schemas\\BillingAddressSchema' => array(
1170
  'version' => '5.9.1.0',
1171
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/BillingAddressSchema.php'
1172
  ),
1173
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Schemas\\ProductReviewSchema' => array(
1174
  'version' => '5.9.1.0',
1175
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/ProductReviewSchema.php'
1176
  ),
1177
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Schemas\\ImageAttachmentSchema' => array(
1178
  'version' => '5.9.1.0',
1179
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/ImageAttachmentSchema.php'
1180
  ),
1181
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Schemas\\AbstractAddressSchema' => array(
1182
  'version' => '5.9.1.0',
1183
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/AbstractAddressSchema.php'
1184
  ),
1185
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Schemas\\AbstractSchema' => array(
1186
  'version' => '5.9.1.0',
1187
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/AbstractSchema.php'
1188
  ),
1189
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Schemas\\ErrorSchema' => array(
1190
  'version' => '5.9.1.0',
1191
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/ErrorSchema.php'
1192
  ),
1193
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Schemas\\ShippingAddressSchema' => array(
1194
  'version' => '5.9.1.0',
1195
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/ShippingAddressSchema.php'
1196
  ),
1197
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Schemas\\TermSchema' => array(
1198
  'version' => '5.9.1.0',
1199
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/TermSchema.php'
1200
  ),
1201
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Schemas\\OrderCouponSchema' => array(
1202
  'version' => '5.9.1.0',
1203
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/OrderCouponSchema.php'
1204
  ),
1205
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Schemas\\CartCouponSchema' => array(
1206
  'version' => '5.9.1.0',
1207
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/CartCouponSchema.php'
1208
  ),
1209
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Schemas\\ProductCollectionDataSchema' => array(
1210
  'version' => '5.9.1.0',
1211
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/ProductCollectionDataSchema.php'
1212
  ),
1213
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Schemas\\CartShippingRateSchema' => array(
1214
  'version' => '5.9.1.0',
1215
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/CartShippingRateSchema.php'
1216
  ),
1217
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Schemas\\CartItemSchema' => array(
1218
  'version' => '5.9.1.0',
1219
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/CartItemSchema.php'
1220
  ),
1221
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Schemas\\ProductSchema' => array(
1222
  'version' => '5.9.1.0',
1223
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/ProductSchema.php'
1224
  ),
1225
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Schemas\\CartSchema' => array(
1226
  'version' => '5.9.1.0',
1227
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/CartSchema.php'
1228
  ),
1229
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\SchemaController' => array(
1230
  'version' => '5.9.1.0',
1231
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/SchemaController.php'
1232
  ),
1233
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\ProductAttributes' => array(
1234
  'version' => '5.9.1.0',
1235
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/ProductAttributes.php'
1236
  ),
1237
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\AbstractTermsRoute' => array(
1238
  'version' => '5.9.1.0',
1239
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/AbstractTermsRoute.php'
1240
  ),
1241
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\CartSelectShippingRate' => array(
1242
  'version' => '5.9.1.0',
1243
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/CartSelectShippingRate.php'
1244
  ),
1245
  'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\ProductAttributesById' => array(
1246
  'version' => '5.9.1.0',
1247
  'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/ProductAttributesById.php'
1248
  ),
1249
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\ProductTags' => array(
1250
- 'version' => '5.9.1.0',
1251
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/ProductTags.php'
1252
- ),
1253
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\Batch' => array(
1254
  'version' => '5.9.1.0',
1255
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/Batch.php'
1256
  ),
1257
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\CartApplyCoupon' => array(
1258
  'version' => '5.9.1.0',
1259
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/CartApplyCoupon.php'
1260
  ),
1261
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\CartItems' => array(
1262
  'version' => '5.9.1.0',
1263
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/CartItems.php'
1264
  ),
1265
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\Products' => array(
1266
  'version' => '5.9.1.0',
1267
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/Products.php'
1268
  ),
1269
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\CartUpdateCustomer' => array(
1270
  'version' => '5.9.1.0',
1271
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/CartUpdateCustomer.php'
1272
  ),
1273
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\CartRemoveItem' => array(
1274
  'version' => '5.9.1.0',
1275
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/CartRemoveItem.php'
1276
  ),
1277
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\AbstractCartRoute' => array(
1278
  'version' => '5.9.1.0',
1279
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/AbstractCartRoute.php'
1280
  ),
1281
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\CartCoupons' => array(
1282
  'version' => '5.9.1.0',
1283
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/CartCoupons.php'
1284
  ),
1285
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\AbstractRoute' => array(
1286
  'version' => '5.9.1.0',
1287
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/AbstractRoute.php'
1288
  ),
1289
  'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\ProductReviews' => array(
1290
  'version' => '5.9.1.0',
1291
  'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/ProductReviews.php'
1292
  ),
1293
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\ProductCategoriesById' => array(
1294
  'version' => '5.9.1.0',
1295
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/ProductCategoriesById.php'
1296
  ),
1297
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\Checkout' => array(
1298
  'version' => '5.9.1.0',
1299
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/Checkout.php'
1300
  ),
1301
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\RouteException' => array(
1302
  'version' => '5.9.1.0',
1303
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/RouteException.php'
1304
  ),
1305
  'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\CartAddItem' => array(
1306
  'version' => '5.9.1.0',
1307
  'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/CartAddItem.php'
1308
  ),
 
 
 
 
 
 
 
 
1309
  'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\Cart' => array(
1310
  'version' => '5.9.1.0',
1311
  'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/Cart.php'
1312
  ),
1313
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\ProductsById' => array(
1314
  'version' => '5.9.1.0',
1315
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/ProductsById.php'
1316
  ),
1317
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\ProductAttributeTerms' => array(
1318
  'version' => '5.9.1.0',
1319
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/ProductAttributeTerms.php'
1320
  ),
1321
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\CartUpdateItem' => array(
1322
  'version' => '5.9.1.0',
1323
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/CartUpdateItem.php'
1324
  ),
1325
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\RouteInterface' => array(
1326
  'version' => '5.9.1.0',
1327
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/RouteInterface.php'
1328
  ),
1329
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\CartItemsByKey' => array(
1330
  'version' => '5.9.1.0',
1331
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/CartItemsByKey.php'
1332
  ),
1333
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\ProductCategories' => array(
1334
  'version' => '5.9.1.0',
1335
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/ProductCategories.php'
1336
  ),
1337
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\CartRemoveCoupon' => array(
1338
  'version' => '5.9.1.0',
1339
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/CartRemoveCoupon.php'
1340
  ),
1341
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\ProductCollectionData' => array(
1342
  'version' => '5.9.1.0',
1343
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/ProductCollectionData.php'
1344
  ),
1345
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\CartExtensions' => array(
1346
  'version' => '5.9.1.0',
1347
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/CartExtensions.php'
1348
  ),
1349
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\CartCouponsByCode' => array(
1350
  'version' => '5.9.1.0',
1351
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/CartCouponsByCode.php'
1352
  ),
1353
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Utilities\\OrderController' => array(
1354
  'version' => '5.9.1.0',
1355
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/OrderController.php'
1356
  ),
1357
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Utilities\\StockAvailabilityException' => array(
1358
  'version' => '5.9.1.0',
1359
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/StockAvailabilityException.php'
1360
  ),
1361
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Utilities\\ProductQuery' => array(
1362
  'version' => '5.9.1.0',
1363
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/ProductQuery.php'
1364
  ),
1365
  'Automattic\\WooCommerce\\Blocks\\StoreApi\\Utilities\\PartialOutOfStockException' => array(
1366
  'version' => '5.9.1.0',
1367
  'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/PartialOutOfStockException.php'
1368
  ),
1369
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Utilities\\NoticeHandler' => array(
1370
- 'version' => '5.9.1.0',
1371
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/NoticeHandler.php'
1372
- ),
1373
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Utilities\\OutOfStockException' => array(
1374
  'version' => '5.9.1.0',
1375
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/OutOfStockException.php'
1376
  ),
1377
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Utilities\\Pagination' => array(
1378
  'version' => '5.9.1.0',
1379
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/Pagination.php'
1380
  ),
1381
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Utilities\\NotPurchasableException' => array(
1382
  'version' => '5.9.1.0',
1383
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/NotPurchasableException.php'
1384
  ),
1385
  'Automattic\\WooCommerce\\Blocks\\StoreApi\\Utilities\\InvalidStockLevelsInCartException' => array(
1386
  'version' => '5.9.1.0',
1387
  'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/InvalidStockLevelsInCartException.php'
1388
  ),
1389
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Utilities\\ProductQueryFilters' => array(
1390
  'version' => '5.9.1.0',
1391
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/ProductQueryFilters.php'
1392
  ),
1393
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Utilities\\CartController' => array(
1394
  'version' => '5.9.1.0',
1395
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/CartController.php'
1396
  ),
1397
  'Automattic\\WooCommerce\\Blocks\\StoreApi\\Utilities\\TooManyInCartException' => array(
1398
  'version' => '5.9.1.0',
1399
  'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/TooManyInCartException.php'
1400
  ),
1401
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Formatters\\DefaultFormatter' => array(
1402
  'version' => '5.9.1.0',
1403
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Formatters/DefaultFormatter.php'
1404
  ),
1405
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Formatters\\CurrencyFormatter' => array(
1406
  'version' => '5.9.1.0',
1407
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Formatters/CurrencyFormatter.php'
1408
  ),
1409
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Formatters\\HtmlFormatter' => array(
1410
  'version' => '5.9.1.0',
1411
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Formatters/HtmlFormatter.php'
1412
  ),
1413
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Formatters\\FormatterInterface' => array(
1414
  'version' => '5.9.1.0',
1415
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Formatters/FormatterInterface.php'
1416
  ),
1417
- 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Formatters\\MoneyFormatter' => array(
1418
  'version' => '5.9.1.0',
1419
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Formatters/MoneyFormatter.php'
1420
  ),
1421
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ReviewsByProduct' => array(
1422
  'version' => '5.9.1.0',
1423
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ReviewsByProduct.php'
1424
  ),
1425
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductSearch' => array(
1426
  'version' => '5.9.1.0',
1427
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductSearch.php'
1428
  ),
1429
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AllReviews' => array(
1430
  'version' => '5.9.1.0',
1431
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AllReviews.php'
1432
  ),
1433
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ActiveFilters' => array(
1434
  'version' => '5.9.1.0',
1435
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ActiveFilters.php'
1436
  ),
1437
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AttributeFilter' => array(
1438
  'version' => '5.9.1.0',
1439
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AttributeFilter.php'
1440
  ),
1441
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\PriceFilter' => array(
1442
  'version' => '5.9.1.0',
1443
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/PriceFilter.php'
1444
  ),
1445
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\FeaturedProduct' => array(
1446
  'version' => '5.9.1.0',
1447
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/FeaturedProduct.php'
1448
  ),
1449
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductTag' => array(
1450
  'version' => '5.9.1.0',
1451
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductTag.php'
1452
  ),
1453
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\MiniCart' => array(
1454
  'version' => '5.9.1.0',
1455
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/MiniCart.php'
1456
  ),
1457
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AtomicBlock' => array(
1458
  'version' => '5.9.1.0',
1459
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AtomicBlock.php'
1460
  ),
1461
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductsByAttribute' => array(
1462
  'version' => '5.9.1.0',
1463
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductsByAttribute.php'
1464
  ),
1465
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductCategory' => array(
1466
  'version' => '5.9.1.0',
1467
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductCategory.php'
1468
  ),
1469
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AbstractDynamicBlock' => array(
1470
  'version' => '5.9.1.0',
1471
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AbstractDynamicBlock.php'
1472
  ),
1473
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ReviewsByCategory' => array(
1474
  'version' => '5.9.1.0',
1475
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ReviewsByCategory.php'
1476
  ),
1477
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AbstractBlock' => array(
1478
  'version' => '5.9.1.0',
1479
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AbstractBlock.php'
1480
  ),
1481
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductOnSale' => array(
1482
  'version' => '5.9.1.0',
1483
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductOnSale.php'
1484
  ),
1485
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\StockFilter' => array(
1486
  'version' => '5.9.1.0',
1487
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/StockFilter.php'
1488
  ),
1489
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductNew' => array(
1490
  'version' => '5.9.1.0',
1491
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductNew.php'
1492
  ),
1493
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutI2' => array(
1494
  'version' => '5.9.1.0',
1495
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CheckoutI2.php'
1496
  ),
1497
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\SingleProduct' => array(
1498
  'version' => '5.9.1.0',
1499
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/SingleProduct.php'
1500
  ),
1501
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AllProducts' => array(
1502
  'version' => '5.9.1.0',
1503
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AllProducts.php'
1504
  ),
1505
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\HandpickedProducts' => array(
1506
  'version' => '5.9.1.0',
1507
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/HandpickedProducts.php'
1508
  ),
1509
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\Checkout' => array(
1510
  'version' => '5.9.1.0',
1511
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/Checkout.php'
1512
  ),
1513
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductBestSellers' => array(
1514
  'version' => '5.9.1.0',
1515
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductBestSellers.php'
1516
  ),
1517
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\Cart' => array(
1518
  'version' => '5.9.1.0',
1519
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/Cart.php'
1520
  ),
1521
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AbstractProductGrid' => array(
1522
  'version' => '5.9.1.0',
1523
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AbstractProductGrid.php'
1524
  ),
1525
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductCategories' => array(
1526
  'version' => '5.9.1.0',
1527
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductCategories.php'
1528
  ),
1529
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductTopRated' => array(
1530
  'version' => '5.9.1.0',
1531
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductTopRated.php'
1532
  ),
1533
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\FeaturedCategory' => array(
1534
  'version' => '5.9.1.0',
1535
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/FeaturedCategory.php'
1536
  ),
1537
- 'Automattic\\WooCommerce\\Blocks\\Library' => array(
1538
  'version' => '5.9.1.0',
1539
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Library.php'
1540
  ),
1541
- 'Automattic\\WooCommerce\\Blocks\\BlockTypesController' => array(
1542
  'version' => '5.9.1.0',
1543
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypesController.php'
1544
- ),
1545
- 'Automattic\\WooCommerce\\Admin\\Composer\\Package' => array(
1546
- 'version' => '2.7.1.0-RC1',
1547
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Composer/Package.php'
1548
- ),
1549
- 'Automattic\\WooCommerce\\Admin\\WCAdminSharedSettings' => array(
1550
- 'version' => '2.7.1.0-RC1',
1551
- 'path' => $baseDir . '/packages/woocommerce-admin/src/WCAdminSharedSettings.php'
1552
- ),
1553
- 'Automattic\\WooCommerce\\Admin\\PluginsProvider\\PluginsProviderInterface' => array(
1554
- 'version' => '2.7.1.0-RC1',
1555
- 'path' => $baseDir . '/packages/woocommerce-admin/src/PluginsProvider/PluginsProviderInterface.php'
1556
- ),
1557
- 'Automattic\\WooCommerce\\Admin\\PluginsProvider\\PluginsProvider' => array(
1558
- 'version' => '2.7.1.0-RC1',
1559
- 'path' => $baseDir . '/packages/woocommerce-admin/src/PluginsProvider/PluginsProvider.php'
1560
  ),
1561
- 'Automattic\\WooCommerce\\Admin\\Schedulers\\OrdersScheduler' => array(
1562
- 'version' => '2.7.1.0-RC1',
1563
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Schedulers/OrdersScheduler.php'
1564
  ),
1565
- 'Automattic\\WooCommerce\\Admin\\Schedulers\\MailchimpScheduler' => array(
1566
- 'version' => '2.7.1.0-RC1',
1567
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Schedulers/MailchimpScheduler.php'
1568
  ),
1569
- 'Automattic\\WooCommerce\\Admin\\Schedulers\\ImportInterface' => array(
1570
- 'version' => '2.7.1.0-RC1',
1571
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Schedulers/ImportInterface.php'
1572
  ),
1573
- 'Automattic\\WooCommerce\\Admin\\Schedulers\\ImportScheduler' => array(
1574
- 'version' => '2.7.1.0-RC1',
1575
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Schedulers/ImportScheduler.php'
1576
  ),
1577
- 'Automattic\\WooCommerce\\Admin\\Schedulers\\SchedulerTraits' => array(
1578
- 'version' => '2.7.1.0-RC1',
1579
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Schedulers/SchedulerTraits.php'
1580
  ),
1581
- 'Automattic\\WooCommerce\\Admin\\Schedulers\\CustomersScheduler' => array(
1582
- 'version' => '2.7.1.0-RC1',
1583
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Schedulers/CustomersScheduler.php'
1584
  ),
1585
- 'Automattic\\WooCommerce\\Admin\\PaymentPlugins' => array(
1586
- 'version' => '2.7.1.0-RC1',
1587
- 'path' => $baseDir . '/packages/woocommerce-admin/src/PaymentPlugins.php'
1588
  ),
1589
- 'Automattic\\WooCommerce\\Admin\\Features\\Analytics' => array(
1590
- 'version' => '2.7.1.0-RC1',
1591
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/Analytics.php'
1592
  ),
1593
- 'Automattic\\WooCommerce\\Admin\\Features\\Features' => array(
1594
- 'version' => '2.7.1.0-RC1',
1595
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/Features.php'
1596
  ),
1597
- 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Init' => array(
1598
- 'version' => '2.7.1.0-RC1',
1599
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/OnboardingTasks/Init.php'
1600
  ),
1601
- 'Automattic\\WooCommerce\\Admin\\Features\\RemoteInboxNotifications' => array(
1602
- 'version' => '2.7.1.0-RC1',
1603
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/RemoteInboxNotifications.php'
1604
  ),
1605
  'Automattic\\WooCommerce\\Admin\\Features\\ShippingLabelBannerDisplayRules' => array(
1606
- 'version' => '2.7.1.0-RC1',
1607
  'path' => $baseDir . '/packages/woocommerce-admin/src/Features/ShippingLabelBannerDisplayRules.php'
1608
  ),
1609
- 'Automattic\\WooCommerce\\Admin\\Features\\Marketing' => array(
1610
- 'version' => '2.7.1.0-RC1',
1611
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/Marketing.php'
1612
  ),
1613
- 'Automattic\\WooCommerce\\Admin\\Features\\RemoteFreeExtensions\\EvaluateExtension' => array(
1614
- 'version' => '2.7.1.0-RC1',
1615
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/RemoteFreeExtensions/EvaluateExtension.php'
1616
  ),
1617
- 'Automattic\\WooCommerce\\Admin\\Features\\RemoteFreeExtensions\\DefaultFreeExtensions' => array(
1618
- 'version' => '2.7.1.0-RC1',
1619
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/RemoteFreeExtensions/DefaultFreeExtensions.php'
1620
  ),
1621
- 'Automattic\\WooCommerce\\Admin\\Features\\RemoteFreeExtensions\\DataSourcePoller' => array(
1622
- 'version' => '2.7.1.0-RC1',
1623
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/RemoteFreeExtensions/DataSourcePoller.php'
1624
  ),
1625
- 'Automattic\\WooCommerce\\Admin\\Features\\RemoteFreeExtensions\\Init' => array(
1626
- 'version' => '2.7.1.0-RC1',
1627
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/RemoteFreeExtensions/Init.php'
1628
  ),
1629
  'Automattic\\WooCommerce\\Admin\\Features\\Navigation\\Favorites' => array(
1630
- 'version' => '2.7.1.0-RC1',
1631
  'path' => $baseDir . '/packages/woocommerce-admin/src/Features/Navigation/Favorites.php'
1632
  ),
 
 
 
 
1633
  'Automattic\\WooCommerce\\Admin\\Features\\Navigation\\Menu' => array(
1634
- 'version' => '2.7.1.0-RC1',
1635
  'path' => $baseDir . '/packages/woocommerce-admin/src/Features/Navigation/Menu.php'
1636
  ),
1637
  'Automattic\\WooCommerce\\Admin\\Features\\Navigation\\CoreMenu' => array(
1638
- 'version' => '2.7.1.0-RC1',
1639
  'path' => $baseDir . '/packages/woocommerce-admin/src/Features/Navigation/CoreMenu.php'
1640
  ),
1641
- 'Automattic\\WooCommerce\\Admin\\Features\\Navigation\\Screen' => array(
1642
- 'version' => '2.7.1.0-RC1',
1643
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/Navigation/Screen.php'
1644
- ),
1645
- 'Automattic\\WooCommerce\\Admin\\Features\\Navigation\\Init' => array(
1646
- 'version' => '2.7.1.0-RC1',
1647
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/Navigation/Init.php'
1648
  ),
1649
- 'Automattic\\WooCommerce\\Admin\\Features\\Homescreen' => array(
1650
- 'version' => '2.7.1.0-RC1',
1651
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/Homescreen.php'
1652
  ),
1653
- 'Automattic\\WooCommerce\\Admin\\Features\\ActivityPanels' => array(
1654
- 'version' => '2.7.1.0-RC1',
1655
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/ActivityPanels.php'
1656
  ),
1657
- 'Automattic\\WooCommerce\\Admin\\Features\\TransientNotices' => array(
1658
- 'version' => '2.7.1.0-RC1',
1659
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/TransientNotices.php'
1660
  ),
1661
- 'Automattic\\WooCommerce\\Admin\\Features\\Settings' => array(
1662
- 'version' => '2.7.1.0-RC1',
1663
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/Settings.php'
1664
  ),
1665
- 'Automattic\\WooCommerce\\Admin\\Features\\ShippingLabelBanner' => array(
1666
- 'version' => '2.7.1.0-RC1',
1667
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/ShippingLabelBanner.php'
1668
  ),
1669
- 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks' => array(
1670
- 'version' => '2.7.1.0-RC1',
1671
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/OnboardingTasks.php'
1672
  ),
1673
  'Automattic\\WooCommerce\\Admin\\Features\\CouponsMovedTrait' => array(
1674
- 'version' => '2.7.1.0-RC1',
1675
  'path' => $baseDir . '/packages/woocommerce-admin/src/Features/CouponsMovedTrait.php'
1676
  ),
1677
- 'Automattic\\WooCommerce\\Admin\\Features\\PaymentGatewaySuggestions\\PaymentGatewaysController' => array(
1678
- 'version' => '2.7.1.0-RC1',
1679
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/PaymentGatewaySuggestions/PaymentGatewaysController.php'
1680
  ),
1681
- 'Automattic\\WooCommerce\\Admin\\Features\\PaymentGatewaySuggestions\\DefaultPaymentGateways' => array(
1682
- 'version' => '2.7.1.0-RC1',
1683
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/PaymentGatewaySuggestions/DefaultPaymentGateways.php'
1684
  ),
1685
- 'Automattic\\WooCommerce\\Admin\\Features\\PaymentGatewaySuggestions\\EvaluateSuggestion' => array(
1686
- 'version' => '2.7.1.0-RC1',
1687
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/PaymentGatewaySuggestions/EvaluateSuggestion.php'
1688
  ),
1689
- 'Automattic\\WooCommerce\\Admin\\Features\\PaymentGatewaySuggestions\\DataSourcePoller' => array(
1690
- 'version' => '2.7.1.0-RC1',
1691
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/PaymentGatewaySuggestions/DataSourcePoller.php'
1692
  ),
1693
- 'Automattic\\WooCommerce\\Admin\\Features\\PaymentGatewaySuggestions\\Init' => array(
1694
- 'version' => '2.7.1.0-RC1',
1695
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/PaymentGatewaySuggestions/Init.php'
1696
  ),
1697
- 'Automattic\\WooCommerce\\Admin\\Features\\Onboarding' => array(
1698
- 'version' => '2.7.1.0-RC1',
1699
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/Onboarding.php'
1700
  ),
1701
- 'Automattic\\WooCommerce\\Admin\\Features\\Coupons' => array(
1702
- 'version' => '2.7.1.0-RC1',
1703
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/Coupons.php'
1704
  ),
1705
- 'Automattic\\WooCommerce\\Admin\\Features\\CustomerEffortScoreTracks' => array(
1706
- 'version' => '2.7.1.0-RC1',
1707
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/CustomerEffortScoreTracks.php'
1708
  ),
1709
- 'Automattic\\WooCommerce\\Admin\\Features\\MobileAppBanner' => array(
1710
- 'version' => '2.7.1.0-RC1',
1711
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/MobileAppBanner.php'
1712
  ),
1713
- 'Automattic\\WooCommerce\\Admin\\DateTimeProvider\\DateTimeProviderInterface' => array(
1714
- 'version' => '2.7.1.0-RC1',
1715
- 'path' => $baseDir . '/packages/woocommerce-admin/src/DateTimeProvider/DateTimeProviderInterface.php'
1716
  ),
1717
- 'Automattic\\WooCommerce\\Admin\\DateTimeProvider\\CurrentDateTimeProvider' => array(
1718
- 'version' => '2.7.1.0-RC1',
1719
- 'path' => $baseDir . '/packages/woocommerce-admin/src/DateTimeProvider/CurrentDateTimeProvider.php'
1720
  ),
1721
- 'Automattic\\WooCommerce\\Admin\\ReportsSync' => array(
1722
- 'version' => '2.7.1.0-RC1',
1723
- 'path' => $baseDir . '/packages/woocommerce-admin/src/ReportsSync.php'
1724
  ),
1725
- 'Automattic\\WooCommerce\\Admin\\CategoryLookup' => array(
1726
- 'version' => '2.7.1.0-RC1',
1727
- 'path' => $baseDir . '/packages/woocommerce-admin/src/CategoryLookup.php'
1728
  ),
1729
- 'Automattic\\WooCommerce\\Admin\\PageController' => array(
1730
- 'version' => '2.7.1.0-RC1',
1731
- 'path' => $baseDir . '/packages/woocommerce-admin/src/PageController.php'
1732
  ),
1733
- 'Automattic\\WooCommerce\\Admin\\Notes\\CustomizeStoreWithBlocks' => array(
1734
- 'version' => '2.7.1.0-RC1',
1735
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/CustomizeStoreWithBlocks.php'
1736
  ),
1737
- 'Automattic\\WooCommerce\\Admin\\Notes\\WelcomeToWooCommerceForStoreUsers' => array(
1738
- 'version' => '2.7.1.0-RC1',
1739
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/WelcomeToWooCommerceForStoreUsers.php'
1740
  ),
1741
- 'Automattic\\WooCommerce\\Admin\\Notes\\MarketingJetpack' => array(
1742
- 'version' => '2.7.1.0-RC1',
1743
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/MarketingJetpack.php'
1744
  ),
1745
- 'Automattic\\WooCommerce\\Admin\\Notes\\FirstProduct' => array(
1746
- 'version' => '2.7.1.0-RC1',
1747
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/FirstProduct.php'
1748
  ),
1749
- 'Automattic\\WooCommerce\\Admin\\Notes\\RealTimeOrderAlerts' => array(
1750
- 'version' => '2.7.1.0-RC1',
1751
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/RealTimeOrderAlerts.php'
1752
  ),
1753
- 'Automattic\\WooCommerce\\Admin\\Notes\\SetUpAdditionalPaymentTypes' => array(
1754
- 'version' => '2.7.1.0-RC1',
1755
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/SetUpAdditionalPaymentTypes.php'
1756
  ),
1757
- 'Automattic\\WooCommerce\\Admin\\Notes\\Marketing' => array(
1758
- 'version' => '2.7.1.0-RC1',
1759
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/Marketing.php'
1760
  ),
1761
- 'Automattic\\WooCommerce\\Admin\\Notes\\DataStore' => array(
1762
- 'version' => '2.7.1.0-RC1',
1763
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DataStore.php'
1764
  ),
1765
- 'Automattic\\WooCommerce\\Admin\\Notes\\DrawAttention' => array(
1766
- 'version' => '2.7.1.0-RC1',
1767
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DrawAttention.php'
1768
  ),
1769
- 'Automattic\\WooCommerce\\Admin\\Notes\\InsightFirstProductAndPayment' => array(
1770
- 'version' => '2.7.1.0-RC1',
1771
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/InsightFirstProductAndPayment.php'
1772
  ),
1773
- 'Automattic\\WooCommerce\\Admin\\Notes\\MerchantEmailNotifications\\NotificationEmail' => array(
1774
- 'version' => '2.7.1.0-RC1',
1775
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/MerchantEmailNotifications/NotificationEmail.php'
1776
  ),
1777
- 'Automattic\\WooCommerce\\Admin\\Notes\\MerchantEmailNotifications\\MerchantEmailNotifications' => array(
1778
- 'version' => '2.7.1.0-RC1',
1779
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/MerchantEmailNotifications/MerchantEmailNotifications.php'
1780
  ),
1781
- 'Automattic\\WooCommerce\\Admin\\Notes\\FirstDownlaodableProduct' => array(
1782
- 'version' => '2.7.1.0-RC1',
1783
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/FirstDownlaodableProduct.php'
1784
  ),
1785
- 'Automattic\\WooCommerce\\Admin\\Notes\\WooSubscriptionsNotes' => array(
1786
- 'version' => '2.7.1.0-RC1',
1787
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/WooSubscriptionsNotes.php'
1788
  ),
1789
- 'Automattic\\WooCommerce\\Admin\\Notes\\WooCommercePayments' => array(
1790
- 'version' => '2.7.1.0-RC1',
1791
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/WooCommercePayments.php'
1792
  ),
1793
- 'Automattic\\WooCommerce\\Admin\\Notes\\UnsecuredReportFiles' => array(
1794
- 'version' => '2.7.1.0-RC1',
1795
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/UnsecuredReportFiles.php'
1796
  ),
1797
- 'Automattic\\WooCommerce\\Admin\\Notes\\NeedSomeInspiration' => array(
1798
- 'version' => '2.7.1.0-RC1',
1799
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/NeedSomeInspiration.php'
1800
  ),
1801
- 'Automattic\\WooCommerce\\Admin\\Notes\\PerformanceOnMobile' => array(
1802
- 'version' => '2.7.1.0-RC1',
1803
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/PerformanceOnMobile.php'
1804
  ),
1805
- 'Automattic\\WooCommerce\\Admin\\Notes\\MobileApp' => array(
1806
- 'version' => '2.7.1.0-RC1',
1807
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/MobileApp.php'
1808
  ),
1809
- 'Automattic\\WooCommerce\\Admin\\Notes\\NavigationFeedback' => array(
1810
- 'version' => '2.7.1.0-RC1',
1811
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/NavigationFeedback.php'
1812
  ),
1813
- 'Automattic\\WooCommerce\\Admin\\Notes\\MigrateFromShopify' => array(
1814
- 'version' => '2.7.1.0-RC1',
1815
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/MigrateFromShopify.php'
1816
  ),
1817
- 'Automattic\\WooCommerce\\Admin\\Notes\\LearnMoreAboutVariableProducts' => array(
1818
- 'version' => '2.7.1.0-RC1',
1819
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/LearnMoreAboutVariableProducts.php'
1820
  ),
1821
- 'Automattic\\WooCommerce\\Admin\\Notes\\AddFirstProduct' => array(
1822
- 'version' => '2.7.1.0-RC1',
1823
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/AddFirstProduct.php'
1824
  ),
1825
- 'Automattic\\WooCommerce\\Admin\\Notes\\Note' => array(
1826
- 'version' => '2.7.1.0-RC1',
1827
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/Note.php'
1828
  ),
1829
- 'Automattic\\WooCommerce\\Admin\\Notes\\EditProductsOnTheMove' => array(
1830
- 'version' => '2.7.1.0-RC1',
1831
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/EditProductsOnTheMove.php'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1832
  ),
1833
  'Automattic\\WooCommerce\\Admin\\Notes\\ManageStoreActivityFromHomeScreen' => array(
1834
- 'version' => '2.7.1.0-RC1',
1835
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/ManageStoreActivityFromHomeScreen.php'
1836
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1837
  'Automattic\\WooCommerce\\Admin\\Notes\\CouponPageMoved' => array(
1838
- 'version' => '2.7.1.0-RC1',
1839
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/CouponPageMoved.php'
1840
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1841
  'Automattic\\WooCommerce\\Admin\\Notes\\WooCommerceSubscriptions' => array(
1842
- 'version' => '2.7.1.0-RC1',
1843
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/WooCommerceSubscriptions.php'
1844
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1845
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Note' => array(
1846
- 'version' => '2.7.1.0-RC1',
1847
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
1848
  ),
1849
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes' => array(
1850
- 'version' => '2.7.1.0-RC1',
1851
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
1852
  ),
1853
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Choose_Niche' => array(
1854
- 'version' => '2.7.1.0-RC1',
1855
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
1856
  ),
1857
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Coupon_Page_Moved' => array(
1858
- 'version' => '2.7.1.0-RC1',
1859
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
1860
  ),
1861
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Customize_Store_With_Blocks' => array(
1862
- 'version' => '2.7.1.0-RC1',
1863
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
1864
  ),
1865
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Deactivate_Plugin' => array(
1866
- 'version' => '2.7.1.0-RC1',
1867
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
1868
  ),
1869
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Draw_Attention' => array(
1870
- 'version' => '2.7.1.0-RC1',
1871
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
1872
  ),
1873
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Edit_Products_On_The_Move' => array(
1874
- 'version' => '2.7.1.0-RC1',
1875
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
1876
  ),
1877
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_EU_VAT_Number' => array(
1878
- 'version' => '2.7.1.0-RC1',
1879
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
1880
  ),
1881
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Facebook_Marketing_Expert' => array(
1882
- 'version' => '2.7.1.0-RC1',
1883
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
1884
  ),
1885
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_First_Product' => array(
1886
- 'version' => '2.7.1.0-RC1',
1887
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
1888
  ),
1889
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Giving_Feedback_Notes' => array(
1890
- 'version' => '2.7.1.0-RC1',
1891
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
1892
  ),
1893
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Insight_First_Sale' => array(
1894
- 'version' => '2.7.1.0-RC1',
1895
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
1896
  ),
1897
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Install_JP_And_WCS_Plugins' => array(
1898
- 'version' => '2.7.1.0-RC1',
1899
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
1900
  ),
1901
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Launch_Checklist' => array(
1902
- 'version' => '2.7.1.0-RC1',
1903
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
1904
  ),
1905
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Marketing' => array(
1906
- 'version' => '2.7.1.0-RC1',
1907
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
1908
  ),
1909
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Migrate_From_Shopify' => array(
1910
- 'version' => '2.7.1.0-RC1',
1911
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
1912
  ),
1913
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Mobile_App' => array(
1914
- 'version' => '2.7.1.0-RC1',
1915
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
1916
  ),
1917
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Need_Some_Inspiration' => array(
1918
- 'version' => '2.7.1.0-RC1',
1919
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
1920
  ),
1921
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_New_Sales_Record' => array(
1922
- 'version' => '2.7.1.0-RC1',
1923
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
1924
  ),
1925
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Onboarding_Email_Marketing' => array(
1926
- 'version' => '2.7.1.0-RC1',
1927
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
1928
  ),
1929
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Onboarding_Payments' => array(
1930
- 'version' => '2.7.1.0-RC1',
1931
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
1932
  ),
1933
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Online_Clothing_Store' => array(
1934
- 'version' => '2.7.1.0-RC1',
1935
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
1936
  ),
1937
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Order_Milestones' => array(
1938
- 'version' => '2.7.1.0-RC1',
1939
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
1940
  ),
1941
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Performance_On_Mobile' => array(
1942
- 'version' => '2.7.1.0-RC1',
1943
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
1944
  ),
1945
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Personalize_Store' => array(
1946
- 'version' => '2.7.1.0-RC1',
1947
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
1948
  ),
1949
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Real_Time_Order_Alerts' => array(
1950
- 'version' => '2.7.1.0-RC1',
1951
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
1952
  ),
1953
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Selling_Online_Courses' => array(
1954
- 'version' => '2.7.1.0-RC1',
1955
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
1956
- ),
1957
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Set_Up_Additional_Payment_Types' => array(
1958
- 'version' => '2.7.1.0-RC1',
1959
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
1960
- ),
1961
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Start_Dropshipping_Business' => array(
1962
- 'version' => '2.7.1.0-RC1',
1963
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
1964
- ),
1965
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Test_Checkout' => array(
1966
- 'version' => '2.7.1.0-RC1',
1967
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
1968
- ),
1969
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Tracking_Opt_In' => array(
1970
- 'version' => '2.7.1.0-RC1',
1971
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
1972
- ),
1973
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Woo_Subscriptions_Notes' => array(
1974
- 'version' => '2.7.1.0-RC1',
1975
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
1976
  ),
1977
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_WooCommerce_Payments' => array(
1978
- 'version' => '2.7.1.0-RC1',
1979
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
1980
- ),
1981
- 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_WooCommerce_Subscriptions' => array(
1982
- 'version' => '2.7.1.0-RC1',
1983
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
1984
- ),
1985
- 'Automattic\\WooCommerce\\Admin\\Notes\\GettingStartedInEcommerceWebinar' => array(
1986
- 'version' => '2.7.1.0-RC1',
1987
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/GettingStartedInEcommerceWebinar.php'
1988
- ),
1989
- 'Automattic\\WooCommerce\\Admin\\Notes\\OrderMilestones' => array(
1990
- 'version' => '2.7.1.0-RC1',
1991
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/OrderMilestones.php'
1992
- ),
1993
- 'Automattic\\WooCommerce\\Admin\\Notes\\NoteTraits' => array(
1994
- 'version' => '2.7.1.0-RC1',
1995
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/NoteTraits.php'
1996
- ),
1997
- 'Automattic\\WooCommerce\\Admin\\Notes\\CustomizingProductCatalog' => array(
1998
- 'version' => '2.7.1.0-RC1',
1999
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/CustomizingProductCatalog.php'
2000
- ),
2001
- 'Automattic\\WooCommerce\\Admin\\Notes\\NewSalesRecord' => array(
2002
- 'version' => '2.7.1.0-RC1',
2003
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/NewSalesRecord.php'
2004
- ),
2005
- 'Automattic\\WooCommerce\\Admin\\Notes\\LaunchChecklist' => array(
2006
- 'version' => '2.7.1.0-RC1',
2007
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/LaunchChecklist.php'
2008
- ),
2009
- 'Automattic\\WooCommerce\\Admin\\Notes\\ManageOrdersOnTheGo' => array(
2010
- 'version' => '2.7.1.0-RC1',
2011
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/ManageOrdersOnTheGo.php'
2012
- ),
2013
- 'Automattic\\WooCommerce\\Admin\\Notes\\DeactivatePlugin' => array(
2014
- 'version' => '2.7.1.0-RC1',
2015
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeactivatePlugin.php'
2016
- ),
2017
- 'Automattic\\WooCommerce\\Admin\\Notes\\AddingAndManangingProducts' => array(
2018
- 'version' => '2.7.1.0-RC1',
2019
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/AddingAndManangingProducts.php'
2020
- ),
2021
- 'Automattic\\WooCommerce\\Admin\\Notes\\SellingOnlineCourses' => array(
2022
- 'version' => '2.7.1.0-RC1',
2023
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/SellingOnlineCourses.php'
2024
- ),
2025
- 'Automattic\\WooCommerce\\Admin\\Notes\\OnboardingTraits' => array(
2026
- 'version' => '2.7.1.0-RC1',
2027
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/OnboardingTraits.php'
2028
- ),
2029
- 'Automattic\\WooCommerce\\Admin\\Notes\\Notes' => array(
2030
- 'version' => '2.7.1.0-RC1',
2031
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/Notes.php'
2032
- ),
2033
- 'Automattic\\WooCommerce\\Admin\\Notes\\TrackingOptIn' => array(
2034
- 'version' => '2.7.1.0-RC1',
2035
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/TrackingOptIn.php'
2036
- ),
2037
- 'Automattic\\WooCommerce\\Admin\\Notes\\GivingFeedbackNotes' => array(
2038
- 'version' => '2.7.1.0-RC1',
2039
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/GivingFeedbackNotes.php'
2040
- ),
2041
- 'Automattic\\WooCommerce\\Admin\\Notes\\FilterByProductVariationsInReports' => array(
2042
- 'version' => '2.7.1.0-RC1',
2043
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/FilterByProductVariationsInReports.php'
2044
- ),
2045
- 'Automattic\\WooCommerce\\Admin\\Notes\\InstallJPAndWCSPlugins' => array(
2046
- 'version' => '2.7.1.0-RC1',
2047
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/InstallJPAndWCSPlugins.php'
2048
- ),
2049
- 'Automattic\\WooCommerce\\Admin\\Notes\\NavigationNudge' => array(
2050
- 'version' => '2.7.1.0-RC1',
2051
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/NavigationNudge.php'
2052
- ),
2053
- 'Automattic\\WooCommerce\\Admin\\Notes\\NavigationFeedbackFollowUp' => array(
2054
- 'version' => '2.7.1.0-RC1',
2055
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/NavigationFeedbackFollowUp.php'
2056
- ),
2057
- 'Automattic\\WooCommerce\\Admin\\Notes\\InsightFirstSale' => array(
2058
- 'version' => '2.7.1.0-RC1',
2059
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/InsightFirstSale.php'
2060
- ),
2061
- 'Automattic\\WooCommerce\\Admin\\Notes\\TestCheckout' => array(
2062
- 'version' => '2.7.1.0-RC1',
2063
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/TestCheckout.php'
2064
- ),
2065
- 'Automattic\\WooCommerce\\Admin\\Notes\\NotesUnavailableException' => array(
2066
- 'version' => '2.7.1.0-RC1',
2067
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/NotesUnavailableException.php'
2068
- ),
2069
- 'Automattic\\WooCommerce\\Admin\\Notes\\ChoosingTheme' => array(
2070
- 'version' => '2.7.1.0-RC1',
2071
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/ChoosingTheme.php'
2072
- ),
2073
- 'Automattic\\WooCommerce\\Admin\\Notes\\EUVATNumber' => array(
2074
- 'version' => '2.7.1.0-RC1',
2075
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/EUVATNumber.php'
2076
- ),
2077
- 'Automattic\\WooCommerce\\Admin\\Notes\\OnboardingPayments' => array(
2078
- 'version' => '2.7.1.0-RC1',
2079
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/OnboardingPayments.php'
2080
- ),
2081
- 'Automattic\\WooCommerce\\Admin\\Notes\\ChooseNiche' => array(
2082
- 'version' => '2.7.1.0-RC1',
2083
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/ChooseNiche.php'
2084
- ),
2085
- 'Automattic\\WooCommerce\\Admin\\Notes\\PersonalizeStore' => array(
2086
- 'version' => '2.7.1.0-RC1',
2087
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/PersonalizeStore.php'
2088
- ),
2089
- 'Automattic\\WooCommerce\\Admin\\Notes\\StartDropshippingBusiness' => array(
2090
- 'version' => '2.7.1.0-RC1',
2091
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/StartDropshippingBusiness.php'
2092
- ),
2093
- 'Automattic\\WooCommerce\\Admin\\Notes\\OnlineClothingStore' => array(
2094
- 'version' => '2.7.1.0-RC1',
2095
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/OnlineClothingStore.php'
2096
- ),
2097
- 'Automattic\\WooCommerce\\Admin\\Events' => array(
2098
- 'version' => '2.7.1.0-RC1',
2099
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Events.php'
2100
- ),
2101
- 'Automattic\\WooCommerce\\Admin\\ReportCSVEmail' => array(
2102
- 'version' => '2.7.1.0-RC1',
2103
- 'path' => $baseDir . '/packages/woocommerce-admin/src/ReportCSVEmail.php'
2104
- ),
2105
- 'Automattic\\WooCommerce\\Admin\\DeprecatedClassFacade' => array(
2106
- 'version' => '2.7.1.0-RC1',
2107
- 'path' => $baseDir . '/packages/woocommerce-admin/src/DeprecatedClassFacade.php'
2108
- ),
2109
- 'Automattic\\WooCommerce\\Admin\\Overrides\\OrderTraits' => array(
2110
- 'version' => '2.7.1.0-RC1',
2111
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Overrides/OrderTraits.php'
2112
- ),
2113
- 'Automattic\\WooCommerce\\Admin\\Overrides\\ThemeUpgrader' => array(
2114
- 'version' => '2.7.1.0-RC1',
2115
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Overrides/ThemeUpgrader.php'
2116
- ),
2117
- 'Automattic\\WooCommerce\\Admin\\Overrides\\OrderRefund' => array(
2118
- 'version' => '2.7.1.0-RC1',
2119
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Overrides/OrderRefund.php'
2120
- ),
2121
- 'Automattic\\WooCommerce\\Admin\\Overrides\\ThemeUpgraderSkin' => array(
2122
- 'version' => '2.7.1.0-RC1',
2123
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Overrides/ThemeUpgraderSkin.php'
2124
- ),
2125
- 'Automattic\\WooCommerce\\Admin\\Overrides\\Order' => array(
2126
- 'version' => '2.7.1.0-RC1',
2127
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Overrides/Order.php'
2128
- ),
2129
- 'Automattic\\WooCommerce\\Admin\\API\\Orders' => array(
2130
- 'version' => '2.7.1.0-RC1',
2131
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Orders.php'
2132
- ),
2133
- 'Automattic\\WooCommerce\\Admin\\API\\ProductAttributes' => array(
2134
- 'version' => '2.7.1.0-RC1',
2135
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/ProductAttributes.php'
2136
- ),
2137
- 'Automattic\\WooCommerce\\Admin\\API\\Features' => array(
2138
- 'version' => '2.7.1.0-RC1',
2139
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Features.php'
2140
- ),
2141
- 'Automattic\\WooCommerce\\Admin\\API\\OnboardingFreeExtensions' => array(
2142
- 'version' => '2.7.1.0-RC1',
2143
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/OnboardingFreeExtensions.php'
2144
- ),
2145
- 'Automattic\\WooCommerce\\Admin\\API\\ProductsLowInStock' => array(
2146
- 'version' => '2.7.1.0-RC1',
2147
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/ProductsLowInStock.php'
2148
- ),
2149
- 'Automattic\\WooCommerce\\Admin\\API\\MarketingOverview' => array(
2150
- 'version' => '2.7.1.0-RC1',
2151
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/MarketingOverview.php'
2152
- ),
2153
- 'Automattic\\WooCommerce\\Admin\\API\\Marketing' => array(
2154
- 'version' => '2.7.1.0-RC1',
2155
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Marketing.php'
2156
- ),
2157
- 'Automattic\\WooCommerce\\Admin\\API\\NoteActions' => array(
2158
- 'version' => '2.7.1.0-RC1',
2159
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/NoteActions.php'
2160
  ),
2161
- 'Automattic\\WooCommerce\\Admin\\API\\Products' => array(
2162
- 'version' => '2.7.1.0-RC1',
2163
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Products.php'
2164
  ),
2165
- 'Automattic\\WooCommerce\\Admin\\API\\ProductVariations' => array(
2166
- 'version' => '2.7.1.0-RC1',
2167
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/ProductVariations.php'
2168
  ),
2169
- 'Automattic\\WooCommerce\\Admin\\API\\DataDownloadIPs' => array(
2170
- 'version' => '2.7.1.0-RC1',
2171
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/DataDownloadIPs.php'
2172
  ),
2173
- 'Automattic\\WooCommerce\\Admin\\API\\CustomAttributeTraits' => array(
2174
- 'version' => '2.7.1.0-RC1',
2175
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/CustomAttributeTraits.php'
2176
  ),
2177
- 'Automattic\\WooCommerce\\Admin\\API\\NavigationFavorites' => array(
2178
- 'version' => '2.7.1.0-RC1',
2179
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/NavigationFavorites.php'
2180
  ),
2181
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\PerformanceIndicators\\Controller' => array(
2182
- 'version' => '2.7.1.0-RC1',
2183
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/PerformanceIndicators/Controller.php'
2184
  ),
2185
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Export\\Controller' => array(
2186
- 'version' => '2.7.1.0-RC1',
2187
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Export/Controller.php'
2188
  ),
2189
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\DataStore' => array(
2190
- 'version' => '2.7.1.0-RC1',
2191
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Variations/DataStore.php'
2192
  ),
2193
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Query' => array(
2194
- 'version' => '2.7.1.0-RC1',
2195
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Variations/Query.php'
2196
  ),
2197
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Stats\\DataStore' => array(
2198
- 'version' => '2.7.1.0-RC1',
2199
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Variations/Stats/DataStore.php'
2200
  ),
2201
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Stats\\Segmenter' => array(
2202
- 'version' => '2.7.1.0-RC1',
2203
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Variations/Stats/Segmenter.php'
2204
  ),
2205
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Stats\\Query' => array(
2206
- 'version' => '2.7.1.0-RC1',
2207
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Variations/Stats/Query.php'
2208
  ),
2209
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Stats\\Controller' => array(
2210
- 'version' => '2.7.1.0-RC1',
2211
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Variations/Stats/Controller.php'
2212
  ),
2213
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Controller' => array(
2214
- 'version' => '2.7.1.0-RC1',
2215
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Variations/Controller.php'
2216
  ),
2217
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Cache' => array(
2218
- 'version' => '2.7.1.0-RC1',
2219
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Cache.php'
2220
  ),
2221
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\DataStore' => array(
2222
- 'version' => '2.7.1.0-RC1',
2223
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/DataStore.php'
2224
  ),
2225
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\DataStore' => array(
2226
- 'version' => '2.7.1.0-RC1',
2227
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Downloads/DataStore.php'
2228
  ),
2229
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Files\\Controller' => array(
2230
- 'version' => '2.7.1.0-RC1',
2231
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Downloads/Files/Controller.php'
2232
  ),
2233
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Query' => array(
2234
- 'version' => '2.7.1.0-RC1',
2235
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Downloads/Query.php'
2236
  ),
2237
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Stats\\DataStore' => array(
2238
- 'version' => '2.7.1.0-RC1',
2239
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Downloads/Stats/DataStore.php'
2240
  ),
2241
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Stats\\Query' => array(
2242
- 'version' => '2.7.1.0-RC1',
2243
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Downloads/Stats/Query.php'
2244
  ),
2245
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Stats\\Controller' => array(
2246
- 'version' => '2.7.1.0-RC1',
2247
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Downloads/Stats/Controller.php'
2248
  ),
2249
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Controller' => array(
2250
- 'version' => '2.7.1.0-RC1',
2251
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Downloads/Controller.php'
2252
  ),
2253
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Segmenter' => array(
2254
- 'version' => '2.7.1.0-RC1',
2255
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Segmenter.php'
2256
  ),
2257
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Query' => array(
2258
- 'version' => '2.7.1.0-RC1',
2259
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Query.php'
2260
  ),
2261
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\DataStore' => array(
2262
- 'version' => '2.7.1.0-RC1',
2263
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Products/DataStore.php'
2264
  ),
2265
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Query' => array(
2266
- 'version' => '2.7.1.0-RC1',
2267
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Products/Query.php'
2268
  ),
2269
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Stats\\DataStore' => array(
2270
- 'version' => '2.7.1.0-RC1',
2271
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Products/Stats/DataStore.php'
2272
  ),
2273
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Stats\\Segmenter' => array(
2274
- 'version' => '2.7.1.0-RC1',
2275
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Products/Stats/Segmenter.php'
2276
  ),
2277
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Stats\\Query' => array(
2278
- 'version' => '2.7.1.0-RC1',
2279
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Products/Stats/Query.php'
2280
  ),
2281
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Stats\\Controller' => array(
2282
- 'version' => '2.7.1.0-RC1',
2283
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Products/Stats/Controller.php'
2284
  ),
2285
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Controller' => array(
2286
- 'version' => '2.7.1.0-RC1',
2287
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Products/Controller.php'
2288
  ),
2289
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\ExportableInterface' => array(
2290
- 'version' => '2.7.1.0-RC1',
2291
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/ExportableInterface.php'
2292
  ),
2293
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Revenue\\Query' => array(
2294
- 'version' => '2.7.1.0-RC1',
2295
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Revenue/Query.php'
2296
  ),
2297
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Revenue\\Stats\\Controller' => array(
2298
- 'version' => '2.7.1.0-RC1',
2299
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Revenue/Stats/Controller.php'
2300
  ),
2301
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\ParameterException' => array(
2302
- 'version' => '2.7.1.0-RC1',
2303
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/ParameterException.php'
2304
  ),
2305
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Stock\\Stats\\DataStore' => array(
2306
- 'version' => '2.7.1.0-RC1',
2307
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Stock/Stats/DataStore.php'
2308
  ),
2309
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Stock\\Stats\\Query' => array(
2310
- 'version' => '2.7.1.0-RC1',
2311
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Stock/Stats/Query.php'
2312
  ),
2313
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Stock\\Stats\\Controller' => array(
2314
- 'version' => '2.7.1.0-RC1',
2315
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Stock/Stats/Controller.php'
2316
  ),
2317
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Stock\\Controller' => array(
2318
- 'version' => '2.7.1.0-RC1',
2319
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Stock/Controller.php'
2320
  ),
2321
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\DataStoreInterface' => array(
2322
- 'version' => '2.7.1.0-RC1',
2323
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/DataStoreInterface.php'
2324
  ),
2325
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\ExportableTraits' => array(
2326
- 'version' => '2.7.1.0-RC1',
2327
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/ExportableTraits.php'
2328
  ),
2329
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\DataStore' => array(
2330
- 'version' => '2.7.1.0-RC1',
2331
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Coupons/DataStore.php'
2332
  ),
2333
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Query' => array(
2334
- 'version' => '2.7.1.0-RC1',
2335
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Coupons/Query.php'
2336
  ),
2337
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Stats\\DataStore' => array(
2338
- 'version' => '2.7.1.0-RC1',
2339
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Coupons/Stats/DataStore.php'
2340
  ),
2341
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Stats\\Segmenter' => array(
2342
- 'version' => '2.7.1.0-RC1',
2343
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Coupons/Stats/Segmenter.php'
2344
  ),
2345
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Stats\\Query' => array(
2346
- 'version' => '2.7.1.0-RC1',
2347
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Coupons/Stats/Query.php'
2348
  ),
2349
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Stats\\Controller' => array(
2350
- 'version' => '2.7.1.0-RC1',
2351
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Coupons/Stats/Controller.php'
2352
  ),
2353
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Controller' => array(
2354
- 'version' => '2.7.1.0-RC1',
2355
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Coupons/Controller.php'
2356
  ),
2357
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\DataStore' => array(
2358
- 'version' => '2.7.1.0-RC1',
2359
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Orders/DataStore.php'
2360
  ),
2361
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Query' => array(
2362
- 'version' => '2.7.1.0-RC1',
2363
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Orders/Query.php'
2364
  ),
2365
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Stats\\DataStore' => array(
2366
- 'version' => '2.7.1.0-RC1',
2367
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Orders/Stats/DataStore.php'
2368
  ),
2369
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Stats\\Segmenter' => array(
2370
- 'version' => '2.7.1.0-RC1',
2371
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Orders/Stats/Segmenter.php'
2372
  ),
2373
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Stats\\Query' => array(
2374
- 'version' => '2.7.1.0-RC1',
2375
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Orders/Stats/Query.php'
2376
  ),
2377
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Stats\\Controller' => array(
2378
- 'version' => '2.7.1.0-RC1',
2379
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Orders/Stats/Controller.php'
2380
  ),
2381
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Controller' => array(
2382
- 'version' => '2.7.1.0-RC1',
2383
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Orders/Controller.php'
2384
  ),
2385
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\DataStore' => array(
2386
- 'version' => '2.7.1.0-RC1',
2387
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Taxes/DataStore.php'
2388
  ),
2389
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Query' => array(
2390
- 'version' => '2.7.1.0-RC1',
2391
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Taxes/Query.php'
2392
  ),
2393
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Stats\\DataStore' => array(
2394
- 'version' => '2.7.1.0-RC1',
2395
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Taxes/Stats/DataStore.php'
2396
  ),
2397
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Stats\\Segmenter' => array(
2398
- 'version' => '2.7.1.0-RC1',
2399
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Taxes/Stats/Segmenter.php'
2400
  ),
2401
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Stats\\Query' => array(
2402
- 'version' => '2.7.1.0-RC1',
2403
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Taxes/Stats/Query.php'
2404
  ),
2405
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Stats\\Controller' => array(
2406
- 'version' => '2.7.1.0-RC1',
2407
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Taxes/Stats/Controller.php'
2408
  ),
2409
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Controller' => array(
2410
- 'version' => '2.7.1.0-RC1',
2411
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Taxes/Controller.php'
2412
  ),
2413
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\DataStore' => array(
2414
- 'version' => '2.7.1.0-RC1',
2415
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Customers/DataStore.php'
 
 
 
 
2416
  ),
2417
  'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Query' => array(
2418
- 'version' => '2.7.1.0-RC1',
2419
  'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Customers/Query.php'
2420
  ),
2421
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Stats\\DataStore' => array(
2422
- 'version' => '2.7.1.0-RC1',
2423
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Customers/Stats/DataStore.php'
2424
- ),
2425
  'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Stats\\Query' => array(
2426
- 'version' => '2.7.1.0-RC1',
2427
  'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Customers/Stats/Query.php'
2428
  ),
 
 
 
 
2429
  'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Stats\\Controller' => array(
2430
- 'version' => '2.7.1.0-RC1',
2431
  'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Customers/Stats/Controller.php'
2432
  ),
 
 
 
 
2433
  'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Controller' => array(
2434
- 'version' => '2.7.1.0-RC1',
2435
  'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Customers/Controller.php'
2436
  ),
2437
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\TimeInterval' => array(
2438
- 'version' => '2.7.1.0-RC1',
2439
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/TimeInterval.php'
2440
  ),
2441
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Categories\\DataStore' => array(
2442
- 'version' => '2.7.1.0-RC1',
2443
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Categories/DataStore.php'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2444
  ),
2445
  'Automattic\\WooCommerce\\Admin\\API\\Reports\\Categories\\Query' => array(
2446
- 'version' => '2.7.1.0-RC1',
2447
  'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Categories/Query.php'
2448
  ),
 
 
 
 
2449
  'Automattic\\WooCommerce\\Admin\\API\\Reports\\Categories\\Controller' => array(
2450
- 'version' => '2.7.1.0-RC1',
2451
  'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Categories/Controller.php'
2452
  ),
2453
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\SqlQuery' => array(
2454
- 'version' => '2.7.1.0-RC1',
2455
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/SqlQuery.php'
2456
  ),
2457
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Import\\Controller' => array(
2458
- 'version' => '2.7.1.0-RC1',
2459
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Import/Controller.php'
2460
  ),
2461
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Controller' => array(
2462
- 'version' => '2.7.1.0-RC1',
2463
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Controller.php'
2464
  ),
2465
- 'Automattic\\WooCommerce\\Admin\\API\\Options' => array(
2466
- 'version' => '2.7.1.0-RC1',
2467
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Options.php'
2468
  ),
2469
- 'Automattic\\WooCommerce\\Admin\\API\\Plugins' => array(
2470
- 'version' => '2.7.1.0-RC1',
2471
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Plugins.php'
2472
  ),
2473
- 'Automattic\\WooCommerce\\Admin\\API\\Customers' => array(
2474
- 'version' => '2.7.1.0-RC1',
2475
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Customers.php'
2476
  ),
2477
- 'Automattic\\WooCommerce\\Admin\\API\\Notes' => array(
2478
- 'version' => '2.7.1.0-RC1',
2479
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Notes.php'
2480
  ),
2481
- 'Automattic\\WooCommerce\\Admin\\API\\OnboardingProfile' => array(
2482
- 'version' => '2.7.1.0-RC1',
2483
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/OnboardingProfile.php'
2484
  ),
2485
- 'Automattic\\WooCommerce\\Admin\\API\\OnboardingTasks' => array(
2486
- 'version' => '2.7.1.0-RC1',
2487
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/OnboardingTasks.php'
2488
  ),
2489
- 'Automattic\\WooCommerce\\Admin\\API\\ProductReviews' => array(
2490
- 'version' => '2.7.1.0-RC1',
2491
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/ProductReviews.php'
2492
  ),
2493
- 'Automattic\\WooCommerce\\Admin\\API\\Themes' => array(
2494
- 'version' => '2.7.1.0-RC1',
2495
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Themes.php'
2496
  ),
2497
- 'Automattic\\WooCommerce\\Admin\\API\\SettingOptions' => array(
2498
- 'version' => '2.7.1.0-RC1',
2499
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/SettingOptions.php'
2500
  ),
2501
- 'Automattic\\WooCommerce\\Admin\\API\\DataCountries' => array(
2502
- 'version' => '2.7.1.0-RC1',
2503
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/DataCountries.php'
2504
  ),
2505
- 'Automattic\\WooCommerce\\Admin\\API\\Leaderboards' => array(
2506
- 'version' => '2.7.1.0-RC1',
2507
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Leaderboards.php'
2508
  ),
2509
- 'Automattic\\WooCommerce\\Admin\\API\\ProductAttributeTerms' => array(
2510
- 'version' => '2.7.1.0-RC1',
2511
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/ProductAttributeTerms.php'
2512
  ),
2513
- 'Automattic\\WooCommerce\\Admin\\API\\OnboardingThemes' => array(
2514
- 'version' => '2.7.1.0-RC1',
2515
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/OnboardingThemes.php'
2516
  ),
2517
- 'Automattic\\WooCommerce\\Admin\\API\\Data' => array(
2518
- 'version' => '2.7.1.0-RC1',
2519
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Data.php'
2520
  ),
2521
- 'Automattic\\WooCommerce\\Admin\\API\\Coupons' => array(
2522
- 'version' => '2.7.1.0-RC1',
2523
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Coupons.php'
2524
  ),
2525
- 'Automattic\\WooCommerce\\Admin\\API\\Taxes' => array(
2526
- 'version' => '2.7.1.0-RC1',
2527
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Taxes.php'
2528
  ),
2529
- 'Automattic\\WooCommerce\\Admin\\API\\ProductCategories' => array(
2530
- 'version' => '2.7.1.0-RC1',
2531
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/ProductCategories.php'
2532
  ),
2533
- 'Automattic\\WooCommerce\\Admin\\API\\Init' => array(
2534
- 'version' => '2.7.1.0-RC1',
2535
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Init.php'
2536
  ),
2537
- 'Automattic\\WooCommerce\\Admin\\API\\OnboardingPayments' => array(
2538
- 'version' => '2.7.1.0-RC1',
2539
- 'path' => $baseDir . '/packages/woocommerce-admin/src/API/OnboardingPayments.php'
2540
  ),
2541
- 'Automattic\\WooCommerce\\Admin\\Survey' => array(
2542
- 'version' => '2.7.1.0-RC1',
2543
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Survey.php'
2544
  ),
2545
- 'Automattic\\WooCommerce\\Admin\\Marketing\\InstalledExtensions' => array(
2546
- 'version' => '2.7.1.0-RC1',
2547
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Marketing/InstalledExtensions.php'
2548
  ),
2549
- 'Automattic\\WooCommerce\\Admin\\PluginsInstaller' => array(
2550
- 'version' => '2.7.1.0-RC1',
2551
- 'path' => $baseDir . '/packages/woocommerce-admin/src/PluginsInstaller.php'
2552
  ),
2553
- 'Automattic\\WooCommerce\\Admin\\FeaturePlugin' => array(
2554
- 'version' => '2.7.1.0-RC1',
2555
- 'path' => $baseDir . '/packages/woocommerce-admin/src/FeaturePlugin.php'
2556
  ),
2557
- 'Automattic\\WooCommerce\\Admin\\Loader' => array(
2558
- 'version' => '2.7.1.0-RC1',
2559
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Loader.php'
2560
  ),
2561
- 'Automattic\\WooCommerce\\Admin\\ReportCSVExporter' => array(
2562
- 'version' => '2.7.1.0-RC1',
2563
- 'path' => $baseDir . '/packages/woocommerce-admin/src/ReportCSVExporter.php'
2564
  ),
2565
- 'Automattic\\WooCommerce\\Admin\\PluginsHelper' => array(
2566
- 'version' => '2.7.1.0-RC1',
2567
- 'path' => $baseDir . '/packages/woocommerce-admin/src/PluginsHelper.php'
2568
  ),
2569
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\RuleEvaluator' => array(
2570
- 'version' => '2.7.1.0-RC1',
2571
- 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/RuleEvaluator.php'
2572
  ),
2573
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\StoredStateRuleProcessor' => array(
2574
- 'version' => '2.7.1.0-RC1',
2575
- 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/StoredStateRuleProcessor.php'
2576
  ),
2577
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\NotRuleProcessor' => array(
2578
- 'version' => '2.7.1.0-RC1',
2579
- 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/NotRuleProcessor.php'
2580
  ),
2581
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\OptionRuleProcessor' => array(
2582
- 'version' => '2.7.1.0-RC1',
2583
- 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/OptionRuleProcessor.php'
2584
  ),
2585
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\WCAdminActiveForRuleProcessor' => array(
2586
- 'version' => '2.7.1.0-RC1',
2587
- 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/WCAdminActiveForRuleProcessor.php'
2588
  ),
2589
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\FailRuleProcessor' => array(
2590
- 'version' => '2.7.1.0-RC1',
2591
- 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/FailRuleProcessor.php'
2592
  ),
2593
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\TransformerInterface' => array(
2594
- 'version' => '2.7.1.0-RC1',
2595
- 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/TransformerInterface.php'
2596
  ),
2597
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\SpecRunner' => array(
2598
- 'version' => '2.7.1.0-RC1',
2599
- 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/SpecRunner.php'
2600
  ),
2601
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\WCAdminActiveForProvider' => array(
2602
- 'version' => '2.7.1.0-RC1',
2603
- 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/WCAdminActiveForProvider.php'
2604
  ),
2605
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\PublishBeforeTimeRuleProcessor' => array(
2606
- 'version' => '2.7.1.0-RC1',
2607
- 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/PublishBeforeTimeRuleProcessor.php'
2608
  ),
2609
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\ComparisonOperation' => array(
2610
- 'version' => '2.7.1.0-RC1',
2611
- 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/ComparisonOperation.php'
2612
  ),
2613
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\OrderCountRuleProcessor' => array(
2614
- 'version' => '2.7.1.0-RC1',
2615
- 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/OrderCountRuleProcessor.php'
2616
  ),
2617
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\PublishAfterTimeRuleProcessor' => array(
2618
- 'version' => '2.7.1.0-RC1',
2619
- 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/PublishAfterTimeRuleProcessor.php'
2620
  ),
2621
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\EvaluationLogger' => array(
2622
- 'version' => '2.7.1.0-RC1',
2623
- 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/EvaluationLogger.php'
2624
  ),
2625
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\WooCommerceAdminUpdatedRuleProcessor' => array(
2626
- 'version' => '2.7.1.0-RC1',
2627
- 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/WooCommerceAdminUpdatedRuleProcessor.php'
2628
  ),
2629
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\EvaluateAndGetStatus' => array(
2630
- 'version' => '2.7.1.0-RC1',
2631
- 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/EvaluateAndGetStatus.php'
2632
  ),
2633
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\RemoteInboxNotificationsEngine' => array(
2634
- 'version' => '2.7.1.0-RC1',
2635
- 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/RemoteInboxNotificationsEngine.php'
2636
  ),
2637
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\OrdersProvider' => array(
2638
- 'version' => '2.7.1.0-RC1',
2639
- 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/OrdersProvider.php'
2640
  ),
2641
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\BaseLocationStateRuleProcessor' => array(
2642
- 'version' => '2.7.1.0-RC1',
2643
- 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/BaseLocationStateRuleProcessor.php'
2644
  ),
2645
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\StoredStateSetupForProducts' => array(
2646
- 'version' => '2.7.1.0-RC1',
2647
- 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/StoredStateSetupForProducts.php'
2648
  ),
2649
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\BaseLocationCountryRuleProcessor' => array(
2650
- 'version' => '2.7.1.0-RC1',
2651
- 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/BaseLocationCountryRuleProcessor.php'
2652
  ),
2653
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\TransformerService' => array(
2654
- 'version' => '2.7.1.0-RC1',
2655
- 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/TransformerService.php'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2656
  ),
2657
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\PluginVersionRuleProcessor' => array(
2658
- 'version' => '2.7.1.0-RC1',
2659
- 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/PluginVersionRuleProcessor.php'
2660
  ),
2661
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\ProductCountRuleProcessor' => array(
2662
- 'version' => '2.7.1.0-RC1',
2663
- 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/ProductCountRuleProcessor.php'
2664
  ),
2665
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\ArraySearch' => array(
2666
- 'version' => '2.7.1.0-RC1',
2667
- 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/Transformers/ArraySearch.php'
2668
  ),
2669
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\DotNotation' => array(
2670
- 'version' => '2.7.1.0-RC1',
2671
- 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/Transformers/DotNotation.php'
2672
  ),
2673
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\ArrayFlatten' => array(
2674
- 'version' => '2.7.1.0-RC1',
2675
- 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/Transformers/ArrayFlatten.php'
2676
  ),
2677
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\ArrayColumn' => array(
2678
- 'version' => '2.7.1.0-RC1',
2679
- 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/Transformers/ArrayColumn.php'
2680
  ),
2681
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\Count' => array(
2682
- 'version' => '2.7.1.0-RC1',
2683
- 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/Transformers/Count.php'
2684
  ),
2685
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\ArrayKeys' => array(
2686
- 'version' => '2.7.1.0-RC1',
2687
- 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/Transformers/ArrayKeys.php'
2688
  ),
2689
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\ArrayValues' => array(
2690
- 'version' => '2.7.1.0-RC1',
2691
- 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/Transformers/ArrayValues.php'
2692
  ),
2693
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\DataSourcePoller' => array(
2694
- 'version' => '2.7.1.0-RC1',
2695
- 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/DataSourcePoller.php'
2696
  ),
2697
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\PassRuleProcessor' => array(
2698
- 'version' => '2.7.1.0-RC1',
2699
- 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/PassRuleProcessor.php'
2700
  ),
2701
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\OrRuleProcessor' => array(
2702
- 'version' => '2.7.1.0-RC1',
2703
- 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/OrRuleProcessor.php'
2704
  ),
2705
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\GetRuleProcessor' => array(
2706
- 'version' => '2.7.1.0-RC1',
2707
- 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/GetRuleProcessor.php'
2708
  ),
2709
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\OnboardingProfileRuleProcessor' => array(
2710
- 'version' => '2.7.1.0-RC1',
2711
- 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/OnboardingProfileRuleProcessor.php'
2712
  ),
2713
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\PluginsActivatedRuleProcessor' => array(
2714
- 'version' => '2.7.1.0-RC1',
2715
- 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/PluginsActivatedRuleProcessor.php'
2716
  ),
2717
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\NoteStatusRuleProcessor' => array(
2718
- 'version' => '2.7.1.0-RC1',
2719
- 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/NoteStatusRuleProcessor.php'
2720
  ),
2721
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\RuleProcessorInterface' => array(
2722
- 'version' => '2.7.1.0-RC1',
2723
- 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/RuleProcessorInterface.php'
2724
  ),
2725
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\IsEcommerceRuleProcessor' => array(
2726
- 'version' => '2.7.1.0-RC1',
2727
- 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/IsEcommerceRuleProcessor.php'
2728
  ),
2729
- 'Automattic\\WooCommerce\\Admin\\WCAdminHelper' => array(
2730
- 'version' => '2.7.1.0-RC1',
2731
- 'path' => $baseDir . '/packages/woocommerce-admin/src/WCAdminHelper.php'
2732
  ),
2733
- 'Automattic\\WooCommerce\\Admin\\ReportExporter' => array(
2734
- 'version' => '2.7.1.0-RC1',
2735
- 'path' => $baseDir . '/packages/woocommerce-admin/src/ReportExporter.php'
2736
  ),
2737
- 'Automattic\\WooCommerce\\Admin\\Install' => array(
2738
- 'version' => '2.7.1.0-RC1',
2739
- 'path' => $baseDir . '/packages/woocommerce-admin/src/Install.php'
2740
  ),
2741
  'Automattic\\WooCommerce\\Checkout\\Helpers\\ReserveStockException' => array(
2742
- 'version' => '5.8.0.0-RC1',
2743
  'path' => $baseDir . '/src/Checkout/Helpers/ReserveStockException.php'
2744
  ),
2745
  'Automattic\\WooCommerce\\Checkout\\Helpers\\ReserveStock' => array(
2746
- 'version' => '5.8.0.0-RC1',
2747
  'path' => $baseDir . '/src/Checkout/Helpers/ReserveStock.php'
2748
  ),
2749
- 'Automattic\\WooCommerce\\Container' => array(
2750
- 'version' => '5.8.0.0-RC1',
2751
- 'path' => $baseDir . '/src/Container.php'
2752
- ),
2753
- 'Automattic\\WooCommerce\\Packages' => array(
2754
- 'version' => '5.8.0.0-RC1',
2755
- 'path' => $baseDir . '/src/Packages.php'
2756
  ),
2757
- 'Automattic\\WooCommerce\\Internal\\RestApiUtil' => array(
2758
- 'version' => '5.8.0.0-RC1',
2759
- 'path' => $baseDir . '/src/Internal/RestApiUtil.php'
2760
  ),
2761
- 'Automattic\\WooCommerce\\Internal\\WCCom\\ConnectionHelper' => array(
2762
- 'version' => '5.8.0.0-RC1',
2763
- 'path' => $baseDir . '/src/Internal/WCCom/ConnectionHelper.php'
2764
  ),
2765
- 'Automattic\\WooCommerce\\Internal\\AssignDefaultCategory' => array(
2766
- 'version' => '5.8.0.0-RC1',
2767
- 'path' => $baseDir . '/src/Internal/AssignDefaultCategory.php'
2768
  ),
2769
  'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\ProxiesServiceProvider' => array(
2770
- 'version' => '5.8.0.0-RC1',
2771
  'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/ProxiesServiceProvider.php'
2772
  ),
 
 
 
 
2773
  'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\RestockRefundedItemsAdjusterServiceProvider' => array(
2774
- 'version' => '5.8.0.0-RC1',
2775
  'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/RestockRefundedItemsAdjusterServiceProvider.php'
2776
  ),
2777
  'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\DownloadPermissionsAdjusterServiceProvider' => array(
2778
- 'version' => '5.8.0.0-RC1',
2779
  'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/DownloadPermissionsAdjusterServiceProvider.php'
2780
  ),
2781
- 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\AssignDefaultCategoryServiceProvider' => array(
2782
- 'version' => '5.8.0.0-RC1',
2783
- 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/AssignDefaultCategoryServiceProvider.php'
2784
- ),
2785
- 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\ProductAttributesLookupServiceProvider' => array(
2786
- 'version' => '5.8.0.0-RC1',
2787
- 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/ProductAttributesLookupServiceProvider.php'
2788
- ),
2789
- 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ContainerException' => array(
2790
- 'version' => '5.8.0.0-RC1',
2791
- 'path' => $baseDir . '/src/Internal/DependencyManagement/ContainerException.php'
2792
- ),
2793
  'Automattic\\WooCommerce\\Internal\\DependencyManagement\\Definition' => array(
2794
- 'version' => '5.8.0.0-RC1',
2795
  'path' => $baseDir . '/src/Internal/DependencyManagement/Definition.php'
2796
  ),
2797
- 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ExtendedContainer' => array(
2798
- 'version' => '5.8.0.0-RC1',
2799
- 'path' => $baseDir . '/src/Internal/DependencyManagement/ExtendedContainer.php'
2800
- ),
2801
- 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\AbstractServiceProvider' => array(
2802
- 'version' => '5.8.0.0-RC1',
2803
- 'path' => $baseDir . '/src/Internal/DependencyManagement/AbstractServiceProvider.php'
2804
- ),
2805
  'Automattic\\WooCommerce\\Internal\\DownloadPermissionsAdjuster' => array(
2806
- 'version' => '5.8.0.0-RC1',
2807
  'path' => $baseDir . '/src/Internal/DownloadPermissionsAdjuster.php'
2808
  ),
2809
  'Automattic\\WooCommerce\\Internal\\RestockRefundedItemsAdjuster' => array(
2810
- 'version' => '5.8.0.0-RC1',
2811
  'path' => $baseDir . '/src/Internal/RestockRefundedItemsAdjuster.php'
2812
  ),
2813
- 'Automattic\\WooCommerce\\Internal\\ProductAttributesLookup\\Filterer' => array(
2814
- 'version' => '5.8.0.0-RC1',
2815
- 'path' => $baseDir . '/src/Internal/ProductAttributesLookup/Filterer.php'
2816
  ),
2817
- 'Automattic\\WooCommerce\\Internal\\ProductAttributesLookup\\DataRegenerator' => array(
2818
- 'version' => '5.8.0.0-RC1',
2819
- 'path' => $baseDir . '/src/Internal/ProductAttributesLookup/DataRegenerator.php'
2820
  ),
2821
  'Automattic\\WooCommerce\\Internal\\ProductAttributesLookup\\LookupDataStore' => array(
2822
- 'version' => '5.8.0.0-RC1',
2823
  'path' => $baseDir . '/src/Internal/ProductAttributesLookup/LookupDataStore.php'
2824
  ),
2825
- 'Automattic\\WooCommerce\\Proxies\\LegacyProxy' => array(
2826
- 'version' => '5.8.0.0-RC1',
2827
- 'path' => $baseDir . '/src/Proxies/LegacyProxy.php'
2828
  ),
2829
- 'Automattic\\WooCommerce\\Proxies\\ActionsProxy' => array(
2830
- 'version' => '5.8.0.0-RC1',
2831
- 'path' => $baseDir . '/src/Proxies/ActionsProxy.php'
2832
  ),
2833
- 'Automattic\\WooCommerce\\Autoloader' => array(
2834
- 'version' => '5.8.0.0-RC1',
2835
- 'path' => $baseDir . '/src/Autoloader.php'
2836
  ),
2837
  'Automattic\\WooCommerce\\Utilities\\NumberUtil' => array(
2838
- 'version' => '5.8.0.0-RC1',
2839
  'path' => $baseDir . '/src/Utilities/NumberUtil.php'
2840
  ),
2841
  'Automattic\\WooCommerce\\Utilities\\StringUtil' => array(
2842
- 'version' => '5.8.0.0-RC1',
2843
  'path' => $baseDir . '/src/Utilities/StringUtil.php'
2844
  ),
2845
  'Automattic\\WooCommerce\\Utilities\\ArrayUtil' => array(
2846
- 'version' => '5.8.0.0-RC1',
2847
  'path' => $baseDir . '/src/Utilities/ArrayUtil.php'
2848
  ),
2849
- 'Automattic\\Jetpack\\Autoloader\\AutoloadGenerator' => array(
2850
- 'version' => '2.10.1.0',
2851
- 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/AutoloadGenerator.php'
2852
  ),
2853
- 'Automattic\\Jetpack\\Autoloader\\AutoloadFileWriter' => array(
2854
- 'version' => '2.10.1.0',
2855
- 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/AutoloadFileWriter.php'
 
 
 
 
2856
  ),
2857
  'Automattic\\Jetpack\\Autoloader\\ManifestGenerator' => array(
2858
  'version' => '2.10.1.0',
@@ -2862,436 +2854,444 @@ return array(
2862
  'version' => '2.10.1.0',
2863
  'path' => $vendorDir . '/automattic/jetpack-autoloader/src/CustomAutoloaderPlugin.php'
2864
  ),
 
 
 
 
 
 
 
 
2865
  'Automattic\\Jetpack\\Autoloader\\AutoloadProcessor' => array(
2866
  'version' => '2.10.1.0',
2867
  'path' => $vendorDir . '/automattic/jetpack-autoloader/src/AutoloadProcessor.php'
2868
  ),
2869
  'Automattic\\WooCommerce\\RestApi\\Package' => array(
2870
- 'version' => '5.8.0.0-RC1',
2871
  'path' => $baseDir . '/includes/rest-api/Package.php'
2872
  ),
2873
  'Automattic\\WooCommerce\\RestApi\\Server' => array(
2874
- 'version' => '5.8.0.0-RC1',
2875
  'path' => $baseDir . '/includes/rest-api/Server.php'
2876
  ),
2877
- 'WC_REST_Coupons_Controller' => array(
2878
- 'version' => '5.8.0.0-RC1',
2879
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-coupons-controller.php'
 
 
 
 
 
 
 
 
 
 
 
 
2880
  ),
2881
  'WC_REST_Orders_Controller' => array(
2882
- 'version' => '5.8.0.0-RC1',
2883
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-orders-controller.php'
2884
  ),
2885
- 'WC_REST_Shipping_Zones_Controller' => array(
2886
- 'version' => '5.8.0.0-RC1',
2887
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zones-controller.php'
2888
  ),
2889
- 'WC_REST_Product_Attribute_Terms_Controller' => array(
2890
- 'version' => '5.8.0.0-RC1',
2891
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-attribute-terms-controller.php'
2892
  ),
2893
- 'WC_REST_Product_Tags_Controller' => array(
2894
- 'version' => '5.8.0.0-RC1',
2895
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-tags-controller.php'
2896
  ),
2897
  'WC_REST_Product_Variations_Controller' => array(
2898
- 'version' => '5.8.0.0-RC1',
2899
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-variations-controller.php'
2900
  ),
2901
- 'WC_REST_Posts_Controller' => array(
2902
- 'version' => '5.8.0.0-RC1',
2903
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-posts-controller.php'
2904
- ),
2905
- 'WC_REST_Product_Categories_Controller' => array(
2906
- 'version' => '5.8.0.0-RC1',
2907
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-categories-controller.php'
2908
- ),
2909
- 'WC_REST_Terms_Controller' => array(
2910
- 'version' => '5.8.0.0-RC1',
2911
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-terms-controller.php'
2912
  ),
2913
- 'WC_REST_Data_Countries_Controller' => array(
2914
- 'version' => '5.8.0.0-RC1',
2915
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-data-countries-controller.php'
2916
  ),
2917
- 'WC_REST_Report_Orders_Totals_Controller' => array(
2918
- 'version' => '5.8.0.0-RC1',
2919
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-orders-totals-controller.php'
2920
  ),
2921
- 'WC_REST_Settings_Controller' => array(
2922
- 'version' => '5.8.0.0-RC1',
2923
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-settings-controller.php'
2924
  ),
2925
- 'WC_REST_Data_Currencies_Controller' => array(
2926
- 'version' => '5.8.0.0-RC1',
2927
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-data-currencies-controller.php'
2928
  ),
2929
- 'WC_REST_Report_Reviews_Totals_Controller' => array(
2930
- 'version' => '5.8.0.0-RC1',
2931
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-reviews-totals-controller.php'
2932
  ),
2933
- 'WC_REST_Products_Controller' => array(
2934
- 'version' => '5.8.0.0-RC1',
2935
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-products-controller.php'
2936
  ),
2937
- 'WC_REST_CRUD_Controller' => array(
2938
- 'version' => '5.8.0.0-RC1',
2939
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-crud-controller.php'
2940
  ),
2941
- 'WC_REST_System_Status_Tools_Controller' => array(
2942
- 'version' => '5.8.0.0-RC1',
2943
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-system-status-tools-controller.php'
2944
  ),
2945
- 'WC_REST_Order_Notes_Controller' => array(
2946
- 'version' => '5.8.0.0-RC1',
2947
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-order-notes-controller.php'
2948
  ),
2949
  'WC_REST_Report_Products_Totals_Controller' => array(
2950
- 'version' => '5.8.0.0-RC1',
2951
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-products-totals-controller.php'
2952
  ),
2953
- 'WC_REST_Customer_Downloads_Controller' => array(
2954
- 'version' => '5.8.0.0-RC1',
2955
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-customer-downloads-controller.php'
2956
- ),
2957
- 'WC_REST_Payment_Gateways_Controller' => array(
2958
- 'version' => '5.8.0.0-RC1',
2959
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-payment-gateways-controller.php'
2960
- ),
2961
- 'WC_REST_Shipping_Methods_Controller' => array(
2962
- 'version' => '5.8.0.0-RC1',
2963
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-methods-controller.php'
2964
- ),
2965
- 'WC_REST_Order_Refunds_Controller' => array(
2966
- 'version' => '5.8.0.0-RC1',
2967
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-order-refunds-controller.php'
2968
  ),
2969
- 'WC_REST_Customers_Controller' => array(
2970
- 'version' => '5.8.0.0-RC1',
2971
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-customers-controller.php'
2972
  ),
2973
- 'WC_REST_Shipping_Zone_Methods_Controller' => array(
2974
- 'version' => '5.8.0.0-RC1',
2975
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zone-methods-controller.php'
2976
  ),
2977
  'WC_REST_Taxes_Controller' => array(
2978
- 'version' => '5.8.0.0-RC1',
2979
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-taxes-controller.php'
2980
  ),
2981
- 'WC_REST_Report_Customers_Totals_Controller' => array(
2982
- 'version' => '5.8.0.0-RC1',
2983
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-customers-totals-controller.php'
2984
  ),
2985
  'WC_REST_Data_Controller' => array(
2986
- 'version' => '5.8.0.0-RC1',
2987
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-data-controller.php'
2988
  ),
2989
- 'WC_REST_Setting_Options_Controller' => array(
2990
- 'version' => '5.8.0.0-RC1',
2991
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-setting-options-controller.php'
2992
- ),
2993
- 'WC_REST_Report_Coupons_Totals_Controller' => array(
2994
- 'version' => '5.8.0.0-RC1',
2995
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-coupons-totals-controller.php'
2996
  ),
2997
- 'WC_REST_System_Status_Controller' => array(
2998
- 'version' => '5.8.0.0-RC1',
2999
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-system-status-controller.php'
3000
  ),
3001
  'WC_REST_Tax_Classes_Controller' => array(
3002
- 'version' => '5.8.0.0-RC1',
3003
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-tax-classes-controller.php'
3004
  ),
3005
- 'WC_REST_Controller' => array(
3006
- 'version' => '5.8.0.0-RC1',
3007
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-controller.php'
 
 
 
 
3008
  ),
3009
  'WC_REST_Webhooks_Controller' => array(
3010
- 'version' => '5.8.0.0-RC1',
3011
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-webhooks-controller.php'
3012
  ),
3013
- 'WC_REST_Product_Shipping_Classes_Controller' => array(
3014
- 'version' => '5.8.0.0-RC1',
3015
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-shipping-classes-controller.php'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3016
  ),
3017
  'WC_REST_Product_Reviews_Controller' => array(
3018
- 'version' => '5.8.0.0-RC1',
3019
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-reviews-controller.php'
3020
  ),
3021
  'WC_REST_Data_Continents_Controller' => array(
3022
- 'version' => '5.8.0.0-RC1',
3023
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-data-continents-controller.php'
3024
  ),
3025
- 'WC_REST_Reports_Controller' => array(
3026
- 'version' => '5.8.0.0-RC1',
3027
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-reports-controller.php'
3028
- ),
3029
- 'WC_REST_Shipping_Zones_Controller_Base' => array(
3030
- 'version' => '5.8.0.0-RC1',
3031
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zones-controller-base.php'
3032
  ),
3033
- 'WC_REST_Report_Top_Sellers_Controller' => array(
3034
- 'version' => '5.8.0.0-RC1',
3035
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-top-sellers-controller.php'
3036
  ),
3037
- 'WC_REST_Product_Attributes_Controller' => array(
3038
- 'version' => '5.8.0.0-RC1',
3039
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-attributes-controller.php'
3040
  ),
3041
- 'WC_REST_Report_Sales_Controller' => array(
3042
- 'version' => '5.8.0.0-RC1',
3043
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-sales-controller.php'
3044
  ),
3045
- 'WC_REST_Network_Orders_Controller' => array(
3046
- 'version' => '5.8.0.0-RC1',
3047
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-network-orders-controller.php'
3048
  ),
3049
- 'WC_REST_Shipping_Zone_Locations_Controller' => array(
3050
- 'version' => '5.8.0.0-RC1',
3051
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zone-locations-controller.php'
3052
  ),
3053
- 'WC_REST_Payment_Gateways_V2_Controller' => array(
3054
- 'version' => '5.8.0.0-RC1',
3055
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-payment-gateways-v2-controller.php'
3056
  ),
3057
- 'WC_REST_Product_Variations_V2_Controller' => array(
3058
- 'version' => '5.8.0.0-RC1',
3059
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-variations-v2-controller.php'
3060
  ),
3061
- 'WC_REST_Taxes_V2_Controller' => array(
3062
- 'version' => '5.8.0.0-RC1',
3063
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-taxes-v2-controller.php'
3064
  ),
3065
- 'WC_REST_Tax_Classes_V2_Controller' => array(
3066
- 'version' => '5.8.0.0-RC1',
3067
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-tax-classes-v2-controller.php'
3068
  ),
3069
  'WC_REST_Product_Reviews_V2_Controller' => array(
3070
- 'version' => '5.8.0.0-RC1',
3071
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-reviews-v2-controller.php'
3072
  ),
3073
- 'WC_REST_Report_Sales_V2_Controller' => array(
3074
- 'version' => '5.8.0.0-RC1',
3075
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-report-sales-v2-controller.php'
3076
  ),
3077
  'WC_REST_Order_Refunds_V2_Controller' => array(
3078
- 'version' => '5.8.0.0-RC1',
3079
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-order-refunds-v2-controller.php'
3080
  ),
3081
  'WC_REST_Coupons_V2_Controller' => array(
3082
- 'version' => '5.8.0.0-RC1',
3083
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-coupons-v2-controller.php'
3084
  ),
3085
- 'WC_REST_Shipping_Zones_V2_Controller' => array(
3086
- 'version' => '5.8.0.0-RC1',
3087
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-zones-v2-controller.php'
3088
  ),
3089
- 'WC_REST_Customer_Downloads_V2_Controller' => array(
3090
- 'version' => '5.8.0.0-RC1',
3091
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-customer-downloads-v2-controller.php'
3092
  ),
3093
- 'WC_REST_Product_Tags_V2_Controller' => array(
3094
- 'version' => '5.8.0.0-RC1',
3095
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-tags-v2-controller.php'
3096
  ),
3097
- 'WC_REST_System_Status_Tools_V2_Controller' => array(
3098
- 'version' => '5.8.0.0-RC1',
3099
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-system-status-tools-v2-controller.php'
3100
  ),
3101
  'WC_REST_Settings_V2_Controller' => array(
3102
- 'version' => '5.8.0.0-RC1',
3103
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-settings-v2-controller.php'
3104
  ),
3105
- 'WC_REST_Products_V2_Controller' => array(
3106
- 'version' => '5.8.0.0-RC1',
3107
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-products-v2-controller.php'
 
 
 
 
3108
  ),
3109
  'WC_REST_System_Status_V2_Controller' => array(
3110
- 'version' => '5.8.0.0-RC1',
3111
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-system-status-v2-controller.php'
3112
  ),
3113
- 'WC_REST_Product_Categories_V2_Controller' => array(
3114
- 'version' => '5.8.0.0-RC1',
3115
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-categories-v2-controller.php'
3116
  ),
3117
- 'WC_REST_Reports_V2_Controller' => array(
3118
- 'version' => '5.8.0.0-RC1',
3119
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-reports-v2-controller.php'
3120
  ),
3121
  'WC_REST_Network_Orders_V2_Controller' => array(
3122
- 'version' => '5.8.0.0-RC1',
3123
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-network-orders-v2-controller.php'
3124
  ),
3125
- 'WC_REST_Shipping_Zone_Methods_V2_Controller' => array(
3126
- 'version' => '5.8.0.0-RC1',
3127
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-zone-methods-v2-controller.php'
3128
- ),
3129
- 'WC_REST_Webhook_Deliveries_V2_Controller' => array(
3130
- 'version' => '5.8.0.0-RC1',
3131
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-webhook-deliveries-v2-controller.php'
3132
- ),
3133
- 'WC_REST_Webhooks_V2_Controller' => array(
3134
- 'version' => '5.8.0.0-RC1',
3135
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-webhooks-v2-controller.php'
3136
  ),
3137
- 'WC_REST_Customers_V2_Controller' => array(
3138
- 'version' => '5.8.0.0-RC1',
3139
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-customers-v2-controller.php'
3140
  ),
3141
- 'WC_REST_Orders_V2_Controller' => array(
3142
- 'version' => '5.8.0.0-RC1',
3143
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-orders-v2-controller.php'
3144
  ),
3145
  'WC_REST_Shipping_Methods_V2_Controller' => array(
3146
- 'version' => '5.8.0.0-RC1',
3147
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-methods-v2-controller.php'
3148
  ),
3149
- 'WC_REST_Shipping_Zone_Locations_V2_Controller' => array(
3150
- 'version' => '5.8.0.0-RC1',
3151
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-zone-locations-v2-controller.php'
3152
  ),
3153
- 'WC_REST_Order_Notes_V2_Controller' => array(
3154
- 'version' => '5.8.0.0-RC1',
3155
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-order-notes-v2-controller.php'
3156
  ),
3157
- 'WC_REST_Product_Attributes_V2_Controller' => array(
3158
- 'version' => '5.8.0.0-RC1',
3159
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-attributes-v2-controller.php'
3160
  ),
3161
- 'WC_REST_Product_Attribute_Terms_V2_Controller' => array(
3162
- 'version' => '5.8.0.0-RC1',
3163
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-attribute-terms-v2-controller.php'
3164
  ),
3165
- 'WC_REST_Report_Top_Sellers_V2_Controller' => array(
3166
- 'version' => '5.8.0.0-RC1',
3167
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-report-top-sellers-v2-controller.php'
3168
  ),
3169
- 'WC_REST_Product_Shipping_Classes_V2_Controller' => array(
3170
- 'version' => '5.8.0.0-RC1',
3171
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-shipping-classes-v2-controller.php'
3172
  ),
3173
- 'WC_REST_Setting_Options_V2_Controller' => array(
3174
- 'version' => '5.8.0.0-RC1',
3175
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-setting-options-v2-controller.php'
3176
  ),
3177
- 'WC_REST_Tax_Classes_V1_Controller' => array(
3178
- 'version' => '5.8.0.0-RC1',
3179
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-tax-classes-v1-controller.php'
 
 
 
 
 
 
 
 
3180
  ),
3181
  'WC_REST_Customer_Downloads_V1_Controller' => array(
3182
- 'version' => '5.8.0.0-RC1',
3183
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-customer-downloads-v1-controller.php'
3184
  ),
3185
- 'WC_REST_Product_Attributes_V1_Controller' => array(
3186
- 'version' => '5.8.0.0-RC1',
3187
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-attributes-v1-controller.php'
3188
- ),
3189
- 'WC_REST_Product_Shipping_Classes_V1_Controller' => array(
3190
- 'version' => '5.8.0.0-RC1',
3191
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-shipping-classes-v1-controller.php'
3192
  ),
3193
  'WC_REST_Order_Notes_V1_Controller' => array(
3194
- 'version' => '5.8.0.0-RC1',
3195
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-order-notes-v1-controller.php'
3196
  ),
 
 
 
 
3197
  'WC_REST_Products_V1_Controller' => array(
3198
- 'version' => '5.8.0.0-RC1',
3199
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-products-v1-controller.php'
3200
  ),
3201
- 'WC_REST_Order_Refunds_V1_Controller' => array(
3202
- 'version' => '5.8.0.0-RC1',
3203
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-order-refunds-v1-controller.php'
3204
- ),
3205
  'WC_REST_Product_Attribute_Terms_V1_Controller' => array(
3206
- 'version' => '5.8.0.0-RC1',
3207
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-attribute-terms-v1-controller.php'
3208
  ),
 
 
 
 
3209
  'WC_REST_Product_Tags_V1_Controller' => array(
3210
- 'version' => '5.8.0.0-RC1',
3211
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-tags-v1-controller.php'
3212
  ),
3213
- 'WC_REST_Product_Categories_V1_Controller' => array(
3214
- 'version' => '5.8.0.0-RC1',
3215
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-categories-v1-controller.php'
3216
- ),
3217
- 'WC_REST_Report_Top_Sellers_V1_Controller' => array(
3218
- 'version' => '5.8.0.0-RC1',
3219
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-report-top-sellers-v1-controller.php'
3220
- ),
3221
- 'WC_REST_Product_Reviews_V1_Controller' => array(
3222
- 'version' => '5.8.0.0-RC1',
3223
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-reviews-v1-controller.php'
3224
- ),
3225
- 'WC_REST_Coupons_V1_Controller' => array(
3226
- 'version' => '5.8.0.0-RC1',
3227
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-coupons-v1-controller.php'
3228
- ),
3229
- 'WC_REST_Report_Sales_V1_Controller' => array(
3230
- 'version' => '5.8.0.0-RC1',
3231
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-report-sales-v1-controller.php'
3232
- ),
3233
- 'WC_REST_Customers_V1_Controller' => array(
3234
- 'version' => '5.8.0.0-RC1',
3235
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-customers-v1-controller.php'
3236
- ),
3237
- 'WC_REST_Orders_V1_Controller' => array(
3238
- 'version' => '5.8.0.0-RC1',
3239
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-orders-v1-controller.php'
3240
- ),
3241
- 'WC_REST_Taxes_V1_Controller' => array(
3242
- 'version' => '5.8.0.0-RC1',
3243
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-taxes-v1-controller.php'
3244
  ),
3245
  'WC_REST_Reports_V1_Controller' => array(
3246
- 'version' => '5.8.0.0-RC1',
3247
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-reports-v1-controller.php'
3248
  ),
3249
- 'WC_REST_Webhook_Deliveries_V1_Controller' => array(
3250
- 'version' => '5.8.0.0-RC1',
3251
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-webhook-deliveries-v1-controller.php'
3252
- ),
3253
- 'WC_REST_Webhooks_V1_Controller' => array(
3254
- 'version' => '5.8.0.0-RC1',
3255
- 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-webhooks-v1-controller.php'
3256
  ),
3257
- 'Automattic\\WooCommerce\\RestApi\\Utilities\\SingletonTrait' => array(
3258
- 'version' => '5.8.0.0-RC1',
3259
- 'path' => $baseDir . '/includes/rest-api/Utilities/SingletonTrait.php'
3260
  ),
3261
- 'Automattic\\WooCommerce\\RestApi\\Utilities\\ImageAttachment' => array(
3262
- 'version' => '5.8.0.0-RC1',
3263
- 'path' => $baseDir . '/includes/rest-api/Utilities/ImageAttachment.php'
3264
  ),
3265
  'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\ProductHelper' => array(
3266
- 'version' => '5.8.0.0-RC1',
3267
  'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/ProductHelper.php'
3268
  ),
3269
  'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\CustomerHelper' => array(
3270
- 'version' => '5.8.0.0-RC1',
3271
  'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/CustomerHelper.php'
3272
  ),
 
 
 
 
3273
  'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\CouponHelper' => array(
3274
- 'version' => '5.8.0.0-RC1',
3275
  'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/CouponHelper.php'
3276
  ),
3277
  'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\SettingsHelper' => array(
3278
- 'version' => '5.8.0.0-RC1',
3279
  'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/SettingsHelper.php'
3280
  ),
3281
- 'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\OrderHelper' => array(
3282
- 'version' => '5.8.0.0-RC1',
3283
- 'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/OrderHelper.php'
3284
  ),
3285
  'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\AdminNotesHelper' => array(
3286
- 'version' => '5.8.0.0-RC1',
3287
  'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/AdminNotesHelper.php'
3288
  ),
3289
- 'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\QueueHelper' => array(
3290
- 'version' => '5.8.0.0-RC1',
3291
- 'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/QueueHelper.php'
3292
- ),
3293
  'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\ShippingHelper' => array(
3294
- 'version' => '5.8.0.0-RC1',
3295
  'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/ShippingHelper.php'
3296
  ),
3297
  'Automattic\\Jetpack\\Constants' => array(
6
  $baseDir = dirname($vendorDir);
7
 
8
  return array(
9
+ 'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\TokenizerPatterns' => array(
10
  'version' => '3.3.6.0',
11
+ 'path' => $vendorDir . '/symfony/css-selector/Parser/Tokenizer/TokenizerPatterns.php'
12
  ),
13
+ 'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\TokenizerEscaping' => array(
14
  'version' => '3.3.6.0',
15
+ 'path' => $vendorDir . '/symfony/css-selector/Parser/Tokenizer/TokenizerEscaping.php'
16
  ),
17
+ 'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\Tokenizer' => array(
18
  'version' => '3.3.6.0',
19
+ 'path' => $vendorDir . '/symfony/css-selector/Parser/Tokenizer/Tokenizer.php'
20
  ),
21
+ 'Symfony\\Component\\CssSelector\\Parser\\Parser' => array(
22
  'version' => '3.3.6.0',
23
+ 'path' => $vendorDir . '/symfony/css-selector/Parser/Parser.php'
24
  ),
25
+ 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\ClassParser' => array(
26
  'version' => '3.3.6.0',
27
+ 'path' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/ClassParser.php'
28
  ),
29
+ 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\ElementParser' => array(
30
  'version' => '3.3.6.0',
31
+ 'path' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/ElementParser.php'
32
  ),
33
+ 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\EmptyStringParser' => array(
34
  'version' => '3.3.6.0',
35
+ 'path' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/EmptyStringParser.php'
36
  ),
37
+ 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\HashParser' => array(
38
  'version' => '3.3.6.0',
39
+ 'path' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/HashParser.php'
40
  ),
41
+ 'Symfony\\Component\\CssSelector\\Parser\\ParserInterface' => array(
42
  'version' => '3.3.6.0',
43
+ 'path' => $vendorDir . '/symfony/css-selector/Parser/ParserInterface.php'
44
  ),
45
+ 'Symfony\\Component\\CssSelector\\Parser\\Reader' => array(
46
  'version' => '3.3.6.0',
47
+ 'path' => $vendorDir . '/symfony/css-selector/Parser/Reader.php'
48
  ),
49
+ 'Symfony\\Component\\CssSelector\\Parser\\Token' => array(
50
  'version' => '3.3.6.0',
51
+ 'path' => $vendorDir . '/symfony/css-selector/Parser/Token.php'
52
  ),
53
+ 'Symfony\\Component\\CssSelector\\Parser\\Handler\\HashHandler' => array(
54
  'version' => '3.3.6.0',
55
+ 'path' => $vendorDir . '/symfony/css-selector/Parser/Handler/HashHandler.php'
56
  ),
57
+ 'Symfony\\Component\\CssSelector\\Parser\\Handler\\StringHandler' => array(
58
  'version' => '3.3.6.0',
59
+ 'path' => $vendorDir . '/symfony/css-selector/Parser/Handler/StringHandler.php'
60
  ),
61
+ 'Symfony\\Component\\CssSelector\\Parser\\Handler\\NumberHandler' => array(
62
  'version' => '3.3.6.0',
63
+ 'path' => $vendorDir . '/symfony/css-selector/Parser/Handler/NumberHandler.php'
64
  ),
65
+ 'Symfony\\Component\\CssSelector\\Parser\\Handler\\CommentHandler' => array(
66
  'version' => '3.3.6.0',
67
+ 'path' => $vendorDir . '/symfony/css-selector/Parser/Handler/CommentHandler.php'
68
  ),
69
+ 'Symfony\\Component\\CssSelector\\Parser\\Handler\\IdentifierHandler' => array(
70
  'version' => '3.3.6.0',
71
+ 'path' => $vendorDir . '/symfony/css-selector/Parser/Handler/IdentifierHandler.php'
72
  ),
73
+ 'Symfony\\Component\\CssSelector\\Parser\\Handler\\HandlerInterface' => array(
74
  'version' => '3.3.6.0',
75
+ 'path' => $vendorDir . '/symfony/css-selector/Parser/Handler/HandlerInterface.php'
76
  ),
77
+ 'Symfony\\Component\\CssSelector\\Parser\\Handler\\WhitespaceHandler' => array(
78
  'version' => '3.3.6.0',
79
+ 'path' => $vendorDir . '/symfony/css-selector/Parser/Handler/WhitespaceHandler.php'
80
  ),
81
+ 'Symfony\\Component\\CssSelector\\Parser\\TokenStream' => array(
82
  'version' => '3.3.6.0',
83
+ 'path' => $vendorDir . '/symfony/css-selector/Parser/TokenStream.php'
84
  ),
85
+ 'Symfony\\Component\\CssSelector\\Exception\\ExceptionInterface' => array(
86
  'version' => '3.3.6.0',
87
+ 'path' => $vendorDir . '/symfony/css-selector/Exception/ExceptionInterface.php'
88
  ),
89
+ 'Symfony\\Component\\CssSelector\\Exception\\ParseException' => array(
90
  'version' => '3.3.6.0',
91
+ 'path' => $vendorDir . '/symfony/css-selector/Exception/ParseException.php'
92
  ),
93
+ 'Symfony\\Component\\CssSelector\\Exception\\ExpressionErrorException' => array(
94
  'version' => '3.3.6.0',
95
+ 'path' => $vendorDir . '/symfony/css-selector/Exception/ExpressionErrorException.php'
96
  ),
97
+ 'Symfony\\Component\\CssSelector\\Exception\\InternalErrorException' => array(
98
  'version' => '3.3.6.0',
99
+ 'path' => $vendorDir . '/symfony/css-selector/Exception/InternalErrorException.php'
100
  ),
101
+ 'Symfony\\Component\\CssSelector\\Exception\\SyntaxErrorException' => array(
102
  'version' => '3.3.6.0',
103
+ 'path' => $vendorDir . '/symfony/css-selector/Exception/SyntaxErrorException.php'
104
  ),
105
+ 'Symfony\\Component\\CssSelector\\CssSelectorConverter' => array(
106
  'version' => '3.3.6.0',
107
+ 'path' => $vendorDir . '/symfony/css-selector/CssSelectorConverter.php'
108
  ),
109
+ 'Symfony\\Component\\CssSelector\\Tests\\Parser\\ReaderTest' => array(
110
  'version' => '3.3.6.0',
111
+ 'path' => $vendorDir . '/symfony/css-selector/Tests/Parser/ReaderTest.php'
112
  ),
113
+ 'Symfony\\Component\\CssSelector\\Tests\\Parser\\Shortcut\\EmptyStringParserTest' => array(
114
  'version' => '3.3.6.0',
115
+ 'path' => $vendorDir . '/symfony/css-selector/Tests/Parser/Shortcut/EmptyStringParserTest.php'
116
  ),
117
+ 'Symfony\\Component\\CssSelector\\Tests\\Parser\\Shortcut\\HashParserTest' => array(
118
  'version' => '3.3.6.0',
119
+ 'path' => $vendorDir . '/symfony/css-selector/Tests/Parser/Shortcut/HashParserTest.php'
120
  ),
121
+ 'Symfony\\Component\\CssSelector\\Tests\\Parser\\Shortcut\\ElementParserTest' => array(
122
  'version' => '3.3.6.0',
123
+ 'path' => $vendorDir . '/symfony/css-selector/Tests/Parser/Shortcut/ElementParserTest.php'
124
  ),
125
+ 'Symfony\\Component\\CssSelector\\Tests\\Parser\\Shortcut\\ClassParserTest' => array(
126
  'version' => '3.3.6.0',
127
+ 'path' => $vendorDir . '/symfony/css-selector/Tests/Parser/Shortcut/ClassParserTest.php'
128
  ),
129
+ 'Symfony\\Component\\CssSelector\\Tests\\Parser\\ParserTest' => array(
130
  'version' => '3.3.6.0',
131
+ 'path' => $vendorDir . '/symfony/css-selector/Tests/Parser/ParserTest.php'
132
  ),
133
+ 'Symfony\\Component\\CssSelector\\Tests\\Parser\\Handler\\WhitespaceHandlerTest' => array(
134
  'version' => '3.3.6.0',
135
+ 'path' => $vendorDir . '/symfony/css-selector/Tests/Parser/Handler/WhitespaceHandlerTest.php'
136
  ),
137
+ 'Symfony\\Component\\CssSelector\\Tests\\Parser\\Handler\\IdentifierHandlerTest' => array(
138
  'version' => '3.3.6.0',
139
+ 'path' => $vendorDir . '/symfony/css-selector/Tests/Parser/Handler/IdentifierHandlerTest.php'
140
  ),
141
+ 'Symfony\\Component\\CssSelector\\Tests\\Parser\\Handler\\CommentHandlerTest' => array(
142
  'version' => '3.3.6.0',
143
+ 'path' => $vendorDir . '/symfony/css-selector/Tests/Parser/Handler/CommentHandlerTest.php'
144
  ),
145
+ 'Symfony\\Component\\CssSelector\\Tests\\Parser\\Handler\\HashHandlerTest' => array(
146
  'version' => '3.3.6.0',
147
+ 'path' => $vendorDir . '/symfony/css-selector/Tests/Parser/Handler/HashHandlerTest.php'
148
  ),
149
+ 'Symfony\\Component\\CssSelector\\Tests\\Parser\\Handler\\AbstractHandlerTest' => array(
150
  'version' => '3.3.6.0',
151
+ 'path' => $vendorDir . '/symfony/css-selector/Tests/Parser/Handler/AbstractHandlerTest.php'
152
  ),
153
+ 'Symfony\\Component\\CssSelector\\Tests\\Parser\\Handler\\StringHandlerTest' => array(
154
  'version' => '3.3.6.0',
155
+ 'path' => $vendorDir . '/symfony/css-selector/Tests/Parser/Handler/StringHandlerTest.php'
156
  ),
157
+ 'Symfony\\Component\\CssSelector\\Tests\\Parser\\Handler\\NumberHandlerTest' => array(
158
  'version' => '3.3.6.0',
159
+ 'path' => $vendorDir . '/symfony/css-selector/Tests/Parser/Handler/NumberHandlerTest.php'
160
  ),
161
+ 'Symfony\\Component\\CssSelector\\Tests\\Parser\\TokenStreamTest' => array(
162
  'version' => '3.3.6.0',
163
+ 'path' => $vendorDir . '/symfony/css-selector/Tests/Parser/TokenStreamTest.php'
164
  ),
165
+ 'Symfony\\Component\\CssSelector\\Tests\\Node\\FunctionNodeTest' => array(
166
  'version' => '3.3.6.0',
167
+ 'path' => $vendorDir . '/symfony/css-selector/Tests/Node/FunctionNodeTest.php'
168
  ),
169
+ 'Symfony\\Component\\CssSelector\\Tests\\Node\\AbstractNodeTest' => array(
170
  'version' => '3.3.6.0',
171
+ 'path' => $vendorDir . '/symfony/css-selector/Tests/Node/AbstractNodeTest.php'
172
  ),
173
+ 'Symfony\\Component\\CssSelector\\Tests\\Node\\NegationNodeTest' => array(
174
  'version' => '3.3.6.0',
175
+ 'path' => $vendorDir . '/symfony/css-selector/Tests/Node/NegationNodeTest.php'
176
  ),
177
+ 'Symfony\\Component\\CssSelector\\Tests\\Node\\PseudoNodeTest' => array(
178
  'version' => '3.3.6.0',
179
+ 'path' => $vendorDir . '/symfony/css-selector/Tests/Node/PseudoNodeTest.php'
180
  ),
181
+ 'Symfony\\Component\\CssSelector\\Tests\\Node\\AttributeNodeTest' => array(
182
  'version' => '3.3.6.0',
183
+ 'path' => $vendorDir . '/symfony/css-selector/Tests/Node/AttributeNodeTest.php'
184
  ),
185
+ 'Symfony\\Component\\CssSelector\\Tests\\Node\\ElementNodeTest' => array(
186
  'version' => '3.3.6.0',
187
+ 'path' => $vendorDir . '/symfony/css-selector/Tests/Node/ElementNodeTest.php'
188
  ),
189
+ 'Symfony\\Component\\CssSelector\\Tests\\Node\\CombinedSelectorNodeTest' => array(
190
  'version' => '3.3.6.0',
191
+ 'path' => $vendorDir . '/symfony/css-selector/Tests/Node/CombinedSelectorNodeTest.php'
192
  ),
193
+ 'Symfony\\Component\\CssSelector\\Tests\\Node\\SelectorNodeTest' => array(
194
  'version' => '3.3.6.0',
195
+ 'path' => $vendorDir . '/symfony/css-selector/Tests/Node/SelectorNodeTest.php'
196
  ),
197
+ 'Symfony\\Component\\CssSelector\\Tests\\Node\\HashNodeTest' => array(
198
  'version' => '3.3.6.0',
199
+ 'path' => $vendorDir . '/symfony/css-selector/Tests/Node/HashNodeTest.php'
200
  ),
201
+ 'Symfony\\Component\\CssSelector\\Tests\\Node\\SpecificityTest' => array(
202
  'version' => '3.3.6.0',
203
+ 'path' => $vendorDir . '/symfony/css-selector/Tests/Node/SpecificityTest.php'
204
  ),
205
+ 'Symfony\\Component\\CssSelector\\Tests\\Node\\ClassNodeTest' => array(
206
  'version' => '3.3.6.0',
207
+ 'path' => $vendorDir . '/symfony/css-selector/Tests/Node/ClassNodeTest.php'
208
  ),
209
+ 'Symfony\\Component\\CssSelector\\Tests\\CssSelectorConverterTest' => array(
210
  'version' => '3.3.6.0',
211
+ 'path' => $vendorDir . '/symfony/css-selector/Tests/CssSelectorConverterTest.php'
212
+ ),
213
+ 'Symfony\\Component\\CssSelector\\Tests\\XPath\\TranslatorTest' => array(
214
+ 'version' => '3.3.6.0',
215
+ 'path' => $vendorDir . '/symfony/css-selector/Tests/XPath/TranslatorTest.php'
216
  ),
217
  'Symfony\\Component\\CssSelector\\Node\\CombinedSelectorNode' => array(
218
  'version' => '3.3.6.0',
219
  'path' => $vendorDir . '/symfony/css-selector/Node/CombinedSelectorNode.php'
220
  ),
221
+ 'Symfony\\Component\\CssSelector\\Node\\FunctionNode' => array(
222
+ 'version' => '3.3.6.0',
223
+ 'path' => $vendorDir . '/symfony/css-selector/Node/FunctionNode.php'
224
+ ),
225
+ 'Symfony\\Component\\CssSelector\\Node\\PseudoNode' => array(
226
+ 'version' => '3.3.6.0',
227
+ 'path' => $vendorDir . '/symfony/css-selector/Node/PseudoNode.php'
228
+ ),
229
+ 'Symfony\\Component\\CssSelector\\Node\\Specificity' => array(
230
+ 'version' => '3.3.6.0',
231
+ 'path' => $vendorDir . '/symfony/css-selector/Node/Specificity.php'
232
+ ),
233
+ 'Symfony\\Component\\CssSelector\\Node\\NodeInterface' => array(
234
+ 'version' => '3.3.6.0',
235
+ 'path' => $vendorDir . '/symfony/css-selector/Node/NodeInterface.php'
236
+ ),
237
+ 'Symfony\\Component\\CssSelector\\Node\\NegationNode' => array(
238
+ 'version' => '3.3.6.0',
239
+ 'path' => $vendorDir . '/symfony/css-selector/Node/NegationNode.php'
240
+ ),
241
  'Symfony\\Component\\CssSelector\\Node\\AttributeNode' => array(
242
  'version' => '3.3.6.0',
243
  'path' => $vendorDir . '/symfony/css-selector/Node/AttributeNode.php'
250
  'version' => '3.3.6.0',
251
  'path' => $vendorDir . '/symfony/css-selector/Node/HashNode.php'
252
  ),
253
+ 'Symfony\\Component\\CssSelector\\Node\\ElementNode' => array(
254
  'version' => '3.3.6.0',
255
+ 'path' => $vendorDir . '/symfony/css-selector/Node/ElementNode.php'
256
  ),
257
  'Symfony\\Component\\CssSelector\\Node\\AbstractNode' => array(
258
  'version' => '3.3.6.0',
259
  'path' => $vendorDir . '/symfony/css-selector/Node/AbstractNode.php'
260
  ),
261
+ 'Symfony\\Component\\CssSelector\\Node\\SelectorNode' => array(
262
  'version' => '3.3.6.0',
263
+ 'path' => $vendorDir . '/symfony/css-selector/Node/SelectorNode.php'
264
  ),
265
+ 'Symfony\\Component\\CssSelector\\XPath\\Extension\\CombinationExtension' => array(
266
  'version' => '3.3.6.0',
267
+ 'path' => $vendorDir . '/symfony/css-selector/XPath/Extension/CombinationExtension.php'
268
  ),
269
+ 'Symfony\\Component\\CssSelector\\XPath\\Extension\\PseudoClassExtension' => array(
270
  'version' => '3.3.6.0',
271
+ 'path' => $vendorDir . '/symfony/css-selector/XPath/Extension/PseudoClassExtension.php'
272
  ),
273
+ 'Symfony\\Component\\CssSelector\\XPath\\Extension\\HtmlExtension' => array(
274
  'version' => '3.3.6.0',
275
+ 'path' => $vendorDir . '/symfony/css-selector/XPath/Extension/HtmlExtension.php'
276
  ),
277
+ 'Symfony\\Component\\CssSelector\\XPath\\Extension\\ExtensionInterface' => array(
278
  'version' => '3.3.6.0',
279
+ 'path' => $vendorDir . '/symfony/css-selector/XPath/Extension/ExtensionInterface.php'
280
  ),
281
+ 'Symfony\\Component\\CssSelector\\XPath\\Extension\\AttributeMatchingExtension' => array(
282
  'version' => '3.3.6.0',
283
+ 'path' => $vendorDir . '/symfony/css-selector/XPath/Extension/AttributeMatchingExtension.php'
284
  ),
285
+ 'Symfony\\Component\\CssSelector\\XPath\\Extension\\FunctionExtension' => array(
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
286
  'version' => '3.3.6.0',
287
+ 'path' => $vendorDir . '/symfony/css-selector/XPath/Extension/FunctionExtension.php'
288
  ),
289
  'Symfony\\Component\\CssSelector\\XPath\\Extension\\AbstractExtension' => array(
290
  'version' => '3.3.6.0',
291
  'path' => $vendorDir . '/symfony/css-selector/XPath/Extension/AbstractExtension.php'
292
  ),
293
+ 'Symfony\\Component\\CssSelector\\XPath\\Extension\\NodeExtension' => array(
294
  'version' => '3.3.6.0',
295
+ 'path' => $vendorDir . '/symfony/css-selector/XPath/Extension/NodeExtension.php'
296
  ),
297
+ 'Symfony\\Component\\CssSelector\\XPath\\TranslatorInterface' => array(
298
  'version' => '3.3.6.0',
299
+ 'path' => $vendorDir . '/symfony/css-selector/XPath/TranslatorInterface.php'
300
  ),
301
  'Symfony\\Component\\CssSelector\\XPath\\Translator' => array(
302
  'version' => '3.3.6.0',
303
  'path' => $vendorDir . '/symfony/css-selector/XPath/Translator.php'
304
  ),
 
 
 
 
305
  'Symfony\\Component\\CssSelector\\XPath\\XPathExpr' => array(
306
  'version' => '3.3.6.0',
307
  'path' => $vendorDir . '/symfony/css-selector/XPath/XPathExpr.php'
308
  ),
 
 
 
 
 
 
 
 
309
  'Psr\\Container\\ContainerExceptionInterface' => array(
310
  'version' => '1.0.0.0',
311
  'path' => $vendorDir . '/psr/container/src/ContainerExceptionInterface.php'
314
  'version' => '1.0.0.0',
315
  'path' => $vendorDir . '/psr/container/src/NotFoundExceptionInterface.php'
316
  ),
317
+ 'Psr\\Container\\ContainerInterface' => array(
318
+ 'version' => '1.0.0.0',
319
+ 'path' => $vendorDir . '/psr/container/src/ContainerInterface.php'
320
  ),
321
+ 'Pelago\\Emogrifier\\HtmlProcessor\\AbstractHtmlProcessor' => array(
322
  'version' => '3.1.0.0',
323
+ 'path' => $vendorDir . '/pelago/emogrifier/src/Emogrifier/HtmlProcessor/AbstractHtmlProcessor.php'
324
  ),
325
  'Pelago\\Emogrifier\\HtmlProcessor\\CssToAttributeConverter' => array(
326
  'version' => '3.1.0.0',
327
  'path' => $vendorDir . '/pelago/emogrifier/src/Emogrifier/HtmlProcessor/CssToAttributeConverter.php'
328
  ),
 
 
 
 
329
  'Pelago\\Emogrifier\\HtmlProcessor\\HtmlNormalizer' => array(
330
  'version' => '3.1.0.0',
331
  'path' => $vendorDir . '/pelago/emogrifier/src/Emogrifier/HtmlProcessor/HtmlNormalizer.php'
332
  ),
333
+ 'Pelago\\Emogrifier\\HtmlProcessor\\HtmlPruner' => array(
334
+ 'version' => '3.1.0.0',
335
+ 'path' => $vendorDir . '/pelago/emogrifier/src/Emogrifier/HtmlProcessor/HtmlPruner.php'
336
+ ),
337
  'Pelago\\Emogrifier\\Utilities\\ArrayIntersector' => array(
338
  'version' => '3.1.0.0',
339
  'path' => $vendorDir . '/pelago/emogrifier/src/Emogrifier/Utilities/ArrayIntersector.php'
346
  'version' => '3.1.0.0',
347
  'path' => $vendorDir . '/pelago/emogrifier/src/Emogrifier/CssInliner.php'
348
  ),
349
+ 'Pelago\\Emogrifier' => array(
350
+ 'version' => '3.1.0.0',
351
+ 'path' => $vendorDir . '/pelago/emogrifier/src/Emogrifier.php'
352
+ ),
353
  'MaxMind\\Db\\Reader\\InvalidDatabaseException' => array(
354
  'version' => '1.6.0.0',
355
  'path' => $vendorDir . '/maxmind-db/reader/src/MaxMind/Db/Reader/InvalidDatabaseException.php'
356
  ),
357
+ 'MaxMind\\Db\\Reader\\Decoder' => array(
358
+ 'version' => '1.6.0.0',
359
+ 'path' => $vendorDir . '/maxmind-db/reader/src/MaxMind/Db/Reader/Decoder.php'
360
+ ),
361
  'MaxMind\\Db\\Reader\\Util' => array(
362
  'version' => '1.6.0.0',
363
  'path' => $vendorDir . '/maxmind-db/reader/src/MaxMind/Db/Reader/Util.php'
366
  'version' => '1.6.0.0',
367
  'path' => $vendorDir . '/maxmind-db/reader/src/MaxMind/Db/Reader/Metadata.php'
368
  ),
 
 
 
 
369
  'MaxMind\\Db\\Reader' => array(
370
  'version' => '1.6.0.0',
371
  'path' => $vendorDir . '/maxmind-db/reader/src/MaxMind/Db/Reader.php'
372
  ),
373
+ 'Composer\\Installers\\ProcessWireInstaller' => array(
374
  'version' => '1.12.0.0',
375
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ProcessWireInstaller.php'
376
  ),
377
+ 'Composer\\Installers\\RoundcubeInstaller' => array(
378
  'version' => '1.12.0.0',
379
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/RoundcubeInstaller.php'
380
  ),
381
+ 'Composer\\Installers\\LithiumInstaller' => array(
382
  'version' => '1.12.0.0',
383
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/LithiumInstaller.php'
384
  ),
385
+ 'Composer\\Installers\\TuskInstaller' => array(
386
  'version' => '1.12.0.0',
387
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TuskInstaller.php'
388
  ),
389
+ 'Composer\\Installers\\MediaWikiInstaller' => array(
390
  'version' => '1.12.0.0',
391
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MediaWikiInstaller.php'
392
  ),
393
+ 'Composer\\Installers\\DokuWikiInstaller' => array(
394
  'version' => '1.12.0.0',
395
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/DokuWikiInstaller.php'
396
  ),
397
+ 'Composer\\Installers\\MayaInstaller' => array(
398
  'version' => '1.12.0.0',
399
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MayaInstaller.php'
400
  ),
401
+ 'Composer\\Installers\\OctoberInstaller' => array(
402
  'version' => '1.12.0.0',
403
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/OctoberInstaller.php'
404
  ),
405
+ 'Composer\\Installers\\SilverStripeInstaller' => array(
406
  'version' => '1.12.0.0',
407
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/SilverStripeInstaller.php'
408
  ),
409
+ 'Composer\\Installers\\PortoInstaller' => array(
410
  'version' => '1.12.0.0',
411
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PortoInstaller.php'
412
  ),
413
+ 'Composer\\Installers\\SyliusInstaller' => array(
414
  'version' => '1.12.0.0',
415
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/SyliusInstaller.php'
416
  ),
417
+ 'Composer\\Installers\\WHMCSInstaller' => array(
418
  'version' => '1.12.0.0',
419
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/WHMCSInstaller.php'
420
  ),
421
+ 'Composer\\Installers\\OntoWikiInstaller' => array(
422
  'version' => '1.12.0.0',
423
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/OntoWikiInstaller.php'
424
  ),
425
+ 'Composer\\Installers\\ElggInstaller' => array(
426
  'version' => '1.12.0.0',
427
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ElggInstaller.php'
428
  ),
429
+ 'Composer\\Installers\\Concrete5Installer' => array(
430
  'version' => '1.12.0.0',
431
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/Concrete5Installer.php'
432
  ),
433
+ 'Composer\\Installers\\Installer' => array(
434
  'version' => '1.12.0.0',
435
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/Installer.php'
436
  ),
437
+ 'Composer\\Installers\\TastyIgniterInstaller' => array(
438
  'version' => '1.12.0.0',
439
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TastyIgniterInstaller.php'
440
  ),
441
+ 'Composer\\Installers\\EzPlatformInstaller' => array(
442
  'version' => '1.12.0.0',
443
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/EzPlatformInstaller.php'
444
  ),
445
+ 'Composer\\Installers\\PiwikInstaller' => array(
446
  'version' => '1.12.0.0',
447
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PiwikInstaller.php'
448
  ),
449
+ 'Composer\\Installers\\OsclassInstaller' => array(
450
  'version' => '1.12.0.0',
451
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/OsclassInstaller.php'
452
  ),
453
+ 'Composer\\Installers\\CockpitInstaller' => array(
454
  'version' => '1.12.0.0',
455
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CockpitInstaller.php'
456
  ),
457
+ 'Composer\\Installers\\BaseInstaller' => array(
458
  'version' => '1.12.0.0',
459
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/BaseInstaller.php'
460
  ),
461
+ 'Composer\\Installers\\FuelphpInstaller' => array(
462
  'version' => '1.12.0.0',
463
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/FuelphpInstaller.php'
464
  ),
465
+ 'Composer\\Installers\\YawikInstaller' => array(
466
  'version' => '1.12.0.0',
467
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/YawikInstaller.php'
468
  ),
469
+ 'Composer\\Installers\\AimeosInstaller' => array(
470
  'version' => '1.12.0.0',
471
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/AimeosInstaller.php'
472
  ),
473
+ 'Composer\\Installers\\TheliaInstaller' => array(
474
  'version' => '1.12.0.0',
475
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TheliaInstaller.php'
476
  ),
477
+ 'Composer\\Installers\\OxidInstaller' => array(
478
  'version' => '1.12.0.0',
479
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/OxidInstaller.php'
480
  ),
481
+ 'Composer\\Installers\\MODXEvoInstaller' => array(
482
  'version' => '1.12.0.0',
483
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MODXEvoInstaller.php'
484
  ),
485
+ 'Composer\\Installers\\FuelInstaller' => array(
486
  'version' => '1.12.0.0',
487
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/FuelInstaller.php'
488
  ),
489
+ 'Composer\\Installers\\Redaxo5Installer' => array(
490
  'version' => '1.12.0.0',
491
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/Redaxo5Installer.php'
492
  ),
493
+ 'Composer\\Installers\\DframeInstaller' => array(
494
  'version' => '1.12.0.0',
495
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/DframeInstaller.php'
496
  ),
497
+ 'Composer\\Installers\\SMFInstaller' => array(
498
  'version' => '1.12.0.0',
499
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/SMFInstaller.php'
500
  ),
501
+ 'Composer\\Installers\\DecibelInstaller' => array(
502
  'version' => '1.12.0.0',
503
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/DecibelInstaller.php'
504
  ),
505
+ 'Composer\\Installers\\MiaoxingInstaller' => array(
506
  'version' => '1.12.0.0',
507
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MiaoxingInstaller.php'
508
  ),
509
+ 'Composer\\Installers\\WordPressInstaller' => array(
510
  'version' => '1.12.0.0',
511
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/WordPressInstaller.php'
512
  ),
513
+ 'Composer\\Installers\\MODULEWorkInstaller' => array(
514
  'version' => '1.12.0.0',
515
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php'
516
  ),
517
+ 'Composer\\Installers\\PrestashopInstaller' => array(
518
  'version' => '1.12.0.0',
519
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PrestashopInstaller.php'
520
  ),
521
+ 'Composer\\Installers\\ZendInstaller' => array(
522
  'version' => '1.12.0.0',
523
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ZendInstaller.php'
524
  ),
525
  'Composer\\Installers\\ChefInstaller' => array(
526
  'version' => '1.12.0.0',
527
  'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ChefInstaller.php'
528
  ),
529
+ 'Composer\\Installers\\WolfCMSInstaller' => array(
 
 
 
 
530
  'version' => '1.12.0.0',
531
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/WolfCMSInstaller.php'
532
  ),
533
+ 'Composer\\Installers\\PimcoreInstaller' => array(
534
  'version' => '1.12.0.0',
535
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PimcoreInstaller.php'
536
  ),
537
  'Composer\\Installers\\SiteDirectInstaller' => array(
538
  'version' => '1.12.0.0',
539
  'path' => $vendorDir . '/composer/installers/src/Composer/Installers/SiteDirectInstaller.php'
540
  ),
541
+ 'Composer\\Installers\\DolibarrInstaller' => array(
542
  'version' => '1.12.0.0',
543
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/DolibarrInstaller.php'
544
  ),
545
+ 'Composer\\Installers\\PantheonInstaller' => array(
546
  'version' => '1.12.0.0',
547
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PantheonInstaller.php'
548
  ),
549
+ 'Composer\\Installers\\UserFrostingInstaller' => array(
550
  'version' => '1.12.0.0',
551
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/UserFrostingInstaller.php'
552
  ),
553
+ 'Composer\\Installers\\RadPHPInstaller' => array(
554
  'version' => '1.12.0.0',
555
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/RadPHPInstaller.php'
556
  ),
557
+ 'Composer\\Installers\\Symfony1Installer' => array(
558
  'version' => '1.12.0.0',
559
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/Symfony1Installer.php'
560
  ),
561
+ 'Composer\\Installers\\PuppetInstaller' => array(
562
  'version' => '1.12.0.0',
563
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PuppetInstaller.php'
564
  ),
565
+ 'Composer\\Installers\\EliasisInstaller' => array(
566
  'version' => '1.12.0.0',
567
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/EliasisInstaller.php'
568
  ),
569
+ 'Composer\\Installers\\MantisBTInstaller' => array(
570
  'version' => '1.12.0.0',
571
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MantisBTInstaller.php'
572
  ),
573
+ 'Composer\\Installers\\ClanCatsFrameworkInstaller' => array(
574
  'version' => '1.12.0.0',
575
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php'
576
  ),
577
  'Composer\\Installers\\KodiCMSInstaller' => array(
578
  'version' => '1.12.0.0',
579
  'path' => $vendorDir . '/composer/installers/src/Composer/Installers/KodiCMSInstaller.php'
580
  ),
581
+ 'Composer\\Installers\\MoodleInstaller' => array(
 
 
 
 
 
 
 
 
 
 
 
 
582
  'version' => '1.12.0.0',
583
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MoodleInstaller.php'
584
  ),
585
+ 'Composer\\Installers\\ModxInstaller' => array(
586
  'version' => '1.12.0.0',
587
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ModxInstaller.php'
588
  ),
589
+ 'Composer\\Installers\\PlentymarketsInstaller' => array(
590
  'version' => '1.12.0.0',
591
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php'
592
  ),
593
+ 'Composer\\Installers\\RedaxoInstaller' => array(
594
  'version' => '1.12.0.0',
595
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/RedaxoInstaller.php'
596
  ),
597
+ 'Composer\\Installers\\StarbugInstaller' => array(
598
  'version' => '1.12.0.0',
599
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/StarbugInstaller.php'
600
  ),
601
+ 'Composer\\Installers\\BonefishInstaller' => array(
602
  'version' => '1.12.0.0',
603
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/BonefishInstaller.php'
604
  ),
605
+ 'Composer\\Installers\\GravInstaller' => array(
606
  'version' => '1.12.0.0',
607
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/GravInstaller.php'
608
  ),
609
+ 'Composer\\Installers\\Plugin' => array(
610
  'version' => '1.12.0.0',
611
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/Plugin.php'
612
  ),
613
+ 'Composer\\Installers\\ShopwareInstaller' => array(
614
  'version' => '1.12.0.0',
615
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ShopwareInstaller.php'
616
  ),
617
+ 'Composer\\Installers\\SyDESInstaller' => array(
618
  'version' => '1.12.0.0',
619
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/SyDESInstaller.php'
620
  ),
621
  'Composer\\Installers\\MauticInstaller' => array(
622
  'version' => '1.12.0.0',
623
  'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MauticInstaller.php'
624
  ),
625
+ 'Composer\\Installers\\TaoInstaller' => array(
626
  'version' => '1.12.0.0',
627
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TaoInstaller.php'
628
  ),
629
+ 'Composer\\Installers\\PhpBBInstaller' => array(
630
  'version' => '1.12.0.0',
631
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PhpBBInstaller.php'
632
  ),
633
+ 'Composer\\Installers\\KirbyInstaller' => array(
634
  'version' => '1.12.0.0',
635
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/KirbyInstaller.php'
636
  ),
637
+ 'Composer\\Installers\\BitrixInstaller' => array(
638
  'version' => '1.12.0.0',
639
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/BitrixInstaller.php'
640
  ),
641
+ 'Composer\\Installers\\VgmcpInstaller' => array(
642
  'version' => '1.12.0.0',
643
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/VgmcpInstaller.php'
644
  ),
645
+ 'Composer\\Installers\\AglInstaller' => array(
646
  'version' => '1.12.0.0',
647
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/AglInstaller.php'
648
  ),
649
+ 'Composer\\Installers\\CraftInstaller' => array(
650
  'version' => '1.12.0.0',
651
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CraftInstaller.php'
652
  ),
653
+ 'Composer\\Installers\\MagentoInstaller' => array(
654
  'version' => '1.12.0.0',
655
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MagentoInstaller.php'
656
  ),
657
+ 'Composer\\Installers\\CodeIgniterInstaller' => array(
658
  'version' => '1.12.0.0',
659
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php'
660
  ),
661
+ 'Composer\\Installers\\CakePHPInstaller' => array(
662
  'version' => '1.12.0.0',
663
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CakePHPInstaller.php'
664
  ),
665
+ 'Composer\\Installers\\AttogramInstaller' => array(
666
  'version' => '1.12.0.0',
667
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/AttogramInstaller.php'
668
  ),
669
+ 'Composer\\Installers\\AsgardInstaller' => array(
670
  'version' => '1.12.0.0',
671
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/AsgardInstaller.php'
672
  ),
673
+ 'Composer\\Installers\\HuradInstaller' => array(
674
  'version' => '1.12.0.0',
675
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/HuradInstaller.php'
676
  ),
677
+ 'Composer\\Installers\\ImageCMSInstaller' => array(
678
  'version' => '1.12.0.0',
679
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ImageCMSInstaller.php'
680
  ),
681
  'Composer\\Installers\\TYPO3FlowInstaller' => array(
682
  'version' => '1.12.0.0',
683
  'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TYPO3FlowInstaller.php'
684
  ),
685
+ 'Composer\\Installers\\TYPO3CmsInstaller' => array(
 
 
 
 
686
  'version' => '1.12.0.0',
687
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TYPO3CmsInstaller.php'
688
  ),
689
+ 'Composer\\Installers\\CroogoInstaller' => array(
690
  'version' => '1.12.0.0',
691
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CroogoInstaller.php'
692
  ),
693
+ 'Composer\\Installers\\WinterInstaller' => array(
694
  'version' => '1.12.0.0',
695
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/WinterInstaller.php'
696
  ),
697
+ 'Composer\\Installers\\JoomlaInstaller' => array(
698
  'version' => '1.12.0.0',
699
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/JoomlaInstaller.php'
700
  ),
701
+ 'Composer\\Installers\\KohanaInstaller' => array(
702
  'version' => '1.12.0.0',
703
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/KohanaInstaller.php'
704
  ),
705
+ 'Composer\\Installers\\DrupalInstaller' => array(
706
  'version' => '1.12.0.0',
707
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/DrupalInstaller.php'
708
  ),
709
+ 'Composer\\Installers\\AnnotateCmsInstaller' => array(
710
  'version' => '1.12.0.0',
711
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php'
712
  ),
713
+ 'Composer\\Installers\\MicroweberInstaller' => array(
714
  'version' => '1.12.0.0',
715
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MicroweberInstaller.php'
716
  ),
717
  'Composer\\Installers\\CiviCrmInstaller' => array(
718
  'version' => '1.12.0.0',
719
  'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CiviCrmInstaller.php'
720
  ),
721
+ 'Composer\\Installers\\ExpressionEngineInstaller' => array(
722
  'version' => '1.12.0.0',
723
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php'
724
  ),
725
+ 'Composer\\Installers\\MajimaInstaller' => array(
726
  'version' => '1.12.0.0',
727
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MajimaInstaller.php'
728
  ),
729
+ 'Composer\\Installers\\ReIndexInstaller' => array(
730
  'version' => '1.12.0.0',
731
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ReIndexInstaller.php'
732
  ),
733
+ 'Composer\\Installers\\ZikulaInstaller' => array(
734
  'version' => '1.12.0.0',
735
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ZikulaInstaller.php'
736
  ),
737
+ 'Composer\\Installers\\LaravelInstaller' => array(
738
  'version' => '1.12.0.0',
739
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/LaravelInstaller.php'
740
  ),
741
+ 'Composer\\Installers\\KanboardInstaller' => array(
742
  'version' => '1.12.0.0',
743
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/KanboardInstaller.php'
744
  ),
745
+ 'Composer\\Installers\\PxcmsInstaller' => array(
746
  'version' => '1.12.0.0',
747
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PxcmsInstaller.php'
748
  ),
749
+ 'Composer\\Installers\\LanManagementSystemInstaller' => array(
750
  'version' => '1.12.0.0',
751
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php'
752
  ),
753
+ 'Composer\\Installers\\ItopInstaller' => array(
754
  'version' => '1.12.0.0',
755
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ItopInstaller.php'
756
  ),
757
+ 'Composer\\Installers\\PPIInstaller' => array(
758
  'version' => '1.12.0.0',
759
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PPIInstaller.php'
760
  ),
761
+ 'Composer\\Installers\\VanillaInstaller' => array(
762
+ 'version' => '1.12.0.0',
763
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/VanillaInstaller.php'
764
  ),
765
+ 'Composer\\Installers\\KnownInstaller' => array(
766
+ 'version' => '1.12.0.0',
767
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/KnownInstaller.php'
768
  ),
769
+ 'Composer\\Installers\\MakoInstaller' => array(
770
+ 'version' => '1.12.0.0',
771
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MakoInstaller.php'
772
  ),
773
+ 'Composer\\Installers\\PhiftyInstaller' => array(
774
+ 'version' => '1.12.0.0',
775
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PhiftyInstaller.php'
776
  ),
777
+ 'Composer\\Installers\\LavaLiteInstaller' => array(
778
+ 'version' => '1.12.0.0',
779
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/LavaLiteInstaller.php'
780
  ),
781
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Definition\\DefinitionInterface' => array(
782
+ 'version' => '5.8.0.0',
783
+ 'path' => $baseDir . '/lib/packages/League/Container/Definition/DefinitionInterface.php'
784
  ),
785
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Definition\\Definition' => array(
786
+ 'version' => '5.8.0.0',
787
+ 'path' => $baseDir . '/lib/packages/League/Container/Definition/Definition.php'
788
  ),
789
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Definition\\DefinitionAggregate' => array(
790
+ 'version' => '5.8.0.0',
791
+ 'path' => $baseDir . '/lib/packages/League/Container/Definition/DefinitionAggregate.php'
792
  ),
793
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Definition\\DefinitionAggregateInterface' => array(
794
+ 'version' => '5.8.0.0',
795
+ 'path' => $baseDir . '/lib/packages/League/Container/Definition/DefinitionAggregateInterface.php'
796
  ),
797
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Inflector\\InflectorAggregate' => array(
798
+ 'version' => '5.8.0.0',
799
+ 'path' => $baseDir . '/lib/packages/League/Container/Inflector/InflectorAggregate.php'
800
  ),
801
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Inflector\\InflectorAggregateInterface' => array(
802
+ 'version' => '5.8.0.0',
803
+ 'path' => $baseDir . '/lib/packages/League/Container/Inflector/InflectorAggregateInterface.php'
804
  ),
805
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Inflector\\InflectorInterface' => array(
806
+ 'version' => '5.8.0.0',
807
+ 'path' => $baseDir . '/lib/packages/League/Container/Inflector/InflectorInterface.php'
808
  ),
809
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Inflector\\Inflector' => array(
810
+ 'version' => '5.8.0.0',
811
+ 'path' => $baseDir . '/lib/packages/League/Container/Inflector/Inflector.php'
812
  ),
813
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\RawArgument' => array(
814
+ 'version' => '5.8.0.0',
815
  'path' => $baseDir . '/lib/packages/League/Container/Argument/RawArgument.php'
816
  ),
 
 
 
 
817
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ClassName' => array(
818
+ 'version' => '5.8.0.0',
819
  'path' => $baseDir . '/lib/packages/League/Container/Argument/ClassName.php'
820
  ),
821
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\RawArgumentInterface' => array(
822
+ 'version' => '5.8.0.0',
823
+ 'path' => $baseDir . '/lib/packages/League/Container/Argument/RawArgumentInterface.php'
824
+ ),
825
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ClassNameWithOptionalValue' => array(
826
+ 'version' => '5.8.0.0',
827
  'path' => $baseDir . '/lib/packages/League/Container/Argument/ClassNameWithOptionalValue.php'
828
  ),
829
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ClassNameInterface' => array(
830
+ 'version' => '5.8.0.0',
831
+ 'path' => $baseDir . '/lib/packages/League/Container/Argument/ClassNameInterface.php'
832
  ),
833
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ArgumentResolverInterface' => array(
834
+ 'version' => '5.8.0.0',
835
+ 'path' => $baseDir . '/lib/packages/League/Container/Argument/ArgumentResolverInterface.php'
836
  ),
837
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ArgumentResolverTrait' => array(
838
+ 'version' => '5.8.0.0',
839
+ 'path' => $baseDir . '/lib/packages/League/Container/Argument/ArgumentResolverTrait.php'
840
  ),
841
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Exception\\NotFoundException' => array(
842
+ 'version' => '5.8.0.0',
843
+ 'path' => $baseDir . '/lib/packages/League/Container/Exception/NotFoundException.php'
844
  ),
845
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Exception\\ContainerException' => array(
846
+ 'version' => '5.8.0.0',
847
+ 'path' => $baseDir . '/lib/packages/League/Container/Exception/ContainerException.php'
848
  ),
849
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\BootableServiceProviderInterface' => array(
850
+ 'version' => '5.8.0.0',
851
+ 'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/BootableServiceProviderInterface.php'
852
  ),
853
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\ServiceProviderInterface' => array(
854
+ 'version' => '5.8.0.0',
855
+ 'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/ServiceProviderInterface.php'
856
  ),
857
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\ServiceProviderAggregate' => array(
858
+ 'version' => '5.8.0.0',
859
+ 'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/ServiceProviderAggregate.php'
860
  ),
861
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\AbstractServiceProvider' => array(
862
+ 'version' => '5.8.0.0',
863
+ 'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/AbstractServiceProvider.php'
864
  ),
865
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\ServiceProviderAggregateInterface' => array(
866
+ 'version' => '5.8.0.0',
867
+ 'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/ServiceProviderAggregateInterface.php'
868
  ),
869
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\ContainerAwareInterface' => array(
870
+ 'version' => '5.8.0.0',
871
+ 'path' => $baseDir . '/lib/packages/League/Container/ContainerAwareInterface.php'
872
  ),
873
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Container' => array(
874
+ 'version' => '5.8.0.0',
875
+ 'path' => $baseDir . '/lib/packages/League/Container/Container.php'
876
  ),
877
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\ContainerAwareTrait' => array(
878
+ 'version' => '5.8.0.0',
879
+ 'path' => $baseDir . '/lib/packages/League/Container/ContainerAwareTrait.php'
880
  ),
881
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\ReflectionContainer' => array(
882
+ 'version' => '5.8.0.0',
883
+ 'path' => $baseDir . '/lib/packages/League/Container/ReflectionContainer.php'
884
  ),
885
  'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithInjectionMethodArgumentWithoutTypeHint' => array(
886
+ 'version' => '5.8.0.0',
887
  'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithInjectionMethodArgumentWithoutTypeHint.php'
888
  ),
889
+ 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithScalarInjectionMethodArgument' => array(
890
+ 'version' => '5.8.0.0',
891
+ 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithScalarInjectionMethodArgument.php'
892
+ ),
893
+ 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithPrivateInjectionMethod' => array(
894
+ 'version' => '5.8.0.0',
895
+ 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithPrivateInjectionMethod.php'
896
+ ),
897
  'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithDependencies' => array(
898
+ 'version' => '5.8.0.0',
899
  'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithDependencies.php'
900
  ),
901
+ 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithNonFinalInjectionMethod' => array(
902
+ 'version' => '5.8.0.0',
903
+ 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithNonFinalInjectionMethod.php'
904
+ ),
905
+ 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\DependencyClass' => array(
906
+ 'version' => '5.8.0.0',
907
+ 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/DependencyClass.php'
908
  ),
909
  'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExtendedContainerTest' => array(
910
+ 'version' => '5.8.0.0',
911
  'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExtendedContainerTest.php'
912
  ),
913
+ 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\AbstractServiceProviderTest' => array(
914
+ 'version' => '5.8.0.0',
915
+ 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/AbstractServiceProviderTest.php'
916
+ ),
917
+ 'Automattic\\WooCommerce\\Tests\\Internal\\RestApiUtilTest' => array(
918
+ 'version' => '5.8.0.0',
919
+ 'path' => $baseDir . '/tests/php/src/Internal/RestApiUtilTest.php'
920
+ ),
921
  'Automattic\\WooCommerce\\Tests\\Internal\\DownloadPermissionsAdjusterTest' => array(
922
+ 'version' => '5.8.0.0',
923
  'path' => $baseDir . '/tests/php/src/Internal/DownloadPermissionsAdjusterTest.php'
924
  ),
 
 
 
 
925
  'Automattic\\WooCommerce\\Tests\\Internal\\ProductAttributesLookup\\LookupDataStoreTest' => array(
926
+ 'version' => '5.8.0.0',
927
  'path' => $baseDir . '/tests/php/src/Internal/ProductAttributesLookup/LookupDataStoreTest.php'
928
  ),
929
  'Automattic\\WooCommerce\\Tests\\Internal\\ProductAttributesLookup\\FiltererTest' => array(
930
+ 'version' => '5.8.0.0',
931
  'path' => $baseDir . '/tests/php/src/Internal/ProductAttributesLookup/FiltererTest.php'
932
  ),
933
+ 'Automattic\\WooCommerce\\Tests\\Internal\\ProductAttributesLookup\\DataRegeneratorTest' => array(
934
+ 'version' => '5.8.0.0',
935
+ 'path' => $baseDir . '/tests/php/src/Internal/ProductAttributesLookup/DataRegeneratorTest.php'
936
  ),
937
  'Automattic\\WooCommerce\\Tests\\Internal\\AssignDefaultCategoryTest' => array(
938
+ 'version' => '5.8.0.0',
939
  'path' => $baseDir . '/tests/php/src/Internal/AssignDefaultCategoryTest.php'
940
  ),
941
+ 'Automattic\\WooCommerce\\Tests\\Internal\\WCCom\\ConnectionHelperTest' => array(
942
+ 'version' => '5.8.0.0',
943
+ 'path' => $baseDir . '/tests/php/src/Internal/WCCom/ConnectionHelperTest.php'
944
+ ),
945
+ 'Automattic\\WooCommerce\\Tests\\Utilities\\StringUtilTest' => array(
946
+ 'version' => '5.8.0.0',
947
+ 'path' => $baseDir . '/tests/php/src/Utilities/StringUtilTest.php'
948
+ ),
949
+ 'Automattic\\WooCommerce\\Tests\\Utilities\\NumberUtilTest' => array(
950
+ 'version' => '5.8.0.0',
951
+ 'path' => $baseDir . '/tests/php/src/Utilities/NumberUtilTest.php'
952
+ ),
953
+ 'Automattic\\WooCommerce\\Tests\\Utilities\\ArrayUtilTest' => array(
954
+ 'version' => '5.8.0.0',
955
+ 'path' => $baseDir . '/tests/php/src/Utilities/ArrayUtilTest.php'
956
+ ),
957
  'Automattic\\WooCommerce\\Tests\\Proxies\\ExampleClasses\\ClassThatDependsOnLegacyCode' => array(
958
+ 'version' => '5.8.0.0',
959
  'path' => $baseDir . '/tests/php/src/Proxies/ExampleClasses/ClassThatDependsOnLegacyCode.php'
960
  ),
 
 
 
 
961
  'Automattic\\WooCommerce\\Tests\\Proxies\\LegacyProxyTest' => array(
962
+ 'version' => '5.8.0.0',
963
  'path' => $baseDir . '/tests/php/src/Proxies/LegacyProxyTest.php'
964
  ),
965
  'Automattic\\WooCommerce\\Tests\\Proxies\\ClassThatDependsOnLegacyCodeTest' => array(
966
+ 'version' => '5.8.0.0',
967
  'path' => $baseDir . '/tests/php/src/Proxies/ClassThatDependsOnLegacyCodeTest.php'
968
  ),
969
+ 'Automattic\\WooCommerce\\Tests\\Proxies\\MockableLegacyProxyTest' => array(
970
+ 'version' => '5.8.0.0',
971
+ 'path' => $baseDir . '/tests/php/src/Proxies/MockableLegacyProxyTest.php'
972
  ),
973
+ 'Automattic\\WooCommerce\\Testing\\Tools\\DependencyManagement\\MockableLegacyProxy' => array(
974
+ 'version' => '5.8.0.0',
975
+ 'path' => $baseDir . '/tests/Tools/DependencyManagement/MockableLegacyProxy.php'
976
  ),
977
+ 'Automattic\\WooCommerce\\Testing\\Tools\\FakeQueue' => array(
978
+ 'version' => '5.8.0.0',
979
+ 'path' => $baseDir . '/tests/Tools/FakeQueue.php'
980
  ),
981
  'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\CodeHacker' => array(
982
+ 'version' => '5.8.0.0',
983
  'path' => $baseDir . '/tests/Tools/CodeHacking/CodeHacker.php'
984
  ),
 
 
 
 
985
  'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\Hacks\\BypassFinalsHack' => array(
986
+ 'version' => '5.8.0.0',
987
  'path' => $baseDir . '/tests/Tools/CodeHacking/Hacks/BypassFinalsHack.php'
988
  ),
 
 
 
 
989
  'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\Hacks\\CodeHack' => array(
990
+ 'version' => '5.8.0.0',
991
  'path' => $baseDir . '/tests/Tools/CodeHacking/Hacks/CodeHack.php'
992
  ),
993
+ 'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\Hacks\\FunctionsMockerHack' => array(
994
+ 'version' => '5.8.0.0',
995
+ 'path' => $baseDir . '/tests/Tools/CodeHacking/Hacks/FunctionsMockerHack.php'
996
  ),
997
+ 'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\Hacks\\StaticMockerHack' => array(
998
+ 'version' => '5.8.0.0',
999
+ 'path' => $baseDir . '/tests/Tools/CodeHacking/Hacks/StaticMockerHack.php'
1000
  ),
1001
+ 'Automattic\\WooCommerce\\Blocks\\Assets\\AssetDataRegistry' => array(
1002
  'version' => '5.9.1.0',
1003
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Assets/AssetDataRegistry.php'
1004
  ),
1005
+ 'Automattic\\WooCommerce\\Blocks\\Assets\\Api' => array(
1006
  'version' => '5.9.1.0',
1007
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Assets/Api.php'
1008
  ),
1009
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\StockFilter' => array(
1010
  'version' => '5.9.1.0',
1011
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/StockFilter.php'
1012
  ),
1013
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AbstractDynamicBlock' => array(
1014
  'version' => '5.9.1.0',
1015
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AbstractDynamicBlock.php'
1016
  ),
1017
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AllProducts' => array(
1018
  'version' => '5.9.1.0',
1019
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AllProducts.php'
1020
  ),
1021
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\CheckoutI2' => array(
1022
  'version' => '5.9.1.0',
1023
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/CheckoutI2.php'
1024
  ),
1025
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductNew' => array(
1026
  'version' => '5.9.1.0',
1027
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductNew.php'
1028
  ),
1029
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AbstractProductGrid' => array(
1030
  'version' => '5.9.1.0',
1031
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AbstractProductGrid.php'
1032
  ),
1033
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AtomicBlock' => array(
1034
  'version' => '5.9.1.0',
1035
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AtomicBlock.php'
1036
  ),
1037
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AllReviews' => array(
1038
  'version' => '5.9.1.0',
1039
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AllReviews.php'
1040
  ),
1041
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ActiveFilters' => array(
1042
  'version' => '5.9.1.0',
1043
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ActiveFilters.php'
1044
  ),
1045
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\PriceFilter' => array(
1046
  'version' => '5.9.1.0',
1047
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/PriceFilter.php'
1048
  ),
1049
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ReviewsByProduct' => array(
1050
  'version' => '5.9.1.0',
1051
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ReviewsByProduct.php'
1052
  ),
1053
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductSearch' => array(
1054
  'version' => '5.9.1.0',
1055
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductSearch.php'
1056
  ),
1057
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductsByAttribute' => array(
1058
  'version' => '5.9.1.0',
1059
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductsByAttribute.php'
1060
  ),
1061
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductOnSale' => array(
1062
  'version' => '5.9.1.0',
1063
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductOnSale.php'
1064
  ),
1065
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductCategories' => array(
1066
  'version' => '5.9.1.0',
1067
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductCategories.php'
1068
  ),
1069
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductTag' => array(
1070
  'version' => '5.9.1.0',
1071
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductTag.php'
1072
  ),
1073
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductTopRated' => array(
1074
  'version' => '5.9.1.0',
1075
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductTopRated.php'
1076
  ),
1077
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\Cart' => array(
1078
  'version' => '5.9.1.0',
1079
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/Cart.php'
1080
  ),
1081
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\HandpickedProducts' => array(
1082
  'version' => '5.9.1.0',
1083
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/HandpickedProducts.php'
1084
  ),
1085
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\FeaturedCategory' => array(
1086
  'version' => '5.9.1.0',
1087
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/FeaturedCategory.php'
1088
  ),
1089
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\MiniCart' => array(
1090
  'version' => '5.9.1.0',
1091
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/MiniCart.php'
1092
  ),
1093
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\Checkout' => array(
1094
  'version' => '5.9.1.0',
1095
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/Checkout.php'
1096
  ),
1097
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductCategory' => array(
1098
  'version' => '5.9.1.0',
1099
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductCategory.php'
1100
  ),
1101
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductBestSellers' => array(
1102
  'version' => '5.9.1.0',
1103
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductBestSellers.php'
1104
  ),
1105
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\SingleProduct' => array(
1106
  'version' => '5.9.1.0',
1107
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/SingleProduct.php'
1108
  ),
1109
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AbstractBlock' => array(
1110
  'version' => '5.9.1.0',
1111
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AbstractBlock.php'
1112
  ),
1113
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ReviewsByCategory' => array(
1114
  'version' => '5.9.1.0',
1115
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ReviewsByCategory.php'
1116
  ),
1117
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\FeaturedProduct' => array(
1118
  'version' => '5.9.1.0',
1119
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/FeaturedProduct.php'
1120
  ),
1121
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AttributeFilter' => array(
1122
  'version' => '5.9.1.0',
1123
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AttributeFilter.php'
1124
  ),
1125
+ 'Automattic\\WooCommerce\\Blocks\\Utils\\ArrayUtils' => array(
1126
  'version' => '5.9.1.0',
1127
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Utils/ArrayUtils.php'
1128
  ),
1129
+ 'Automattic\\WooCommerce\\Blocks\\Utils\\BlocksWpQuery' => array(
1130
  'version' => '5.9.1.0',
1131
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Utils/BlocksWpQuery.php'
1132
  ),
1133
+ 'Automattic\\WooCommerce\\Blocks\\Assets' => array(
1134
  'version' => '5.9.1.0',
1135
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Assets.php'
1136
  ),
1137
+ 'Automattic\\WooCommerce\\Blocks\\Package' => array(
1138
  'version' => '5.9.1.0',
1139
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Package.php'
1140
  ),
1141
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypesController' => array(
1142
  'version' => '5.9.1.0',
1143
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypesController.php'
1144
  ),
1145
+ 'Automattic\\WooCommerce\\Blocks\\AssetsController' => array(
1146
  'version' => '5.9.1.0',
1147
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/AssetsController.php'
1148
  ),
1149
+ 'Automattic\\WooCommerce\\Blocks\\Installer' => array(
1150
  'version' => '5.9.1.0',
1151
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Installer.php'
1152
  ),
1153
+ 'Automattic\\WooCommerce\\Blocks\\Payments\\PaymentMethodTypeInterface' => array(
1154
  'version' => '5.9.1.0',
1155
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/PaymentMethodTypeInterface.php'
1156
  ),
1157
+ 'Automattic\\WooCommerce\\Blocks\\Payments\\PaymentContext' => array(
1158
  'version' => '5.9.1.0',
1159
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/PaymentContext.php'
1160
  ),
1161
+ 'Automattic\\WooCommerce\\Blocks\\Payments\\PaymentMethodRegistry' => array(
1162
  'version' => '5.9.1.0',
1163
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/PaymentMethodRegistry.php'
1164
  ),
1165
+ 'Automattic\\WooCommerce\\Blocks\\Payments\\PaymentResult' => array(
1166
  'version' => '5.9.1.0',
1167
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/PaymentResult.php'
1168
  ),
1169
+ 'Automattic\\WooCommerce\\Blocks\\Payments\\Integrations\\CashOnDelivery' => array(
1170
  'version' => '5.9.1.0',
1171
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/Integrations/CashOnDelivery.php'
1172
  ),
1173
+ 'Automattic\\WooCommerce\\Blocks\\Payments\\Integrations\\Cheque' => array(
1174
  'version' => '5.9.1.0',
1175
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/Integrations/Cheque.php'
1176
  ),
1177
+ 'Automattic\\WooCommerce\\Blocks\\Payments\\Integrations\\Stripe' => array(
1178
  'version' => '5.9.1.0',
1179
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/Integrations/Stripe.php'
1180
  ),
1181
+ 'Automattic\\WooCommerce\\Blocks\\Payments\\Integrations\\PayPal' => array(
1182
  'version' => '5.9.1.0',
1183
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/Integrations/PayPal.php'
1184
  ),
1185
+ 'Automattic\\WooCommerce\\Blocks\\Payments\\Integrations\\BankTransfer' => array(
1186
  'version' => '5.9.1.0',
1187
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/Integrations/BankTransfer.php'
1188
  ),
1189
+ 'Automattic\\WooCommerce\\Blocks\\Payments\\Integrations\\AbstractPaymentMethodType' => array(
1190
  'version' => '5.9.1.0',
1191
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/Integrations/AbstractPaymentMethodType.php'
1192
  ),
1193
+ 'Automattic\\WooCommerce\\Blocks\\Payments\\Api' => array(
1194
  'version' => '5.9.1.0',
1195
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/Api.php'
1196
  ),
1197
+ 'Automattic\\WooCommerce\\Blocks\\Registry\\Container' => array(
1198
  'version' => '5.9.1.0',
1199
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Registry/Container.php'
1200
  ),
1201
+ 'Automattic\\WooCommerce\\Blocks\\Registry\\AbstractDependencyType' => array(
1202
  'version' => '5.9.1.0',
1203
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Registry/AbstractDependencyType.php'
1204
  ),
1205
+ 'Automattic\\WooCommerce\\Blocks\\Registry\\FactoryType' => array(
1206
  'version' => '5.9.1.0',
1207
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Registry/FactoryType.php'
1208
  ),
1209
+ 'Automattic\\WooCommerce\\Blocks\\Registry\\SharedType' => array(
1210
  'version' => '5.9.1.0',
1211
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Registry/SharedType.php'
1212
  ),
1213
+ 'Automattic\\WooCommerce\\Blocks\\Library' => array(
1214
  'version' => '5.9.1.0',
1215
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Library.php'
1216
  ),
1217
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Formatters\\CurrencyFormatter' => array(
1218
  'version' => '5.9.1.0',
1219
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Formatters/CurrencyFormatter.php'
1220
  ),
1221
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Formatters\\FormatterInterface' => array(
1222
  'version' => '5.9.1.0',
1223
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Formatters/FormatterInterface.php'
1224
  ),
1225
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Formatters\\HtmlFormatter' => array(
1226
  'version' => '5.9.1.0',
1227
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Formatters/HtmlFormatter.php'
1228
  ),
1229
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Formatters\\DefaultFormatter' => array(
1230
  'version' => '5.9.1.0',
1231
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Formatters/DefaultFormatter.php'
1232
  ),
1233
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Formatters\\MoneyFormatter' => array(
1234
  'version' => '5.9.1.0',
1235
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Formatters/MoneyFormatter.php'
1236
  ),
1237
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Formatters' => array(
1238
  'version' => '5.9.1.0',
1239
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Formatters.php'
1240
  ),
1241
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\RoutesController' => array(
1242
  'version' => '5.9.1.0',
1243
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/RoutesController.php'
1244
  ),
1245
  'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\ProductAttributesById' => array(
1246
  'version' => '5.9.1.0',
1247
  'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/ProductAttributesById.php'
1248
  ),
1249
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\CartRemoveCoupon' => array(
 
 
 
 
1250
  'version' => '5.9.1.0',
1251
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/CartRemoveCoupon.php'
1252
  ),
1253
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\CartSelectShippingRate' => array(
1254
  'version' => '5.9.1.0',
1255
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/CartSelectShippingRate.php'
1256
  ),
1257
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\ProductTags' => array(
1258
  'version' => '5.9.1.0',
1259
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/ProductTags.php'
1260
  ),
1261
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\ProductAttributes' => array(
1262
  'version' => '5.9.1.0',
1263
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/ProductAttributes.php'
1264
  ),
1265
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\CartUpdateItem' => array(
1266
  'version' => '5.9.1.0',
1267
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/CartUpdateItem.php'
1268
  ),
1269
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\ProductCollectionData' => array(
1270
  'version' => '5.9.1.0',
1271
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/ProductCollectionData.php'
1272
  ),
1273
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\AbstractRoute' => array(
1274
  'version' => '5.9.1.0',
1275
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/AbstractRoute.php'
1276
  ),
1277
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\ProductAttributeTerms' => array(
1278
  'version' => '5.9.1.0',
1279
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/ProductAttributeTerms.php'
1280
  ),
1281
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\RouteException' => array(
1282
  'version' => '5.9.1.0',
1283
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/RouteException.php'
1284
  ),
1285
  'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\ProductReviews' => array(
1286
  'version' => '5.9.1.0',
1287
  'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/ProductReviews.php'
1288
  ),
1289
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\Batch' => array(
1290
  'version' => '5.9.1.0',
1291
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/Batch.php'
1292
  ),
1293
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\ProductCategories' => array(
1294
  'version' => '5.9.1.0',
1295
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/ProductCategories.php'
1296
  ),
1297
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\CartCoupons' => array(
1298
  'version' => '5.9.1.0',
1299
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/CartCoupons.php'
1300
  ),
1301
  'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\CartAddItem' => array(
1302
  'version' => '5.9.1.0',
1303
  'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/CartAddItem.php'
1304
  ),
1305
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\CartItemsByKey' => array(
1306
+ 'version' => '5.9.1.0',
1307
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/CartItemsByKey.php'
1308
+ ),
1309
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\CartItems' => array(
1310
+ 'version' => '5.9.1.0',
1311
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/CartItems.php'
1312
+ ),
1313
  'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\Cart' => array(
1314
  'version' => '5.9.1.0',
1315
  'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/Cart.php'
1316
  ),
1317
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\CartCouponsByCode' => array(
1318
  'version' => '5.9.1.0',
1319
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/CartCouponsByCode.php'
1320
  ),
1321
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\Products' => array(
1322
  'version' => '5.9.1.0',
1323
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/Products.php'
1324
  ),
1325
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\CartRemoveItem' => array(
1326
  'version' => '5.9.1.0',
1327
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/CartRemoveItem.php'
1328
  ),
1329
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\CartUpdateCustomer' => array(
1330
  'version' => '5.9.1.0',
1331
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/CartUpdateCustomer.php'
1332
  ),
1333
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\ProductsById' => array(
1334
  'version' => '5.9.1.0',
1335
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/ProductsById.php'
1336
  ),
1337
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\Checkout' => array(
1338
  'version' => '5.9.1.0',
1339
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/Checkout.php'
1340
  ),
1341
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\RouteInterface' => array(
1342
  'version' => '5.9.1.0',
1343
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/RouteInterface.php'
1344
  ),
1345
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\AbstractTermsRoute' => array(
1346
  'version' => '5.9.1.0',
1347
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/AbstractTermsRoute.php'
1348
  ),
1349
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\AbstractCartRoute' => array(
1350
  'version' => '5.9.1.0',
1351
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/AbstractCartRoute.php'
1352
  ),
1353
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\CartApplyCoupon' => array(
1354
  'version' => '5.9.1.0',
1355
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/CartApplyCoupon.php'
1356
  ),
1357
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\CartExtensions' => array(
1358
  'version' => '5.9.1.0',
1359
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/CartExtensions.php'
1360
  ),
1361
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Routes\\ProductCategoriesById' => array(
1362
  'version' => '5.9.1.0',
1363
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/ProductCategoriesById.php'
1364
  ),
1365
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\SchemaController' => array(
1366
  'version' => '5.9.1.0',
1367
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/SchemaController.php'
1368
  ),
1369
  'Automattic\\WooCommerce\\Blocks\\StoreApi\\Utilities\\PartialOutOfStockException' => array(
1370
  'version' => '5.9.1.0',
1371
  'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/PartialOutOfStockException.php'
1372
  ),
1373
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Utilities\\ProductQuery' => array(
 
 
 
 
1374
  'version' => '5.9.1.0',
1375
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/ProductQuery.php'
1376
  ),
1377
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Utilities\\ProductQueryFilters' => array(
1378
  'version' => '5.9.1.0',
1379
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/ProductQueryFilters.php'
1380
  ),
1381
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Utilities\\StockAvailabilityException' => array(
1382
  'version' => '5.9.1.0',
1383
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/StockAvailabilityException.php'
1384
  ),
1385
  'Automattic\\WooCommerce\\Blocks\\StoreApi\\Utilities\\InvalidStockLevelsInCartException' => array(
1386
  'version' => '5.9.1.0',
1387
  'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/InvalidStockLevelsInCartException.php'
1388
  ),
1389
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Utilities\\NoticeHandler' => array(
1390
  'version' => '5.9.1.0',
1391
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/NoticeHandler.php'
1392
  ),
1393
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Utilities\\Pagination' => array(
1394
  'version' => '5.9.1.0',
1395
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/Pagination.php'
1396
  ),
1397
  'Automattic\\WooCommerce\\Blocks\\StoreApi\\Utilities\\TooManyInCartException' => array(
1398
  'version' => '5.9.1.0',
1399
  'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/TooManyInCartException.php'
1400
  ),
1401
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Utilities\\OrderController' => array(
1402
  'version' => '5.9.1.0',
1403
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/OrderController.php'
1404
  ),
1405
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Utilities\\NotPurchasableException' => array(
1406
  'version' => '5.9.1.0',
1407
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/NotPurchasableException.php'
1408
  ),
1409
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Utilities\\OutOfStockException' => array(
1410
  'version' => '5.9.1.0',
1411
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/OutOfStockException.php'
1412
  ),
1413
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Utilities\\CartController' => array(
1414
  'version' => '5.9.1.0',
1415
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/CartController.php'
1416
  ),
1417
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Schemas\\CartFeeSchema' => array(
1418
  'version' => '5.9.1.0',
1419
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/CartFeeSchema.php'
1420
  ),
1421
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Schemas\\TermSchema' => array(
1422
  'version' => '5.9.1.0',
1423
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/TermSchema.php'
1424
  ),
1425
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Schemas\\ProductAttributeSchema' => array(
1426
  'version' => '5.9.1.0',
1427
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/ProductAttributeSchema.php'
1428
  ),
1429
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Schemas\\AbstractSchema' => array(
1430
  'version' => '5.9.1.0',
1431
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/AbstractSchema.php'
1432
  ),
1433
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Schemas\\ShippingAddressSchema' => array(
1434
  'version' => '5.9.1.0',
1435
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/ShippingAddressSchema.php'
1436
  ),
1437
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Schemas\\ProductCollectionDataSchema' => array(
1438
  'version' => '5.9.1.0',
1439
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/ProductCollectionDataSchema.php'
1440
  ),
1441
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Schemas\\ProductCategorySchema' => array(
1442
  'version' => '5.9.1.0',
1443
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/ProductCategorySchema.php'
1444
  ),
1445
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Schemas\\CartItemSchema' => array(
1446
  'version' => '5.9.1.0',
1447
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/CartItemSchema.php'
1448
  ),
1449
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Schemas\\AbstractAddressSchema' => array(
1450
  'version' => '5.9.1.0',
1451
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/AbstractAddressSchema.php'
1452
  ),
1453
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Schemas\\CheckoutSchema' => array(
1454
  'version' => '5.9.1.0',
1455
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/CheckoutSchema.php'
1456
  ),
1457
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Schemas\\CartShippingRateSchema' => array(
1458
  'version' => '5.9.1.0',
1459
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/CartShippingRateSchema.php'
1460
  ),
1461
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Schemas\\CartExtensionsSchema' => array(
1462
  'version' => '5.9.1.0',
1463
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/CartExtensionsSchema.php'
1464
  ),
1465
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Schemas\\CartSchema' => array(
1466
  'version' => '5.9.1.0',
1467
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/CartSchema.php'
1468
  ),
1469
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Schemas\\CartCouponSchema' => array(
1470
  'version' => '5.9.1.0',
1471
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/CartCouponSchema.php'
1472
  ),
1473
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Schemas\\BillingAddressSchema' => array(
1474
  'version' => '5.9.1.0',
1475
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/BillingAddressSchema.php'
1476
  ),
1477
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Schemas\\ProductReviewSchema' => array(
1478
  'version' => '5.9.1.0',
1479
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/ProductReviewSchema.php'
1480
  ),
1481
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Schemas\\ProductSchema' => array(
1482
  'version' => '5.9.1.0',
1483
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/ProductSchema.php'
1484
  ),
1485
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Schemas\\ErrorSchema' => array(
1486
  'version' => '5.9.1.0',
1487
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/ErrorSchema.php'
1488
  ),
1489
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Schemas\\OrderCouponSchema' => array(
1490
  'version' => '5.9.1.0',
1491
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/OrderCouponSchema.php'
1492
  ),
1493
+ 'Automattic\\WooCommerce\\Blocks\\StoreApi\\Schemas\\ImageAttachmentSchema' => array(
1494
  'version' => '5.9.1.0',
1495
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/ImageAttachmentSchema.php'
1496
  ),
1497
+ 'Automattic\\WooCommerce\\Blocks\\Integrations\\IntegrationRegistry' => array(
1498
  'version' => '5.9.1.0',
1499
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Integrations/IntegrationRegistry.php'
1500
  ),
1501
+ 'Automattic\\WooCommerce\\Blocks\\Integrations\\IntegrationInterface' => array(
1502
  'version' => '5.9.1.0',
1503
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Integrations/IntegrationInterface.php'
1504
  ),
1505
+ 'Automattic\\WooCommerce\\Blocks\\InboxNotifications' => array(
1506
  'version' => '5.9.1.0',
1507
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/InboxNotifications.php'
1508
  ),
1509
+ 'Automattic\\WooCommerce\\Blocks\\RestApi' => array(
1510
  'version' => '5.9.1.0',
1511
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/RestApi.php'
1512
  ),
1513
+ 'Automattic\\WooCommerce\\Blocks\\Domain\\Package' => array(
1514
  'version' => '5.9.1.0',
1515
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Package.php'
1516
  ),
1517
+ 'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\GoogleAnalytics' => array(
1518
  'version' => '5.9.1.0',
1519
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Services/GoogleAnalytics.php'
1520
  ),
1521
+ 'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\Email\\CustomerNewAccount' => array(
1522
  'version' => '5.9.1.0',
1523
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Services/Email/CustomerNewAccount.php'
1524
  ),
1525
+ 'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\ExtendRestApi' => array(
1526
  'version' => '5.9.1.0',
1527
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Services/ExtendRestApi.php'
1528
  ),
1529
+ 'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\FeatureGating' => array(
1530
  'version' => '5.9.1.0',
1531
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Services/FeatureGating.php'
1532
  ),
1533
+ 'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\DraftOrders' => array(
1534
  'version' => '5.9.1.0',
1535
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Services/DraftOrders.php'
1536
  ),
1537
+ 'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\CreateAccount' => array(
1538
  'version' => '5.9.1.0',
1539
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Services/CreateAccount.php'
1540
  ),
1541
+ 'Automattic\\WooCommerce\\Blocks\\Domain\\Bootstrap' => array(
1542
  'version' => '5.9.1.0',
1543
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Bootstrap.php'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1544
  ),
1545
+ 'Automattic\\WooCommerce\\Admin\\PageController' => array(
1546
+ 'version' => '2.7.2.0',
1547
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/PageController.php'
1548
  ),
1549
+ 'Automattic\\WooCommerce\\Admin\\WCAdminHelper' => array(
1550
+ 'version' => '2.7.2.0',
1551
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/WCAdminHelper.php'
1552
  ),
1553
+ 'Automattic\\WooCommerce\\Admin\\Features\\Onboarding' => array(
1554
+ 'version' => '2.7.2.0',
1555
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/Onboarding.php'
1556
  ),
1557
+ 'Automattic\\WooCommerce\\Admin\\Features\\ShippingLabelBanner' => array(
1558
+ 'version' => '2.7.2.0',
1559
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/ShippingLabelBanner.php'
1560
  ),
1561
+ 'Automattic\\WooCommerce\\Admin\\Features\\Features' => array(
1562
+ 'version' => '2.7.2.0',
1563
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/Features.php'
1564
  ),
1565
+ 'Automattic\\WooCommerce\\Admin\\Features\\ActivityPanels' => array(
1566
+ 'version' => '2.7.2.0',
1567
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/ActivityPanels.php'
1568
  ),
1569
+ 'Automattic\\WooCommerce\\Admin\\Features\\PaymentGatewaySuggestions\\Init' => array(
1570
+ 'version' => '2.7.2.0',
1571
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/PaymentGatewaySuggestions/Init.php'
1572
  ),
1573
+ 'Automattic\\WooCommerce\\Admin\\Features\\PaymentGatewaySuggestions\\EvaluateSuggestion' => array(
1574
+ 'version' => '2.7.2.0',
1575
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/PaymentGatewaySuggestions/EvaluateSuggestion.php'
1576
  ),
1577
+ 'Automattic\\WooCommerce\\Admin\\Features\\PaymentGatewaySuggestions\\DataSourcePoller' => array(
1578
+ 'version' => '2.7.2.0',
1579
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/PaymentGatewaySuggestions/DataSourcePoller.php'
1580
  ),
1581
+ 'Automattic\\WooCommerce\\Admin\\Features\\PaymentGatewaySuggestions\\PaymentGatewaysController' => array(
1582
+ 'version' => '2.7.2.0',
1583
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/PaymentGatewaySuggestions/PaymentGatewaysController.php'
1584
  ),
1585
+ 'Automattic\\WooCommerce\\Admin\\Features\\PaymentGatewaySuggestions\\DefaultPaymentGateways' => array(
1586
+ 'version' => '2.7.2.0',
1587
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/PaymentGatewaySuggestions/DefaultPaymentGateways.php'
1588
  ),
1589
  'Automattic\\WooCommerce\\Admin\\Features\\ShippingLabelBannerDisplayRules' => array(
1590
+ 'version' => '2.7.2.0',
1591
  'path' => $baseDir . '/packages/woocommerce-admin/src/Features/ShippingLabelBannerDisplayRules.php'
1592
  ),
1593
+ 'Automattic\\WooCommerce\\Admin\\Features\\Analytics' => array(
1594
+ 'version' => '2.7.2.0',
1595
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/Analytics.php'
1596
  ),
1597
+ 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks' => array(
1598
+ 'version' => '2.7.2.0',
1599
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/OnboardingTasks.php'
1600
  ),
1601
+ 'Automattic\\WooCommerce\\Admin\\Features\\MobileAppBanner' => array(
1602
+ 'version' => '2.7.2.0',
1603
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/MobileAppBanner.php'
1604
  ),
1605
+ 'Automattic\\WooCommerce\\Admin\\Features\\Coupons' => array(
1606
+ 'version' => '2.7.2.0',
1607
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/Coupons.php'
1608
  ),
1609
+ 'Automattic\\WooCommerce\\Admin\\Features\\Navigation\\Init' => array(
1610
+ 'version' => '2.7.2.0',
1611
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/Navigation/Init.php'
1612
  ),
1613
  'Automattic\\WooCommerce\\Admin\\Features\\Navigation\\Favorites' => array(
1614
+ 'version' => '2.7.2.0',
1615
  'path' => $baseDir . '/packages/woocommerce-admin/src/Features/Navigation/Favorites.php'
1616
  ),
1617
+ 'Automattic\\WooCommerce\\Admin\\Features\\Navigation\\Screen' => array(
1618
+ 'version' => '2.7.2.0',
1619
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/Navigation/Screen.php'
1620
+ ),
1621
  'Automattic\\WooCommerce\\Admin\\Features\\Navigation\\Menu' => array(
1622
+ 'version' => '2.7.2.0',
1623
  'path' => $baseDir . '/packages/woocommerce-admin/src/Features/Navigation/Menu.php'
1624
  ),
1625
  'Automattic\\WooCommerce\\Admin\\Features\\Navigation\\CoreMenu' => array(
1626
+ 'version' => '2.7.2.0',
1627
  'path' => $baseDir . '/packages/woocommerce-admin/src/Features/Navigation/CoreMenu.php'
1628
  ),
1629
+ 'Automattic\\WooCommerce\\Admin\\Features\\RemoteInboxNotifications' => array(
1630
+ 'version' => '2.7.2.0',
1631
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/RemoteInboxNotifications.php'
 
 
 
 
1632
  ),
1633
+ 'Automattic\\WooCommerce\\Admin\\Features\\RemoteFreeExtensions\\Init' => array(
1634
+ 'version' => '2.7.2.0',
1635
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/RemoteFreeExtensions/Init.php'
1636
  ),
1637
+ 'Automattic\\WooCommerce\\Admin\\Features\\RemoteFreeExtensions\\DefaultFreeExtensions' => array(
1638
+ 'version' => '2.7.2.0',
1639
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/RemoteFreeExtensions/DefaultFreeExtensions.php'
1640
  ),
1641
+ 'Automattic\\WooCommerce\\Admin\\Features\\RemoteFreeExtensions\\DataSourcePoller' => array(
1642
+ 'version' => '2.7.2.0',
1643
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/RemoteFreeExtensions/DataSourcePoller.php'
1644
  ),
1645
+ 'Automattic\\WooCommerce\\Admin\\Features\\RemoteFreeExtensions\\EvaluateExtension' => array(
1646
+ 'version' => '2.7.2.0',
1647
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/RemoteFreeExtensions/EvaluateExtension.php'
1648
  ),
1649
+ 'Automattic\\WooCommerce\\Admin\\Features\\CustomerEffortScoreTracks' => array(
1650
+ 'version' => '2.7.2.0',
1651
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/CustomerEffortScoreTracks.php'
1652
  ),
1653
+ 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Init' => array(
1654
+ 'version' => '2.7.2.0',
1655
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/OnboardingTasks/Init.php'
1656
  ),
1657
  'Automattic\\WooCommerce\\Admin\\Features\\CouponsMovedTrait' => array(
1658
+ 'version' => '2.7.2.0',
1659
  'path' => $baseDir . '/packages/woocommerce-admin/src/Features/CouponsMovedTrait.php'
1660
  ),
1661
+ 'Automattic\\WooCommerce\\Admin\\Features\\Settings' => array(
1662
+ 'version' => '2.7.2.0',
1663
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/Settings.php'
1664
  ),
1665
+ 'Automattic\\WooCommerce\\Admin\\Features\\Homescreen' => array(
1666
+ 'version' => '2.7.2.0',
1667
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/Homescreen.php'
1668
  ),
1669
+ 'Automattic\\WooCommerce\\Admin\\Features\\Marketing' => array(
1670
+ 'version' => '2.7.2.0',
1671
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/Marketing.php'
1672
  ),
1673
+ 'Automattic\\WooCommerce\\Admin\\Features\\TransientNotices' => array(
1674
+ 'version' => '2.7.2.0',
1675
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Features/TransientNotices.php'
1676
  ),
1677
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\NotRuleProcessor' => array(
1678
+ 'version' => '2.7.2.0',
1679
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/NotRuleProcessor.php'
1680
  ),
1681
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\PluginsActivatedRuleProcessor' => array(
1682
+ 'version' => '2.7.2.0',
1683
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/PluginsActivatedRuleProcessor.php'
1684
  ),
1685
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\StoredStateRuleProcessor' => array(
1686
+ 'version' => '2.7.2.0',
1687
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/StoredStateRuleProcessor.php'
1688
  ),
1689
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\OrdersProvider' => array(
1690
+ 'version' => '2.7.2.0',
1691
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/OrdersProvider.php'
1692
  ),
1693
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\OrRuleProcessor' => array(
1694
+ 'version' => '2.7.2.0',
1695
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/OrRuleProcessor.php'
1696
  ),
1697
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\WCAdminActiveForRuleProcessor' => array(
1698
+ 'version' => '2.7.2.0',
1699
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/WCAdminActiveForRuleProcessor.php'
1700
  ),
1701
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\PublishAfterTimeRuleProcessor' => array(
1702
+ 'version' => '2.7.2.0',
1703
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/PublishAfterTimeRuleProcessor.php'
1704
  ),
1705
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\TransformerInterface' => array(
1706
+ 'version' => '2.7.2.0',
1707
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/TransformerInterface.php'
1708
  ),
1709
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\ArrayColumn' => array(
1710
+ 'version' => '2.7.2.0',
1711
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/Transformers/ArrayColumn.php'
1712
  ),
1713
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\ArrayFlatten' => array(
1714
+ 'version' => '2.7.2.0',
1715
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/Transformers/ArrayFlatten.php'
1716
  ),
1717
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\Count' => array(
1718
+ 'version' => '2.7.2.0',
1719
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/Transformers/Count.php'
1720
  ),
1721
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\ArrayValues' => array(
1722
+ 'version' => '2.7.2.0',
1723
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/Transformers/ArrayValues.php'
1724
  ),
1725
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\ArrayKeys' => array(
1726
+ 'version' => '2.7.2.0',
1727
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/Transformers/ArrayKeys.php'
1728
  ),
1729
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\ArraySearch' => array(
1730
+ 'version' => '2.7.2.0',
1731
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/Transformers/ArraySearch.php'
1732
  ),
1733
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\DotNotation' => array(
1734
+ 'version' => '2.7.2.0',
1735
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/Transformers/DotNotation.php'
1736
  ),
1737
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\ComparisonOperation' => array(
1738
+ 'version' => '2.7.2.0',
1739
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/ComparisonOperation.php'
1740
  ),
1741
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\DataSourcePoller' => array(
1742
+ 'version' => '2.7.2.0',
1743
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/DataSourcePoller.php'
1744
  ),
1745
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\TransformerService' => array(
1746
+ 'version' => '2.7.2.0',
1747
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/TransformerService.php'
1748
  ),
1749
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\ProductCountRuleProcessor' => array(
1750
+ 'version' => '2.7.2.0',
1751
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/ProductCountRuleProcessor.php'
1752
  ),
1753
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\WooCommerceAdminUpdatedRuleProcessor' => array(
1754
+ 'version' => '2.7.2.0',
1755
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/WooCommerceAdminUpdatedRuleProcessor.php'
1756
  ),
1757
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\PublishBeforeTimeRuleProcessor' => array(
1758
+ 'version' => '2.7.2.0',
1759
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/PublishBeforeTimeRuleProcessor.php'
1760
  ),
1761
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\EvaluationLogger' => array(
1762
+ 'version' => '2.7.2.0',
1763
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/EvaluationLogger.php'
1764
  ),
1765
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\OnboardingProfileRuleProcessor' => array(
1766
+ 'version' => '2.7.2.0',
1767
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/OnboardingProfileRuleProcessor.php'
1768
  ),
1769
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\RemoteInboxNotificationsEngine' => array(
1770
+ 'version' => '2.7.2.0',
1771
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/RemoteInboxNotificationsEngine.php'
1772
  ),
1773
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\OptionRuleProcessor' => array(
1774
+ 'version' => '2.7.2.0',
1775
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/OptionRuleProcessor.php'
1776
  ),
1777
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\OrderCountRuleProcessor' => array(
1778
+ 'version' => '2.7.2.0',
1779
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/OrderCountRuleProcessor.php'
1780
  ),
1781
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\EvaluateAndGetStatus' => array(
1782
+ 'version' => '2.7.2.0',
1783
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/EvaluateAndGetStatus.php'
1784
  ),
1785
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\NoteStatusRuleProcessor' => array(
1786
+ 'version' => '2.7.2.0',
1787
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/NoteStatusRuleProcessor.php'
1788
  ),
1789
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\PluginVersionRuleProcessor' => array(
1790
+ 'version' => '2.7.2.0',
1791
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/PluginVersionRuleProcessor.php'
1792
  ),
1793
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\BaseLocationCountryRuleProcessor' => array(
1794
+ 'version' => '2.7.2.0',
1795
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/BaseLocationCountryRuleProcessor.php'
1796
  ),
1797
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\WCAdminActiveForProvider' => array(
1798
+ 'version' => '2.7.2.0',
1799
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/WCAdminActiveForProvider.php'
1800
  ),
1801
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\GetRuleProcessor' => array(
1802
+ 'version' => '2.7.2.0',
1803
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/GetRuleProcessor.php'
1804
  ),
1805
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\RuleEvaluator' => array(
1806
+ 'version' => '2.7.2.0',
1807
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/RuleEvaluator.php'
1808
  ),
1809
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\RuleProcessorInterface' => array(
1810
+ 'version' => '2.7.2.0',
1811
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/RuleProcessorInterface.php'
1812
  ),
1813
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\PassRuleProcessor' => array(
1814
+ 'version' => '2.7.2.0',
1815
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/PassRuleProcessor.php'
1816
+ ),
1817
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\SpecRunner' => array(
1818
+ 'version' => '2.7.2.0',
1819
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/SpecRunner.php'
1820
+ ),
1821
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\StoredStateSetupForProducts' => array(
1822
+ 'version' => '2.7.2.0',
1823
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/StoredStateSetupForProducts.php'
1824
+ ),
1825
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\IsEcommerceRuleProcessor' => array(
1826
+ 'version' => '2.7.2.0',
1827
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/IsEcommerceRuleProcessor.php'
1828
+ ),
1829
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\FailRuleProcessor' => array(
1830
+ 'version' => '2.7.2.0',
1831
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/FailRuleProcessor.php'
1832
+ ),
1833
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\BaseLocationStateRuleProcessor' => array(
1834
+ 'version' => '2.7.2.0',
1835
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/RemoteInboxNotifications/BaseLocationStateRuleProcessor.php'
1836
+ ),
1837
+ 'Automattic\\WooCommerce\\Admin\\Composer\\Package' => array(
1838
+ 'version' => '2.7.2.0',
1839
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Composer/Package.php'
1840
+ ),
1841
+ 'Automattic\\WooCommerce\\Admin\\PluginsProvider\\PluginsProvider' => array(
1842
+ 'version' => '2.7.2.0',
1843
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/PluginsProvider/PluginsProvider.php'
1844
+ ),
1845
+ 'Automattic\\WooCommerce\\Admin\\PluginsProvider\\PluginsProviderInterface' => array(
1846
+ 'version' => '2.7.2.0',
1847
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/PluginsProvider/PluginsProviderInterface.php'
1848
+ ),
1849
+ 'Automattic\\WooCommerce\\Admin\\WCAdminSharedSettings' => array(
1850
+ 'version' => '2.7.2.0',
1851
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/WCAdminSharedSettings.php'
1852
+ ),
1853
+ 'Automattic\\WooCommerce\\Admin\\Marketing\\InstalledExtensions' => array(
1854
+ 'version' => '2.7.2.0',
1855
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Marketing/InstalledExtensions.php'
1856
+ ),
1857
+ 'Automattic\\WooCommerce\\Admin\\PluginsHelper' => array(
1858
+ 'version' => '2.7.2.0',
1859
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/PluginsHelper.php'
1860
+ ),
1861
+ 'Automattic\\WooCommerce\\Admin\\PaymentPlugins' => array(
1862
+ 'version' => '2.7.2.0',
1863
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/PaymentPlugins.php'
1864
+ ),
1865
+ 'Automattic\\WooCommerce\\Admin\\ReportCSVEmail' => array(
1866
+ 'version' => '2.7.2.0',
1867
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/ReportCSVEmail.php'
1868
+ ),
1869
+ 'Automattic\\WooCommerce\\Admin\\Notes\\RealTimeOrderAlerts' => array(
1870
+ 'version' => '2.7.2.0',
1871
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/RealTimeOrderAlerts.php'
1872
+ ),
1873
+ 'Automattic\\WooCommerce\\Admin\\Notes\\OnlineClothingStore' => array(
1874
+ 'version' => '2.7.2.0',
1875
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/OnlineClothingStore.php'
1876
  ),
1877
  'Automattic\\WooCommerce\\Admin\\Notes\\ManageStoreActivityFromHomeScreen' => array(
1878
+ 'version' => '2.7.2.0',
1879
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/ManageStoreActivityFromHomeScreen.php'
1880
  ),
1881
+ 'Automattic\\WooCommerce\\Admin\\Notes\\Note' => array(
1882
+ 'version' => '2.7.2.0',
1883
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/Note.php'
1884
+ ),
1885
+ 'Automattic\\WooCommerce\\Admin\\Notes\\ChooseNiche' => array(
1886
+ 'version' => '2.7.2.0',
1887
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/ChooseNiche.php'
1888
+ ),
1889
+ 'Automattic\\WooCommerce\\Admin\\Notes\\FirstDownlaodableProduct' => array(
1890
+ 'version' => '2.7.2.0',
1891
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/FirstDownlaodableProduct.php'
1892
+ ),
1893
+ 'Automattic\\WooCommerce\\Admin\\Notes\\ManageOrdersOnTheGo' => array(
1894
+ 'version' => '2.7.2.0',
1895
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/ManageOrdersOnTheGo.php'
1896
+ ),
1897
+ 'Automattic\\WooCommerce\\Admin\\Notes\\WelcomeToWooCommerceForStoreUsers' => array(
1898
+ 'version' => '2.7.2.0',
1899
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/WelcomeToWooCommerceForStoreUsers.php'
1900
+ ),
1901
+ 'Automattic\\WooCommerce\\Admin\\Notes\\TrackingOptIn' => array(
1902
+ 'version' => '2.7.2.0',
1903
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/TrackingOptIn.php'
1904
+ ),
1905
+ 'Automattic\\WooCommerce\\Admin\\Notes\\CustomizeStoreWithBlocks' => array(
1906
+ 'version' => '2.7.2.0',
1907
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/CustomizeStoreWithBlocks.php'
1908
+ ),
1909
+ 'Automattic\\WooCommerce\\Admin\\Notes\\MobileApp' => array(
1910
+ 'version' => '2.7.2.0',
1911
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/MobileApp.php'
1912
+ ),
1913
+ 'Automattic\\WooCommerce\\Admin\\Notes\\OnboardingPayments' => array(
1914
+ 'version' => '2.7.2.0',
1915
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/OnboardingPayments.php'
1916
+ ),
1917
  'Automattic\\WooCommerce\\Admin\\Notes\\CouponPageMoved' => array(
1918
+ 'version' => '2.7.2.0',
1919
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/CouponPageMoved.php'
1920
  ),
1921
+ 'Automattic\\WooCommerce\\Admin\\Notes\\InsightFirstSale' => array(
1922
+ 'version' => '2.7.2.0',
1923
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/InsightFirstSale.php'
1924
+ ),
1925
+ 'Automattic\\WooCommerce\\Admin\\Notes\\NewSalesRecord' => array(
1926
+ 'version' => '2.7.2.0',
1927
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/NewSalesRecord.php'
1928
+ ),
1929
+ 'Automattic\\WooCommerce\\Admin\\Notes\\OnboardingTraits' => array(
1930
+ 'version' => '2.7.2.0',
1931
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/OnboardingTraits.php'
1932
+ ),
1933
+ 'Automattic\\WooCommerce\\Admin\\Notes\\NotesUnavailableException' => array(
1934
+ 'version' => '2.7.2.0',
1935
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/NotesUnavailableException.php'
1936
+ ),
1937
+ 'Automattic\\WooCommerce\\Admin\\Notes\\FilterByProductVariationsInReports' => array(
1938
+ 'version' => '2.7.2.0',
1939
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/FilterByProductVariationsInReports.php'
1940
+ ),
1941
+ 'Automattic\\WooCommerce\\Admin\\Notes\\OrderMilestones' => array(
1942
+ 'version' => '2.7.2.0',
1943
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/OrderMilestones.php'
1944
+ ),
1945
+ 'Automattic\\WooCommerce\\Admin\\Notes\\InstallJPAndWCSPlugins' => array(
1946
+ 'version' => '2.7.2.0',
1947
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/InstallJPAndWCSPlugins.php'
1948
+ ),
1949
+ 'Automattic\\WooCommerce\\Admin\\Notes\\AddingAndManangingProducts' => array(
1950
+ 'version' => '2.7.2.0',
1951
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/AddingAndManangingProducts.php'
1952
+ ),
1953
+ 'Automattic\\WooCommerce\\Admin\\Notes\\EUVATNumber' => array(
1954
+ 'version' => '2.7.2.0',
1955
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/EUVATNumber.php'
1956
+ ),
1957
+ 'Automattic\\WooCommerce\\Admin\\Notes\\SellingOnlineCourses' => array(
1958
+ 'version' => '2.7.2.0',
1959
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/SellingOnlineCourses.php'
1960
+ ),
1961
+ 'Automattic\\WooCommerce\\Admin\\Notes\\MigrateFromShopify' => array(
1962
+ 'version' => '2.7.2.0',
1963
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/MigrateFromShopify.php'
1964
+ ),
1965
+ 'Automattic\\WooCommerce\\Admin\\Notes\\GivingFeedbackNotes' => array(
1966
+ 'version' => '2.7.2.0',
1967
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/GivingFeedbackNotes.php'
1968
+ ),
1969
+ 'Automattic\\WooCommerce\\Admin\\Notes\\UnsecuredReportFiles' => array(
1970
+ 'version' => '2.7.2.0',
1971
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/UnsecuredReportFiles.php'
1972
+ ),
1973
+ 'Automattic\\WooCommerce\\Admin\\Notes\\NavigationFeedback' => array(
1974
+ 'version' => '2.7.2.0',
1975
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/NavigationFeedback.php'
1976
+ ),
1977
  'Automattic\\WooCommerce\\Admin\\Notes\\WooCommerceSubscriptions' => array(
1978
+ 'version' => '2.7.2.0',
1979
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/WooCommerceSubscriptions.php'
1980
  ),
1981
+ 'Automattic\\WooCommerce\\Admin\\Notes\\StartDropshippingBusiness' => array(
1982
+ 'version' => '2.7.2.0',
1983
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/StartDropshippingBusiness.php'
1984
+ ),
1985
+ 'Automattic\\WooCommerce\\Admin\\Notes\\LaunchChecklist' => array(
1986
+ 'version' => '2.7.2.0',
1987
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/LaunchChecklist.php'
1988
+ ),
1989
+ 'Automattic\\WooCommerce\\Admin\\Notes\\ChoosingTheme' => array(
1990
+ 'version' => '2.7.2.0',
1991
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/ChoosingTheme.php'
1992
+ ),
1993
+ 'Automattic\\WooCommerce\\Admin\\Notes\\EditProductsOnTheMove' => array(
1994
+ 'version' => '2.7.2.0',
1995
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/EditProductsOnTheMove.php'
1996
+ ),
1997
+ 'Automattic\\WooCommerce\\Admin\\Notes\\SetUpAdditionalPaymentTypes' => array(
1998
+ 'version' => '2.7.2.0',
1999
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/SetUpAdditionalPaymentTypes.php'
2000
+ ),
2001
+ 'Automattic\\WooCommerce\\Admin\\Notes\\NoteTraits' => array(
2002
+ 'version' => '2.7.2.0',
2003
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/NoteTraits.php'
2004
+ ),
2005
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Note' => array(
2006
+ 'version' => '2.7.2.0',
2007
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
2008
  ),
2009
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes' => array(
2010
+ 'version' => '2.7.2.0',
2011
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
2012
  ),
2013
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Choose_Niche' => array(
2014
+ 'version' => '2.7.2.0',
2015
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
2016
  ),
2017
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Coupon_Page_Moved' => array(
2018
+ 'version' => '2.7.2.0',
2019
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
2020
  ),
2021
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Customize_Store_With_Blocks' => array(
2022
+ 'version' => '2.7.2.0',
2023
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
2024
  ),
2025
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Deactivate_Plugin' => array(
2026
+ 'version' => '2.7.2.0',
2027
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
2028
  ),
2029
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Draw_Attention' => array(
2030
+ 'version' => '2.7.2.0',
2031
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
2032
  ),
2033
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Edit_Products_On_The_Move' => array(
2034
+ 'version' => '2.7.2.0',
2035
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
2036
  ),
2037
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_EU_VAT_Number' => array(
2038
+ 'version' => '2.7.2.0',
2039
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
2040
  ),
2041
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Facebook_Marketing_Expert' => array(
2042
+ 'version' => '2.7.2.0',
2043
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
2044
  ),
2045
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_First_Product' => array(
2046
+ 'version' => '2.7.2.0',
2047
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
2048
  ),
2049
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Giving_Feedback_Notes' => array(
2050
+ 'version' => '2.7.2.0',
2051
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
2052
  ),
2053
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Insight_First_Sale' => array(
2054
+ 'version' => '2.7.2.0',
2055
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
2056
  ),
2057
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Install_JP_And_WCS_Plugins' => array(
2058
+ 'version' => '2.7.2.0',
2059
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
2060
  ),
2061
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Launch_Checklist' => array(
2062
+ 'version' => '2.7.2.0',
2063
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
2064
  ),
2065
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Marketing' => array(
2066
+ 'version' => '2.7.2.0',
2067
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
2068
  ),
2069
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Migrate_From_Shopify' => array(
2070
+ 'version' => '2.7.2.0',
2071
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
2072
  ),
2073
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Mobile_App' => array(
2074
+ 'version' => '2.7.2.0',
2075
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
2076
  ),
2077
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Need_Some_Inspiration' => array(
2078
+ 'version' => '2.7.2.0',
2079
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
2080
  ),
2081
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_New_Sales_Record' => array(
2082
+ 'version' => '2.7.2.0',
2083
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
2084
  ),
2085
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Onboarding_Email_Marketing' => array(
2086
+ 'version' => '2.7.2.0',
2087
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
2088
  ),
2089
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Onboarding_Payments' => array(
2090
+ 'version' => '2.7.2.0',
2091
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
2092
  ),
2093
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Online_Clothing_Store' => array(
2094
+ 'version' => '2.7.2.0',
2095
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
2096
  ),
2097
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Order_Milestones' => array(
2098
+ 'version' => '2.7.2.0',
2099
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
2100
  ),
2101
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Performance_On_Mobile' => array(
2102
+ 'version' => '2.7.2.0',
2103
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
2104
  ),
2105
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Personalize_Store' => array(
2106
+ 'version' => '2.7.2.0',
2107
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
2108
  ),
2109
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Real_Time_Order_Alerts' => array(
2110
+ 'version' => '2.7.2.0',
2111
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
2112
  ),
2113
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Selling_Online_Courses' => array(
2114
+ 'version' => '2.7.2.0',
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2115
  'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
2116
  ),
2117
+ 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Set_Up_Additional_Payment_Types' => array(
2118
+ 'version' => '2.7.2.0',
2119
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2120
  ),
2121
+ 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Start_Dropshipping_Business' => array(
2122
+ 'version' => '2.7.2.0',
2123
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
2124
  ),
2125
+ 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Test_Checkout' => array(
2126
+ 'version' => '2.7.2.0',
2127
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
2128
  ),
2129
+ 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Tracking_Opt_In' => array(
2130
+ 'version' => '2.7.2.0',
2131
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
2132
  ),
2133
+ 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Woo_Subscriptions_Notes' => array(
2134
+ 'version' => '2.7.2.0',
2135
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
2136
  ),
2137
+ 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_WooCommerce_Payments' => array(
2138
+ 'version' => '2.7.2.0',
2139
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
2140
  ),
2141
+ 'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_WooCommerce_Subscriptions' => array(
2142
+ 'version' => '2.7.2.0',
2143
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeprecatedNotes.php'
2144
  ),
2145
+ 'Automattic\\WooCommerce\\Admin\\Notes\\MerchantEmailNotifications\\MerchantEmailNotifications' => array(
2146
+ 'version' => '2.7.2.0',
2147
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/MerchantEmailNotifications/MerchantEmailNotifications.php'
2148
  ),
2149
+ 'Automattic\\WooCommerce\\Admin\\Notes\\MerchantEmailNotifications\\NotificationEmail' => array(
2150
+ 'version' => '2.7.2.0',
2151
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/MerchantEmailNotifications/NotificationEmail.php'
2152
  ),
2153
+ 'Automattic\\WooCommerce\\Admin\\Notes\\DeactivatePlugin' => array(
2154
+ 'version' => '2.7.2.0',
2155
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DeactivatePlugin.php'
2156
  ),
2157
+ 'Automattic\\WooCommerce\\Admin\\Notes\\DataStore' => array(
2158
+ 'version' => '2.7.2.0',
2159
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DataStore.php'
2160
  ),
2161
+ 'Automattic\\WooCommerce\\Admin\\Notes\\WooSubscriptionsNotes' => array(
2162
+ 'version' => '2.7.2.0',
2163
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/WooSubscriptionsNotes.php'
2164
  ),
2165
+ 'Automattic\\WooCommerce\\Admin\\Notes\\PersonalizeStore' => array(
2166
+ 'version' => '2.7.2.0',
2167
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/PersonalizeStore.php'
2168
  ),
2169
+ 'Automattic\\WooCommerce\\Admin\\Notes\\GettingStartedInEcommerceWebinar' => array(
2170
+ 'version' => '2.7.2.0',
2171
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/GettingStartedInEcommerceWebinar.php'
2172
  ),
2173
+ 'Automattic\\WooCommerce\\Admin\\Notes\\Marketing' => array(
2174
+ 'version' => '2.7.2.0',
2175
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/Marketing.php'
2176
  ),
2177
+ 'Automattic\\WooCommerce\\Admin\\Notes\\DrawAttention' => array(
2178
+ 'version' => '2.7.2.0',
2179
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/DrawAttention.php'
2180
  ),
2181
+ 'Automattic\\WooCommerce\\Admin\\Notes\\CustomizingProductCatalog' => array(
2182
+ 'version' => '2.7.2.0',
2183
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/CustomizingProductCatalog.php'
2184
  ),
2185
+ 'Automattic\\WooCommerce\\Admin\\Notes\\LearnMoreAboutVariableProducts' => array(
2186
+ 'version' => '2.7.2.0',
2187
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/LearnMoreAboutVariableProducts.php'
2188
  ),
2189
+ 'Automattic\\WooCommerce\\Admin\\Notes\\WooCommercePayments' => array(
2190
+ 'version' => '2.7.2.0',
2191
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/WooCommercePayments.php'
2192
  ),
2193
+ 'Automattic\\WooCommerce\\Admin\\Notes\\InsightFirstProductAndPayment' => array(
2194
+ 'version' => '2.7.2.0',
2195
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/InsightFirstProductAndPayment.php'
2196
  ),
2197
+ 'Automattic\\WooCommerce\\Admin\\Notes\\AddFirstProduct' => array(
2198
+ 'version' => '2.7.2.0',
2199
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/AddFirstProduct.php'
2200
  ),
2201
+ 'Automattic\\WooCommerce\\Admin\\Notes\\NeedSomeInspiration' => array(
2202
+ 'version' => '2.7.2.0',
2203
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/NeedSomeInspiration.php'
2204
  ),
2205
+ 'Automattic\\WooCommerce\\Admin\\Notes\\PerformanceOnMobile' => array(
2206
+ 'version' => '2.7.2.0',
2207
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/PerformanceOnMobile.php'
2208
  ),
2209
+ 'Automattic\\WooCommerce\\Admin\\Notes\\NavigationFeedbackFollowUp' => array(
2210
+ 'version' => '2.7.2.0',
2211
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/NavigationFeedbackFollowUp.php'
2212
  ),
2213
+ 'Automattic\\WooCommerce\\Admin\\Notes\\NavigationNudge' => array(
2214
+ 'version' => '2.7.2.0',
2215
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/NavigationNudge.php'
2216
  ),
2217
+ 'Automattic\\WooCommerce\\Admin\\Notes\\FirstProduct' => array(
2218
+ 'version' => '2.7.2.0',
2219
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/FirstProduct.php'
2220
  ),
2221
+ 'Automattic\\WooCommerce\\Admin\\Notes\\TestCheckout' => array(
2222
+ 'version' => '2.7.2.0',
2223
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/TestCheckout.php'
2224
  ),
2225
+ 'Automattic\\WooCommerce\\Admin\\Notes\\Notes' => array(
2226
+ 'version' => '2.7.2.0',
2227
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/Notes.php'
2228
  ),
2229
+ 'Automattic\\WooCommerce\\Admin\\Notes\\MarketingJetpack' => array(
2230
+ 'version' => '2.7.2.0',
2231
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Notes/MarketingJetpack.php'
2232
  ),
2233
+ 'Automattic\\WooCommerce\\Admin\\ReportCSVExporter' => array(
2234
+ 'version' => '2.7.2.0',
2235
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/ReportCSVExporter.php'
2236
  ),
2237
+ 'Automattic\\WooCommerce\\Admin\\ReportsSync' => array(
2238
+ 'version' => '2.7.2.0',
2239
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/ReportsSync.php'
2240
  ),
2241
+ 'Automattic\\WooCommerce\\Admin\\FeaturePlugin' => array(
2242
+ 'version' => '2.7.2.0',
2243
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/FeaturePlugin.php'
2244
  ),
2245
+ 'Automattic\\WooCommerce\\Admin\\Overrides\\Order' => array(
2246
+ 'version' => '2.7.2.0',
2247
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Overrides/Order.php'
2248
  ),
2249
+ 'Automattic\\WooCommerce\\Admin\\Overrides\\OrderTraits' => array(
2250
+ 'version' => '2.7.2.0',
2251
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Overrides/OrderTraits.php'
2252
  ),
2253
+ 'Automattic\\WooCommerce\\Admin\\Overrides\\ThemeUpgrader' => array(
2254
+ 'version' => '2.7.2.0',
2255
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Overrides/ThemeUpgrader.php'
2256
  ),
2257
+ 'Automattic\\WooCommerce\\Admin\\Overrides\\OrderRefund' => array(
2258
+ 'version' => '2.7.2.0',
2259
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Overrides/OrderRefund.php'
2260
  ),
2261
+ 'Automattic\\WooCommerce\\Admin\\Overrides\\ThemeUpgraderSkin' => array(
2262
+ 'version' => '2.7.2.0',
2263
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Overrides/ThemeUpgraderSkin.php'
2264
  ),
2265
+ 'Automattic\\WooCommerce\\Admin\\PluginsInstaller' => array(
2266
+ 'version' => '2.7.2.0',
2267
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/PluginsInstaller.php'
2268
  ),
2269
+ 'Automattic\\WooCommerce\\Admin\\CategoryLookup' => array(
2270
+ 'version' => '2.7.2.0',
2271
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/CategoryLookup.php'
2272
  ),
2273
+ 'Automattic\\WooCommerce\\Admin\\API\\Init' => array(
2274
+ 'version' => '2.7.2.0',
2275
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Init.php'
2276
  ),
2277
+ 'Automattic\\WooCommerce\\Admin\\API\\SettingOptions' => array(
2278
+ 'version' => '2.7.2.0',
2279
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/SettingOptions.php'
2280
  ),
2281
+ 'Automattic\\WooCommerce\\Admin\\API\\NavigationFavorites' => array(
2282
+ 'version' => '2.7.2.0',
2283
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/NavigationFavorites.php'
2284
  ),
2285
+ 'Automattic\\WooCommerce\\Admin\\API\\OnboardingPayments' => array(
2286
+ 'version' => '2.7.2.0',
2287
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/OnboardingPayments.php'
2288
  ),
2289
+ 'Automattic\\WooCommerce\\Admin\\API\\Features' => array(
2290
+ 'version' => '2.7.2.0',
2291
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Features.php'
2292
  ),
2293
+ 'Automattic\\WooCommerce\\Admin\\API\\CustomAttributeTraits' => array(
2294
+ 'version' => '2.7.2.0',
2295
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/CustomAttributeTraits.php'
2296
  ),
2297
+ 'Automattic\\WooCommerce\\Admin\\API\\Themes' => array(
2298
+ 'version' => '2.7.2.0',
2299
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Themes.php'
2300
  ),
2301
+ 'Automattic\\WooCommerce\\Admin\\API\\ProductAttributes' => array(
2302
+ 'version' => '2.7.2.0',
2303
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/ProductAttributes.php'
2304
  ),
2305
+ 'Automattic\\WooCommerce\\Admin\\API\\ProductAttributeTerms' => array(
2306
+ 'version' => '2.7.2.0',
2307
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/ProductAttributeTerms.php'
2308
  ),
2309
+ 'Automattic\\WooCommerce\\Admin\\API\\Taxes' => array(
2310
+ 'version' => '2.7.2.0',
2311
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Taxes.php'
2312
  ),
2313
+ 'Automattic\\WooCommerce\\Admin\\API\\ProductReviews' => array(
2314
+ 'version' => '2.7.2.0',
2315
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/ProductReviews.php'
2316
  ),
2317
+ 'Automattic\\WooCommerce\\Admin\\API\\OnboardingTasks' => array(
2318
+ 'version' => '2.7.2.0',
2319
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/OnboardingTasks.php'
2320
  ),
2321
+ 'Automattic\\WooCommerce\\Admin\\API\\Customers' => array(
2322
+ 'version' => '2.7.2.0',
2323
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Customers.php'
2324
  ),
2325
+ 'Automattic\\WooCommerce\\Admin\\API\\NoteActions' => array(
2326
+ 'version' => '2.7.2.0',
2327
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/NoteActions.php'
2328
  ),
2329
+ 'Automattic\\WooCommerce\\Admin\\API\\ProductCategories' => array(
2330
+ 'version' => '2.7.2.0',
2331
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/ProductCategories.php'
2332
  ),
2333
+ 'Automattic\\WooCommerce\\Admin\\API\\Leaderboards' => array(
2334
+ 'version' => '2.7.2.0',
2335
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Leaderboards.php'
2336
  ),
2337
+ 'Automattic\\WooCommerce\\Admin\\API\\OnboardingThemes' => array(
2338
+ 'version' => '2.7.2.0',
2339
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/OnboardingThemes.php'
2340
  ),
2341
+ 'Automattic\\WooCommerce\\Admin\\API\\Coupons' => array(
2342
+ 'version' => '2.7.2.0',
2343
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Coupons.php'
2344
  ),
2345
+ 'Automattic\\WooCommerce\\Admin\\API\\OnboardingProfile' => array(
2346
+ 'version' => '2.7.2.0',
2347
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/OnboardingProfile.php'
2348
  ),
2349
+ 'Automattic\\WooCommerce\\Admin\\API\\MarketingOverview' => array(
2350
+ 'version' => '2.7.2.0',
2351
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/MarketingOverview.php'
2352
  ),
2353
+ 'Automattic\\WooCommerce\\Admin\\API\\DataCountries' => array(
2354
+ 'version' => '2.7.2.0',
2355
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/DataCountries.php'
2356
  ),
2357
+ 'Automattic\\WooCommerce\\Admin\\API\\Options' => array(
2358
+ 'version' => '2.7.2.0',
2359
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Options.php'
2360
  ),
2361
+ 'Automattic\\WooCommerce\\Admin\\API\\Data' => array(
2362
+ 'version' => '2.7.2.0',
2363
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Data.php'
2364
  ),
2365
+ 'Automattic\\WooCommerce\\Admin\\API\\Products' => array(
2366
+ 'version' => '2.7.2.0',
2367
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Products.php'
2368
  ),
2369
+ 'Automattic\\WooCommerce\\Admin\\API\\Plugins' => array(
2370
+ 'version' => '2.7.2.0',
2371
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Plugins.php'
2372
  ),
2373
+ 'Automattic\\WooCommerce\\Admin\\API\\ProductsLowInStock' => array(
2374
+ 'version' => '2.7.2.0',
2375
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/ProductsLowInStock.php'
2376
+ ),
2377
+ 'Automattic\\WooCommerce\\Admin\\API\\Marketing' => array(
2378
+ 'version' => '2.7.2.0',
2379
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Marketing.php'
2380
  ),
2381
  'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Query' => array(
2382
+ 'version' => '2.7.2.0',
2383
  'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Customers/Query.php'
2384
  ),
 
 
 
 
2385
  'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Stats\\Query' => array(
2386
+ 'version' => '2.7.2.0',
2387
  'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Customers/Stats/Query.php'
2388
  ),
2389
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Stats\\DataStore' => array(
2390
+ 'version' => '2.7.2.0',
2391
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Customers/Stats/DataStore.php'
2392
+ ),
2393
  'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Stats\\Controller' => array(
2394
+ 'version' => '2.7.2.0',
2395
  'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Customers/Stats/Controller.php'
2396
  ),
2397
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\DataStore' => array(
2398
+ 'version' => '2.7.2.0',
2399
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Customers/DataStore.php'
2400
+ ),
2401
  'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Controller' => array(
2402
+ 'version' => '2.7.2.0',
2403
  'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Customers/Controller.php'
2404
  ),
2405
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Query' => array(
2406
+ 'version' => '2.7.2.0',
2407
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Orders/Query.php'
2408
  ),
2409
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Stats\\Query' => array(
2410
+ 'version' => '2.7.2.0',
2411
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Orders/Stats/Query.php'
2412
+ ),
2413
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Stats\\DataStore' => array(
2414
+ 'version' => '2.7.2.0',
2415
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Orders/Stats/DataStore.php'
2416
+ ),
2417
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Stats\\Segmenter' => array(
2418
+ 'version' => '2.7.2.0',
2419
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Orders/Stats/Segmenter.php'
2420
+ ),
2421
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Stats\\Controller' => array(
2422
+ 'version' => '2.7.2.0',
2423
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Orders/Stats/Controller.php'
2424
+ ),
2425
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\DataStore' => array(
2426
+ 'version' => '2.7.2.0',
2427
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Orders/DataStore.php'
2428
+ ),
2429
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Orders\\Controller' => array(
2430
+ 'version' => '2.7.2.0',
2431
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Orders/Controller.php'
2432
  ),
2433
  'Automattic\\WooCommerce\\Admin\\API\\Reports\\Categories\\Query' => array(
2434
+ 'version' => '2.7.2.0',
2435
  'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Categories/Query.php'
2436
  ),
2437
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Categories\\DataStore' => array(
2438
+ 'version' => '2.7.2.0',
2439
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Categories/DataStore.php'
2440
+ ),
2441
  'Automattic\\WooCommerce\\Admin\\API\\Reports\\Categories\\Controller' => array(
2442
+ 'version' => '2.7.2.0',
2443
  'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Categories/Controller.php'
2444
  ),
2445
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Export\\Controller' => array(
2446
+ 'version' => '2.7.2.0',
2447
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Export/Controller.php'
2448
  ),
2449
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Query' => array(
2450
+ 'version' => '2.7.2.0',
2451
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Coupons/Query.php'
2452
  ),
2453
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Stats\\Query' => array(
2454
+ 'version' => '2.7.2.0',
2455
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Coupons/Stats/Query.php'
2456
  ),
2457
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Stats\\DataStore' => array(
2458
+ 'version' => '2.7.2.0',
2459
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Coupons/Stats/DataStore.php'
2460
  ),
2461
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Stats\\Segmenter' => array(
2462
+ 'version' => '2.7.2.0',
2463
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Coupons/Stats/Segmenter.php'
2464
  ),
2465
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Stats\\Controller' => array(
2466
+ 'version' => '2.7.2.0',
2467
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Coupons/Stats/Controller.php'
2468
  ),
2469
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\DataStore' => array(
2470
+ 'version' => '2.7.2.0',
2471
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Coupons/DataStore.php'
2472
  ),
2473
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Controller' => array(
2474
+ 'version' => '2.7.2.0',
2475
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Coupons/Controller.php'
2476
  ),
2477
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Revenue\\Query' => array(
2478
+ 'version' => '2.7.2.0',
2479
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Revenue/Query.php'
2480
  ),
2481
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Revenue\\Stats\\Controller' => array(
2482
+ 'version' => '2.7.2.0',
2483
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Revenue/Stats/Controller.php'
2484
  ),
2485
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Query' => array(
2486
+ 'version' => '2.7.2.0',
2487
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Query.php'
2488
  ),
2489
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Cache' => array(
2490
+ 'version' => '2.7.2.0',
2491
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Cache.php'
2492
  ),
2493
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\DataStoreInterface' => array(
2494
+ 'version' => '2.7.2.0',
2495
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/DataStoreInterface.php'
2496
  ),
2497
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Import\\Controller' => array(
2498
+ 'version' => '2.7.2.0',
2499
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Import/Controller.php'
2500
  ),
2501
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\PerformanceIndicators\\Controller' => array(
2502
+ 'version' => '2.7.2.0',
2503
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/PerformanceIndicators/Controller.php'
2504
  ),
2505
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Query' => array(
2506
+ 'version' => '2.7.2.0',
2507
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Variations/Query.php'
2508
  ),
2509
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Stats\\Query' => array(
2510
+ 'version' => '2.7.2.0',
2511
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Variations/Stats/Query.php'
2512
  ),
2513
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Stats\\DataStore' => array(
2514
+ 'version' => '2.7.2.0',
2515
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Variations/Stats/DataStore.php'
2516
  ),
2517
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Stats\\Segmenter' => array(
2518
+ 'version' => '2.7.2.0',
2519
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Variations/Stats/Segmenter.php'
2520
  ),
2521
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Stats\\Controller' => array(
2522
+ 'version' => '2.7.2.0',
2523
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Variations/Stats/Controller.php'
2524
  ),
2525
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\DataStore' => array(
2526
+ 'version' => '2.7.2.0',
2527
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Variations/DataStore.php'
2528
  ),
2529
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Controller' => array(
2530
+ 'version' => '2.7.2.0',
2531
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Variations/Controller.php'
2532
  ),
2533
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\ExportableTraits' => array(
2534
+ 'version' => '2.7.2.0',
2535
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/ExportableTraits.php'
2536
  ),
2537
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\ParameterException' => array(
2538
+ 'version' => '2.7.2.0',
2539
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/ParameterException.php'
2540
  ),
2541
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\SqlQuery' => array(
2542
+ 'version' => '2.7.2.0',
2543
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/SqlQuery.php'
2544
  ),
2545
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Query' => array(
2546
+ 'version' => '2.7.2.0',
2547
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Products/Query.php'
2548
  ),
2549
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Stats\\Query' => array(
2550
+ 'version' => '2.7.2.0',
2551
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Products/Stats/Query.php'
2552
  ),
2553
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Stats\\DataStore' => array(
2554
+ 'version' => '2.7.2.0',
2555
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Products/Stats/DataStore.php'
2556
  ),
2557
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Stats\\Segmenter' => array(
2558
+ 'version' => '2.7.2.0',
2559
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Products/Stats/Segmenter.php'
2560
  ),
2561
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Stats\\Controller' => array(
2562
+ 'version' => '2.7.2.0',
2563
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Products/Stats/Controller.php'
2564
  ),
2565
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\DataStore' => array(
2566
+ 'version' => '2.7.2.0',
2567
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Products/DataStore.php'
2568
  ),
2569
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Products\\Controller' => array(
2570
+ 'version' => '2.7.2.0',
2571
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Products/Controller.php'
2572
  ),
2573
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\DataStore' => array(
2574
+ 'version' => '2.7.2.0',
2575
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/DataStore.php'
2576
  ),
2577
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Segmenter' => array(
2578
+ 'version' => '2.7.2.0',
2579
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Segmenter.php'
2580
  ),
2581
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Stock\\Stats\\Query' => array(
2582
+ 'version' => '2.7.2.0',
2583
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Stock/Stats/Query.php'
2584
  ),
2585
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Stock\\Stats\\DataStore' => array(
2586
+ 'version' => '2.7.2.0',
2587
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Stock/Stats/DataStore.php'
2588
  ),
2589
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Stock\\Stats\\Controller' => array(
2590
+ 'version' => '2.7.2.0',
2591
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Stock/Stats/Controller.php'
2592
  ),
2593
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Stock\\Controller' => array(
2594
+ 'version' => '2.7.2.0',
2595
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Stock/Controller.php'
2596
  ),
2597
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\ExportableInterface' => array(
2598
+ 'version' => '2.7.2.0',
2599
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/ExportableInterface.php'
2600
  ),
2601
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Files\\Controller' => array(
2602
+ 'version' => '2.7.2.0',
2603
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Downloads/Files/Controller.php'
2604
  ),
2605
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Query' => array(
2606
+ 'version' => '2.7.2.0',
2607
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Downloads/Query.php'
2608
  ),
2609
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Stats\\Query' => array(
2610
+ 'version' => '2.7.2.0',
2611
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Downloads/Stats/Query.php'
2612
  ),
2613
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Stats\\DataStore' => array(
2614
+ 'version' => '2.7.2.0',
2615
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Downloads/Stats/DataStore.php'
2616
  ),
2617
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Stats\\Controller' => array(
2618
+ 'version' => '2.7.2.0',
2619
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Downloads/Stats/Controller.php'
2620
  ),
2621
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\DataStore' => array(
2622
+ 'version' => '2.7.2.0',
2623
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Downloads/DataStore.php'
2624
  ),
2625
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Downloads\\Controller' => array(
2626
+ 'version' => '2.7.2.0',
2627
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Downloads/Controller.php'
2628
  ),
2629
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Query' => array(
2630
+ 'version' => '2.7.2.0',
2631
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Taxes/Query.php'
2632
  ),
2633
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Stats\\Query' => array(
2634
+ 'version' => '2.7.2.0',
2635
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Taxes/Stats/Query.php'
2636
  ),
2637
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Stats\\DataStore' => array(
2638
+ 'version' => '2.7.2.0',
2639
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Taxes/Stats/DataStore.php'
2640
  ),
2641
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Stats\\Segmenter' => array(
2642
+ 'version' => '2.7.2.0',
2643
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Taxes/Stats/Segmenter.php'
2644
  ),
2645
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Stats\\Controller' => array(
2646
+ 'version' => '2.7.2.0',
2647
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Taxes/Stats/Controller.php'
2648
+ ),
2649
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\DataStore' => array(
2650
+ 'version' => '2.7.2.0',
2651
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Taxes/DataStore.php'
2652
+ ),
2653
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Taxes\\Controller' => array(
2654
+ 'version' => '2.7.2.0',
2655
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Taxes/Controller.php'
2656
+ ),
2657
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Controller' => array(
2658
+ 'version' => '2.7.2.0',
2659
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/Controller.php'
2660
+ ),
2661
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\TimeInterval' => array(
2662
+ 'version' => '2.7.2.0',
2663
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Reports/TimeInterval.php'
2664
  ),
2665
+ 'Automattic\\WooCommerce\\Admin\\API\\OnboardingFreeExtensions' => array(
2666
+ 'version' => '2.7.2.0',
2667
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/OnboardingFreeExtensions.php'
2668
  ),
2669
+ 'Automattic\\WooCommerce\\Admin\\API\\Orders' => array(
2670
+ 'version' => '2.7.2.0',
2671
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Orders.php'
2672
  ),
2673
+ 'Automattic\\WooCommerce\\Admin\\API\\Notes' => array(
2674
+ 'version' => '2.7.2.0',
2675
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/Notes.php'
2676
  ),
2677
+ 'Automattic\\WooCommerce\\Admin\\API\\DataDownloadIPs' => array(
2678
+ 'version' => '2.7.2.0',
2679
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/DataDownloadIPs.php'
2680
  ),
2681
+ 'Automattic\\WooCommerce\\Admin\\API\\ProductVariations' => array(
2682
+ 'version' => '2.7.2.0',
2683
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/API/ProductVariations.php'
2684
  ),
2685
+ 'Automattic\\WooCommerce\\Admin\\Survey' => array(
2686
+ 'version' => '2.7.2.0',
2687
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Survey.php'
2688
  ),
2689
+ 'Automattic\\WooCommerce\\Admin\\ReportExporter' => array(
2690
+ 'version' => '2.7.2.0',
2691
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/ReportExporter.php'
2692
  ),
2693
+ 'Automattic\\WooCommerce\\Admin\\DateTimeProvider\\DateTimeProviderInterface' => array(
2694
+ 'version' => '2.7.2.0',
2695
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/DateTimeProvider/DateTimeProviderInterface.php'
2696
  ),
2697
+ 'Automattic\\WooCommerce\\Admin\\DateTimeProvider\\CurrentDateTimeProvider' => array(
2698
+ 'version' => '2.7.2.0',
2699
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/DateTimeProvider/CurrentDateTimeProvider.php'
2700
  ),
2701
+ 'Automattic\\WooCommerce\\Admin\\Install' => array(
2702
+ 'version' => '2.7.2.0',
2703
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Install.php'
2704
  ),
2705
+ 'Automattic\\WooCommerce\\Admin\\Loader' => array(
2706
+ 'version' => '2.7.2.0',
2707
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Loader.php'
2708
  ),
2709
+ 'Automattic\\WooCommerce\\Admin\\Events' => array(
2710
+ 'version' => '2.7.2.0',
2711
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Events.php'
2712
  ),
2713
+ 'Automattic\\WooCommerce\\Admin\\Schedulers\\MailchimpScheduler' => array(
2714
+ 'version' => '2.7.2.0',
2715
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Schedulers/MailchimpScheduler.php'
2716
  ),
2717
+ 'Automattic\\WooCommerce\\Admin\\Schedulers\\ImportScheduler' => array(
2718
+ 'version' => '2.7.2.0',
2719
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Schedulers/ImportScheduler.php'
2720
  ),
2721
+ 'Automattic\\WooCommerce\\Admin\\Schedulers\\OrdersScheduler' => array(
2722
+ 'version' => '2.7.2.0',
2723
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Schedulers/OrdersScheduler.php'
2724
  ),
2725
+ 'Automattic\\WooCommerce\\Admin\\Schedulers\\CustomersScheduler' => array(
2726
+ 'version' => '2.7.2.0',
2727
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Schedulers/CustomersScheduler.php'
2728
  ),
2729
+ 'Automattic\\WooCommerce\\Admin\\Schedulers\\SchedulerTraits' => array(
2730
+ 'version' => '2.7.2.0',
2731
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Schedulers/SchedulerTraits.php'
2732
  ),
2733
+ 'Automattic\\WooCommerce\\Admin\\Schedulers\\ImportInterface' => array(
2734
+ 'version' => '2.7.2.0',
2735
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/Schedulers/ImportInterface.php'
2736
  ),
2737
+ 'Automattic\\WooCommerce\\Admin\\DeprecatedClassFacade' => array(
2738
+ 'version' => '2.7.2.0',
2739
+ 'path' => $baseDir . '/packages/woocommerce-admin/src/DeprecatedClassFacade.php'
2740
  ),
2741
+ 'Automattic\\WooCommerce\\Packages' => array(
2742
+ 'version' => '5.8.0.0',
2743
+ 'path' => $baseDir . '/src/Packages.php'
2744
  ),
2745
+ 'Automattic\\WooCommerce\\Autoloader' => array(
2746
+ 'version' => '5.8.0.0',
2747
+ 'path' => $baseDir . '/src/Autoloader.php'
2748
  ),
2749
  'Automattic\\WooCommerce\\Checkout\\Helpers\\ReserveStockException' => array(
2750
+ 'version' => '5.8.0.0',
2751
  'path' => $baseDir . '/src/Checkout/Helpers/ReserveStockException.php'
2752
  ),
2753
  'Automattic\\WooCommerce\\Checkout\\Helpers\\ReserveStock' => array(
2754
+ 'version' => '5.8.0.0',
2755
  'path' => $baseDir . '/src/Checkout/Helpers/ReserveStock.php'
2756
  ),
2757
+ 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ExtendedContainer' => array(
2758
+ 'version' => '5.8.0.0',
2759
+ 'path' => $baseDir . '/src/Internal/DependencyManagement/ExtendedContainer.php'
 
 
 
 
2760
  ),
2761
+ 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\AbstractServiceProvider' => array(
2762
+ 'version' => '5.8.0.0',
2763
+ 'path' => $baseDir . '/src/Internal/DependencyManagement/AbstractServiceProvider.php'
2764
  ),
2765
+ 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ContainerException' => array(
2766
+ 'version' => '5.8.0.0',
2767
+ 'path' => $baseDir . '/src/Internal/DependencyManagement/ContainerException.php'
2768
  ),
2769
+ 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\AssignDefaultCategoryServiceProvider' => array(
2770
+ 'version' => '5.8.0.0',
2771
+ 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/AssignDefaultCategoryServiceProvider.php'
2772
  ),
2773
  'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\ProxiesServiceProvider' => array(
2774
+ 'version' => '5.8.0.0',
2775
  'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/ProxiesServiceProvider.php'
2776
  ),
2777
+ 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\ProductAttributesLookupServiceProvider' => array(
2778
+ 'version' => '5.8.0.0',
2779
+ 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/ProductAttributesLookupServiceProvider.php'
2780
+ ),
2781
  'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\RestockRefundedItemsAdjusterServiceProvider' => array(
2782
+ 'version' => '5.8.0.0',
2783
  'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/RestockRefundedItemsAdjusterServiceProvider.php'
2784
  ),
2785
  'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\DownloadPermissionsAdjusterServiceProvider' => array(
2786
+ 'version' => '5.8.0.0',
2787
  'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/DownloadPermissionsAdjusterServiceProvider.php'
2788
  ),
 
 
 
 
 
 
 
 
 
 
 
 
2789
  'Automattic\\WooCommerce\\Internal\\DependencyManagement\\Definition' => array(
2790
+ 'version' => '5.8.0.0',
2791
  'path' => $baseDir . '/src/Internal/DependencyManagement/Definition.php'
2792
  ),
 
 
 
 
 
 
 
 
2793
  'Automattic\\WooCommerce\\Internal\\DownloadPermissionsAdjuster' => array(
2794
+ 'version' => '5.8.0.0',
2795
  'path' => $baseDir . '/src/Internal/DownloadPermissionsAdjuster.php'
2796
  ),
2797
  'Automattic\\WooCommerce\\Internal\\RestockRefundedItemsAdjuster' => array(
2798
+ 'version' => '5.8.0.0',
2799
  'path' => $baseDir . '/src/Internal/RestockRefundedItemsAdjuster.php'
2800
  ),
2801
+ 'Automattic\\WooCommerce\\Internal\\AssignDefaultCategory' => array(
2802
+ 'version' => '5.8.0.0',
2803
+ 'path' => $baseDir . '/src/Internal/AssignDefaultCategory.php'
2804
  ),
2805
+ 'Automattic\\WooCommerce\\Internal\\RestApiUtil' => array(
2806
+ 'version' => '5.8.0.0',
2807
+ 'path' => $baseDir . '/src/Internal/RestApiUtil.php'
2808
  ),
2809
  'Automattic\\WooCommerce\\Internal\\ProductAttributesLookup\\LookupDataStore' => array(
2810
+ 'version' => '5.8.0.0',
2811
  'path' => $baseDir . '/src/Internal/ProductAttributesLookup/LookupDataStore.php'
2812
  ),
2813
+ 'Automattic\\WooCommerce\\Internal\\ProductAttributesLookup\\Filterer' => array(
2814
+ 'version' => '5.8.0.0',
2815
+ 'path' => $baseDir . '/src/Internal/ProductAttributesLookup/Filterer.php'
2816
  ),
2817
+ 'Automattic\\WooCommerce\\Internal\\ProductAttributesLookup\\DataRegenerator' => array(
2818
+ 'version' => '5.8.0.0',
2819
+ 'path' => $baseDir . '/src/Internal/ProductAttributesLookup/DataRegenerator.php'
2820
  ),
2821
+ 'Automattic\\WooCommerce\\Internal\\WCCom\\ConnectionHelper' => array(
2822
+ 'version' => '5.8.0.0',
2823
+ 'path' => $baseDir . '/src/Internal/WCCom/ConnectionHelper.php'
2824
  ),
2825
  'Automattic\\WooCommerce\\Utilities\\NumberUtil' => array(
2826
+ 'version' => '5.8.0.0',
2827
  'path' => $baseDir . '/src/Utilities/NumberUtil.php'
2828
  ),
2829
  'Automattic\\WooCommerce\\Utilities\\StringUtil' => array(
2830
+ 'version' => '5.8.0.0',
2831
  'path' => $baseDir . '/src/Utilities/StringUtil.php'
2832
  ),
2833
  'Automattic\\WooCommerce\\Utilities\\ArrayUtil' => array(
2834
+ 'version' => '5.8.0.0',
2835
  'path' => $baseDir . '/src/Utilities/ArrayUtil.php'
2836
  ),
2837
+ 'Automattic\\WooCommerce\\Container' => array(
2838
+ 'version' => '5.8.0.0',
2839
+ 'path' => $baseDir . '/src/Container.php'
2840
  ),
2841
+ 'Automattic\\WooCommerce\\Proxies\\LegacyProxy' => array(
2842
+ 'version' => '5.8.0.0',
2843
+ 'path' => $baseDir . '/src/Proxies/LegacyProxy.php'
2844
+ ),
2845
+ 'Automattic\\WooCommerce\\Proxies\\ActionsProxy' => array(
2846
+ 'version' => '5.8.0.0',
2847
+ 'path' => $baseDir . '/src/Proxies/ActionsProxy.php'
2848
  ),
2849
  'Automattic\\Jetpack\\Autoloader\\ManifestGenerator' => array(
2850
  'version' => '2.10.1.0',
2854
  'version' => '2.10.1.0',
2855
  'path' => $vendorDir . '/automattic/jetpack-autoloader/src/CustomAutoloaderPlugin.php'
2856
  ),
2857
+ 'Automattic\\Jetpack\\Autoloader\\AutoloadGenerator' => array(
2858
+ 'version' => '2.10.1.0',
2859
+ 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/AutoloadGenerator.php'
2860
+ ),
2861
+ 'Automattic\\Jetpack\\Autoloader\\AutoloadFileWriter' => array(
2862
+ 'version' => '2.10.1.0',
2863
+ 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/AutoloadFileWriter.php'
2864
+ ),
2865
  'Automattic\\Jetpack\\Autoloader\\AutoloadProcessor' => array(
2866
  'version' => '2.10.1.0',
2867
  'path' => $vendorDir . '/automattic/jetpack-autoloader/src/AutoloadProcessor.php'
2868
  ),
2869
  'Automattic\\WooCommerce\\RestApi\\Package' => array(
2870
+ 'version' => '5.8.0.0',
2871
  'path' => $baseDir . '/includes/rest-api/Package.php'
2872
  ),
2873
  'Automattic\\WooCommerce\\RestApi\\Server' => array(
2874
+ 'version' => '5.8.0.0',
2875
  'path' => $baseDir . '/includes/rest-api/Server.php'
2876
  ),
2877
+ 'Automattic\\WooCommerce\\RestApi\\Utilities\\ImageAttachment' => array(
2878
+ 'version' => '5.8.0.0',
2879
+ 'path' => $baseDir . '/includes/rest-api/Utilities/ImageAttachment.php'
2880
+ ),
2881
+ 'Automattic\\WooCommerce\\RestApi\\Utilities\\SingletonTrait' => array(
2882
+ 'version' => '5.8.0.0',
2883
+ 'path' => $baseDir . '/includes/rest-api/Utilities/SingletonTrait.php'
2884
+ ),
2885
+ 'WC_REST_Terms_Controller' => array(
2886
+ 'version' => '5.8.0.0',
2887
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-terms-controller.php'
2888
+ ),
2889
+ 'WC_REST_Product_Attributes_Controller' => array(
2890
+ 'version' => '5.8.0.0',
2891
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-attributes-controller.php'
2892
  ),
2893
  'WC_REST_Orders_Controller' => array(
2894
+ 'version' => '5.8.0.0',
2895
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-orders-controller.php'
2896
  ),
2897
+ 'WC_REST_Shipping_Methods_Controller' => array(
2898
+ 'version' => '5.8.0.0',
2899
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-methods-controller.php'
2900
  ),
2901
+ 'WC_REST_Payment_Gateways_Controller' => array(
2902
+ 'version' => '5.8.0.0',
2903
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-payment-gateways-controller.php'
2904
  ),
2905
+ 'WC_REST_Order_Notes_Controller' => array(
2906
+ 'version' => '5.8.0.0',
2907
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-order-notes-controller.php'
2908
  ),
2909
  'WC_REST_Product_Variations_Controller' => array(
2910
+ 'version' => '5.8.0.0',
2911
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-variations-controller.php'
2912
  ),
2913
+ 'WC_REST_Product_Tags_Controller' => array(
2914
+ 'version' => '5.8.0.0',
2915
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-tags-controller.php'
 
 
 
 
 
 
 
 
2916
  ),
2917
+ 'WC_REST_Report_Top_Sellers_Controller' => array(
2918
+ 'version' => '5.8.0.0',
2919
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-top-sellers-controller.php'
2920
  ),
2921
+ 'WC_REST_Product_Attribute_Terms_Controller' => array(
2922
+ 'version' => '5.8.0.0',
2923
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-attribute-terms-controller.php'
2924
  ),
2925
+ 'WC_REST_Setting_Options_Controller' => array(
2926
+ 'version' => '5.8.0.0',
2927
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-setting-options-controller.php'
2928
  ),
2929
+ 'WC_REST_Controller' => array(
2930
+ 'version' => '5.8.0.0',
2931
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-controller.php'
2932
  ),
2933
+ 'WC_REST_Shipping_Zones_Controller_Base' => array(
2934
+ 'version' => '5.8.0.0',
2935
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zones-controller-base.php'
2936
  ),
2937
+ 'WC_REST_Data_Countries_Controller' => array(
2938
+ 'version' => '5.8.0.0',
2939
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-data-countries-controller.php'
2940
  ),
2941
+ 'WC_REST_Reports_Controller' => array(
2942
+ 'version' => '5.8.0.0',
2943
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-reports-controller.php'
2944
  ),
2945
+ 'WC_REST_Posts_Controller' => array(
2946
+ 'version' => '5.8.0.0',
2947
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-posts-controller.php'
2948
  ),
2949
+ 'WC_REST_Shipping_Zone_Locations_Controller' => array(
2950
+ 'version' => '5.8.0.0',
2951
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zone-locations-controller.php'
2952
  ),
2953
  'WC_REST_Report_Products_Totals_Controller' => array(
2954
+ 'version' => '5.8.0.0',
2955
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-products-totals-controller.php'
2956
  ),
2957
+ 'WC_REST_Report_Sales_Controller' => array(
2958
+ 'version' => '5.8.0.0',
2959
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-sales-controller.php'
 
 
 
 
 
 
 
 
 
 
 
 
2960
  ),
2961
+ 'WC_REST_Settings_Controller' => array(
2962
+ 'version' => '5.8.0.0',
2963
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-settings-controller.php'
2964
  ),
2965
+ 'WC_REST_Report_Customers_Totals_Controller' => array(
2966
+ 'version' => '5.8.0.0',
2967
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-customers-totals-controller.php'
2968
  ),
2969
  'WC_REST_Taxes_Controller' => array(
2970
+ 'version' => '5.8.0.0',
2971
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-taxes-controller.php'
2972
  ),
2973
+ 'WC_REST_Customer_Downloads_Controller' => array(
2974
+ 'version' => '5.8.0.0',
2975
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-customer-downloads-controller.php'
2976
  ),
2977
  'WC_REST_Data_Controller' => array(
2978
+ 'version' => '5.8.0.0',
2979
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-data-controller.php'
2980
  ),
2981
+ 'WC_REST_Order_Refunds_Controller' => array(
2982
+ 'version' => '5.8.0.0',
2983
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-order-refunds-controller.php'
 
 
 
 
2984
  ),
2985
+ 'WC_REST_Product_Shipping_Classes_Controller' => array(
2986
+ 'version' => '5.8.0.0',
2987
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-shipping-classes-controller.php'
2988
  ),
2989
  'WC_REST_Tax_Classes_Controller' => array(
2990
+ 'version' => '5.8.0.0',
2991
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-tax-classes-controller.php'
2992
  ),
2993
+ 'WC_REST_Network_Orders_Controller' => array(
2994
+ 'version' => '5.8.0.0',
2995
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-network-orders-controller.php'
2996
+ ),
2997
+ 'WC_REST_Report_Orders_Totals_Controller' => array(
2998
+ 'version' => '5.8.0.0',
2999
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-orders-totals-controller.php'
3000
  ),
3001
  'WC_REST_Webhooks_Controller' => array(
3002
+ 'version' => '5.8.0.0',
3003
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-webhooks-controller.php'
3004
  ),
3005
+ 'WC_REST_CRUD_Controller' => array(
3006
+ 'version' => '5.8.0.0',
3007
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-crud-controller.php'
3008
+ ),
3009
+ 'WC_REST_Customers_Controller' => array(
3010
+ 'version' => '5.8.0.0',
3011
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-customers-controller.php'
3012
+ ),
3013
+ 'WC_REST_System_Status_Controller' => array(
3014
+ 'version' => '5.8.0.0',
3015
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-system-status-controller.php'
3016
+ ),
3017
+ 'WC_REST_Report_Coupons_Totals_Controller' => array(
3018
+ 'version' => '5.8.0.0',
3019
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-coupons-totals-controller.php'
3020
+ ),
3021
+ 'WC_REST_Product_Categories_Controller' => array(
3022
+ 'version' => '5.8.0.0',
3023
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-categories-controller.php'
3024
+ ),
3025
+ 'WC_REST_Products_Controller' => array(
3026
+ 'version' => '5.8.0.0',
3027
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-products-controller.php'
3028
+ ),
3029
+ 'WC_REST_Data_Currencies_Controller' => array(
3030
+ 'version' => '5.8.0.0',
3031
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-data-currencies-controller.php'
3032
+ ),
3033
+ 'WC_REST_System_Status_Tools_Controller' => array(
3034
+ 'version' => '5.8.0.0',
3035
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-system-status-tools-controller.php'
3036
+ ),
3037
+ 'WC_REST_Shipping_Zones_Controller' => array(
3038
+ 'version' => '5.8.0.0',
3039
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zones-controller.php'
3040
+ ),
3041
+ 'WC_REST_Shipping_Zone_Methods_Controller' => array(
3042
+ 'version' => '5.8.0.0',
3043
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zone-methods-controller.php'
3044
+ ),
3045
+ 'WC_REST_Report_Reviews_Totals_Controller' => array(
3046
+ 'version' => '5.8.0.0',
3047
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-report-reviews-totals-controller.php'
3048
  ),
3049
  'WC_REST_Product_Reviews_Controller' => array(
3050
+ 'version' => '5.8.0.0',
3051
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-product-reviews-controller.php'
3052
  ),
3053
  'WC_REST_Data_Continents_Controller' => array(
3054
+ 'version' => '5.8.0.0',
3055
  'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-data-continents-controller.php'
3056
  ),
3057
+ 'WC_REST_Coupons_Controller' => array(
3058
+ 'version' => '5.8.0.0',
3059
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version3/class-wc-rest-coupons-controller.php'
 
 
 
 
3060
  ),
3061
+ 'WC_REST_Shipping_Zones_V2_Controller' => array(
3062
+ 'version' => '5.8.0.0',
3063
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-zones-v2-controller.php'
3064
  ),
3065
+ 'WC_REST_Product_Categories_V2_Controller' => array(
3066
+ 'version' => '5.8.0.0',
3067
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-categories-v2-controller.php'
3068
  ),
3069
+ 'WC_REST_Order_Notes_V2_Controller' => array(
3070
+ 'version' => '5.8.0.0',
3071
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-order-notes-v2-controller.php'
3072
  ),
3073
+ 'WC_REST_System_Status_Tools_V2_Controller' => array(
3074
+ 'version' => '5.8.0.0',
3075
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-system-status-tools-v2-controller.php'
3076
  ),
3077
+ 'WC_REST_Tax_Classes_V2_Controller' => array(
3078
+ 'version' => '5.8.0.0',
3079
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-tax-classes-v2-controller.php'
3080
  ),
3081
+ 'WC_REST_Report_Top_Sellers_V2_Controller' => array(
3082
+ 'version' => '5.8.0.0',
3083
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-report-top-sellers-v2-controller.php'
3084
  ),
3085
+ 'WC_REST_Webhooks_V2_Controller' => array(
3086
+ 'version' => '5.8.0.0',
3087
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-webhooks-v2-controller.php'
3088
  ),
3089
+ 'WC_REST_Orders_V2_Controller' => array(
3090
+ 'version' => '5.8.0.0',
3091
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-orders-v2-controller.php'
3092
  ),
3093
+ 'WC_REST_Payment_Gateways_V2_Controller' => array(
3094
+ 'version' => '5.8.0.0',
3095
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-payment-gateways-v2-controller.php'
3096
  ),
3097
  'WC_REST_Product_Reviews_V2_Controller' => array(
3098
+ 'version' => '5.8.0.0',
3099
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-reviews-v2-controller.php'
3100
  ),
3101
+ 'WC_REST_Product_Shipping_Classes_V2_Controller' => array(
3102
+ 'version' => '5.8.0.0',
3103
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-shipping-classes-v2-controller.php'
3104
  ),
3105
  'WC_REST_Order_Refunds_V2_Controller' => array(
3106
+ 'version' => '5.8.0.0',
3107
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-order-refunds-v2-controller.php'
3108
  ),
3109
  'WC_REST_Coupons_V2_Controller' => array(
3110
+ 'version' => '5.8.0.0',
3111
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-coupons-v2-controller.php'
3112
  ),
3113
+ 'WC_REST_Report_Sales_V2_Controller' => array(
3114
+ 'version' => '5.8.0.0',
3115
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-report-sales-v2-controller.php'
3116
  ),
3117
+ 'WC_REST_Product_Attributes_V2_Controller' => array(
3118
+ 'version' => '5.8.0.0',
3119
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-attributes-v2-controller.php'
3120
  ),
3121
+ 'WC_REST_Reports_V2_Controller' => array(
3122
+ 'version' => '5.8.0.0',
3123
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-reports-v2-controller.php'
3124
  ),
3125
+ 'WC_REST_Products_V2_Controller' => array(
3126
+ 'version' => '5.8.0.0',
3127
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-products-v2-controller.php'
3128
  ),
3129
  'WC_REST_Settings_V2_Controller' => array(
3130
+ 'version' => '5.8.0.0',
3131
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-settings-v2-controller.php'
3132
  ),
3133
+ 'WC_REST_Shipping_Zone_Methods_V2_Controller' => array(
3134
+ 'version' => '5.8.0.0',
3135
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-zone-methods-v2-controller.php'
3136
+ ),
3137
+ 'WC_REST_Product_Tags_V2_Controller' => array(
3138
+ 'version' => '5.8.0.0',
3139
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-tags-v2-controller.php'
3140
  ),
3141
  'WC_REST_System_Status_V2_Controller' => array(
3142
+ 'version' => '5.8.0.0',
3143
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-system-status-v2-controller.php'
3144
  ),
3145
+ 'WC_REST_Shipping_Zone_Locations_V2_Controller' => array(
3146
+ 'version' => '5.8.0.0',
3147
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-zone-locations-v2-controller.php'
3148
  ),
3149
+ 'WC_REST_Webhook_Deliveries_V2_Controller' => array(
3150
+ 'version' => '5.8.0.0',
3151
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-webhook-deliveries-v2-controller.php'
3152
  ),
3153
  'WC_REST_Network_Orders_V2_Controller' => array(
3154
+ 'version' => '5.8.0.0',
3155
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-network-orders-v2-controller.php'
3156
  ),
3157
+ 'WC_REST_Taxes_V2_Controller' => array(
3158
+ 'version' => '5.8.0.0',
3159
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-taxes-v2-controller.php'
 
 
 
 
 
 
 
 
3160
  ),
3161
+ 'WC_REST_Product_Attribute_Terms_V2_Controller' => array(
3162
+ 'version' => '5.8.0.0',
3163
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-attribute-terms-v2-controller.php'
3164
  ),
3165
+ 'WC_REST_Customer_Downloads_V2_Controller' => array(
3166
+ 'version' => '5.8.0.0',
3167
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-customer-downloads-v2-controller.php'
3168
  ),
3169
  'WC_REST_Shipping_Methods_V2_Controller' => array(
3170
+ 'version' => '5.8.0.0',
3171
  'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-methods-v2-controller.php'
3172
  ),
3173
+ 'WC_REST_Product_Variations_V2_Controller' => array(
3174
+ 'version' => '5.8.0.0',
3175
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-product-variations-v2-controller.php'
3176
  ),
3177
+ 'WC_REST_Setting_Options_V2_Controller' => array(
3178
+ 'version' => '5.8.0.0',
3179
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-setting-options-v2-controller.php'
3180
  ),
3181
+ 'WC_REST_Customers_V2_Controller' => array(
3182
+ 'version' => '5.8.0.0',
3183
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version2/class-wc-rest-customers-v2-controller.php'
3184
  ),
3185
+ 'WC_REST_Product_Categories_V1_Controller' => array(
3186
+ 'version' => '5.8.0.0',
3187
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-categories-v1-controller.php'
3188
  ),
3189
+ 'WC_REST_Product_Attributes_V1_Controller' => array(
3190
+ 'version' => '5.8.0.0',
3191
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-attributes-v1-controller.php'
3192
  ),
3193
+ 'WC_REST_Webhook_Deliveries_V1_Controller' => array(
3194
+ 'version' => '5.8.0.0',
3195
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-webhook-deliveries-v1-controller.php'
3196
  ),
3197
+ 'WC_REST_Orders_V1_Controller' => array(
3198
+ 'version' => '5.8.0.0',
3199
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-orders-v1-controller.php'
3200
  ),
3201
+ 'WC_REST_Customers_V1_Controller' => array(
3202
+ 'version' => '5.8.0.0',
3203
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-customers-v1-controller.php'
3204
+ ),
3205
+ 'WC_REST_Taxes_V1_Controller' => array(
3206
+ 'version' => '5.8.0.0',
3207
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-taxes-v1-controller.php'
3208
+ ),
3209
+ 'WC_REST_Product_Reviews_V1_Controller' => array(
3210
+ 'version' => '5.8.0.0',
3211
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-reviews-v1-controller.php'
3212
  ),
3213
  'WC_REST_Customer_Downloads_V1_Controller' => array(
3214
+ 'version' => '5.8.0.0',
3215
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-customer-downloads-v1-controller.php'
3216
  ),
3217
+ 'WC_REST_Coupons_V1_Controller' => array(
3218
+ 'version' => '5.8.0.0',
3219
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-coupons-v1-controller.php'
 
 
 
 
3220
  ),
3221
  'WC_REST_Order_Notes_V1_Controller' => array(
3222
+ 'version' => '5.8.0.0',
3223
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-order-notes-v1-controller.php'
3224
  ),
3225
+ 'WC_REST_Report_Top_Sellers_V1_Controller' => array(
3226
+ 'version' => '5.8.0.0',
3227
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-report-top-sellers-v1-controller.php'
3228
+ ),
3229
  'WC_REST_Products_V1_Controller' => array(
3230
+ 'version' => '5.8.0.0',
3231
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-products-v1-controller.php'
3232
  ),
 
 
 
 
3233
  'WC_REST_Product_Attribute_Terms_V1_Controller' => array(
3234
+ 'version' => '5.8.0.0',
3235
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-attribute-terms-v1-controller.php'
3236
  ),
3237
+ 'WC_REST_Product_Shipping_Classes_V1_Controller' => array(
3238
+ 'version' => '5.8.0.0',
3239
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-shipping-classes-v1-controller.php'
3240
+ ),
3241
  'WC_REST_Product_Tags_V1_Controller' => array(
3242
+ 'version' => '5.8.0.0',
3243
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-product-tags-v1-controller.php'
3244
  ),
3245
+ 'WC_REST_Webhooks_V1_Controller' => array(
3246
+ 'version' => '5.8.0.0',
3247
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-webhooks-v1-controller.php'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3248
  ),
3249
  'WC_REST_Reports_V1_Controller' => array(
3250
+ 'version' => '5.8.0.0',
3251
  'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-reports-v1-controller.php'
3252
  ),
3253
+ 'WC_REST_Report_Sales_V1_Controller' => array(
3254
+ 'version' => '5.8.0.0',
3255
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-report-sales-v1-controller.php'
 
 
 
 
3256
  ),
3257
+ 'WC_REST_Tax_Classes_V1_Controller' => array(
3258
+ 'version' => '5.8.0.0',
3259
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-tax-classes-v1-controller.php'
3260
  ),
3261
+ 'WC_REST_Order_Refunds_V1_Controller' => array(
3262
+ 'version' => '5.8.0.0',
3263
+ 'path' => $baseDir . '/includes/rest-api/Controllers/Version1/class-wc-rest-order-refunds-v1-controller.php'
3264
  ),
3265
  'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\ProductHelper' => array(
3266
+ 'version' => '5.8.0.0',
3267
  'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/ProductHelper.php'
3268
  ),
3269
  'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\CustomerHelper' => array(
3270
+ 'version' => '5.8.0.0',
3271
  'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/CustomerHelper.php'
3272
  ),
3273
+ 'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\OrderHelper' => array(
3274
+ 'version' => '5.8.0.0',
3275
+ 'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/OrderHelper.php'
3276
+ ),
3277
  'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\CouponHelper' => array(
3278
+ 'version' => '5.8.0.0',
3279
  'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/CouponHelper.php'
3280
  ),
3281
  'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\SettingsHelper' => array(
3282
+ 'version' => '5.8.0.0',
3283
  'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/SettingsHelper.php'
3284
  ),
3285
+ 'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\QueueHelper' => array(
3286
+ 'version' => '5.8.0.0',
3287
+ 'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/QueueHelper.php'
3288
  ),
3289
  'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\AdminNotesHelper' => array(
3290
+ 'version' => '5.8.0.0',
3291
  'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/AdminNotesHelper.php'
3292
  ),
 
 
 
 
3293
  'Automattic\\WooCommerce\\RestApi\\UnitTests\\Helpers\\ShippingHelper' => array(
3294
+ 'version' => '5.8.0.0',
3295
  'path' => $baseDir . '/tests/legacy/unit-tests/rest-api/Helpers/ShippingHelper.php'
3296
  ),
3297
  'Automattic\\Jetpack\\Constants' => array(
vendor/jetpack-autoloader/class-autoloader-handler.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jp112174c5cd4c97cc6a7410c4b1e4391d;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpd9fc8cc13800a8a61ffc0d1db6eed0da;
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\jp112174c5cd4c97cc6a7410c4b1e4391d;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpd9fc8cc13800a8a61ffc0d1db6eed0da;
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\jp112174c5cd4c97cc6a7410c4b1e4391d;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpd9fc8cc13800a8a61ffc0d1db6eed0da;
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\jp112174c5cd4c97cc6a7410c4b1e4391d;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpd9fc8cc13800a8a61ffc0d1db6eed0da;
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\jp112174c5cd4c97cc6a7410c4b1e4391d;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpd9fc8cc13800a8a61ffc0d1db6eed0da;
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\jp112174c5cd4c97cc6a7410c4b1e4391d;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpd9fc8cc13800a8a61ffc0d1db6eed0da;
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\jp112174c5cd4c97cc6a7410c4b1e4391d;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpd9fc8cc13800a8a61ffc0d1db6eed0da;
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\jp112174c5cd4c97cc6a7410c4b1e4391d;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpd9fc8cc13800a8a61ffc0d1db6eed0da;
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\jp112174c5cd4c97cc6a7410c4b1e4391d;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpd9fc8cc13800a8a61ffc0d1db6eed0da;
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\jp112174c5cd4c97cc6a7410c4b1e4391d;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpd9fc8cc13800a8a61ffc0d1db6eed0da;
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\jp112174c5cd4c97cc6a7410c4b1e4391d;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpd9fc8cc13800a8a61ffc0d1db6eed0da;
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\jp112174c5cd4c97cc6a7410c4b1e4391d;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpd9fc8cc13800a8a61ffc0d1db6eed0da;
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\jp112174c5cd4c97cc6a7410c4b1e4391d;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpd9fc8cc13800a8a61ffc0d1db6eed0da;
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\jp112174c5cd4c97cc6a7410c4b1e4391d;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpd9fc8cc13800a8a61ffc0d1db6eed0da;
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.8.0-rc.1
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.8.0
7
  * Author: Automattic
8
  * Author URI: https://woocommerce.com
9
  * Text Domain: woocommerce