WooCommerce Payments – Fully Integrated Solution Built and Supported by Woo - Version 4.2.1

Version Description

  • 2022-06-06 =
  • Fix - Add check to prevent fatal errors on checkout
  • Fix - Fix refunding of orders without payment_methodid
  • Fix - Fix subscription renewal prices purchased in zero decimal based currencies like Yen
Download this release

Release Info

Developer automattic
Plugin Icon 128x128 WooCommerce Payments – Fully Integrated Solution Built and Supported by Woo
Version 4.2.1
Comparing to
See all releases

Code changes from version 4.2.0 to 4.2.1

Files changed (33) hide show
  1. changelog.txt +5 -0
  2. dist/index.asset.php +1 -1
  3. includes/class-wc-payment-gateway-wcpay.php +8 -2
  4. includes/class-wc-payments-order-success-page.php +3 -3
  5. includes/subscriptions/class-wc-payments-subscription-service.php +8 -2
  6. languages/woocommerce-payments.pot +30 -30
  7. readme.txt +6 -1
  8. vendor/autoload.php +1 -1
  9. vendor/autoload_packages.php +1 -1
  10. vendor/composer/ClassLoader.php +14 -141
  11. vendor/composer/InstalledVersions.php +0 -350
  12. vendor/composer/autoload_classmap.php +0 -1
  13. vendor/composer/autoload_real.php +11 -18
  14. vendor/composer/autoload_static.php +4 -5
  15. vendor/composer/installed.json +1145 -1169
  16. vendor/composer/installed.php +0 -215
  17. vendor/composer/jetpack_autoload_classmap.php +38 -38
  18. vendor/composer/platform_check.php +0 -26
  19. vendor/jetpack-autoloader/class-autoloader-handler.php +1 -1
  20. vendor/jetpack-autoloader/class-autoloader-locator.php +1 -1
  21. vendor/jetpack-autoloader/class-autoloader.php +1 -1
  22. vendor/jetpack-autoloader/class-container.php +1 -1
  23. vendor/jetpack-autoloader/class-hook-manager.php +1 -1
  24. vendor/jetpack-autoloader/class-latest-autoloader-guard.php +1 -1
  25. vendor/jetpack-autoloader/class-manifest-reader.php +1 -1
  26. vendor/jetpack-autoloader/class-path-processor.php +1 -1
  27. vendor/jetpack-autoloader/class-php-autoloader.php +1 -1
  28. vendor/jetpack-autoloader/class-plugin-locator.php +1 -1
  29. vendor/jetpack-autoloader/class-plugins-handler.php +1 -1
  30. vendor/jetpack-autoloader/class-shutdown-handler.php +1 -1
  31. vendor/jetpack-autoloader/class-version-loader.php +1 -1
  32. vendor/jetpack-autoloader/class-version-selector.php +1 -1
  33. woocommerce-payments.php +1 -1
changelog.txt CHANGED
@@ -1,5 +1,10 @@
1
  *** WooCommerce Payments Changelog ***
2
 
 
 
 
 
 
3
  = 4.2.0 - 2022-05-26 =
4
  * Add - Add a confirmation modal when enabling manual capture, and update UPE methods appearance if manual capture is enabled
5
  * Add - Fee details to order notes for successful payments.
1
  *** WooCommerce Payments Changelog ***
2
 
3
+ = 4.2.1 - 2022-06-06 =
4
+ * Fix - Add check to prevent fatal errors on checkout
5
+ * Fix - Fix refunding of orders without _payment_method_id
6
+ * Fix - Fix subscription renewal prices purchased in zero decimal based currencies like Yen
7
+
8
  = 4.2.0 - 2022-05-26 =
9
  * Add - Add a confirmation modal when enabling manual capture, and update UPE methods appearance if manual capture is enabled
10
  * Add - Fee details to order notes for successful payments.
dist/index.asset.php CHANGED
@@ -1 +1 @@
1
- <?php return array('dependencies' => array('lodash', 'moment', 'react', 'react-dom', 'wc-components', 'wc-currency', 'wc-navigation', 'wp-a11y', 'wp-api-fetch', 'wp-compose', 'wp-data', 'wp-data-controls', 'wp-date', 'wp-deprecated', 'wp-dom', 'wp-dom-ready', 'wp-element', 'wp-hooks', 'wp-html-entities', 'wp-i18n', 'wp-is-shallow-equal', 'wp-keycodes', 'wp-mediaelement', 'wp-polyfill', 'wp-primitives', 'wp-url', 'wp-warning'), 'version' => '46f2dc9b240398ae3212b03345aa7daa');
1
+ <?php return array('dependencies' => array('lodash', 'moment', 'react', 'react-dom', 'wc-components', 'wc-currency', 'wc-navigation', 'wp-a11y', 'wp-api-fetch', 'wp-compose', 'wp-data', 'wp-data-controls', 'wp-date', 'wp-deprecated', 'wp-dom', 'wp-dom-ready', 'wp-element', 'wp-hooks', 'wp-html-entities', 'wp-i18n', 'wp-is-shallow-equal', 'wp-keycodes', 'wp-mediaelement', 'wp-polyfill', 'wp-primitives', 'wp-url', 'wp-warning'), 'version' => 'f58fbe4711d35b0484e38b567b8c98a7');
includes/class-wc-payment-gateway-wcpay.php CHANGED
@@ -1627,8 +1627,14 @@ class WC_Payment_Gateway_WCPay extends WC_Payment_Gateway_CC {
1627
  * @return string
1628
  */
1629
  private function get_payment_method_type_for_order( $order ): string {
1630
- $payment_method_id = $order->get_meta( '_payment_method_id', true );
1631
- $payment_method_details = $this->payments_api_client->get_payment_method( $payment_method_id );
 
 
 
 
 
 
1632
 
1633
  return $payment_method_details['type'] ?? 'unknown';
1634
  }
1627
  * @return string
1628
  */
1629
  private function get_payment_method_type_for_order( $order ): string {
1630
+ if ( $order->meta_exists( '_payment_method_id' ) && '' !== $order->get_meta( '_payment_method_id', true ) ) {
1631
+ $payment_method_id = $order->get_meta( '_payment_method_id', true );
1632
+ $payment_method_details = $this->payments_api_client->get_payment_method( $payment_method_id );
1633
+ } elseif ( $order->meta_exists( '_intent_id' ) ) {
1634
+ $payment_intent_id = $order->get_meta( '_intent_id', true );
1635
+ $payment_intent = $this->payments_api_client->get_intent( $payment_intent_id );
1636
+ $payment_method_details = $payment_intent ? $payment_intent->get_payment_method_details() : [];
1637
+ }
1638
 
1639
  return $payment_method_details['type'] ?? 'unknown';
1640
  }
includes/class-wc-payments-order-success-page.php CHANGED
@@ -23,13 +23,13 @@ class WC_Payments_Order_Success_Page {
23
  /**
24
  * Return the WooPay thank you notice when the order was created via WooPay
25
  *
26
- * @param string $text the default thank you text.
27
- * @param WC_Order $order the order being shown.
28
  *
29
  * @return string
30
  */
31
  public function show_woopay_thankyou_notice( $text, $order ) {
32
- if ( ! $order->get_meta( 'is_woopay' ) ) {
33
  return $text;
34
  }
35
 
23
  /**
24
  * Return the WooPay thank you notice when the order was created via WooPay
25
  *
26
+ * @param string $text the default thank you text.
27
+ * @param WC_Order|null $order the order being shown.
28
  *
29
  * @return string
30
  */
31
  public function show_woopay_thankyou_notice( $text, $order ) {
32
+ if ( ! $order || ! $order->get_meta( 'is_woopay' ) ) {
33
  return $text;
34
  }
35
 
includes/subscriptions/class-wc-payments-subscription-service.php CHANGED
@@ -269,9 +269,15 @@ class WC_Payments_Subscription_Service {
269
  $data = [
270
  'currency' => $currency,
271
  'product' => $wcpay_product_id,
272
- 'unit_amount_decimal' => round( $unit_amount, wc_get_rounding_precision() ) * 100,
 
273
  ];
274
 
 
 
 
 
 
275
  if ( $interval && $interval_count ) {
276
  $data['recurring'] = [
277
  'interval' => $interval,
@@ -300,7 +306,7 @@ class WC_Payments_Subscription_Service {
300
 
301
  if ( $discount ) {
302
  $data[] = [
303
- 'amount_off' => $discount * 100,
304
  'currency' => $subscription->get_currency(),
305
  'duration' => $duration,
306
  // Translators: %s Coupon code.
269
  $data = [
270
  'currency' => $currency,
271
  'product' => $wcpay_product_id,
272
+ // We cannot use WC_Payments_Utils::prepare_amount() here because it returns an int but 'unit_amount_decimal' supports multiple decimal places even though it is cents (fractions of a cent).
273
+ 'unit_amount_decimal' => round( $unit_amount, wc_get_rounding_precision() ),
274
  ];
275
 
276
+ // Convert the amount to cents if it's not in a zero based currency.
277
+ if ( ! WC_Payments_Utils::is_zero_decimal_currency( strtolower( $currency ) ) ) {
278
+ $data['unit_amount_decimal'] *= 100;
279
+ }
280
+
281
  if ( $interval && $interval_count ) {
282
  $data['recurring'] = [
283
  'interval' => $interval,
306
 
307
  if ( $discount ) {
308
  $data[] = [
309
+ 'amount_off' => WC_Payments_Utils::prepare_amount( $discount, $subscription->get_currency() ),
310
  'currency' => $subscription->get_currency(),
311
  'duration' => $duration,
312
  // Translators: %s Coupon code.
languages/woocommerce-payments.pot CHANGED
@@ -2,10 +2,10 @@
2
  # This file is distributed under the same license as the WooCommerce Payments package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: WooCommerce Payments 4.2.0\n"
6
  "Report-Msgid-Bugs-To: "
7
  "https://wordpress.org/support/plugin/woocommerce-payments\n"
8
- "POT-Creation-Date: 2022-05-26 07:54:23+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=utf-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
@@ -203,7 +203,7 @@ msgid "Payment capture failed to complete with the following message: %s"
203
  msgstr ""
204
 
205
  #: includes/admin/class-wc-rest-payments-orders-controller.php:172
206
- #: includes/class-wc-payment-gateway-wcpay.php:2581
207
  msgid "Unknown error"
208
  msgstr ""
209
 
@@ -651,7 +651,7 @@ msgid ""
651
  msgstr ""
652
 
653
  #: includes/class-wc-payment-gateway-wcpay.php:915
654
- #: includes/class-wc-payment-gateway-wcpay.php:2311
655
  #: includes/payment-methods/class-upe-payment-gateway.php:164
656
  #: includes/payment-methods/class-upe-payment-gateway.php:239
657
  #: includes/payment-methods/class-upe-payment-gateway.php:428
@@ -740,7 +740,7 @@ msgid ""
740
  "Reason: %2$s. (<code>%3$s</code>)"
741
  msgstr ""
742
 
743
- #: includes/class-wc-payment-gateway-wcpay.php:1653
744
  #: dist/settings.js:1
745
  #: client/settings/general-settings/index.js:42
746
  msgid ""
@@ -748,50 +748,50 @@ msgid ""
748
  "is only available to live accounts."
749
  msgstr ""
750
 
751
- #: includes/class-wc-payment-gateway-wcpay.php:1658
752
  #: dist/settings.js:1
753
  #: client/settings/advanced-settings/debug-mode.js:32
754
  msgid "Dev mode is active so logging is on by default."
755
  msgstr ""
756
 
757
- #: includes/class-wc-payment-gateway-wcpay.php:2001
758
  msgid "Failed to update Stripe account. "
759
  msgstr ""
760
 
761
- #: includes/class-wc-payment-gateway-wcpay.php:2029
762
  msgid ""
763
  "Customer bank statement is invalid. Statement should be between 5 and 22 "
764
  "characters long, contain at least single Latin character and does not "
765
  "contain special characters: ' \" * &lt; &gt;"
766
  msgstr ""
767
 
768
- #: includes/class-wc-payment-gateway-wcpay.php:2056
769
  msgid "Capture charge"
770
  msgstr ""
771
 
772
- #: includes/class-wc-payment-gateway-wcpay.php:2057
773
  msgid "Cancel authorization"
774
  msgstr ""
775
 
776
- #: includes/class-wc-payment-gateway-wcpay.php:2186
777
  #. translators: %1: error message
778
  msgid ""
779
  "Canceling authorization <strong>failed</strong> to complete with the "
780
  "following message: <code>%1$s</code>."
781
  msgstr ""
782
 
783
- #: includes/class-wc-payment-gateway-wcpay.php:2201
784
  msgid "Canceling authorization <strong>failed</strong> to complete."
785
  msgstr ""
786
 
787
- #: includes/class-wc-payment-gateway-wcpay.php:2320
788
- #: includes/class-wc-payment-gateway-wcpay.php:2333
789
- #: includes/class-wc-payment-gateway-wcpay.php:2350
790
  #: includes/payment-methods/class-upe-payment-gateway.php:623
791
  msgid "We're not able to process this payment. Please try again later."
792
  msgstr ""
793
 
794
- #: includes/class-wc-payment-gateway-wcpay.php:2329
795
  #: includes/payment-methods/class-cc-payment-method.php:49
796
  #. translators: This will be used to indicate an unknown value for an ID.
797
  #: dist/index.js:1
@@ -800,7 +800,7 @@ msgstr ""
800
  msgid "unknown"
801
  msgstr ""
802
 
803
- #: includes/class-wc-payment-gateway-wcpay.php:2416
804
  #. translators: %1: transaction ID of the payment or a translated string
805
  #. indicating an unknown ID.
806
  msgid ""
@@ -809,31 +809,31 @@ msgid ""
809
  "so it was ignored and the order was not updated."
810
  msgstr ""
811
 
812
- #: includes/class-wc-payment-gateway-wcpay.php:2460
813
  msgid "A WooCommerce Payments payment method was not provided"
814
  msgstr ""
815
 
816
- #: includes/class-wc-payment-gateway-wcpay.php:2472
817
  msgid "We're not able to add this payment method. Please try again later"
818
  msgstr ""
819
 
820
- #: includes/class-wc-payment-gateway-wcpay.php:2481
821
  msgid "Failed to add the provided payment method. Please try again later"
822
  msgstr ""
823
 
824
- #: includes/class-wc-payment-gateway-wcpay.php:2580
825
  #. translators: %s: the error message.
826
  msgid "Intent creation failed with the following message: %s"
827
  msgstr ""
828
 
829
- #: includes/class-wc-payment-gateway-wcpay.php:2621
830
  #: includes/payment-methods/class-upe-payment-gateway.php:341
831
  msgid ""
832
  "We're not able to add this payment method. Please refresh the page and try "
833
  "again."
834
  msgstr ""
835
 
836
- #: includes/class-wc-payment-gateway-wcpay.php:2814
837
  msgid ""
838
  "Next we’ll ask you to share a few details about your business to create "
839
  "your account."
@@ -1980,18 +1980,18 @@ msgstr ""
1980
  msgid "Update and retry payment"
1981
  msgstr ""
1982
 
1983
- #: includes/subscriptions/class-wc-payments-subscription-service.php:307
1984
  #. Translators: %s Coupon code.
1985
  msgid "Coupon - %s"
1986
  msgstr ""
1987
 
1988
- #: includes/subscriptions/class-wc-payments-subscription-service.php:357
1989
  msgid ""
1990
  "There was a problem creating your subscription. Please try again or contact "
1991
  "us for assistance."
1992
  msgstr ""
1993
 
1994
- #: includes/subscriptions/class-wc-payments-subscription-service.php:388
1995
  #. Translators: The %1 placeholder is a currency formatted price string
1996
  #. ($0.50). The %2 and %3 placeholders are opening and closing strong HTML
1997
  #. tags.
@@ -2000,21 +2000,21 @@ msgid ""
2000
  "%2$sminimum recurring amount%3$s this payment method can process."
2001
  msgstr ""
2002
 
2003
- #: includes/subscriptions/class-wc-payments-subscription-service.php:589
2004
  msgid ""
2005
  "We've successfully collected payment for your subscription using your new "
2006
  "payment method."
2007
  msgstr ""
2008
 
2009
- #: includes/subscriptions/class-wc-payments-subscription-service.php:646
2010
  msgid "WooCommerce Payments Subscription ID"
2011
  msgstr ""
2012
 
2013
- #: includes/subscriptions/class-wc-payments-subscription-service.php:667
2014
  msgid "The subscription's next payment date has been updated to match WCPay server."
2015
  msgstr ""
2016
 
2017
- #: includes/subscriptions/class-wc-payments-subscription-service.php:891
2018
  #. Translators: %s Stripe subscription item ID.
2019
  msgid "Unable to set subscription item ID meta for WCPay subscription item %s."
2020
  msgstr ""
2
  # This file is distributed under the same license as the WooCommerce Payments package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: WooCommerce Payments 4.2.1\n"
6
  "Report-Msgid-Bugs-To: "
7
  "https://wordpress.org/support/plugin/woocommerce-payments\n"
8
+ "POT-Creation-Date: 2022-06-06 15:26:15+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=utf-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
203
  msgstr ""
204
 
205
  #: includes/admin/class-wc-rest-payments-orders-controller.php:172
206
+ #: includes/class-wc-payment-gateway-wcpay.php:2587
207
  msgid "Unknown error"
208
  msgstr ""
209
 
651
  msgstr ""
652
 
653
  #: includes/class-wc-payment-gateway-wcpay.php:915
654
+ #: includes/class-wc-payment-gateway-wcpay.php:2317
655
  #: includes/payment-methods/class-upe-payment-gateway.php:164
656
  #: includes/payment-methods/class-upe-payment-gateway.php:239
657
  #: includes/payment-methods/class-upe-payment-gateway.php:428
740
  "Reason: %2$s. (<code>%3$s</code>)"
741
  msgstr ""
742
 
743
+ #: includes/class-wc-payment-gateway-wcpay.php:1659
744
  #: dist/settings.js:1
745
  #: client/settings/general-settings/index.js:42
746
  msgid ""
748
  "is only available to live accounts."
749
  msgstr ""
750
 
751
+ #: includes/class-wc-payment-gateway-wcpay.php:1664
752
  #: dist/settings.js:1
753
  #: client/settings/advanced-settings/debug-mode.js:32
754
  msgid "Dev mode is active so logging is on by default."
755
  msgstr ""
756
 
757
+ #: includes/class-wc-payment-gateway-wcpay.php:2007
758
  msgid "Failed to update Stripe account. "
759
  msgstr ""
760
 
761
+ #: includes/class-wc-payment-gateway-wcpay.php:2035
762
  msgid ""
763
  "Customer bank statement is invalid. Statement should be between 5 and 22 "
764
  "characters long, contain at least single Latin character and does not "
765
  "contain special characters: ' \" * &lt; &gt;"
766
  msgstr ""
767
 
768
+ #: includes/class-wc-payment-gateway-wcpay.php:2062
769
  msgid "Capture charge"
770
  msgstr ""
771
 
772
+ #: includes/class-wc-payment-gateway-wcpay.php:2063
773
  msgid "Cancel authorization"
774
  msgstr ""
775
 
776
+ #: includes/class-wc-payment-gateway-wcpay.php:2192
777
  #. translators: %1: error message
778
  msgid ""
779
  "Canceling authorization <strong>failed</strong> to complete with the "
780
  "following message: <code>%1$s</code>."
781
  msgstr ""
782
 
783
+ #: includes/class-wc-payment-gateway-wcpay.php:2207
784
  msgid "Canceling authorization <strong>failed</strong> to complete."
785
  msgstr ""
786
 
787
+ #: includes/class-wc-payment-gateway-wcpay.php:2326
788
+ #: includes/class-wc-payment-gateway-wcpay.php:2339
789
+ #: includes/class-wc-payment-gateway-wcpay.php:2356
790
  #: includes/payment-methods/class-upe-payment-gateway.php:623
791
  msgid "We're not able to process this payment. Please try again later."
792
  msgstr ""
793
 
794
+ #: includes/class-wc-payment-gateway-wcpay.php:2335
795
  #: includes/payment-methods/class-cc-payment-method.php:49
796
  #. translators: This will be used to indicate an unknown value for an ID.
797
  #: dist/index.js:1
800
  msgid "unknown"
801
  msgstr ""
802
 
803
+ #: includes/class-wc-payment-gateway-wcpay.php:2422
804
  #. translators: %1: transaction ID of the payment or a translated string
805
  #. indicating an unknown ID.
806
  msgid ""
809
  "so it was ignored and the order was not updated."
810
  msgstr ""
811
 
812
+ #: includes/class-wc-payment-gateway-wcpay.php:2466
813
  msgid "A WooCommerce Payments payment method was not provided"
814
  msgstr ""
815
 
816
+ #: includes/class-wc-payment-gateway-wcpay.php:2478
817
  msgid "We're not able to add this payment method. Please try again later"
818
  msgstr ""
819
 
820
+ #: includes/class-wc-payment-gateway-wcpay.php:2487
821
  msgid "Failed to add the provided payment method. Please try again later"
822
  msgstr ""
823
 
824
+ #: includes/class-wc-payment-gateway-wcpay.php:2586
825
  #. translators: %s: the error message.
826
  msgid "Intent creation failed with the following message: %s"
827
  msgstr ""
828
 
829
+ #: includes/class-wc-payment-gateway-wcpay.php:2627
830
  #: includes/payment-methods/class-upe-payment-gateway.php:341
831
  msgid ""
832
  "We're not able to add this payment method. Please refresh the page and try "
833
  "again."
834
  msgstr ""
835
 
836
+ #: includes/class-wc-payment-gateway-wcpay.php:2820
837
  msgid ""
838
  "Next we’ll ask you to share a few details about your business to create "
839
  "your account."
1980
  msgid "Update and retry payment"
1981
  msgstr ""
1982
 
1983
+ #: includes/subscriptions/class-wc-payments-subscription-service.php:313
1984
  #. Translators: %s Coupon code.
1985
  msgid "Coupon - %s"
1986
  msgstr ""
1987
 
1988
+ #: includes/subscriptions/class-wc-payments-subscription-service.php:363
1989
  msgid ""
1990
  "There was a problem creating your subscription. Please try again or contact "
1991
  "us for assistance."
1992
  msgstr ""
1993
 
1994
+ #: includes/subscriptions/class-wc-payments-subscription-service.php:394
1995
  #. Translators: The %1 placeholder is a currency formatted price string
1996
  #. ($0.50). The %2 and %3 placeholders are opening and closing strong HTML
1997
  #. tags.
2000
  "%2$sminimum recurring amount%3$s this payment method can process."
2001
  msgstr ""
2002
 
2003
+ #: includes/subscriptions/class-wc-payments-subscription-service.php:595
2004
  msgid ""
2005
  "We've successfully collected payment for your subscription using your new "
2006
  "payment method."
2007
  msgstr ""
2008
 
2009
+ #: includes/subscriptions/class-wc-payments-subscription-service.php:652
2010
  msgid "WooCommerce Payments Subscription ID"
2011
  msgstr ""
2012
 
2013
+ #: includes/subscriptions/class-wc-payments-subscription-service.php:673
2014
  msgid "The subscription's next payment date has been updated to match WCPay server."
2015
  msgstr ""
2016
 
2017
+ #: includes/subscriptions/class-wc-payments-subscription-service.php:897
2018
  #. Translators: %s Stripe subscription item ID.
2019
  msgid "Unable to set subscription item ID meta for WCPay subscription item %s."
2020
  msgstr ""
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: woocommerce, payment, payment request, credit card, automattic
4
  Requires at least: 5.7
5
  Tested up to: 6.0
6
  Requires PHP: 7.0
7
- Stable tag: 4.2.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -98,6 +98,11 @@ Please note that our support for the checkout block is still experimental and th
98
 
99
  == Changelog ==
100
 
 
 
 
 
 
101
  = 4.2.0 - 2022-05-26 =
102
  * Add - Add a confirmation modal when enabling manual capture, and update UPE methods appearance if manual capture is enabled
103
  * Add - Fee details to order notes for successful payments.
4
  Requires at least: 5.7
5
  Tested up to: 6.0
6
  Requires PHP: 7.0
7
+ Stable tag: 4.2.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
98
 
99
  == Changelog ==
100
 
101
+ = 4.2.1 - 2022-06-06 =
102
+ * Fix - Add check to prevent fatal errors on checkout
103
+ * Fix - Fix refunding of orders without _payment_method_id
104
+ * Fix - Fix subscription renewal prices purchased in zero decimal based currencies like Yen
105
+
106
  = 4.2.0 - 2022-05-26 =
107
  * Add - Add a confirmation modal when enabling manual capture, and update UPE methods appearance if manual capture is enabled
108
  * Add - Fee details to order notes for successful payments.
vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
- return ComposerAutoloaderInit26b827636a1625941560b14a8d79d2a1::getLoader();
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInit69b1c1664a1a8123356bdc15c6e40d5f::getLoader();
vendor/autoload_packages.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jp26b827636a1625941560b14a8d79d2a1;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jp69b1c1664a1a8123356bdc15c6e40d5f;
9
 
10
  // phpcs:ignore
11
 
vendor/composer/ClassLoader.php CHANGED
@@ -37,80 +37,26 @@ namespace Composer\Autoload;
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,47 +66,28 @@ class ClassLoader
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-return 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,11 +102,9 @@ class ClassLoader
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,13 +147,11 @@ class ClassLoader
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,10 +195,8 @@ class ClassLoader
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,12 +211,10 @@ class ClassLoader
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,8 +234,6 @@ class ClassLoader
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,8 +256,6 @@ class ClassLoader
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,8 +276,6 @@ class ClassLoader
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,44 +296,25 @@ class ClassLoader
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,8 +323,6 @@ class ClassLoader
429
 
430
  return true;
431
  }
432
-
433
- return null;
434
  }
435
 
436
  /**
@@ -475,21 +367,6 @@ class ClassLoader
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,10 +438,6 @@ class ClassLoader
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
  {
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
  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
  * 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
  * 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
  * 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
  * 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
  * Turns on searching the include path for class files.
235
  *
236
  * @param bool $useIncludePath
 
 
237
  */
238
  public function setUseIncludePath($useIncludePath)
239
  {
256
  * that have not been registered with the class map.
257
  *
258
  * @param bool $classMapAuthoritative
 
 
259
  */
260
  public function setClassMapAuthoritative($classMapAuthoritative)
261
  {
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
  * 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
 
324
  return true;
325
  }
 
 
326
  }
327
 
328
  /**
367
  return $file;
368
  }
369
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
370
  private function findFileWithExtension($class, $ext)
371
  {
372
  // PSR-4 lookup
438
  * Scope isolated include.
439
  *
440
  * Prevents access to $this/self from included files.
 
 
 
 
441
  */
442
  function includeFile($file)
443
  {
vendor/composer/InstalledVersions.php DELETED
@@ -1,350 +0,0 @@
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
- /**
28
- * @var mixed[]|null
29
- * @psalm-var 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}>}|array{}|null
30
- */
31
- private static $installed;
32
-
33
- /**
34
- * @var bool|null
35
- */
36
- private static $canGetVendors;
37
-
38
- /**
39
- * @var array[]
40
- * @psalm-var array<string, 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}>}>
41
- */
42
- private static $installedByVendor = array();
43
-
44
- /**
45
- * Returns a list of all package names which are present, either by being installed, replaced or provided
46
- *
47
- * @return string[]
48
- * @psalm-return list<string>
49
- */
50
- public static function getInstalledPackages()
51
- {
52
- $packages = array();
53
- foreach (self::getInstalled() as $installed) {
54
- $packages[] = array_keys($installed['versions']);
55
- }
56
-
57
- if (1 === \count($packages)) {
58
- return $packages[0];
59
- }
60
-
61
- return array_keys(array_flip(\call_user_func_array('array_merge', $packages)));
62
- }
63
-
64
- /**
65
- * Returns a list of all package names with a specific type e.g. 'library'
66
- *
67
- * @param string $type
68
- * @return string[]
69
- * @psalm-return list<string>
70
- */
71
- public static function getInstalledPackagesByType($type)
72
- {
73
- $packagesByType = array();
74
-
75
- foreach (self::getInstalled() as $installed) {
76
- foreach ($installed['versions'] as $name => $package) {
77
- if (isset($package['type']) && $package['type'] === $type) {
78
- $packagesByType[] = $name;
79
- }
80
- }
81
- }
82
-
83
- return $packagesByType;
84
- }
85
-
86
- /**
87
- * Checks whether the given package is installed
88
- *
89
- * This also returns true if the package name is provided or replaced by another package
90
- *
91
- * @param string $packageName
92
- * @param bool $includeDevRequirements
93
- * @return bool
94
- */
95
- public static function isInstalled($packageName, $includeDevRequirements = true)
96
- {
97
- foreach (self::getInstalled() as $installed) {
98
- if (isset($installed['versions'][$packageName])) {
99
- return $includeDevRequirements || empty($installed['versions'][$packageName]['dev_requirement']);
100
- }
101
- }
102
-
103
- return false;
104
- }
105
-
106
- /**
107
- * Checks whether the given package satisfies a version constraint
108
- *
109
- * e.g. If you want to know whether version 2.3+ of package foo/bar is installed, you would call:
110
- *
111
- * Composer\InstalledVersions::satisfies(new VersionParser, 'foo/bar', '^2.3')
112
- *
113
- * @param VersionParser $parser Install composer/semver to have access to this class and functionality
114
- * @param string $packageName
115
- * @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
116
- * @return bool
117
- */
118
- public static function satisfies(VersionParser $parser, $packageName, $constraint)
119
- {
120
- $constraint = $parser->parseConstraints($constraint);
121
- $provided = $parser->parseConstraints(self::getVersionRanges($packageName));
122
-
123
- return $provided->matches($constraint);
124
- }
125
-
126
- /**
127
- * Returns a version constraint representing all the range(s) which are installed for a given package
128
- *
129
- * It is easier to use this via isInstalled() with the $constraint argument if you need to check
130
- * whether a given version of a package is installed, and not just whether it exists
131
- *
132
- * @param string $packageName
133
- * @return string Version constraint usable with composer/semver
134
- */
135
- public static function getVersionRanges($packageName)
136
- {
137
- foreach (self::getInstalled() as $installed) {
138
- if (!isset($installed['versions'][$packageName])) {
139
- continue;
140
- }
141
-
142
- $ranges = array();
143
- if (isset($installed['versions'][$packageName]['pretty_version'])) {
144
- $ranges[] = $installed['versions'][$packageName]['pretty_version'];
145
- }
146
- if (array_key_exists('aliases', $installed['versions'][$packageName])) {
147
- $ranges = array_merge($ranges, $installed['versions'][$packageName]['aliases']);
148
- }
149
- if (array_key_exists('replaced', $installed['versions'][$packageName])) {
150
- $ranges = array_merge($ranges, $installed['versions'][$packageName]['replaced']);
151
- }
152
- if (array_key_exists('provided', $installed['versions'][$packageName])) {
153
- $ranges = array_merge($ranges, $installed['versions'][$packageName]['provided']);
154
- }
155
-
156
- return implode(' || ', $ranges);
157
- }
158
-
159
- throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
160
- }
161
-
162
- /**
163
- * @param string $packageName
164
- * @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
165
- */
166
- public static function getVersion($packageName)
167
- {
168
- foreach (self::getInstalled() as $installed) {
169
- if (!isset($installed['versions'][$packageName])) {
170
- continue;
171
- }
172
-
173
- if (!isset($installed['versions'][$packageName]['version'])) {
174
- return null;
175
- }
176
-
177
- return $installed['versions'][$packageName]['version'];
178
- }
179
-
180
- throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
181
- }
182
-
183
- /**
184
- * @param string $packageName
185
- * @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
186
- */
187
- public static function getPrettyVersion($packageName)
188
- {
189
- foreach (self::getInstalled() as $installed) {
190
- if (!isset($installed['versions'][$packageName])) {
191
- continue;
192
- }
193
-
194
- if (!isset($installed['versions'][$packageName]['pretty_version'])) {
195
- return null;
196
- }
197
-
198
- return $installed['versions'][$packageName]['pretty_version'];
199
- }
200
-
201
- throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
202
- }
203
-
204
- /**
205
- * @param string $packageName
206
- * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as reference
207
- */
208
- public static function getReference($packageName)
209
- {
210
- foreach (self::getInstalled() as $installed) {
211
- if (!isset($installed['versions'][$packageName])) {
212
- continue;
213
- }
214
-
215
- if (!isset($installed['versions'][$packageName]['reference'])) {
216
- return null;
217
- }
218
-
219
- return $installed['versions'][$packageName]['reference'];
220
- }
221
-
222
- throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
223
- }
224
-
225
- /**
226
- * @param string $packageName
227
- * @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.
228
- */
229
- public static function getInstallPath($packageName)
230
- {
231
- foreach (self::getInstalled() as $installed) {
232
- if (!isset($installed['versions'][$packageName])) {
233
- continue;
234
- }
235
-
236
- return isset($installed['versions'][$packageName]['install_path']) ? $installed['versions'][$packageName]['install_path'] : null;
237
- }
238
-
239
- throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
240
- }
241
-
242
- /**
243
- * @return array
244
- * @psalm-return array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}
245
- */
246
- public static function getRootPackage()
247
- {
248
- $installed = self::getInstalled();
249
-
250
- return $installed[0]['root'];
251
- }
252
-
253
- /**
254
- * Returns the raw installed.php data for custom implementations
255
- *
256
- * @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.
257
- * @return array[]
258
- * @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}>}
259
- */
260
- public static function getRawData()
261
- {
262
- @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);
263
-
264
- if (null === self::$installed) {
265
- // only require the installed.php file if this file is loaded from its dumped location,
266
- // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937
267
- if (substr(__DIR__, -8, 1) !== 'C') {
268
- self::$installed = include __DIR__ . '/installed.php';
269
- } else {
270
- self::$installed = array();
271
- }
272
- }
273
-
274
- return self::$installed;
275
- }
276
-
277
- /**
278
- * Returns the raw data of all installed.php which are currently loaded for custom implementations
279
- *
280
- * @return array[]
281
- * @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}>}>
282
- */
283
- public static function getAllRawData()
284
- {
285
- return self::getInstalled();
286
- }
287
-
288
- /**
289
- * Lets you reload the static array from another file
290
- *
291
- * This is only useful for complex integrations in which a project needs to use
292
- * this class but then also needs to execute another project's autoloader in process,
293
- * and wants to ensure both projects have access to their version of installed.php.
294
- *
295
- * A typical case would be PHPUnit, where it would need to make sure it reads all
296
- * the data it needs from this class, then call reload() with
297
- * `require $CWD/vendor/composer/installed.php` (or similar) as input to make sure
298
- * the project in which it runs can then also use this class safely, without
299
- * interference between PHPUnit's dependencies and the project's dependencies.
300
- *
301
- * @param array[] $data A vendor/composer/installed.php data set
302
- * @return void
303
- *
304
- * @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
305
- */
306
- public static function reload($data)
307
- {
308
- self::$installed = $data;
309
- self::$installedByVendor = array();
310
- }
311
-
312
- /**
313
- * @return array[]
314
- * @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}>}>
315
- */
316
- private static function getInstalled()
317
- {
318
- if (null === self::$canGetVendors) {
319
- self::$canGetVendors = method_exists('Composer\Autoload\ClassLoader', 'getRegisteredLoaders');
320
- }
321
-
322
- $installed = array();
323
-
324
- if (self::$canGetVendors) {
325
- foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) {
326
- if (isset(self::$installedByVendor[$vendorDir])) {
327
- $installed[] = self::$installedByVendor[$vendorDir];
328
- } elseif (is_file($vendorDir.'/composer/installed.php')) {
329
- $installed[] = self::$installedByVendor[$vendorDir] = require $vendorDir.'/composer/installed.php';
330
- if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) {
331
- self::$installed = $installed[count($installed) - 1];
332
- }
333
- }
334
- }
335
- }
336
-
337
- if (null === self::$installed) {
338
- // only require the installed.php file if this file is loaded from its dumped location,
339
- // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937
340
- if (substr(__DIR__, -8, 1) !== 'C') {
341
- self::$installed = require __DIR__ . '/installed.php';
342
- } else {
343
- self::$installed = array();
344
- }
345
- }
346
- $installed[] = self::$installed;
347
-
348
- return $installed;
349
- }
350
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendor/composer/autoload_classmap.php CHANGED
@@ -105,7 +105,6 @@ return array(
105
  'Automattic\\Jetpack\\Sync\\Utils' => $vendorDir . '/automattic/jetpack-sync/src/class-utils.php',
106
  'Automattic\\Jetpack\\Terms_Of_Service' => $vendorDir . '/automattic/jetpack-connection/src/class-terms-of-service.php',
107
  'Automattic\\Jetpack\\Tracking' => $vendorDir . '/automattic/jetpack-tracking/src/class-tracking.php',
108
- 'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
109
  'Composer\\Installers\\AglInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/AglInstaller.php',
110
  'Composer\\Installers\\AimeosInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/AimeosInstaller.php',
111
  'Composer\\Installers\\AnnotateCmsInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php',
105
  'Automattic\\Jetpack\\Sync\\Utils' => $vendorDir . '/automattic/jetpack-sync/src/class-utils.php',
106
  'Automattic\\Jetpack\\Terms_Of_Service' => $vendorDir . '/automattic/jetpack-connection/src/class-terms-of-service.php',
107
  'Automattic\\Jetpack\\Tracking' => $vendorDir . '/automattic/jetpack-tracking/src/class-tracking.php',
 
108
  'Composer\\Installers\\AglInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/AglInstaller.php',
109
  'Composer\\Installers\\AimeosInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/AimeosInstaller.php',
110
  'Composer\\Installers\\AnnotateCmsInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php',
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInit26b827636a1625941560b14a8d79d2a1
6
  {
7
  private static $loader;
8
 
@@ -22,17 +22,15 @@ class ComposerAutoloaderInit26b827636a1625941560b14a8d79d2a1
22
  return self::$loader;
23
  }
24
 
25
- require __DIR__ . '/platform_check.php';
26
-
27
- spl_autoload_register(array('ComposerAutoloaderInit26b827636a1625941560b14a8d79d2a1', 'loadClassLoader'), true, true);
28
- self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
29
- spl_autoload_unregister(array('ComposerAutoloaderInit26b827636a1625941560b14a8d79d2a1', '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\ComposerStaticInit26b827636a1625941560b14a8d79d2a1::getInitializer($loader));
36
  } else {
37
  $map = require __DIR__ . '/autoload_namespaces.php';
38
  foreach ($map as $namespace => $path) {
@@ -53,28 +51,23 @@ class ComposerAutoloaderInit26b827636a1625941560b14a8d79d2a1
53
  $loader->register(true);
54
 
55
  if ($useStaticLoader) {
56
- $includeFiles = Composer\Autoload\ComposerStaticInit26b827636a1625941560b14a8d79d2a1::$files;
57
  } else {
58
  $includeFiles = require __DIR__ . '/autoload_files.php';
59
  }
60
  foreach ($includeFiles as $fileIdentifier => $file) {
61
- composerRequire26b827636a1625941560b14a8d79d2a1($fileIdentifier, $file);
62
  }
63
 
64
  return $loader;
65
  }
66
  }
67
 
68
- /**
69
- * @param string $fileIdentifier
70
- * @param string $file
71
- * @return void
72
- */
73
- function composerRequire26b827636a1625941560b14a8d79d2a1($fileIdentifier, $file)
74
  {
75
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
76
- $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
77
-
78
  require $file;
 
 
79
  }
80
  }
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
+ class ComposerAutoloaderInit69b1c1664a1a8123356bdc15c6e40d5f
6
  {
7
  private static $loader;
8
 
22
  return self::$loader;
23
  }
24
 
25
+ spl_autoload_register(array('ComposerAutoloaderInit69b1c1664a1a8123356bdc15c6e40d5f', 'loadClassLoader'), true, true);
26
+ self::$loader = $loader = new \Composer\Autoload\ClassLoader();
27
+ spl_autoload_unregister(array('ComposerAutoloaderInit69b1c1664a1a8123356bdc15c6e40d5f', '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\ComposerStaticInit69b1c1664a1a8123356bdc15c6e40d5f::getInitializer($loader));
34
  } else {
35
  $map = require __DIR__ . '/autoload_namespaces.php';
36
  foreach ($map as $namespace => $path) {
51
  $loader->register(true);
52
 
53
  if ($useStaticLoader) {
54
+ $includeFiles = Composer\Autoload\ComposerStaticInit69b1c1664a1a8123356bdc15c6e40d5f::$files;
55
  } else {
56
  $includeFiles = require __DIR__ . '/autoload_files.php';
57
  }
58
  foreach ($includeFiles as $fileIdentifier => $file) {
59
+ composerRequire69b1c1664a1a8123356bdc15c6e40d5f($fileIdentifier, $file);
60
  }
61
 
62
  return $loader;
63
  }
64
  }
65
 
66
+ function composerRequire69b1c1664a1a8123356bdc15c6e40d5f($fileIdentifier, $file)
 
 
 
 
 
67
  {
68
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
 
 
69
  require $file;
70
+
71
+ $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
72
  }
73
  }
vendor/composer/autoload_static.php CHANGED
@@ -4,7 +4,7 @@
4
 
5
  namespace Composer\Autoload;
6
 
7
- class ComposerStaticInit26b827636a1625941560b14a8d79d2a1
8
  {
9
  public static $files = array (
10
  '3773ef3f09c37da5478d578e32b03a4b' => __DIR__ . '/..' . '/automattic/jetpack-assets/actions.php',
@@ -148,7 +148,6 @@ class ComposerStaticInit26b827636a1625941560b14a8d79d2a1
148
  'Automattic\\Jetpack\\Sync\\Utils' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/class-utils.php',
149
  'Automattic\\Jetpack\\Terms_Of_Service' => __DIR__ . '/..' . '/automattic/jetpack-connection/src/class-terms-of-service.php',
150
  'Automattic\\Jetpack\\Tracking' => __DIR__ . '/..' . '/automattic/jetpack-tracking/src/class-tracking.php',
151
- 'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
152
  'Composer\\Installers\\AglInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/AglInstaller.php',
153
  'Composer\\Installers\\AimeosInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/AimeosInstaller.php',
154
  'Composer\\Installers\\AnnotateCmsInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php',
@@ -291,9 +290,9 @@ class ComposerStaticInit26b827636a1625941560b14a8d79d2a1
291
  public static function getInitializer(ClassLoader $loader)
292
  {
293
  return \Closure::bind(function () use ($loader) {
294
- $loader->prefixLengthsPsr4 = ComposerStaticInit26b827636a1625941560b14a8d79d2a1::$prefixLengthsPsr4;
295
- $loader->prefixDirsPsr4 = ComposerStaticInit26b827636a1625941560b14a8d79d2a1::$prefixDirsPsr4;
296
- $loader->classMap = ComposerStaticInit26b827636a1625941560b14a8d79d2a1::$classMap;
297
 
298
  }, null, ClassLoader::class);
299
  }
4
 
5
  namespace Composer\Autoload;
6
 
7
+ class ComposerStaticInit69b1c1664a1a8123356bdc15c6e40d5f
8
  {
9
  public static $files = array (
10
  '3773ef3f09c37da5478d578e32b03a4b' => __DIR__ . '/..' . '/automattic/jetpack-assets/actions.php',
148
  'Automattic\\Jetpack\\Sync\\Utils' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/class-utils.php',
149
  'Automattic\\Jetpack\\Terms_Of_Service' => __DIR__ . '/..' . '/automattic/jetpack-connection/src/class-terms-of-service.php',
150
  'Automattic\\Jetpack\\Tracking' => __DIR__ . '/..' . '/automattic/jetpack-tracking/src/class-tracking.php',
 
151
  'Composer\\Installers\\AglInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/AglInstaller.php',
152
  'Composer\\Installers\\AimeosInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/AimeosInstaller.php',
153
  'Composer\\Installers\\AnnotateCmsInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php',
290
  public static function getInitializer(ClassLoader $loader)
291
  {
292
  return \Closure::bind(function () use ($loader) {
293
+ $loader->prefixLengthsPsr4 = ComposerStaticInit69b1c1664a1a8123356bdc15c6e40d5f::$prefixLengthsPsr4;
294
+ $loader->prefixDirsPsr4 = ComposerStaticInit69b1c1664a1a8123356bdc15c6e40d5f::$prefixDirsPsr4;
295
+ $loader->classMap = ComposerStaticInit69b1c1664a1a8123356bdc15c6e40d5f::$classMap;
296
 
297
  }, null, ClassLoader::class);
298
  }
vendor/composer/installed.json CHANGED
@@ -1,1173 +1,1149 @@
1
- {
2
- "packages": [
3
- {
4
- "name": "automattic/jetpack-a8c-mc-stats",
5
- "version": "v1.4.12",
6
- "version_normalized": "1.4.12.0",
7
- "source": {
8
- "type": "git",
9
- "url": "https://github.com/Automattic/jetpack-a8c-mc-stats.git",
10
- "reference": "38b3d11fec181d90abe6d80f5184fff6d2ef694c"
11
- },
12
- "dist": {
13
- "type": "zip",
14
- "url": "https://api.github.com/repos/Automattic/jetpack-a8c-mc-stats/zipball/38b3d11fec181d90abe6d80f5184fff6d2ef694c",
15
- "reference": "38b3d11fec181d90abe6d80f5184fff6d2ef694c",
16
- "shasum": ""
17
- },
18
- "require-dev": {
19
- "automattic/jetpack-changelogger": "^3.0",
20
- "yoast/phpunit-polyfills": "1.0.3"
21
- },
22
- "time": "2022-01-25T17:38:22+00:00",
23
- "type": "jetpack-library",
24
- "extra": {
25
- "autotagger": true,
26
- "mirror-repo": "Automattic/jetpack-a8c-mc-stats",
27
- "changelogger": {
28
- "link-template": "https://github.com/Automattic/jetpack-a8c-mc-stats/compare/v${old}...v${new}"
29
- },
30
- "branch-alias": {
31
- "dev-master": "1.4.x-dev"
32
- }
33
- },
34
- "installation-source": "dist",
35
- "autoload": {
36
- "classmap": [
37
- "src/"
38
- ]
39
- },
40
- "notification-url": "https://packagist.org/downloads/",
41
- "license": [
42
- "GPL-2.0-or-later"
43
- ],
44
- "description": "Used to record internal usage stats for Automattic. Not visible to site owners.",
45
- "support": {
46
- "source": "https://github.com/Automattic/jetpack-a8c-mc-stats/tree/v1.4.12"
47
- },
48
- "install-path": "../automattic/jetpack-a8c-mc-stats"
49
- },
50
- {
51
- "name": "automattic/jetpack-admin-ui",
52
- "version": "v0.2.5",
53
- "version_normalized": "0.2.5.0",
54
- "source": {
55
- "type": "git",
56
- "url": "https://github.com/Automattic/jetpack-admin-ui.git",
57
- "reference": "e72dddc3abb8fd914ae0efced8e2f162baf9dda1"
58
- },
59
- "dist": {
60
- "type": "zip",
61
- "url": "https://api.github.com/repos/Automattic/jetpack-admin-ui/zipball/e72dddc3abb8fd914ae0efced8e2f162baf9dda1",
62
- "reference": "e72dddc3abb8fd914ae0efced8e2f162baf9dda1",
63
- "shasum": ""
64
- },
65
- "require-dev": {
66
- "automattic/jetpack-changelogger": "^3.0",
67
- "automattic/wordbless": "dev-master",
68
- "yoast/phpunit-polyfills": "1.0.3"
69
- },
70
- "time": "2022-03-08T17:34:09+00:00",
71
- "type": "jetpack-library",
72
- "extra": {
73
- "autotagger": true,
74
- "mirror-repo": "Automattic/jetpack-admin-ui",
75
- "textdomain": "jetpack-admin-ui",
76
- "changelogger": {
77
- "link-template": "https://github.com/Automattic/jetpack-admin-ui/compare/${old}...${new}"
78
- },
79
- "branch-alias": {
80
- "dev-master": "0.2.x-dev"
81
- },
82
- "version-constants": {
83
- "::PACKAGE_VERSION": "src/class-admin-menu.php"
84
- }
85
- },
86
- "installation-source": "dist",
87
- "autoload": {
88
- "classmap": [
89
- "src/"
90
- ]
91
- },
92
- "notification-url": "https://packagist.org/downloads/",
93
- "license": [
94
- "GPL-2.0-or-later"
95
- ],
96
- "description": "Generic Jetpack wp-admin UI elements",
97
- "support": {
98
- "source": "https://github.com/Automattic/jetpack-admin-ui/tree/v0.2.5"
99
- },
100
- "install-path": "../automattic/jetpack-admin-ui"
101
- },
102
- {
103
- "name": "automattic/jetpack-assets",
104
- "version": "v1.17.8",
105
- "version_normalized": "1.17.8.0",
106
- "source": {
107
- "type": "git",
108
- "url": "https://github.com/Automattic/jetpack-assets.git",
109
- "reference": "f442d509917b7c23bc272e2634c24ec3d07855e1"
110
- },
111
- "dist": {
112
- "type": "zip",
113
- "url": "https://api.github.com/repos/Automattic/jetpack-assets/zipball/f442d509917b7c23bc272e2634c24ec3d07855e1",
114
- "reference": "f442d509917b7c23bc272e2634c24ec3d07855e1",
115
- "shasum": ""
116
- },
117
- "require": {
118
- "automattic/jetpack-constants": "^1.6"
119
- },
120
- "require-dev": {
121
- "automattic/jetpack-changelogger": "^3.0",
122
- "brain/monkey": "2.6.1",
123
- "wikimedia/testing-access-wrapper": "^1.0 || ^2.0",
124
- "yoast/phpunit-polyfills": "1.0.3"
125
- },
126
- "time": "2022-03-29T18:21:13+00:00",
127
- "type": "jetpack-library",
128
- "extra": {
129
- "autotagger": true,
130
- "mirror-repo": "Automattic/jetpack-assets",
131
- "textdomain": "jetpack-assets",
132
- "changelogger": {
133
- "link-template": "https://github.com/Automattic/jetpack-assets/compare/v${old}...v${new}"
134
- },
135
- "branch-alias": {
136
- "dev-master": "1.17.x-dev"
137
- }
138
- },
139
- "installation-source": "dist",
140
- "autoload": {
141
- "files": [
142
- "actions.php"
143
- ],
144
- "classmap": [
145
- "src/"
146
- ]
147
- },
148
- "notification-url": "https://packagist.org/downloads/",
149
- "license": [
150
- "GPL-2.0-or-later"
151
- ],
152
- "description": "Asset management utilities for Jetpack ecosystem packages",
153
- "support": {
154
- "source": "https://github.com/Automattic/jetpack-assets/tree/v1.17.8"
155
- },
156
- "install-path": "../automattic/jetpack-assets"
157
- },
158
- {
159
- "name": "automattic/jetpack-autoloader",
160
- "version": "v2.10.11",
161
- "version_normalized": "2.10.11.0",
162
- "source": {
163
- "type": "git",
164
- "url": "https://github.com/Automattic/jetpack-autoloader.git",
165
- "reference": "924226c0a9e2f9b0be022fc6bab2a90f5e610ef3"
166
- },
167
- "dist": {
168
- "type": "zip",
169
- "url": "https://api.github.com/repos/Automattic/jetpack-autoloader/zipball/924226c0a9e2f9b0be022fc6bab2a90f5e610ef3",
170
- "reference": "924226c0a9e2f9b0be022fc6bab2a90f5e610ef3",
171
- "shasum": ""
172
- },
173
- "require": {
174
- "composer-plugin-api": "^1.1 || ^2.0"
175
- },
176
- "require-dev": {
177
- "automattic/jetpack-changelogger": "^3.0",
178
- "yoast/phpunit-polyfills": "1.0.3"
179
- },
180
- "time": "2022-01-04T21:11:27+00:00",
181
- "type": "composer-plugin",
182
- "extra": {
183
- "autotagger": true,
184
- "class": "Automattic\\Jetpack\\Autoloader\\CustomAutoloaderPlugin",
185
- "mirror-repo": "Automattic/jetpack-autoloader",
186
- "changelogger": {
187
- "link-template": "https://github.com/Automattic/jetpack-autoloader/compare/v${old}...v${new}"
188
- },
189
- "branch-alias": {
190
- "dev-master": "2.10.x-dev"
191
- }
192
- },
193
- "installation-source": "dist",
194
- "autoload": {
195
- "psr-4": {
196
- "Automattic\\Jetpack\\Autoloader\\": "src"
197
- },
198
- "classmap": [
199
- "src/AutoloadGenerator.php"
200
- ]
201
- },
202
- "notification-url": "https://packagist.org/downloads/",
203
- "license": [
204
- "GPL-2.0-or-later"
205
- ],
206
- "description": "Creates a custom autoloader for a plugin or theme.",
207
- "support": {
208
- "source": "https://github.com/Automattic/jetpack-autoloader/tree/v2.10.11"
209
- },
210
- "install-path": "../automattic/jetpack-autoloader"
211
- },
212
- {
213
- "name": "automattic/jetpack-config",
214
- "version": "v1.6.1",
215
- "version_normalized": "1.6.1.0",
216
- "source": {
217
- "type": "git",
218
- "url": "https://github.com/Automattic/jetpack-config.git",
219
- "reference": "34ed249c0be9f8c871c5a28411913983fb1ce7d7"
220
- },
221
- "dist": {
222
- "type": "zip",
223
- "url": "https://api.github.com/repos/Automattic/jetpack-config/zipball/34ed249c0be9f8c871c5a28411913983fb1ce7d7",
224
- "reference": "34ed249c0be9f8c871c5a28411913983fb1ce7d7",
225
- "shasum": ""
226
- },
227
- "require-dev": {
228
- "automattic/jetpack-changelogger": "^3.0"
229
- },
230
- "time": "2022-02-09T17:56:28+00:00",
231
- "type": "jetpack-library",
232
- "extra": {
233
- "autotagger": true,
234
- "mirror-repo": "Automattic/jetpack-config",
235
- "textdomain": "jetpack-config",
236
- "changelogger": {
237
- "link-template": "https://github.com/Automattic/jetpack-config/compare/v${old}...v${new}"
238
- },
239
- "branch-alias": {
240
- "dev-master": "1.6.x-dev"
241
- }
242
- },
243
- "installation-source": "dist",
244
- "autoload": {
245
- "classmap": [
246
- "src/"
247
- ]
248
- },
249
- "notification-url": "https://packagist.org/downloads/",
250
- "license": [
251
- "GPL-2.0-or-later"
252
- ],
253
- "description": "Jetpack configuration package that initializes other packages and configures Jetpack's functionality. Can be used as a base for all variants of Jetpack package usage.",
254
- "support": {
255
- "source": "https://github.com/Automattic/jetpack-config/tree/v1.6.1"
256
- },
257
- "install-path": "../automattic/jetpack-config"
258
- },
259
- {
260
- "name": "automattic/jetpack-connection",
261
- "version": "v1.37.3",
262
- "version_normalized": "1.37.3.0",
263
- "source": {
264
- "type": "git",
265
- "url": "https://github.com/Automattic/jetpack-connection.git",
266
- "reference": "2402aa3d7915ac48fe6dab5b2ad7aefcdcaa3a73"
267
- },
268
- "dist": {
269
- "type": "zip",
270
- "url": "https://api.github.com/repos/Automattic/jetpack-connection/zipball/2402aa3d7915ac48fe6dab5b2ad7aefcdcaa3a73",
271
- "reference": "2402aa3d7915ac48fe6dab5b2ad7aefcdcaa3a73",
272
- "shasum": ""
273
- },
274
- "require": {
275
- "automattic/jetpack-a8c-mc-stats": "^1.4",
276
- "automattic/jetpack-admin-ui": "^0.2",
277
- "automattic/jetpack-constants": "^1.6",
278
- "automattic/jetpack-heartbeat": "^1.4",
279
- "automattic/jetpack-options": "^1.14",
280
- "automattic/jetpack-redirect": "^1.7",
281
- "automattic/jetpack-roles": "^1.4",
282
- "automattic/jetpack-status": "^1.12",
283
- "automattic/jetpack-tracking": "^1.14"
284
- },
285
- "require-dev": {
286
- "automattic/jetpack-changelogger": "^3.0",
287
- "automattic/wordbless": "@dev",
288
- "brain/monkey": "2.6.1",
289
- "yoast/phpunit-polyfills": "1.0.3"
290
- },
291
- "time": "2022-03-29T18:21:17+00:00",
292
- "type": "jetpack-library",
293
- "extra": {
294
- "autotagger": true,
295
- "mirror-repo": "Automattic/jetpack-connection",
296
- "textdomain": "jetpack-connection",
297
- "version-constants": {
298
- "::PACKAGE_VERSION": "src/class-package-version.php"
299
- },
300
- "changelogger": {
301
- "link-template": "https://github.com/Automattic/jetpack-connection/compare/v${old}...v${new}"
302
- },
303
- "branch-alias": {
304
- "dev-master": "1.37.x-dev"
305
- }
306
- },
307
- "installation-source": "dist",
308
- "autoload": {
309
- "classmap": [
310
- "legacy",
311
- "src/",
312
- "src/webhooks"
313
- ]
314
- },
315
- "notification-url": "https://packagist.org/downloads/",
316
- "license": [
317
- "GPL-2.0-or-later"
318
- ],
319
- "description": "Everything needed to connect to the Jetpack infrastructure",
320
- "support": {
321
- "source": "https://github.com/Automattic/jetpack-connection/tree/v1.37.3"
322
- },
323
- "install-path": "../automattic/jetpack-connection"
324
- },
325
- {
326
- "name": "automattic/jetpack-constants",
327
- "version": "v1.6.15",
328
- "version_normalized": "1.6.15.0",
329
- "source": {
330
- "type": "git",
331
- "url": "https://github.com/Automattic/jetpack-constants.git",
332
- "reference": "f203b7c8ce89760ff8a70abcfbd1308765038fc9"
333
- },
334
- "dist": {
335
- "type": "zip",
336
- "url": "https://api.github.com/repos/Automattic/jetpack-constants/zipball/f203b7c8ce89760ff8a70abcfbd1308765038fc9",
337
- "reference": "f203b7c8ce89760ff8a70abcfbd1308765038fc9",
338
- "shasum": ""
339
- },
340
- "require-dev": {
341
- "automattic/jetpack-changelogger": "^3.0",
342
- "brain/monkey": "2.6.1",
343
- "yoast/phpunit-polyfills": "1.0.3"
344
- },
345
- "time": "2022-01-25T17:38:30+00:00",
346
- "type": "jetpack-library",
347
- "extra": {
348
- "autotagger": true,
349
- "mirror-repo": "Automattic/jetpack-constants",
350
- "changelogger": {
351
- "link-template": "https://github.com/Automattic/jetpack-constants/compare/v${old}...v${new}"
352
- },
353
- "branch-alias": {
354
- "dev-master": "1.6.x-dev"
355
- }
356
- },
357
- "installation-source": "dist",
358
- "autoload": {
359
- "classmap": [
360
- "src/"
361
- ]
362
- },
363
- "notification-url": "https://packagist.org/downloads/",
364
- "license": [
365
- "GPL-2.0-or-later"
366
- ],
367
- "description": "A wrapper for defining constants in a more testable way.",
368
- "support": {
369
- "source": "https://github.com/Automattic/jetpack-constants/tree/v1.6.15"
370
- },
371
- "install-path": "../automattic/jetpack-constants"
372
- },
373
- {
374
- "name": "automattic/jetpack-heartbeat",
375
- "version": "v1.4.0",
376
- "version_normalized": "1.4.0.0",
377
- "source": {
378
- "type": "git",
379
- "url": "https://github.com/Automattic/jetpack-heartbeat.git",
380
- "reference": "c35053475b1cb7363aee847e0d025f0a043dc3d5"
381
- },
382
- "dist": {
383
- "type": "zip",
384
- "url": "https://api.github.com/repos/Automattic/jetpack-heartbeat/zipball/c35053475b1cb7363aee847e0d025f0a043dc3d5",
385
- "reference": "c35053475b1cb7363aee847e0d025f0a043dc3d5",
386
- "shasum": ""
387
- },
388
- "require": {
389
- "automattic/jetpack-a8c-mc-stats": "^1.4",
390
- "automattic/jetpack-options": "^1.14"
391
- },
392
- "require-dev": {
393
- "automattic/jetpack-changelogger": "^3.0"
394
- },
395
- "time": "2022-01-04T21:11:47+00:00",
396
- "type": "jetpack-library",
397
- "extra": {
398
- "autotagger": true,
399
- "mirror-repo": "Automattic/jetpack-heartbeat",
400
- "textdomain": "jetpack-heartbeat",
401
- "changelogger": {
402
- "link-template": "https://github.com/Automattic/jetpack-heartbeat/compare/v${old}...v${new}"
403
- },
404
- "branch-alias": {
405
- "dev-master": "1.4.x-dev"
406
- }
407
- },
408
- "installation-source": "dist",
409
- "autoload": {
410
- "classmap": [
411
- "src/"
412
- ]
413
- },
414
- "notification-url": "https://packagist.org/downloads/",
415
- "license": [
416
- "GPL-2.0-or-later"
417
- ],
418
- "description": "This adds a cronjob that sends a batch of internal automattic stats to wp.com once a day",
419
- "support": {
420
- "source": "https://github.com/Automattic/jetpack-heartbeat/tree/v1.4.0"
421
- },
422
- "install-path": "../automattic/jetpack-heartbeat"
423
- },
424
- {
425
- "name": "automattic/jetpack-identity-crisis",
426
- "version": "v0.8.4",
427
- "version_normalized": "0.8.4.0",
428
- "source": {
429
- "type": "git",
430
- "url": "https://github.com/Automattic/jetpack-identity-crisis.git",
431
- "reference": "11b62e3f1f2d56c7283185f8670655d99ba2e7b5"
432
- },
433
- "dist": {
434
- "type": "zip",
435
- "url": "https://api.github.com/repos/Automattic/jetpack-identity-crisis/zipball/11b62e3f1f2d56c7283185f8670655d99ba2e7b5",
436
- "reference": "11b62e3f1f2d56c7283185f8670655d99ba2e7b5",
437
- "shasum": ""
438
- },
439
- "require": {
440
- "automattic/jetpack-assets": "^1.17",
441
- "automattic/jetpack-connection": "^1.37",
442
- "automattic/jetpack-constants": "^1.6",
443
- "automattic/jetpack-logo": "^1.5",
444
- "automattic/jetpack-options": "^1.14",
445
- "automattic/jetpack-status": "^1.12",
446
- "automattic/jetpack-tracking": "^1.14"
447
- },
448
- "require-dev": {
449
- "automattic/jetpack-changelogger": "^3.0",
450
- "automattic/wordbless": "@dev",
451
- "yoast/phpunit-polyfills": "1.0.3"
452
- },
453
- "time": "2022-03-29T18:21:23+00:00",
454
- "type": "jetpack-library",
455
- "extra": {
456
- "autotagger": true,
457
- "mirror-repo": "Automattic/jetpack-identity-crisis",
458
- "textdomain": "jetpack-idc",
459
- "version-constants": {
460
- "::PACKAGE_VERSION": "src/class-identity-crisis.php"
461
- },
462
- "changelogger": {
463
- "link-template": "https://github.com/Automattic/jetpack-identity-crisis/compare/v${old}...v${new}"
464
- },
465
- "branch-alias": {
466
- "dev-master": "0.8.x-dev"
467
- }
468
- },
469
- "installation-source": "dist",
470
- "autoload": {
471
- "classmap": [
472
- "src/"
473
- ]
474
- },
475
- "notification-url": "https://packagist.org/downloads/",
476
- "license": [
477
- "GPL-2.0-or-later"
478
- ],
479
- "description": "Identity Crisis.",
480
- "support": {
481
- "source": "https://github.com/Automattic/jetpack-identity-crisis/tree/v0.8.4"
482
- },
483
- "install-path": "../automattic/jetpack-identity-crisis"
484
- },
485
- {
486
- "name": "automattic/jetpack-logo",
487
- "version": "v1.5.14",
488
- "version_normalized": "1.5.14.0",
489
- "source": {
490
- "type": "git",
491
- "url": "https://github.com/Automattic/jetpack-logo.git",
492
- "reference": "9fbc006fd49e61c70ddbfc92dfea06338822656a"
493
- },
494
- "dist": {
495
- "type": "zip",
496
- "url": "https://api.github.com/repos/Automattic/jetpack-logo/zipball/9fbc006fd49e61c70ddbfc92dfea06338822656a",
497
- "reference": "9fbc006fd49e61c70ddbfc92dfea06338822656a",
498
- "shasum": ""
499
- },
500
- "require-dev": {
501
- "automattic/jetpack-changelogger": "^3.0",
502
- "yoast/phpunit-polyfills": "1.0.3"
503
- },
504
- "time": "2022-01-25T17:38:35+00:00",
505
- "type": "jetpack-library",
506
- "extra": {
507
- "autotagger": true,
508
- "mirror-repo": "Automattic/jetpack-logo",
509
- "changelogger": {
510
- "link-template": "https://github.com/Automattic/jetpack-logo/compare/v${old}...v${new}"
511
- },
512
- "branch-alias": {
513
- "dev-master": "1.5.x-dev"
514
- }
515
- },
516
- "installation-source": "dist",
517
- "autoload": {
518
- "classmap": [
519
- "src/"
520
- ]
521
- },
522
- "notification-url": "https://packagist.org/downloads/",
523
- "license": [
524
- "GPL-2.0-or-later"
525
- ],
526
- "description": "A logo for Jetpack",
527
- "support": {
528
- "source": "https://github.com/Automattic/jetpack-logo/tree/v1.5.14"
529
- },
530
- "install-path": "../automattic/jetpack-logo"
531
- },
532
- {
533
- "name": "automattic/jetpack-options",
534
- "version": "v1.14.3",
535
- "version_normalized": "1.14.3.0",
536
- "source": {
537
- "type": "git",
538
- "url": "https://github.com/Automattic/jetpack-options.git",
539
- "reference": "f183ca8cd887296da8d4fe926c432c279cab99a3"
540
- },
541
- "dist": {
542
- "type": "zip",
543
- "url": "https://api.github.com/repos/Automattic/jetpack-options/zipball/f183ca8cd887296da8d4fe926c432c279cab99a3",
544
- "reference": "f183ca8cd887296da8d4fe926c432c279cab99a3",
545
- "shasum": ""
546
- },
547
- "require": {
548
- "automattic/jetpack-constants": "^1.6"
549
- },
550
- "require-dev": {
551
- "automattic/jetpack-changelogger": "^3.0",
552
- "yoast/phpunit-polyfills": "1.0.3"
553
- },
554
- "time": "2022-03-29T18:21:10+00:00",
555
- "type": "jetpack-library",
556
- "extra": {
557
- "autotagger": true,
558
- "mirror-repo": "Automattic/jetpack-options",
559
- "changelogger": {
560
- "link-template": "https://github.com/Automattic/jetpack-options/compare/v${old}...v${new}"
561
- },
562
- "branch-alias": {
563
- "dev-master": "1.14.x-dev"
564
- }
565
- },
566
- "installation-source": "dist",
567
- "autoload": {
568
- "classmap": [
569
- "legacy"
570
- ]
571
- },
572
- "notification-url": "https://packagist.org/downloads/",
573
- "license": [
574
- "GPL-2.0-or-later"
575
- ],
576
- "description": "A wrapper for wp-options to manage specific Jetpack options.",
577
- "support": {
578
- "source": "https://github.com/Automattic/jetpack-options/tree/v1.14.3"
579
- },
580
- "install-path": "../automattic/jetpack-options"
581
- },
582
- {
583
- "name": "automattic/jetpack-password-checker",
584
- "version": "v0.2.3",
585
- "version_normalized": "0.2.3.0",
586
- "source": {
587
- "type": "git",
588
- "url": "https://github.com/Automattic/jetpack-password-checker.git",
589
- "reference": "b8173e8e278b8baba312612d224c95efd2fe0cd3"
590
- },
591
- "dist": {
592
- "type": "zip",
593
- "url": "https://api.github.com/repos/Automattic/jetpack-password-checker/zipball/b8173e8e278b8baba312612d224c95efd2fe0cd3",
594
- "reference": "b8173e8e278b8baba312612d224c95efd2fe0cd3",
595
- "shasum": ""
596
- },
597
- "require-dev": {
598
- "automattic/jetpack-changelogger": "^3.0",
599
- "automattic/wordbless": "@dev",
600
- "yoast/phpunit-polyfills": "1.0.3"
601
- },
602
- "time": "2022-03-29T18:21:03+00:00",
603
- "type": "jetpack-library",
604
- "extra": {
605
- "autotagger": true,
606
- "mirror-repo": "Automattic/jetpack-password-checker",
607
- "textdomain": "jetpack-password-checker",
608
- "changelogger": {
609
- "link-template": "https://github.com/Automattic/jetpack-password-checker/compare/v${old}...v${new}"
610
- },
611
- "branch-alias": {
612
- "dev-master": "0.2.x-dev"
613
- }
614
- },
615
- "installation-source": "dist",
616
- "autoload": {
617
- "classmap": [
618
- "src/"
619
- ]
620
- },
621
- "notification-url": "https://packagist.org/downloads/",
622
- "license": [
623
- "GPL-2.0-or-later"
624
- ],
625
- "description": "Password Checker.",
626
- "support": {
627
- "source": "https://github.com/Automattic/jetpack-password-checker/tree/v0.2.3"
628
- },
629
- "install-path": "../automattic/jetpack-password-checker"
630
- },
631
- {
632
- "name": "automattic/jetpack-redirect",
633
- "version": "v1.7.12",
634
- "version_normalized": "1.7.12.0",
635
- "source": {
636
- "type": "git",
637
- "url": "https://github.com/Automattic/jetpack-redirect.git",
638
- "reference": "89c3fa5e460b4dca22067375f07f01b5a90a7599"
639
- },
640
- "dist": {
641
- "type": "zip",
642
- "url": "https://api.github.com/repos/Automattic/jetpack-redirect/zipball/89c3fa5e460b4dca22067375f07f01b5a90a7599",
643
- "reference": "89c3fa5e460b4dca22067375f07f01b5a90a7599",
644
- "shasum": ""
645
- },
646
- "require": {
647
- "automattic/jetpack-status": "^1.12"
648
- },
649
- "require-dev": {
650
- "automattic/jetpack-changelogger": "^3.0",
651
- "brain/monkey": "2.6.1",
652
- "yoast/phpunit-polyfills": "1.0.3"
653
- },
654
- "time": "2022-03-02T16:27:56+00:00",
655
- "type": "jetpack-library",
656
- "extra": {
657
- "autotagger": true,
658
- "mirror-repo": "Automattic/jetpack-redirect",
659
- "changelogger": {
660
- "link-template": "https://github.com/Automattic/jetpack-redirect/compare/v${old}...v${new}"
661
- },
662
- "branch-alias": {
663
- "dev-master": "1.7.x-dev"
664
- }
665
- },
666
- "installation-source": "dist",
667
- "autoload": {
668
- "classmap": [
669
- "src/"
670
- ]
671
- },
672
- "notification-url": "https://packagist.org/downloads/",
673
- "license": [
674
- "GPL-2.0-or-later"
675
- ],
676
- "description": "Utilities to build URLs to the jetpack.com/redirect/ service",
677
- "support": {
678
- "source": "https://github.com/Automattic/jetpack-redirect/tree/v1.7.12"
679
- },
680
- "install-path": "../automattic/jetpack-redirect"
681
- },
682
- {
683
- "name": "automattic/jetpack-roles",
684
- "version": "v1.4.14",
685
- "version_normalized": "1.4.14.0",
686
- "source": {
687
- "type": "git",
688
- "url": "https://github.com/Automattic/jetpack-roles.git",
689
- "reference": "3cccac277e4f7fed80ce7929d4313c8aa40b65e4"
690
- },
691
- "dist": {
692
- "type": "zip",
693
- "url": "https://api.github.com/repos/Automattic/jetpack-roles/zipball/3cccac277e4f7fed80ce7929d4313c8aa40b65e4",
694
- "reference": "3cccac277e4f7fed80ce7929d4313c8aa40b65e4",
695
- "shasum": ""
696
- },
697
- "require-dev": {
698
- "automattic/jetpack-changelogger": "^3.0",
699
- "brain/monkey": "2.6.1",
700
- "yoast/phpunit-polyfills": "1.0.3"
701
- },
702
- "time": "2022-01-25T17:38:37+00:00",
703
- "type": "jetpack-library",
704
- "extra": {
705
- "autotagger": true,
706
- "mirror-repo": "Automattic/jetpack-roles",
707
- "changelogger": {
708
- "link-template": "https://github.com/Automattic/jetpack-roles/compare/v${old}...v${new}"
709
- },
710
- "branch-alias": {
711
- "dev-master": "1.4.x-dev"
712
- }
713
- },
714
- "installation-source": "dist",
715
- "autoload": {
716
- "classmap": [
717
- "src/"
718
- ]
719
- },
720
- "notification-url": "https://packagist.org/downloads/",
721
- "license": [
722
- "GPL-2.0-or-later"
723
- ],
724
- "description": "Utilities, related with user roles and capabilities.",
725
- "support": {
726
- "source": "https://github.com/Automattic/jetpack-roles/tree/v1.4.14"
727
- },
728
- "install-path": "../automattic/jetpack-roles"
729
- },
730
- {
731
- "name": "automattic/jetpack-status",
732
- "version": "v1.12.0",
733
- "version_normalized": "1.12.0.0",
734
- "source": {
735
- "type": "git",
736
- "url": "https://github.com/Automattic/jetpack-status.git",
737
- "reference": "e4c8988e7d1be5d650f892da7d7ba6b515315934"
738
- },
739
- "dist": {
740
- "type": "zip",
741
- "url": "https://api.github.com/repos/Automattic/jetpack-status/zipball/e4c8988e7d1be5d650f892da7d7ba6b515315934",
742
- "reference": "e4c8988e7d1be5d650f892da7d7ba6b515315934",
743
- "shasum": ""
744
- },
745
- "require": {
746
- "automattic/jetpack-constants": "^1.6"
747
- },
748
- "require-dev": {
749
- "automattic/jetpack-changelogger": "^3.0",
750
- "brain/monkey": "2.6.1",
751
- "yoast/phpunit-polyfills": "1.0.3"
752
- },
753
- "time": "2022-03-02T16:27:52+00:00",
754
- "type": "jetpack-library",
755
- "extra": {
756
- "autotagger": true,
757
- "mirror-repo": "Automattic/jetpack-status",
758
- "changelogger": {
759
- "link-template": "https://github.com/Automattic/jetpack-status/compare/v${old}...v${new}"
760
- },
761
- "branch-alias": {
762
- "dev-master": "1.12.x-dev"
763
- }
764
- },
765
- "installation-source": "dist",
766
- "autoload": {
767
- "classmap": [
768
- "src/"
769
- ]
770
- },
771
- "notification-url": "https://packagist.org/downloads/",
772
- "license": [
773
- "GPL-2.0-or-later"
774
- ],
775
- "description": "Used to retrieve information about the current status of Jetpack and the site overall.",
776
- "support": {
777
- "source": "https://github.com/Automattic/jetpack-status/tree/v1.12.0"
778
- },
779
- "install-path": "../automattic/jetpack-status"
780
- },
781
- {
782
- "name": "automattic/jetpack-sync",
783
- "version": "v1.30.5",
784
- "version_normalized": "1.30.5.0",
785
- "source": {
786
- "type": "git",
787
- "url": "https://github.com/Automattic/jetpack-sync.git",
788
- "reference": "00088952b69d95df16f94e8b4baaaa9a48bff952"
789
- },
790
- "dist": {
791
- "type": "zip",
792
- "url": "https://api.github.com/repos/Automattic/jetpack-sync/zipball/00088952b69d95df16f94e8b4baaaa9a48bff952",
793
- "reference": "00088952b69d95df16f94e8b4baaaa9a48bff952",
794
- "shasum": ""
795
- },
796
- "require": {
797
- "automattic/jetpack-connection": "^1.37",
798
- "automattic/jetpack-constants": "^1.6",
799
- "automattic/jetpack-heartbeat": "^1.4",
800
- "automattic/jetpack-identity-crisis": "^0.8",
801
- "automattic/jetpack-options": "^1.14",
802
- "automattic/jetpack-password-checker": "^0.2",
803
- "automattic/jetpack-roles": "^1.4",
804
- "automattic/jetpack-status": "^1.12"
805
- },
806
- "require-dev": {
807
- "automattic/jetpack-changelogger": "^3.0",
808
- "automattic/wordbless": "@dev",
809
- "yoast/phpunit-polyfills": "1.0.3"
810
- },
811
- "time": "2022-03-29T18:21:27+00:00",
812
- "type": "jetpack-library",
813
- "extra": {
814
- "autotagger": true,
815
- "mirror-repo": "Automattic/jetpack-sync",
816
- "textdomain": "jetpack-sync",
817
- "version-constants": {
818
- "::PACKAGE_VERSION": "src/class-package-version.php"
819
- },
820
- "changelogger": {
821
- "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}"
822
- },
823
- "branch-alias": {
824
- "dev-master": "1.30.x-dev"
825
- }
826
- },
827
- "installation-source": "dist",
828
- "autoload": {
829
- "classmap": [
830
- "src/"
831
- ]
832
- },
833
- "notification-url": "https://packagist.org/downloads/",
834
- "license": [
835
- "GPL-2.0-or-later"
836
- ],
837
- "description": "Everything needed to allow syncing to the WP.com infrastructure.",
838
- "support": {
839
- "source": "https://github.com/Automattic/jetpack-sync/tree/v1.30.5"
840
- },
841
- "install-path": "../automattic/jetpack-sync"
842
- },
843
- {
844
- "name": "automattic/jetpack-tracking",
845
- "version": "v1.14.5",
846
- "version_normalized": "1.14.5.0",
847
- "source": {
848
- "type": "git",
849
- "url": "https://github.com/Automattic/jetpack-tracking.git",
850
- "reference": "aadc1a8c48145bfddea163eb55293b9211154872"
851
- },
852
- "dist": {
853
- "type": "zip",
854
- "url": "https://api.github.com/repos/Automattic/jetpack-tracking/zipball/aadc1a8c48145bfddea163eb55293b9211154872",
855
- "reference": "aadc1a8c48145bfddea163eb55293b9211154872",
856
- "shasum": ""
857
- },
858
- "require": {
859
- "automattic/jetpack-assets": "^1.17",
860
- "automattic/jetpack-options": "^1.14",
861
- "automattic/jetpack-status": "^1.12"
862
- },
863
- "require-dev": {
864
- "automattic/jetpack-changelogger": "^3.0",
865
- "brain/monkey": "2.6.1",
866
- "yoast/phpunit-polyfills": "1.0.3"
867
- },
868
- "time": "2022-03-29T18:21:15+00:00",
869
- "type": "jetpack-library",
870
- "extra": {
871
- "autotagger": true,
872
- "mirror-repo": "Automattic/jetpack-tracking",
873
- "textdomain": "jetpack-tracking",
874
- "changelogger": {
875
- "link-template": "https://github.com/Automattic/jetpack-tracking/compare/v${old}...v${new}"
876
- },
877
- "branch-alias": {
878
- "dev-master": "1.14.x-dev"
879
- }
880
- },
881
- "installation-source": "dist",
882
- "autoload": {
883
- "classmap": [
884
- "legacy",
885
- "src/"
886
- ]
887
- },
888
- "notification-url": "https://packagist.org/downloads/",
889
- "license": [
890
- "GPL-2.0-or-later"
891
- ],
892
- "description": "Tracking for Jetpack",
893
- "support": {
894
- "source": "https://github.com/Automattic/jetpack-tracking/tree/v1.14.5"
895
- },
896
- "install-path": "../automattic/jetpack-tracking"
897
- },
898
- {
899
- "name": "composer/installers",
900
- "version": "v1.10.0",
901
- "version_normalized": "1.10.0.0",
902
- "source": {
903
- "type": "git",
904
- "url": "https://github.com/composer/installers.git",
905
- "reference": "1a0357fccad9d1cc1ea0c9a05b8847fbccccb78d"
906
- },
907
- "dist": {
908
- "type": "zip",
909
- "url": "https://api.github.com/repos/composer/installers/zipball/1a0357fccad9d1cc1ea0c9a05b8847fbccccb78d",
910
- "reference": "1a0357fccad9d1cc1ea0c9a05b8847fbccccb78d",
911
- "shasum": ""
912
- },
913
- "require": {
914
- "composer-plugin-api": "^1.0 || ^2.0"
915
- },
916
- "replace": {
917
- "roundcube/plugin-installer": "*",
918
- "shama/baton": "*"
919
- },
920
- "require-dev": {
921
- "composer/composer": "1.6.* || ^2.0",
922
- "composer/semver": "^1 || ^3",
923
- "phpstan/phpstan": "^0.12.55",
924
- "phpstan/phpstan-phpunit": "^0.12.16",
925
- "symfony/phpunit-bridge": "^4.2 || ^5",
926
- "symfony/process": "^2.3"
927
- },
928
- "time": "2021-01-14T11:07:16+00:00",
929
- "type": "composer-plugin",
930
- "extra": {
931
- "class": "Composer\\Installers\\Plugin",
932
- "branch-alias": {
933
- "dev-main": "1.x-dev"
934
- }
935
- },
936
- "installation-source": "dist",
937
- "autoload": {
938
- "psr-4": {
939
- "Composer\\Installers\\": "src/Composer/Installers"
940
- }
941
- },
942
- "notification-url": "https://packagist.org/downloads/",
943
- "license": [
944
- "MIT"
945
- ],
946
- "authors": [
947
- {
948
- "name": "Kyle Robinson Young",
949
- "email": "kyle@dontkry.com",
950
- "homepage": "https://github.com/shama"
951
- }
952
- ],
953
- "description": "A multi-framework Composer library installer",
954
- "homepage": "https://composer.github.io/installers/",
955
- "keywords": [
956
- "Craft",
957
- "Dolibarr",
958
- "Eliasis",
959
- "Hurad",
960
- "ImageCMS",
961
- "Kanboard",
962
- "Lan Management System",
963
- "MODX Evo",
964
- "MantisBT",
965
- "Mautic",
966
- "Maya",
967
- "OXID",
968
- "Plentymarkets",
969
- "Porto",
970
- "RadPHP",
971
- "SMF",
972
- "Starbug",
973
- "Thelia",
974
- "Whmcs",
975
- "WolfCMS",
976
- "agl",
977
- "aimeos",
978
- "annotatecms",
979
- "attogram",
980
- "bitrix",
981
- "cakephp",
982
- "chef",
983
- "cockpit",
984
- "codeigniter",
985
- "concrete5",
986
- "croogo",
987
- "dokuwiki",
988
- "drupal",
989
- "eZ Platform",
990
- "elgg",
991
- "expressionengine",
992
- "fuelphp",
993
- "grav",
994
- "installer",
995
- "itop",
996
- "joomla",
997
- "known",
998
- "kohana",
999
- "laravel",
1000
- "lavalite",
1001
- "lithium",
1002
- "magento",
1003
- "majima",
1004
- "mako",
1005
- "mediawiki",
1006
- "modulework",
1007
- "modx",
1008
- "moodle",
1009
- "osclass",
1010
- "phpbb",
1011
- "piwik",
1012
- "ppi",
1013
- "processwire",
1014
- "puppet",
1015
- "pxcms",
1016
- "reindex",
1017
- "roundcube",
1018
- "shopware",
1019
- "silverstripe",
1020
- "sydes",
1021
- "sylius",
1022
- "symfony",
1023
- "typo3",
1024
- "wordpress",
1025
- "yawik",
1026
- "zend",
1027
- "zikula"
1028
- ],
1029
- "support": {
1030
- "issues": "https://github.com/composer/installers/issues",
1031
- "source": "https://github.com/composer/installers/tree/v1.10.0"
1032
- },
1033
- "funding": [
1034
- {
1035
- "url": "https://packagist.com",
1036
- "type": "custom"
1037
- },
1038
- {
1039
- "url": "https://github.com/composer",
1040
- "type": "github"
1041
- },
1042
- {
1043
- "url": "https://tidelift.com/funding/github/packagist/composer/composer",
1044
- "type": "tidelift"
1045
- }
1046
- ],
1047
- "install-path": "./installers"
1048
- },
1049
- {
1050
- "name": "myclabs/php-enum",
1051
- "version": "1.7.7",
1052
- "version_normalized": "1.7.7.0",
1053
- "source": {
1054
- "type": "git",
1055
- "url": "https://github.com/myclabs/php-enum.git",
1056
- "reference": "d178027d1e679832db9f38248fcc7200647dc2b7"
1057
- },
1058
- "dist": {
1059
- "type": "zip",
1060
- "url": "https://api.github.com/repos/myclabs/php-enum/zipball/d178027d1e679832db9f38248fcc7200647dc2b7",
1061
- "reference": "d178027d1e679832db9f38248fcc7200647dc2b7",
1062
- "shasum": ""
1063
- },
1064
- "require": {
1065
- "ext-json": "*",
1066
- "php": ">=7.1"
1067
- },
1068
- "require-dev": {
1069
- "phpunit/phpunit": "^7",
1070
- "squizlabs/php_codesniffer": "1.*",
1071
- "vimeo/psalm": "^3.8"
1072
- },
1073
- "time": "2020-11-14T18:14:52+00:00",
1074
- "type": "library",
1075
- "installation-source": "dist",
1076
- "autoload": {
1077
- "psr-4": {
1078
- "MyCLabs\\Enum\\": "src/"
1079
- }
1080
- },
1081
- "notification-url": "https://packagist.org/downloads/",
1082
- "license": [
1083
- "MIT"
1084
- ],
1085
- "authors": [
1086
- {
1087
- "name": "PHP Enum contributors",
1088
- "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
1089
- }
1090
- ],
1091
- "description": "PHP Enum implementation",
1092
- "homepage": "http://github.com/myclabs/php-enum",
1093
- "keywords": [
1094
- "enum"
1095
  ],
1096
- "support": {
1097
- "issues": "https://github.com/myclabs/php-enum/issues",
1098
- "source": "https://github.com/myclabs/php-enum/tree/1.7.7"
1099
- },
1100
- "funding": [
1101
- {
1102
- "url": "https://github.com/mnapoli",
1103
- "type": "github"
1104
- },
1105
- {
1106
- "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
1107
- "type": "tidelift"
1108
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1109
  ],
1110
- "install-path": "../myclabs/php-enum"
1111
- },
1112
- {
1113
- "name": "woocommerce/subscriptions-core",
1114
- "version": "2.0.0",
1115
- "version_normalized": "2.0.0.0",
1116
- "source": {
1117
- "type": "git",
1118
- "url": "https://github.com/Automattic/woocommerce-subscriptions-core.git",
1119
- "reference": "69ab97d25d8a3fb4c1ac38fb180b39f323af6ac9"
1120
- },
1121
- "dist": {
1122
- "type": "zip",
1123
- "url": "https://api.github.com/repos/Automattic/woocommerce-subscriptions-core/zipball/69ab97d25d8a3fb4c1ac38fb180b39f323af6ac9",
1124
- "reference": "69ab97d25d8a3fb4c1ac38fb180b39f323af6ac9",
1125
- "shasum": ""
1126
- },
1127
- "require": {
1128
- "composer/installers": "~1.2",
1129
- "php": "^7.1"
1130
- },
1131
- "require-dev": {
1132
- "dave-liddament/sarb": "^1.1",
1133
- "phpunit/phpunit": "9.5.14",
1134
- "woocommerce/woocommerce-sniffs": "0.1.0",
1135
- "yoast/phpunit-polyfills": "1.0.3"
1136
- },
1137
- "time": "2022-05-23T01:00:04+00:00",
1138
- "type": "wordpress-plugin",
1139
- "extra": {
1140
- "phpcodesniffer-search-depth": 2
1141
- },
1142
- "installation-source": "dist",
1143
- "archive": {
1144
- "exclude": [
1145
- "!/build"
1146
- ]
1147
- },
1148
- "scripts": {
1149
- "phpcs": [
1150
- "bin/phpcs.sh"
1151
- ],
1152
- "lint": [
1153
- "find . \\( -path ./vendor \\) -prune -o \\( -name '*.php' \\) -exec php -lf {} \\;| (! grep -v \"No syntax errors detected\" )"
1154
- ],
1155
- "test": [
1156
- "phpunit"
1157
- ]
1158
- },
1159
- "license": [
1160
- "GPL-3.0-or-later"
1161
  ],
1162
- "description": "Sell products and services with recurring payments in your WooCommerce Store.",
1163
- "homepage": "https://github.com/Automattic/woocommerce-subscriptions-core",
1164
- "support": {
1165
- "source": "https://github.com/Automattic/woocommerce-subscriptions-core/tree/2.0.0",
1166
- "issues": "https://github.com/Automattic/woocommerce-subscriptions-core/issues"
1167
- },
1168
- "install-path": "../woocommerce/subscriptions-core"
 
 
 
 
 
1169
  }
1170
- ],
1171
- "dev": false,
1172
- "dev-package-names": []
1173
- }
1
+ [
2
+ {
3
+ "name": "automattic/jetpack-a8c-mc-stats",
4
+ "version": "v1.4.12",
5
+ "version_normalized": "1.4.12.0",
6
+ "source": {
7
+ "type": "git",
8
+ "url": "https://github.com/Automattic/jetpack-a8c-mc-stats.git",
9
+ "reference": "38b3d11fec181d90abe6d80f5184fff6d2ef694c"
10
+ },
11
+ "dist": {
12
+ "type": "zip",
13
+ "url": "https://api.github.com/repos/Automattic/jetpack-a8c-mc-stats/zipball/38b3d11fec181d90abe6d80f5184fff6d2ef694c",
14
+ "reference": "38b3d11fec181d90abe6d80f5184fff6d2ef694c",
15
+ "shasum": ""
16
+ },
17
+ "require-dev": {
18
+ "automattic/jetpack-changelogger": "^3.0",
19
+ "yoast/phpunit-polyfills": "1.0.3"
20
+ },
21
+ "time": "2022-01-25T17:38:22+00:00",
22
+ "type": "jetpack-library",
23
+ "extra": {
24
+ "autotagger": true,
25
+ "mirror-repo": "Automattic/jetpack-a8c-mc-stats",
26
+ "changelogger": {
27
+ "link-template": "https://github.com/Automattic/jetpack-a8c-mc-stats/compare/v${old}...v${new}"
28
+ },
29
+ "branch-alias": {
30
+ "dev-master": "1.4.x-dev"
31
+ }
32
+ },
33
+ "installation-source": "dist",
34
+ "autoload": {
35
+ "classmap": [
36
+ "src/"
37
+ ]
38
+ },
39
+ "notification-url": "https://packagist.org/downloads/",
40
+ "license": [
41
+ "GPL-2.0-or-later"
42
+ ],
43
+ "description": "Used to record internal usage stats for Automattic. Not visible to site owners.",
44
+ "support": {
45
+ "source": "https://github.com/Automattic/jetpack-a8c-mc-stats/tree/v1.4.12"
46
+ }
47
+ },
48
+ {
49
+ "name": "automattic/jetpack-admin-ui",
50
+ "version": "v0.2.5",
51
+ "version_normalized": "0.2.5.0",
52
+ "source": {
53
+ "type": "git",
54
+ "url": "https://github.com/Automattic/jetpack-admin-ui.git",
55
+ "reference": "e72dddc3abb8fd914ae0efced8e2f162baf9dda1"
56
+ },
57
+ "dist": {
58
+ "type": "zip",
59
+ "url": "https://api.github.com/repos/Automattic/jetpack-admin-ui/zipball/e72dddc3abb8fd914ae0efced8e2f162baf9dda1",
60
+ "reference": "e72dddc3abb8fd914ae0efced8e2f162baf9dda1",
61
+ "shasum": ""
62
+ },
63
+ "require-dev": {
64
+ "automattic/jetpack-changelogger": "^3.0",
65
+ "automattic/wordbless": "dev-master",
66
+ "yoast/phpunit-polyfills": "1.0.3"
67
+ },
68
+ "time": "2022-03-08T17:34:09+00:00",
69
+ "type": "jetpack-library",
70
+ "extra": {
71
+ "autotagger": true,
72
+ "mirror-repo": "Automattic/jetpack-admin-ui",
73
+ "textdomain": "jetpack-admin-ui",
74
+ "changelogger": {
75
+ "link-template": "https://github.com/Automattic/jetpack-admin-ui/compare/${old}...${new}"
76
+ },
77
+ "branch-alias": {
78
+ "dev-master": "0.2.x-dev"
79
+ },
80
+ "version-constants": {
81
+ "::PACKAGE_VERSION": "src/class-admin-menu.php"
82
+ }
83
+ },
84
+ "installation-source": "dist",
85
+ "autoload": {
86
+ "classmap": [
87
+ "src/"
88
+ ]
89
+ },
90
+ "notification-url": "https://packagist.org/downloads/",
91
+ "license": [
92
+ "GPL-2.0-or-later"
93
+ ],
94
+ "description": "Generic Jetpack wp-admin UI elements",
95
+ "support": {
96
+ "source": "https://github.com/Automattic/jetpack-admin-ui/tree/v0.2.5"
97
+ }
98
+ },
99
+ {
100
+ "name": "automattic/jetpack-assets",
101
+ "version": "v1.17.8",
102
+ "version_normalized": "1.17.8.0",
103
+ "source": {
104
+ "type": "git",
105
+ "url": "https://github.com/Automattic/jetpack-assets.git",
106
+ "reference": "f442d509917b7c23bc272e2634c24ec3d07855e1"
107
+ },
108
+ "dist": {
109
+ "type": "zip",
110
+ "url": "https://api.github.com/repos/Automattic/jetpack-assets/zipball/f442d509917b7c23bc272e2634c24ec3d07855e1",
111
+ "reference": "f442d509917b7c23bc272e2634c24ec3d07855e1",
112
+ "shasum": ""
113
+ },
114
+ "require": {
115
+ "automattic/jetpack-constants": "^1.6"
116
+ },
117
+ "require-dev": {
118
+ "automattic/jetpack-changelogger": "^3.0",
119
+ "brain/monkey": "2.6.1",
120
+ "wikimedia/testing-access-wrapper": "^1.0 || ^2.0",
121
+ "yoast/phpunit-polyfills": "1.0.3"
122
+ },
123
+ "time": "2022-03-29T18:21:13+00:00",
124
+ "type": "jetpack-library",
125
+ "extra": {
126
+ "autotagger": true,
127
+ "mirror-repo": "Automattic/jetpack-assets",
128
+ "textdomain": "jetpack-assets",
129
+ "changelogger": {
130
+ "link-template": "https://github.com/Automattic/jetpack-assets/compare/v${old}...v${new}"
131
+ },
132
+ "branch-alias": {
133
+ "dev-master": "1.17.x-dev"
134
+ }
135
+ },
136
+ "installation-source": "dist",
137
+ "autoload": {
138
+ "files": [
139
+ "actions.php"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
140
  ],
141
+ "classmap": [
142
+ "src/"
143
+ ]
144
+ },
145
+ "notification-url": "https://packagist.org/downloads/",
146
+ "license": [
147
+ "GPL-2.0-or-later"
148
+ ],
149
+ "description": "Asset management utilities for Jetpack ecosystem packages",
150
+ "support": {
151
+ "source": "https://github.com/Automattic/jetpack-assets/tree/v1.17.8"
152
+ }
153
+ },
154
+ {
155
+ "name": "automattic/jetpack-autoloader",
156
+ "version": "v2.10.11",
157
+ "version_normalized": "2.10.11.0",
158
+ "source": {
159
+ "type": "git",
160
+ "url": "https://github.com/Automattic/jetpack-autoloader.git",
161
+ "reference": "924226c0a9e2f9b0be022fc6bab2a90f5e610ef3"
162
+ },
163
+ "dist": {
164
+ "type": "zip",
165
+ "url": "https://api.github.com/repos/Automattic/jetpack-autoloader/zipball/924226c0a9e2f9b0be022fc6bab2a90f5e610ef3",
166
+ "reference": "924226c0a9e2f9b0be022fc6bab2a90f5e610ef3",
167
+ "shasum": ""
168
+ },
169
+ "require": {
170
+ "composer-plugin-api": "^1.1 || ^2.0"
171
+ },
172
+ "require-dev": {
173
+ "automattic/jetpack-changelogger": "^3.0",
174
+ "yoast/phpunit-polyfills": "1.0.3"
175
+ },
176
+ "time": "2022-01-04T21:11:27+00:00",
177
+ "type": "composer-plugin",
178
+ "extra": {
179
+ "autotagger": true,
180
+ "class": "Automattic\\Jetpack\\Autoloader\\CustomAutoloaderPlugin",
181
+ "mirror-repo": "Automattic/jetpack-autoloader",
182
+ "changelogger": {
183
+ "link-template": "https://github.com/Automattic/jetpack-autoloader/compare/v${old}...v${new}"
184
+ },
185
+ "branch-alias": {
186
+ "dev-master": "2.10.x-dev"
187
+ }
188
+ },
189
+ "installation-source": "dist",
190
+ "autoload": {
191
+ "psr-4": {
192
+ "Automattic\\Jetpack\\Autoloader\\": "src"
193
+ },
194
+ "classmap": [
195
+ "src/AutoloadGenerator.php"
196
+ ]
197
+ },
198
+ "notification-url": "https://packagist.org/downloads/",
199
+ "license": [
200
+ "GPL-2.0-or-later"
201
+ ],
202
+ "description": "Creates a custom autoloader for a plugin or theme.",
203
+ "support": {
204
+ "source": "https://github.com/Automattic/jetpack-autoloader/tree/v2.10.11"
205
+ }
206
+ },
207
+ {
208
+ "name": "automattic/jetpack-config",
209
+ "version": "v1.6.1",
210
+ "version_normalized": "1.6.1.0",
211
+ "source": {
212
+ "type": "git",
213
+ "url": "https://github.com/Automattic/jetpack-config.git",
214
+ "reference": "34ed249c0be9f8c871c5a28411913983fb1ce7d7"
215
+ },
216
+ "dist": {
217
+ "type": "zip",
218
+ "url": "https://api.github.com/repos/Automattic/jetpack-config/zipball/34ed249c0be9f8c871c5a28411913983fb1ce7d7",
219
+ "reference": "34ed249c0be9f8c871c5a28411913983fb1ce7d7",
220
+ "shasum": ""
221
+ },
222
+ "require-dev": {
223
+ "automattic/jetpack-changelogger": "^3.0"
224
+ },
225
+ "time": "2022-02-09T17:56:28+00:00",
226
+ "type": "jetpack-library",
227
+ "extra": {
228
+ "autotagger": true,
229
+ "mirror-repo": "Automattic/jetpack-config",
230
+ "textdomain": "jetpack-config",
231
+ "changelogger": {
232
+ "link-template": "https://github.com/Automattic/jetpack-config/compare/v${old}...v${new}"
233
+ },
234
+ "branch-alias": {
235
+ "dev-master": "1.6.x-dev"
236
+ }
237
+ },
238
+ "installation-source": "dist",
239
+ "autoload": {
240
+ "classmap": [
241
+ "src/"
242
+ ]
243
+ },
244
+ "notification-url": "https://packagist.org/downloads/",
245
+ "license": [
246
+ "GPL-2.0-or-later"
247
+ ],
248
+ "description": "Jetpack configuration package that initializes other packages and configures Jetpack's functionality. Can be used as a base for all variants of Jetpack package usage.",
249
+ "support": {
250
+ "source": "https://github.com/Automattic/jetpack-config/tree/v1.6.1"
251
+ }
252
+ },
253
+ {
254
+ "name": "automattic/jetpack-connection",
255
+ "version": "v1.37.3",
256
+ "version_normalized": "1.37.3.0",
257
+ "source": {
258
+ "type": "git",
259
+ "url": "https://github.com/Automattic/jetpack-connection.git",
260
+ "reference": "2402aa3d7915ac48fe6dab5b2ad7aefcdcaa3a73"
261
+ },
262
+ "dist": {
263
+ "type": "zip",
264
+ "url": "https://api.github.com/repos/Automattic/jetpack-connection/zipball/2402aa3d7915ac48fe6dab5b2ad7aefcdcaa3a73",
265
+ "reference": "2402aa3d7915ac48fe6dab5b2ad7aefcdcaa3a73",
266
+ "shasum": ""
267
+ },
268
+ "require": {
269
+ "automattic/jetpack-a8c-mc-stats": "^1.4",
270
+ "automattic/jetpack-admin-ui": "^0.2",
271
+ "automattic/jetpack-constants": "^1.6",
272
+ "automattic/jetpack-heartbeat": "^1.4",
273
+ "automattic/jetpack-options": "^1.14",
274
+ "automattic/jetpack-redirect": "^1.7",
275
+ "automattic/jetpack-roles": "^1.4",
276
+ "automattic/jetpack-status": "^1.12",
277
+ "automattic/jetpack-tracking": "^1.14"
278
+ },
279
+ "require-dev": {
280
+ "automattic/jetpack-changelogger": "^3.0",
281
+ "automattic/wordbless": "@dev",
282
+ "brain/monkey": "2.6.1",
283
+ "yoast/phpunit-polyfills": "1.0.3"
284
+ },
285
+ "time": "2022-03-29T18:21:17+00:00",
286
+ "type": "jetpack-library",
287
+ "extra": {
288
+ "autotagger": true,
289
+ "mirror-repo": "Automattic/jetpack-connection",
290
+ "textdomain": "jetpack-connection",
291
+ "version-constants": {
292
+ "::PACKAGE_VERSION": "src/class-package-version.php"
293
+ },
294
+ "changelogger": {
295
+ "link-template": "https://github.com/Automattic/jetpack-connection/compare/v${old}...v${new}"
296
+ },
297
+ "branch-alias": {
298
+ "dev-master": "1.37.x-dev"
299
+ }
300
+ },
301
+ "installation-source": "dist",
302
+ "autoload": {
303
+ "classmap": [
304
+ "legacy",
305
+ "src/",
306
+ "src/webhooks"
307
+ ]
308
+ },
309
+ "notification-url": "https://packagist.org/downloads/",
310
+ "license": [
311
+ "GPL-2.0-or-later"
312
+ ],
313
+ "description": "Everything needed to connect to the Jetpack infrastructure",
314
+ "support": {
315
+ "source": "https://github.com/Automattic/jetpack-connection/tree/v1.37.3"
316
+ }
317
+ },
318
+ {
319
+ "name": "automattic/jetpack-constants",
320
+ "version": "v1.6.15",
321
+ "version_normalized": "1.6.15.0",
322
+ "source": {
323
+ "type": "git",
324
+ "url": "https://github.com/Automattic/jetpack-constants.git",
325
+ "reference": "f203b7c8ce89760ff8a70abcfbd1308765038fc9"
326
+ },
327
+ "dist": {
328
+ "type": "zip",
329
+ "url": "https://api.github.com/repos/Automattic/jetpack-constants/zipball/f203b7c8ce89760ff8a70abcfbd1308765038fc9",
330
+ "reference": "f203b7c8ce89760ff8a70abcfbd1308765038fc9",
331
+ "shasum": ""
332
+ },
333
+ "require-dev": {
334
+ "automattic/jetpack-changelogger": "^3.0",
335
+ "brain/monkey": "2.6.1",
336
+ "yoast/phpunit-polyfills": "1.0.3"
337
+ },
338
+ "time": "2022-01-25T17:38:30+00:00",
339
+ "type": "jetpack-library",
340
+ "extra": {
341
+ "autotagger": true,
342
+ "mirror-repo": "Automattic/jetpack-constants",
343
+ "changelogger": {
344
+ "link-template": "https://github.com/Automattic/jetpack-constants/compare/v${old}...v${new}"
345
+ },
346
+ "branch-alias": {
347
+ "dev-master": "1.6.x-dev"
348
+ }
349
+ },
350
+ "installation-source": "dist",
351
+ "autoload": {
352
+ "classmap": [
353
+ "src/"
354
+ ]
355
+ },
356
+ "notification-url": "https://packagist.org/downloads/",
357
+ "license": [
358
+ "GPL-2.0-or-later"
359
+ ],
360
+ "description": "A wrapper for defining constants in a more testable way.",
361
+ "support": {
362
+ "source": "https://github.com/Automattic/jetpack-constants/tree/v1.6.15"
363
+ }
364
+ },
365
+ {
366
+ "name": "automattic/jetpack-heartbeat",
367
+ "version": "v1.4.0",
368
+ "version_normalized": "1.4.0.0",
369
+ "source": {
370
+ "type": "git",
371
+ "url": "https://github.com/Automattic/jetpack-heartbeat.git",
372
+ "reference": "c35053475b1cb7363aee847e0d025f0a043dc3d5"
373
+ },
374
+ "dist": {
375
+ "type": "zip",
376
+ "url": "https://api.github.com/repos/Automattic/jetpack-heartbeat/zipball/c35053475b1cb7363aee847e0d025f0a043dc3d5",
377
+ "reference": "c35053475b1cb7363aee847e0d025f0a043dc3d5",
378
+ "shasum": ""
379
+ },
380
+ "require": {
381
+ "automattic/jetpack-a8c-mc-stats": "^1.4",
382
+ "automattic/jetpack-options": "^1.14"
383
+ },
384
+ "require-dev": {
385
+ "automattic/jetpack-changelogger": "^3.0"
386
+ },
387
+ "time": "2022-01-04T21:11:47+00:00",
388
+ "type": "jetpack-library",
389
+ "extra": {
390
+ "autotagger": true,
391
+ "mirror-repo": "Automattic/jetpack-heartbeat",
392
+ "textdomain": "jetpack-heartbeat",
393
+ "changelogger": {
394
+ "link-template": "https://github.com/Automattic/jetpack-heartbeat/compare/v${old}...v${new}"
395
+ },
396
+ "branch-alias": {
397
+ "dev-master": "1.4.x-dev"
398
+ }
399
+ },
400
+ "installation-source": "dist",
401
+ "autoload": {
402
+ "classmap": [
403
+ "src/"
404
+ ]
405
+ },
406
+ "notification-url": "https://packagist.org/downloads/",
407
+ "license": [
408
+ "GPL-2.0-or-later"
409
+ ],
410
+ "description": "This adds a cronjob that sends a batch of internal automattic stats to wp.com once a day",
411
+ "support": {
412
+ "source": "https://github.com/Automattic/jetpack-heartbeat/tree/v1.4.0"
413
+ }
414
+ },
415
+ {
416
+ "name": "automattic/jetpack-identity-crisis",
417
+ "version": "v0.8.4",
418
+ "version_normalized": "0.8.4.0",
419
+ "source": {
420
+ "type": "git",
421
+ "url": "https://github.com/Automattic/jetpack-identity-crisis.git",
422
+ "reference": "11b62e3f1f2d56c7283185f8670655d99ba2e7b5"
423
+ },
424
+ "dist": {
425
+ "type": "zip",
426
+ "url": "https://api.github.com/repos/Automattic/jetpack-identity-crisis/zipball/11b62e3f1f2d56c7283185f8670655d99ba2e7b5",
427
+ "reference": "11b62e3f1f2d56c7283185f8670655d99ba2e7b5",
428
+ "shasum": ""
429
+ },
430
+ "require": {
431
+ "automattic/jetpack-assets": "^1.17",
432
+ "automattic/jetpack-connection": "^1.37",
433
+ "automattic/jetpack-constants": "^1.6",
434
+ "automattic/jetpack-logo": "^1.5",
435
+ "automattic/jetpack-options": "^1.14",
436
+ "automattic/jetpack-status": "^1.12",
437
+ "automattic/jetpack-tracking": "^1.14"
438
+ },
439
+ "require-dev": {
440
+ "automattic/jetpack-changelogger": "^3.0",
441
+ "automattic/wordbless": "@dev",
442
+ "yoast/phpunit-polyfills": "1.0.3"
443
+ },
444
+ "time": "2022-03-29T18:21:23+00:00",
445
+ "type": "jetpack-library",
446
+ "extra": {
447
+ "autotagger": true,
448
+ "mirror-repo": "Automattic/jetpack-identity-crisis",
449
+ "textdomain": "jetpack-idc",
450
+ "version-constants": {
451
+ "::PACKAGE_VERSION": "src/class-identity-crisis.php"
452
+ },
453
+ "changelogger": {
454
+ "link-template": "https://github.com/Automattic/jetpack-identity-crisis/compare/v${old}...v${new}"
455
+ },
456
+ "branch-alias": {
457
+ "dev-master": "0.8.x-dev"
458
+ }
459
+ },
460
+ "installation-source": "dist",
461
+ "autoload": {
462
+ "classmap": [
463
+ "src/"
464
+ ]
465
+ },
466
+ "notification-url": "https://packagist.org/downloads/",
467
+ "license": [
468
+ "GPL-2.0-or-later"
469
+ ],
470
+ "description": "Identity Crisis.",
471
+ "support": {
472
+ "source": "https://github.com/Automattic/jetpack-identity-crisis/tree/v0.8.4"
473
+ }
474
+ },
475
+ {
476
+ "name": "automattic/jetpack-logo",
477
+ "version": "v1.5.14",
478
+ "version_normalized": "1.5.14.0",
479
+ "source": {
480
+ "type": "git",
481
+ "url": "https://github.com/Automattic/jetpack-logo.git",
482
+ "reference": "9fbc006fd49e61c70ddbfc92dfea06338822656a"
483
+ },
484
+ "dist": {
485
+ "type": "zip",
486
+ "url": "https://api.github.com/repos/Automattic/jetpack-logo/zipball/9fbc006fd49e61c70ddbfc92dfea06338822656a",
487
+ "reference": "9fbc006fd49e61c70ddbfc92dfea06338822656a",
488
+ "shasum": ""
489
+ },
490
+ "require-dev": {
491
+ "automattic/jetpack-changelogger": "^3.0",
492
+ "yoast/phpunit-polyfills": "1.0.3"
493
+ },
494
+ "time": "2022-01-25T17:38:35+00:00",
495
+ "type": "jetpack-library",
496
+ "extra": {
497
+ "autotagger": true,
498
+ "mirror-repo": "Automattic/jetpack-logo",
499
+ "changelogger": {
500
+ "link-template": "https://github.com/Automattic/jetpack-logo/compare/v${old}...v${new}"
501
+ },
502
+ "branch-alias": {
503
+ "dev-master": "1.5.x-dev"
504
+ }
505
+ },
506
+ "installation-source": "dist",
507
+ "autoload": {
508
+ "classmap": [
509
+ "src/"
510
+ ]
511
+ },
512
+ "notification-url": "https://packagist.org/downloads/",
513
+ "license": [
514
+ "GPL-2.0-or-later"
515
+ ],
516
+ "description": "A logo for Jetpack",
517
+ "support": {
518
+ "source": "https://github.com/Automattic/jetpack-logo/tree/v1.5.14"
519
+ }
520
+ },
521
+ {
522
+ "name": "automattic/jetpack-options",
523
+ "version": "v1.14.3",
524
+ "version_normalized": "1.14.3.0",
525
+ "source": {
526
+ "type": "git",
527
+ "url": "https://github.com/Automattic/jetpack-options.git",
528
+ "reference": "f183ca8cd887296da8d4fe926c432c279cab99a3"
529
+ },
530
+ "dist": {
531
+ "type": "zip",
532
+ "url": "https://api.github.com/repos/Automattic/jetpack-options/zipball/f183ca8cd887296da8d4fe926c432c279cab99a3",
533
+ "reference": "f183ca8cd887296da8d4fe926c432c279cab99a3",
534
+ "shasum": ""
535
+ },
536
+ "require": {
537
+ "automattic/jetpack-constants": "^1.6"
538
+ },
539
+ "require-dev": {
540
+ "automattic/jetpack-changelogger": "^3.0",
541
+ "yoast/phpunit-polyfills": "1.0.3"
542
+ },
543
+ "time": "2022-03-29T18:21:10+00:00",
544
+ "type": "jetpack-library",
545
+ "extra": {
546
+ "autotagger": true,
547
+ "mirror-repo": "Automattic/jetpack-options",
548
+ "changelogger": {
549
+ "link-template": "https://github.com/Automattic/jetpack-options/compare/v${old}...v${new}"
550
+ },
551
+ "branch-alias": {
552
+ "dev-master": "1.14.x-dev"
553
+ }
554
+ },
555
+ "installation-source": "dist",
556
+ "autoload": {
557
+ "classmap": [
558
+ "legacy"
559
+ ]
560
+ },
561
+ "notification-url": "https://packagist.org/downloads/",
562
+ "license": [
563
+ "GPL-2.0-or-later"
564
+ ],
565
+ "description": "A wrapper for wp-options to manage specific Jetpack options.",
566
+ "support": {
567
+ "source": "https://github.com/Automattic/jetpack-options/tree/v1.14.3"
568
+ }
569
+ },
570
+ {
571
+ "name": "automattic/jetpack-password-checker",
572
+ "version": "v0.2.3",
573
+ "version_normalized": "0.2.3.0",
574
+ "source": {
575
+ "type": "git",
576
+ "url": "https://github.com/Automattic/jetpack-password-checker.git",
577
+ "reference": "b8173e8e278b8baba312612d224c95efd2fe0cd3"
578
+ },
579
+ "dist": {
580
+ "type": "zip",
581
+ "url": "https://api.github.com/repos/Automattic/jetpack-password-checker/zipball/b8173e8e278b8baba312612d224c95efd2fe0cd3",
582
+ "reference": "b8173e8e278b8baba312612d224c95efd2fe0cd3",
583
+ "shasum": ""
584
+ },
585
+ "require-dev": {
586
+ "automattic/jetpack-changelogger": "^3.0",
587
+ "automattic/wordbless": "@dev",
588
+ "yoast/phpunit-polyfills": "1.0.3"
589
+ },
590
+ "time": "2022-03-29T18:21:03+00:00",
591
+ "type": "jetpack-library",
592
+ "extra": {
593
+ "autotagger": true,
594
+ "mirror-repo": "Automattic/jetpack-password-checker",
595
+ "textdomain": "jetpack-password-checker",
596
+ "changelogger": {
597
+ "link-template": "https://github.com/Automattic/jetpack-password-checker/compare/v${old}...v${new}"
598
+ },
599
+ "branch-alias": {
600
+ "dev-master": "0.2.x-dev"
601
+ }
602
+ },
603
+ "installation-source": "dist",
604
+ "autoload": {
605
+ "classmap": [
606
+ "src/"
607
+ ]
608
+ },
609
+ "notification-url": "https://packagist.org/downloads/",
610
+ "license": [
611
+ "GPL-2.0-or-later"
612
+ ],
613
+ "description": "Password Checker.",
614
+ "support": {
615
+ "source": "https://github.com/Automattic/jetpack-password-checker/tree/v0.2.3"
616
+ }
617
+ },
618
+ {
619
+ "name": "automattic/jetpack-redirect",
620
+ "version": "v1.7.12",
621
+ "version_normalized": "1.7.12.0",
622
+ "source": {
623
+ "type": "git",
624
+ "url": "https://github.com/Automattic/jetpack-redirect.git",
625
+ "reference": "89c3fa5e460b4dca22067375f07f01b5a90a7599"
626
+ },
627
+ "dist": {
628
+ "type": "zip",
629
+ "url": "https://api.github.com/repos/Automattic/jetpack-redirect/zipball/89c3fa5e460b4dca22067375f07f01b5a90a7599",
630
+ "reference": "89c3fa5e460b4dca22067375f07f01b5a90a7599",
631
+ "shasum": ""
632
+ },
633
+ "require": {
634
+ "automattic/jetpack-status": "^1.12"
635
+ },
636
+ "require-dev": {
637
+ "automattic/jetpack-changelogger": "^3.0",
638
+ "brain/monkey": "2.6.1",
639
+ "yoast/phpunit-polyfills": "1.0.3"
640
+ },
641
+ "time": "2022-03-02T16:27:56+00:00",
642
+ "type": "jetpack-library",
643
+ "extra": {
644
+ "autotagger": true,
645
+ "mirror-repo": "Automattic/jetpack-redirect",
646
+ "changelogger": {
647
+ "link-template": "https://github.com/Automattic/jetpack-redirect/compare/v${old}...v${new}"
648
+ },
649
+ "branch-alias": {
650
+ "dev-master": "1.7.x-dev"
651
+ }
652
+ },
653
+ "installation-source": "dist",
654
+ "autoload": {
655
+ "classmap": [
656
+ "src/"
657
+ ]
658
+ },
659
+ "notification-url": "https://packagist.org/downloads/",
660
+ "license": [
661
+ "GPL-2.0-or-later"
662
+ ],
663
+ "description": "Utilities to build URLs to the jetpack.com/redirect/ service",
664
+ "support": {
665
+ "source": "https://github.com/Automattic/jetpack-redirect/tree/v1.7.12"
666
+ }
667
+ },
668
+ {
669
+ "name": "automattic/jetpack-roles",
670
+ "version": "v1.4.14",
671
+ "version_normalized": "1.4.14.0",
672
+ "source": {
673
+ "type": "git",
674
+ "url": "https://github.com/Automattic/jetpack-roles.git",
675
+ "reference": "3cccac277e4f7fed80ce7929d4313c8aa40b65e4"
676
+ },
677
+ "dist": {
678
+ "type": "zip",
679
+ "url": "https://api.github.com/repos/Automattic/jetpack-roles/zipball/3cccac277e4f7fed80ce7929d4313c8aa40b65e4",
680
+ "reference": "3cccac277e4f7fed80ce7929d4313c8aa40b65e4",
681
+ "shasum": ""
682
+ },
683
+ "require-dev": {
684
+ "automattic/jetpack-changelogger": "^3.0",
685
+ "brain/monkey": "2.6.1",
686
+ "yoast/phpunit-polyfills": "1.0.3"
687
+ },
688
+ "time": "2022-01-25T17:38:37+00:00",
689
+ "type": "jetpack-library",
690
+ "extra": {
691
+ "autotagger": true,
692
+ "mirror-repo": "Automattic/jetpack-roles",
693
+ "changelogger": {
694
+ "link-template": "https://github.com/Automattic/jetpack-roles/compare/v${old}...v${new}"
695
+ },
696
+ "branch-alias": {
697
+ "dev-master": "1.4.x-dev"
698
+ }
699
+ },
700
+ "installation-source": "dist",
701
+ "autoload": {
702
+ "classmap": [
703
+ "src/"
704
+ ]
705
+ },
706
+ "notification-url": "https://packagist.org/downloads/",
707
+ "license": [
708
+ "GPL-2.0-or-later"
709
+ ],
710
+ "description": "Utilities, related with user roles and capabilities.",
711
+ "support": {
712
+ "source": "https://github.com/Automattic/jetpack-roles/tree/v1.4.14"
713
+ }
714
+ },
715
+ {
716
+ "name": "automattic/jetpack-status",
717
+ "version": "v1.12.0",
718
+ "version_normalized": "1.12.0.0",
719
+ "source": {
720
+ "type": "git",
721
+ "url": "https://github.com/Automattic/jetpack-status.git",
722
+ "reference": "e4c8988e7d1be5d650f892da7d7ba6b515315934"
723
+ },
724
+ "dist": {
725
+ "type": "zip",
726
+ "url": "https://api.github.com/repos/Automattic/jetpack-status/zipball/e4c8988e7d1be5d650f892da7d7ba6b515315934",
727
+ "reference": "e4c8988e7d1be5d650f892da7d7ba6b515315934",
728
+ "shasum": ""
729
+ },
730
+ "require": {
731
+ "automattic/jetpack-constants": "^1.6"
732
+ },
733
+ "require-dev": {
734
+ "automattic/jetpack-changelogger": "^3.0",
735
+ "brain/monkey": "2.6.1",
736
+ "yoast/phpunit-polyfills": "1.0.3"
737
+ },
738
+ "time": "2022-03-02T16:27:52+00:00",
739
+ "type": "jetpack-library",
740
+ "extra": {
741
+ "autotagger": true,
742
+ "mirror-repo": "Automattic/jetpack-status",
743
+ "changelogger": {
744
+ "link-template": "https://github.com/Automattic/jetpack-status/compare/v${old}...v${new}"
745
+ },
746
+ "branch-alias": {
747
+ "dev-master": "1.12.x-dev"
748
+ }
749
+ },
750
+ "installation-source": "dist",
751
+ "autoload": {
752
+ "classmap": [
753
+ "src/"
754
+ ]
755
+ },
756
+ "notification-url": "https://packagist.org/downloads/",
757
+ "license": [
758
+ "GPL-2.0-or-later"
759
+ ],
760
+ "description": "Used to retrieve information about the current status of Jetpack and the site overall.",
761
+ "support": {
762
+ "source": "https://github.com/Automattic/jetpack-status/tree/v1.12.0"
763
+ }
764
+ },
765
+ {
766
+ "name": "automattic/jetpack-sync",
767
+ "version": "v1.30.5",
768
+ "version_normalized": "1.30.5.0",
769
+ "source": {
770
+ "type": "git",
771
+ "url": "https://github.com/Automattic/jetpack-sync.git",
772
+ "reference": "00088952b69d95df16f94e8b4baaaa9a48bff952"
773
+ },
774
+ "dist": {
775
+ "type": "zip",
776
+ "url": "https://api.github.com/repos/Automattic/jetpack-sync/zipball/00088952b69d95df16f94e8b4baaaa9a48bff952",
777
+ "reference": "00088952b69d95df16f94e8b4baaaa9a48bff952",
778
+ "shasum": ""
779
+ },
780
+ "require": {
781
+ "automattic/jetpack-connection": "^1.37",
782
+ "automattic/jetpack-constants": "^1.6",
783
+ "automattic/jetpack-heartbeat": "^1.4",
784
+ "automattic/jetpack-identity-crisis": "^0.8",
785
+ "automattic/jetpack-options": "^1.14",
786
+ "automattic/jetpack-password-checker": "^0.2",
787
+ "automattic/jetpack-roles": "^1.4",
788
+ "automattic/jetpack-status": "^1.12"
789
+ },
790
+ "require-dev": {
791
+ "automattic/jetpack-changelogger": "^3.0",
792
+ "automattic/wordbless": "@dev",
793
+ "yoast/phpunit-polyfills": "1.0.3"
794
+ },
795
+ "time": "2022-03-29T18:21:27+00:00",
796
+ "type": "jetpack-library",
797
+ "extra": {
798
+ "autotagger": true,
799
+ "mirror-repo": "Automattic/jetpack-sync",
800
+ "textdomain": "jetpack-sync",
801
+ "version-constants": {
802
+ "::PACKAGE_VERSION": "src/class-package-version.php"
803
+ },
804
+ "changelogger": {
805
+ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}"
806
+ },
807
+ "branch-alias": {
808
+ "dev-master": "1.30.x-dev"
809
+ }
810
+ },
811
+ "installation-source": "dist",
812
+ "autoload": {
813
+ "classmap": [
814
+ "src/"
815
+ ]
816
+ },
817
+ "notification-url": "https://packagist.org/downloads/",
818
+ "license": [
819
+ "GPL-2.0-or-later"
820
+ ],
821
+ "description": "Everything needed to allow syncing to the WP.com infrastructure.",
822
+ "support": {
823
+ "source": "https://github.com/Automattic/jetpack-sync/tree/v1.30.5"
824
+ }
825
+ },
826
+ {
827
+ "name": "automattic/jetpack-tracking",
828
+ "version": "v1.14.5",
829
+ "version_normalized": "1.14.5.0",
830
+ "source": {
831
+ "type": "git",
832
+ "url": "https://github.com/Automattic/jetpack-tracking.git",
833
+ "reference": "aadc1a8c48145bfddea163eb55293b9211154872"
834
+ },
835
+ "dist": {
836
+ "type": "zip",
837
+ "url": "https://api.github.com/repos/Automattic/jetpack-tracking/zipball/aadc1a8c48145bfddea163eb55293b9211154872",
838
+ "reference": "aadc1a8c48145bfddea163eb55293b9211154872",
839
+ "shasum": ""
840
+ },
841
+ "require": {
842
+ "automattic/jetpack-assets": "^1.17",
843
+ "automattic/jetpack-options": "^1.14",
844
+ "automattic/jetpack-status": "^1.12"
845
+ },
846
+ "require-dev": {
847
+ "automattic/jetpack-changelogger": "^3.0",
848
+ "brain/monkey": "2.6.1",
849
+ "yoast/phpunit-polyfills": "1.0.3"
850
+ },
851
+ "time": "2022-03-29T18:21:15+00:00",
852
+ "type": "jetpack-library",
853
+ "extra": {
854
+ "autotagger": true,
855
+ "mirror-repo": "Automattic/jetpack-tracking",
856
+ "textdomain": "jetpack-tracking",
857
+ "changelogger": {
858
+ "link-template": "https://github.com/Automattic/jetpack-tracking/compare/v${old}...v${new}"
859
+ },
860
+ "branch-alias": {
861
+ "dev-master": "1.14.x-dev"
862
+ }
863
+ },
864
+ "installation-source": "dist",
865
+ "autoload": {
866
+ "classmap": [
867
+ "legacy",
868
+ "src/"
869
+ ]
870
+ },
871
+ "notification-url": "https://packagist.org/downloads/",
872
+ "license": [
873
+ "GPL-2.0-or-later"
874
+ ],
875
+ "description": "Tracking for Jetpack",
876
+ "support": {
877
+ "source": "https://github.com/Automattic/jetpack-tracking/tree/v1.14.5"
878
+ }
879
+ },
880
+ {
881
+ "name": "composer/installers",
882
+ "version": "v1.10.0",
883
+ "version_normalized": "1.10.0.0",
884
+ "source": {
885
+ "type": "git",
886
+ "url": "https://github.com/composer/installers.git",
887
+ "reference": "1a0357fccad9d1cc1ea0c9a05b8847fbccccb78d"
888
+ },
889
+ "dist": {
890
+ "type": "zip",
891
+ "url": "https://api.github.com/repos/composer/installers/zipball/1a0357fccad9d1cc1ea0c9a05b8847fbccccb78d",
892
+ "reference": "1a0357fccad9d1cc1ea0c9a05b8847fbccccb78d",
893
+ "shasum": ""
894
+ },
895
+ "require": {
896
+ "composer-plugin-api": "^1.0 || ^2.0"
897
+ },
898
+ "replace": {
899
+ "roundcube/plugin-installer": "*",
900
+ "shama/baton": "*"
901
+ },
902
+ "require-dev": {
903
+ "composer/composer": "1.6.* || ^2.0",
904
+ "composer/semver": "^1 || ^3",
905
+ "phpstan/phpstan": "^0.12.55",
906
+ "phpstan/phpstan-phpunit": "^0.12.16",
907
+ "symfony/phpunit-bridge": "^4.2 || ^5",
908
+ "symfony/process": "^2.3"
909
+ },
910
+ "time": "2021-01-14T11:07:16+00:00",
911
+ "type": "composer-plugin",
912
+ "extra": {
913
+ "class": "Composer\\Installers\\Plugin",
914
+ "branch-alias": {
915
+ "dev-main": "1.x-dev"
916
+ }
917
+ },
918
+ "installation-source": "dist",
919
+ "autoload": {
920
+ "psr-4": {
921
+ "Composer\\Installers\\": "src/Composer/Installers"
922
+ }
923
+ },
924
+ "notification-url": "https://packagist.org/downloads/",
925
+ "license": [
926
+ "MIT"
927
+ ],
928
+ "authors": [
929
+ {
930
+ "name": "Kyle Robinson Young",
931
+ "email": "kyle@dontkry.com",
932
+ "homepage": "https://github.com/shama"
933
+ }
934
+ ],
935
+ "description": "A multi-framework Composer library installer",
936
+ "homepage": "https://composer.github.io/installers/",
937
+ "keywords": [
938
+ "Craft",
939
+ "Dolibarr",
940
+ "Eliasis",
941
+ "Hurad",
942
+ "ImageCMS",
943
+ "Kanboard",
944
+ "Lan Management System",
945
+ "MODX Evo",
946
+ "MantisBT",
947
+ "Mautic",
948
+ "Maya",
949
+ "OXID",
950
+ "Plentymarkets",
951
+ "Porto",
952
+ "RadPHP",
953
+ "SMF",
954
+ "Starbug",
955
+ "Thelia",
956
+ "Whmcs",
957
+ "WolfCMS",
958
+ "agl",
959
+ "aimeos",
960
+ "annotatecms",
961
+ "attogram",
962
+ "bitrix",
963
+ "cakephp",
964
+ "chef",
965
+ "cockpit",
966
+ "codeigniter",
967
+ "concrete5",
968
+ "croogo",
969
+ "dokuwiki",
970
+ "drupal",
971
+ "eZ Platform",
972
+ "elgg",
973
+ "expressionengine",
974
+ "fuelphp",
975
+ "grav",
976
+ "installer",
977
+ "itop",
978
+ "joomla",
979
+ "known",
980
+ "kohana",
981
+ "laravel",
982
+ "lavalite",
983
+ "lithium",
984
+ "magento",
985
+ "majima",
986
+ "mako",
987
+ "mediawiki",
988
+ "modulework",
989
+ "modx",
990
+ "moodle",
991
+ "osclass",
992
+ "phpbb",
993
+ "piwik",
994
+ "ppi",
995
+ "processwire",
996
+ "puppet",
997
+ "pxcms",
998
+ "reindex",
999
+ "roundcube",
1000
+ "shopware",
1001
+ "silverstripe",
1002
+ "sydes",
1003
+ "sylius",
1004
+ "symfony",
1005
+ "typo3",
1006
+ "wordpress",
1007
+ "yawik",
1008
+ "zend",
1009
+ "zikula"
1010
+ ],
1011
+ "support": {
1012
+ "issues": "https://github.com/composer/installers/issues",
1013
+ "source": "https://github.com/composer/installers/tree/v1.10.0"
1014
+ },
1015
+ "funding": [
1016
+ {
1017
+ "url": "https://packagist.com",
1018
+ "type": "custom"
1019
+ },
1020
+ {
1021
+ "url": "https://github.com/composer",
1022
+ "type": "github"
1023
+ },
1024
+ {
1025
+ "url": "https://tidelift.com/funding/github/packagist/composer/composer",
1026
+ "type": "tidelift"
1027
+ }
1028
+ ]
1029
+ },
1030
+ {
1031
+ "name": "myclabs/php-enum",
1032
+ "version": "1.7.7",
1033
+ "version_normalized": "1.7.7.0",
1034
+ "source": {
1035
+ "type": "git",
1036
+ "url": "https://github.com/myclabs/php-enum.git",
1037
+ "reference": "d178027d1e679832db9f38248fcc7200647dc2b7"
1038
+ },
1039
+ "dist": {
1040
+ "type": "zip",
1041
+ "url": "https://api.github.com/repos/myclabs/php-enum/zipball/d178027d1e679832db9f38248fcc7200647dc2b7",
1042
+ "reference": "d178027d1e679832db9f38248fcc7200647dc2b7",
1043
+ "shasum": ""
1044
+ },
1045
+ "require": {
1046
+ "ext-json": "*",
1047
+ "php": ">=7.1"
1048
+ },
1049
+ "require-dev": {
1050
+ "phpunit/phpunit": "^7",
1051
+ "squizlabs/php_codesniffer": "1.*",
1052
+ "vimeo/psalm": "^3.8"
1053
+ },
1054
+ "time": "2020-11-14T18:14:52+00:00",
1055
+ "type": "library",
1056
+ "installation-source": "dist",
1057
+ "autoload": {
1058
+ "psr-4": {
1059
+ "MyCLabs\\Enum\\": "src/"
1060
+ }
1061
+ },
1062
+ "notification-url": "https://packagist.org/downloads/",
1063
+ "license": [
1064
+ "MIT"
1065
+ ],
1066
+ "authors": [
1067
+ {
1068
+ "name": "PHP Enum contributors",
1069
+ "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
1070
+ }
1071
+ ],
1072
+ "description": "PHP Enum implementation",
1073
+ "homepage": "http://github.com/myclabs/php-enum",
1074
+ "keywords": [
1075
+ "enum"
1076
+ ],
1077
+ "support": {
1078
+ "issues": "https://github.com/myclabs/php-enum/issues",
1079
+ "source": "https://github.com/myclabs/php-enum/tree/1.7.7"
1080
+ },
1081
+ "funding": [
1082
+ {
1083
+ "url": "https://github.com/mnapoli",
1084
+ "type": "github"
1085
+ },
1086
+ {
1087
+ "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
1088
+ "type": "tidelift"
1089
+ }
1090
+ ]
1091
+ },
1092
+ {
1093
+ "name": "woocommerce/subscriptions-core",
1094
+ "version": "2.0.0",
1095
+ "version_normalized": "2.0.0.0",
1096
+ "source": {
1097
+ "type": "git",
1098
+ "url": "https://github.com/Automattic/woocommerce-subscriptions-core.git",
1099
+ "reference": "69ab97d25d8a3fb4c1ac38fb180b39f323af6ac9"
1100
+ },
1101
+ "dist": {
1102
+ "type": "zip",
1103
+ "url": "https://api.github.com/repos/Automattic/woocommerce-subscriptions-core/zipball/69ab97d25d8a3fb4c1ac38fb180b39f323af6ac9",
1104
+ "reference": "69ab97d25d8a3fb4c1ac38fb180b39f323af6ac9",
1105
+ "shasum": ""
1106
+ },
1107
+ "archive": {
1108
+ "exclude": [
1109
+ "!/build"
1110
+ ]
1111
+ },
1112
+ "require": {
1113
+ "composer/installers": "~1.2",
1114
+ "php": "^7.1"
1115
+ },
1116
+ "require-dev": {
1117
+ "dave-liddament/sarb": "^1.1",
1118
+ "phpunit/phpunit": "9.5.14",
1119
+ "woocommerce/woocommerce-sniffs": "0.1.0",
1120
+ "yoast/phpunit-polyfills": "1.0.3"
1121
+ },
1122
+ "time": "2022-05-23T01:00:04+00:00",
1123
+ "type": "wordpress-plugin",
1124
+ "extra": {
1125
+ "phpcodesniffer-search-depth": 2
1126
+ },
1127
+ "installation-source": "dist",
1128
+ "scripts": {
1129
+ "phpcs": [
1130
+ "bin/phpcs.sh"
1131
  ],
1132
+ "lint": [
1133
+ "find . \\( -path ./vendor \\) -prune -o \\( -name '*.php' \\) -exec php -lf {} \\;| (! grep -v \"No syntax errors detected\" )"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1134
  ],
1135
+ "test": [
1136
+ "phpunit"
1137
+ ]
1138
+ },
1139
+ "license": [
1140
+ "GPL-3.0-or-later"
1141
+ ],
1142
+ "description": "Sell products and services with recurring payments in your WooCommerce Store.",
1143
+ "homepage": "https://github.com/Automattic/woocommerce-subscriptions-core",
1144
+ "support": {
1145
+ "source": "https://github.com/Automattic/woocommerce-subscriptions-core/tree/2.0.0",
1146
+ "issues": "https://github.com/Automattic/woocommerce-subscriptions-core/issues"
1147
  }
1148
+ }
1149
+ ]
 
 
vendor/composer/installed.php DELETED
@@ -1,215 +0,0 @@
1
- <?php return array(
2
- 'root' => array(
3
- 'pretty_version' => 'dev-trunk',
4
- 'version' => 'dev-trunk',
5
- 'type' => 'wordpress-plugin',
6
- 'install_path' => __DIR__ . '/../../',
7
- 'aliases' => array(),
8
- 'reference' => 'e8fd9a9b2c56ae076d58d88b3a44fcb86e88276b',
9
- 'name' => 'woocommerce/payments',
10
- 'dev' => false,
11
- ),
12
- 'versions' => array(
13
- 'automattic/jetpack-a8c-mc-stats' => array(
14
- 'pretty_version' => 'v1.4.12',
15
- 'version' => '1.4.12.0',
16
- 'type' => 'jetpack-library',
17
- 'install_path' => __DIR__ . '/../automattic/jetpack-a8c-mc-stats',
18
- 'aliases' => array(),
19
- 'reference' => '38b3d11fec181d90abe6d80f5184fff6d2ef694c',
20
- 'dev_requirement' => false,
21
- ),
22
- 'automattic/jetpack-admin-ui' => array(
23
- 'pretty_version' => 'v0.2.5',
24
- 'version' => '0.2.5.0',
25
- 'type' => 'jetpack-library',
26
- 'install_path' => __DIR__ . '/../automattic/jetpack-admin-ui',
27
- 'aliases' => array(),
28
- 'reference' => 'e72dddc3abb8fd914ae0efced8e2f162baf9dda1',
29
- 'dev_requirement' => false,
30
- ),
31
- 'automattic/jetpack-assets' => array(
32
- 'pretty_version' => 'v1.17.8',
33
- 'version' => '1.17.8.0',
34
- 'type' => 'jetpack-library',
35
- 'install_path' => __DIR__ . '/../automattic/jetpack-assets',
36
- 'aliases' => array(),
37
- 'reference' => 'f442d509917b7c23bc272e2634c24ec3d07855e1',
38
- 'dev_requirement' => false,
39
- ),
40
- 'automattic/jetpack-autoloader' => array(
41
- 'pretty_version' => 'v2.10.11',
42
- 'version' => '2.10.11.0',
43
- 'type' => 'composer-plugin',
44
- 'install_path' => __DIR__ . '/../automattic/jetpack-autoloader',
45
- 'aliases' => array(),
46
- 'reference' => '924226c0a9e2f9b0be022fc6bab2a90f5e610ef3',
47
- 'dev_requirement' => false,
48
- ),
49
- 'automattic/jetpack-config' => array(
50
- 'pretty_version' => 'v1.6.1',
51
- 'version' => '1.6.1.0',
52
- 'type' => 'jetpack-library',
53
- 'install_path' => __DIR__ . '/../automattic/jetpack-config',
54
- 'aliases' => array(),
55
- 'reference' => '34ed249c0be9f8c871c5a28411913983fb1ce7d7',
56
- 'dev_requirement' => false,
57
- ),
58
- 'automattic/jetpack-connection' => array(
59
- 'pretty_version' => 'v1.37.3',
60
- 'version' => '1.37.3.0',
61
- 'type' => 'jetpack-library',
62
- 'install_path' => __DIR__ . '/../automattic/jetpack-connection',
63
- 'aliases' => array(),
64
- 'reference' => '2402aa3d7915ac48fe6dab5b2ad7aefcdcaa3a73',
65
- 'dev_requirement' => false,
66
- ),
67
- 'automattic/jetpack-constants' => array(
68
- 'pretty_version' => 'v1.6.15',
69
- 'version' => '1.6.15.0',
70
- 'type' => 'jetpack-library',
71
- 'install_path' => __DIR__ . '/../automattic/jetpack-constants',
72
- 'aliases' => array(),
73
- 'reference' => 'f203b7c8ce89760ff8a70abcfbd1308765038fc9',
74
- 'dev_requirement' => false,
75
- ),
76
- 'automattic/jetpack-heartbeat' => array(
77
- 'pretty_version' => 'v1.4.0',
78
- 'version' => '1.4.0.0',
79
- 'type' => 'jetpack-library',
80
- 'install_path' => __DIR__ . '/../automattic/jetpack-heartbeat',
81
- 'aliases' => array(),
82
- 'reference' => 'c35053475b1cb7363aee847e0d025f0a043dc3d5',
83
- 'dev_requirement' => false,
84
- ),
85
- 'automattic/jetpack-identity-crisis' => array(
86
- 'pretty_version' => 'v0.8.4',
87
- 'version' => '0.8.4.0',
88
- 'type' => 'jetpack-library',
89
- 'install_path' => __DIR__ . '/../automattic/jetpack-identity-crisis',
90
- 'aliases' => array(),
91
- 'reference' => '11b62e3f1f2d56c7283185f8670655d99ba2e7b5',
92
- 'dev_requirement' => false,
93
- ),
94
- 'automattic/jetpack-logo' => array(
95
- 'pretty_version' => 'v1.5.14',
96
- 'version' => '1.5.14.0',
97
- 'type' => 'jetpack-library',
98
- 'install_path' => __DIR__ . '/../automattic/jetpack-logo',
99
- 'aliases' => array(),
100
- 'reference' => '9fbc006fd49e61c70ddbfc92dfea06338822656a',
101
- 'dev_requirement' => false,
102
- ),
103
- 'automattic/jetpack-options' => array(
104
- 'pretty_version' => 'v1.14.3',
105
- 'version' => '1.14.3.0',
106
- 'type' => 'jetpack-library',
107
- 'install_path' => __DIR__ . '/../automattic/jetpack-options',
108
- 'aliases' => array(),
109
- 'reference' => 'f183ca8cd887296da8d4fe926c432c279cab99a3',
110
- 'dev_requirement' => false,
111
- ),
112
- 'automattic/jetpack-password-checker' => array(
113
- 'pretty_version' => 'v0.2.3',
114
- 'version' => '0.2.3.0',
115
- 'type' => 'jetpack-library',
116
- 'install_path' => __DIR__ . '/../automattic/jetpack-password-checker',
117
- 'aliases' => array(),
118
- 'reference' => 'b8173e8e278b8baba312612d224c95efd2fe0cd3',
119
- 'dev_requirement' => false,
120
- ),
121
- 'automattic/jetpack-redirect' => array(
122
- 'pretty_version' => 'v1.7.12',
123
- 'version' => '1.7.12.0',
124
- 'type' => 'jetpack-library',
125
- 'install_path' => __DIR__ . '/../automattic/jetpack-redirect',
126
- 'aliases' => array(),
127
- 'reference' => '89c3fa5e460b4dca22067375f07f01b5a90a7599',
128
- 'dev_requirement' => false,
129
- ),
130
- 'automattic/jetpack-roles' => array(
131
- 'pretty_version' => 'v1.4.14',
132
- 'version' => '1.4.14.0',
133
- 'type' => 'jetpack-library',
134
- 'install_path' => __DIR__ . '/../automattic/jetpack-roles',
135
- 'aliases' => array(),
136
- 'reference' => '3cccac277e4f7fed80ce7929d4313c8aa40b65e4',
137
- 'dev_requirement' => false,
138
- ),
139
- 'automattic/jetpack-status' => array(
140
- 'pretty_version' => 'v1.12.0',
141
- 'version' => '1.12.0.0',
142
- 'type' => 'jetpack-library',
143
- 'install_path' => __DIR__ . '/../automattic/jetpack-status',
144
- 'aliases' => array(),
145
- 'reference' => 'e4c8988e7d1be5d650f892da7d7ba6b515315934',
146
- 'dev_requirement' => false,
147
- ),
148
- 'automattic/jetpack-sync' => array(
149
- 'pretty_version' => 'v1.30.5',
150
- 'version' => '1.30.5.0',
151
- 'type' => 'jetpack-library',
152
- 'install_path' => __DIR__ . '/../automattic/jetpack-sync',
153
- 'aliases' => array(),
154
- 'reference' => '00088952b69d95df16f94e8b4baaaa9a48bff952',
155
- 'dev_requirement' => false,
156
- ),
157
- 'automattic/jetpack-tracking' => array(
158
- 'pretty_version' => 'v1.14.5',
159
- 'version' => '1.14.5.0',
160
- 'type' => 'jetpack-library',
161
- 'install_path' => __DIR__ . '/../automattic/jetpack-tracking',
162
- 'aliases' => array(),
163
- 'reference' => 'aadc1a8c48145bfddea163eb55293b9211154872',
164
- 'dev_requirement' => false,
165
- ),
166
- 'composer/installers' => array(
167
- 'pretty_version' => 'v1.10.0',
168
- 'version' => '1.10.0.0',
169
- 'type' => 'composer-plugin',
170
- 'install_path' => __DIR__ . '/./installers',
171
- 'aliases' => array(),
172
- 'reference' => '1a0357fccad9d1cc1ea0c9a05b8847fbccccb78d',
173
- 'dev_requirement' => false,
174
- ),
175
- 'myclabs/php-enum' => array(
176
- 'pretty_version' => '1.7.7',
177
- 'version' => '1.7.7.0',
178
- 'type' => 'library',
179
- 'install_path' => __DIR__ . '/../myclabs/php-enum',
180
- 'aliases' => array(),
181
- 'reference' => 'd178027d1e679832db9f38248fcc7200647dc2b7',
182
- 'dev_requirement' => false,
183
- ),
184
- 'roundcube/plugin-installer' => array(
185
- 'dev_requirement' => false,
186
- 'replaced' => array(
187
- 0 => '*',
188
- ),
189
- ),
190
- 'shama/baton' => array(
191
- 'dev_requirement' => false,
192
- 'replaced' => array(
193
- 0 => '*',
194
- ),
195
- ),
196
- 'woocommerce/payments' => array(
197
- 'pretty_version' => 'dev-trunk',
198
- 'version' => 'dev-trunk',
199
- 'type' => 'wordpress-plugin',
200
- 'install_path' => __DIR__ . '/../../',
201
- 'aliases' => array(),
202
- 'reference' => 'e8fd9a9b2c56ae076d58d88b3a44fcb86e88276b',
203
- 'dev_requirement' => false,
204
- ),
205
- 'woocommerce/subscriptions-core' => array(
206
- 'pretty_version' => '2.0.0',
207
- 'version' => '2.0.0.0',
208
- 'type' => 'wordpress-plugin',
209
- 'install_path' => __DIR__ . '/../woocommerce/subscriptions-core',
210
- 'aliases' => array(),
211
- 'reference' => '69ab97d25d8a3fb4c1ac38fb180b39f323af6ac9',
212
- 'dev_requirement' => false,
213
- ),
214
- ),
215
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendor/composer/jetpack_autoload_classmap.php CHANGED
@@ -7,123 +7,123 @@ $baseDir = dirname($vendorDir);
7
 
8
  return array(
9
  'WCPay\\MultiCurrency\\Compatibility\\WooCommerceProductAddOns' => array(
10
- 'version' => 'dev-trunk',
11
  'path' => $baseDir . '/includes/multi-currency/Compatibility/WooCommerceProductAddOns.php'
12
  ),
13
  'WCPay\\MultiCurrency\\Compatibility\\WooCommerceNameYourPrice' => array(
14
- 'version' => 'dev-trunk',
15
  'path' => $baseDir . '/includes/multi-currency/Compatibility/WooCommerceNameYourPrice.php'
16
  ),
17
  'WCPay\\MultiCurrency\\Compatibility\\WooCommerceFedEx' => array(
18
- 'version' => 'dev-trunk',
19
  'path' => $baseDir . '/includes/multi-currency/Compatibility/WooCommerceFedEx.php'
20
  ),
21
  'WCPay\\MultiCurrency\\Compatibility\\WooCommerceBookings' => array(
22
- 'version' => 'dev-trunk',
23
  'path' => $baseDir . '/includes/multi-currency/Compatibility/WooCommerceBookings.php'
24
  ),
25
  'WCPay\\MultiCurrency\\Compatibility\\WooCommerceSubscriptions' => array(
26
- 'version' => 'dev-trunk',
27
  'path' => $baseDir . '/includes/multi-currency/Compatibility/WooCommerceSubscriptions.php'
28
  ),
29
  'WCPay\\MultiCurrency\\Compatibility\\WooCommerceUPS' => array(
30
- 'version' => 'dev-trunk',
31
  'path' => $baseDir . '/includes/multi-currency/Compatibility/WooCommerceUPS.php'
32
  ),
33
  'WCPay\\MultiCurrency\\Compatibility\\WooCommerceDeposits' => array(
34
- 'version' => 'dev-trunk',
35
  'path' => $baseDir . '/includes/multi-currency/Compatibility/WooCommerceDeposits.php'
36
  ),
37
  'WCPay\\MultiCurrency\\Compatibility\\WooCommercePreOrders' => array(
38
- 'version' => 'dev-trunk',
39
  'path' => $baseDir . '/includes/multi-currency/Compatibility/WooCommercePreOrders.php'
40
  ),
41
  'WCPay\\MultiCurrency\\Compatibility\\BaseCompatibility' => array(
42
- 'version' => 'dev-trunk',
43
  'path' => $baseDir . '/includes/multi-currency/Compatibility/BaseCompatibility.php'
44
  ),
45
  'WCPay\\MultiCurrency\\RestController' => array(
46
- 'version' => 'dev-trunk',
47
  'path' => $baseDir . '/includes/multi-currency/RestController.php'
48
  ),
49
  'WCPay\\MultiCurrency\\SettingsOnboardCta' => array(
50
- 'version' => 'dev-trunk',
51
  'path' => $baseDir . '/includes/multi-currency/SettingsOnboardCta.php'
52
  ),
53
  'WCPay\\MultiCurrency\\Settings' => array(
54
- 'version' => 'dev-trunk',
55
  'path' => $baseDir . '/includes/multi-currency/Settings.php'
56
  ),
57
  'WCPay\\MultiCurrency\\FrontendPrices' => array(
58
- 'version' => 'dev-trunk',
59
  'path' => $baseDir . '/includes/multi-currency/FrontendPrices.php'
60
  ),
61
  'WCPay\\MultiCurrency\\Tracking' => array(
62
- 'version' => 'dev-trunk',
63
  'path' => $baseDir . '/includes/multi-currency/Tracking.php'
64
  ),
65
  'WCPay\\MultiCurrency\\PaymentMethodsCompatibility' => array(
66
- 'version' => 'dev-trunk',
67
  'path' => $baseDir . '/includes/multi-currency/PaymentMethodsCompatibility.php'
68
  ),
69
  'WCPay\\MultiCurrency\\Geolocation' => array(
70
- 'version' => 'dev-trunk',
71
  'path' => $baseDir . '/includes/multi-currency/Geolocation.php'
72
  ),
73
  'WCPay\\MultiCurrency\\BackendCurrencies' => array(
74
- 'version' => 'dev-trunk',
75
  'path' => $baseDir . '/includes/multi-currency/BackendCurrencies.php'
76
  ),
77
  'WCPay\\MultiCurrency\\Notes\\NoteMultiCurrencyAvailable' => array(
78
- 'version' => 'dev-trunk',
79
  'path' => $baseDir . '/includes/multi-currency/Notes/NoteMultiCurrencyAvailable.php'
80
  ),
81
  'WCPay\\MultiCurrency\\UserSettings' => array(
82
- 'version' => 'dev-trunk',
83
  'path' => $baseDir . '/includes/multi-currency/UserSettings.php'
84
  ),
85
  'WCPay\\MultiCurrency\\Currency' => array(
86
- 'version' => 'dev-trunk',
87
  'path' => $baseDir . '/includes/multi-currency/Currency.php'
88
  ),
89
  'WCPay\\MultiCurrency\\Analytics' => array(
90
- 'version' => 'dev-trunk',
91
  'path' => $baseDir . '/includes/multi-currency/Analytics.php'
92
  ),
93
  'WCPay\\MultiCurrency\\Utils' => array(
94
- 'version' => 'dev-trunk',
95
  'path' => $baseDir . '/includes/multi-currency/Utils.php'
96
  ),
97
  'WCPay\\MultiCurrency\\CurrencySwitcherBlock' => array(
98
- 'version' => 'dev-trunk',
99
  'path' => $baseDir . '/includes/multi-currency/CurrencySwitcherBlock.php'
100
  ),
101
  'WCPay\\MultiCurrency\\MultiCurrency' => array(
102
- 'version' => 'dev-trunk',
103
  'path' => $baseDir . '/includes/multi-currency/MultiCurrency.php'
104
  ),
105
  'WCPay\\MultiCurrency\\CurrencySwitcherWidget' => array(
106
- 'version' => 'dev-trunk',
107
  'path' => $baseDir . '/includes/multi-currency/CurrencySwitcherWidget.php'
108
  ),
109
  'WCPay\\MultiCurrency\\AdminNotices' => array(
110
- 'version' => 'dev-trunk',
111
  'path' => $baseDir . '/includes/multi-currency/AdminNotices.php'
112
  ),
113
  'WCPay\\MultiCurrency\\CountryFlags' => array(
114
- 'version' => 'dev-trunk',
115
  'path' => $baseDir . '/includes/multi-currency/CountryFlags.php'
116
  ),
117
  'WCPay\\MultiCurrency\\FrontendCurrencies' => array(
118
- 'version' => 'dev-trunk',
119
  'path' => $baseDir . '/includes/multi-currency/FrontendCurrencies.php'
120
  ),
121
  'WCPay\\MultiCurrency\\Compatibility' => array(
122
- 'version' => 'dev-trunk',
123
  'path' => $baseDir . '/includes/multi-currency/Compatibility.php'
124
  ),
125
  'WCPay\\MultiCurrency\\StorefrontIntegration' => array(
126
- 'version' => 'dev-trunk',
127
  'path' => $baseDir . '/includes/multi-currency/StorefrontIntegration.php'
128
  ),
129
  'MyCLabs\\Enum\\Enum' => array(
@@ -762,10 +762,6 @@ return array(
762
  'version' => '1.6.1.0',
763
  'path' => $vendorDir . '/automattic/jetpack-config/src/class-config.php'
764
  ),
765
- 'Automattic\\Jetpack\\Password_Checker' => array(
766
- 'version' => '0.2.3.0',
767
- 'path' => $vendorDir . '/automattic/jetpack-password-checker/src/class-password-checker.php'
768
- ),
769
  'Automattic\\Jetpack\\IdentityCrisis\\UI' => array(
770
  'version' => '0.8.4.0',
771
  'path' => $vendorDir . '/automattic/jetpack-identity-crisis/src/class-ui.php'
@@ -778,6 +774,10 @@ return array(
778
  'version' => '0.8.4.0',
779
  'path' => $vendorDir . '/automattic/jetpack-identity-crisis/src/class-identity-crisis.php'
780
  ),
 
 
 
 
781
  'Automattic\\Jetpack\\Assets\\Logo' => array(
782
  'version' => '1.5.14.0',
783
  'path' => $vendorDir . '/automattic/jetpack-logo/src/class-logo.php'
@@ -894,14 +894,14 @@ return array(
894
  'version' => '0.2.5.0',
895
  'path' => $vendorDir . '/automattic/jetpack-admin-ui/src/class-admin-menu.php'
896
  ),
897
- 'Automattic\\Jetpack\\Roles' => array(
898
- 'version' => '1.4.14.0',
899
- 'path' => $vendorDir . '/automattic/jetpack-roles/src/class-roles.php'
900
- ),
901
  'Automattic\\Jetpack\\Heartbeat' => array(
902
  'version' => '1.4.0.0',
903
  'path' => $vendorDir . '/automattic/jetpack-heartbeat/src/class-heartbeat.php'
904
  ),
 
 
 
 
905
  'Jetpack_Tracks_Client' => array(
906
  'version' => '1.14.5.0',
907
  'path' => $vendorDir . '/automattic/jetpack-tracking/legacy/class-jetpack-tracks-client.php'
7
 
8
  return array(
9
  'WCPay\\MultiCurrency\\Compatibility\\WooCommerceProductAddOns' => array(
10
+ 'version' => '9999999-dev',
11
  'path' => $baseDir . '/includes/multi-currency/Compatibility/WooCommerceProductAddOns.php'
12
  ),
13
  'WCPay\\MultiCurrency\\Compatibility\\WooCommerceNameYourPrice' => array(
14
+ 'version' => '9999999-dev',
15
  'path' => $baseDir . '/includes/multi-currency/Compatibility/WooCommerceNameYourPrice.php'
16
  ),
17
  'WCPay\\MultiCurrency\\Compatibility\\WooCommerceFedEx' => array(
18
+ 'version' => '9999999-dev',
19
  'path' => $baseDir . '/includes/multi-currency/Compatibility/WooCommerceFedEx.php'
20
  ),
21
  'WCPay\\MultiCurrency\\Compatibility\\WooCommerceBookings' => array(
22
+ 'version' => '9999999-dev',
23
  'path' => $baseDir . '/includes/multi-currency/Compatibility/WooCommerceBookings.php'
24
  ),
25
  'WCPay\\MultiCurrency\\Compatibility\\WooCommerceSubscriptions' => array(
26
+ 'version' => '9999999-dev',
27
  'path' => $baseDir . '/includes/multi-currency/Compatibility/WooCommerceSubscriptions.php'
28
  ),
29
  'WCPay\\MultiCurrency\\Compatibility\\WooCommerceUPS' => array(
30
+ 'version' => '9999999-dev',
31
  'path' => $baseDir . '/includes/multi-currency/Compatibility/WooCommerceUPS.php'
32
  ),
33
  'WCPay\\MultiCurrency\\Compatibility\\WooCommerceDeposits' => array(
34
+ 'version' => '9999999-dev',
35
  'path' => $baseDir . '/includes/multi-currency/Compatibility/WooCommerceDeposits.php'
36
  ),
37
  'WCPay\\MultiCurrency\\Compatibility\\WooCommercePreOrders' => array(
38
+ 'version' => '9999999-dev',
39
  'path' => $baseDir . '/includes/multi-currency/Compatibility/WooCommercePreOrders.php'
40
  ),
41
  'WCPay\\MultiCurrency\\Compatibility\\BaseCompatibility' => array(
42
+ 'version' => '9999999-dev',
43
  'path' => $baseDir . '/includes/multi-currency/Compatibility/BaseCompatibility.php'
44
  ),
45
  'WCPay\\MultiCurrency\\RestController' => array(
46
+ 'version' => '9999999-dev',
47
  'path' => $baseDir . '/includes/multi-currency/RestController.php'
48
  ),
49
  'WCPay\\MultiCurrency\\SettingsOnboardCta' => array(
50
+ 'version' => '9999999-dev',
51
  'path' => $baseDir . '/includes/multi-currency/SettingsOnboardCta.php'
52
  ),
53
  'WCPay\\MultiCurrency\\Settings' => array(
54
+ 'version' => '9999999-dev',
55
  'path' => $baseDir . '/includes/multi-currency/Settings.php'
56
  ),
57
  'WCPay\\MultiCurrency\\FrontendPrices' => array(
58
+ 'version' => '9999999-dev',
59
  'path' => $baseDir . '/includes/multi-currency/FrontendPrices.php'
60
  ),
61
  'WCPay\\MultiCurrency\\Tracking' => array(
62
+ 'version' => '9999999-dev',
63
  'path' => $baseDir . '/includes/multi-currency/Tracking.php'
64
  ),
65
  'WCPay\\MultiCurrency\\PaymentMethodsCompatibility' => array(
66
+ 'version' => '9999999-dev',
67
  'path' => $baseDir . '/includes/multi-currency/PaymentMethodsCompatibility.php'
68
  ),
69
  'WCPay\\MultiCurrency\\Geolocation' => array(
70
+ 'version' => '9999999-dev',
71
  'path' => $baseDir . '/includes/multi-currency/Geolocation.php'
72
  ),
73
  'WCPay\\MultiCurrency\\BackendCurrencies' => array(
74
+ 'version' => '9999999-dev',
75
  'path' => $baseDir . '/includes/multi-currency/BackendCurrencies.php'
76
  ),
77
  'WCPay\\MultiCurrency\\Notes\\NoteMultiCurrencyAvailable' => array(
78
+ 'version' => '9999999-dev',
79
  'path' => $baseDir . '/includes/multi-currency/Notes/NoteMultiCurrencyAvailable.php'
80
  ),
81
  'WCPay\\MultiCurrency\\UserSettings' => array(
82
+ 'version' => '9999999-dev',
83
  'path' => $baseDir . '/includes/multi-currency/UserSettings.php'
84
  ),
85
  'WCPay\\MultiCurrency\\Currency' => array(
86
+ 'version' => '9999999-dev',
87
  'path' => $baseDir . '/includes/multi-currency/Currency.php'
88
  ),
89
  'WCPay\\MultiCurrency\\Analytics' => array(
90
+ 'version' => '9999999-dev',
91
  'path' => $baseDir . '/includes/multi-currency/Analytics.php'
92
  ),
93
  'WCPay\\MultiCurrency\\Utils' => array(
94
+ 'version' => '9999999-dev',
95
  'path' => $baseDir . '/includes/multi-currency/Utils.php'
96
  ),
97
  'WCPay\\MultiCurrency\\CurrencySwitcherBlock' => array(
98
+ 'version' => '9999999-dev',
99
  'path' => $baseDir . '/includes/multi-currency/CurrencySwitcherBlock.php'
100
  ),
101
  'WCPay\\MultiCurrency\\MultiCurrency' => array(
102
+ 'version' => '9999999-dev',
103
  'path' => $baseDir . '/includes/multi-currency/MultiCurrency.php'
104
  ),
105
  'WCPay\\MultiCurrency\\CurrencySwitcherWidget' => array(
106
+ 'version' => '9999999-dev',
107
  'path' => $baseDir . '/includes/multi-currency/CurrencySwitcherWidget.php'
108
  ),
109
  'WCPay\\MultiCurrency\\AdminNotices' => array(
110
+ 'version' => '9999999-dev',
111
  'path' => $baseDir . '/includes/multi-currency/AdminNotices.php'
112
  ),
113
  'WCPay\\MultiCurrency\\CountryFlags' => array(
114
+ 'version' => '9999999-dev',
115
  'path' => $baseDir . '/includes/multi-currency/CountryFlags.php'
116
  ),
117
  'WCPay\\MultiCurrency\\FrontendCurrencies' => array(
118
+ 'version' => '9999999-dev',
119
  'path' => $baseDir . '/includes/multi-currency/FrontendCurrencies.php'
120
  ),
121
  'WCPay\\MultiCurrency\\Compatibility' => array(
122
+ 'version' => '9999999-dev',
123
  'path' => $baseDir . '/includes/multi-currency/Compatibility.php'
124
  ),
125
  'WCPay\\MultiCurrency\\StorefrontIntegration' => array(
126
+ 'version' => '9999999-dev',
127
  'path' => $baseDir . '/includes/multi-currency/StorefrontIntegration.php'
128
  ),
129
  'MyCLabs\\Enum\\Enum' => array(
762
  'version' => '1.6.1.0',
763
  'path' => $vendorDir . '/automattic/jetpack-config/src/class-config.php'
764
  ),
 
 
 
 
765
  'Automattic\\Jetpack\\IdentityCrisis\\UI' => array(
766
  'version' => '0.8.4.0',
767
  'path' => $vendorDir . '/automattic/jetpack-identity-crisis/src/class-ui.php'
774
  'version' => '0.8.4.0',
775
  'path' => $vendorDir . '/automattic/jetpack-identity-crisis/src/class-identity-crisis.php'
776
  ),
777
+ 'Automattic\\Jetpack\\Password_Checker' => array(
778
+ 'version' => '0.2.3.0',
779
+ 'path' => $vendorDir . '/automattic/jetpack-password-checker/src/class-password-checker.php'
780
+ ),
781
  'Automattic\\Jetpack\\Assets\\Logo' => array(
782
  'version' => '1.5.14.0',
783
  'path' => $vendorDir . '/automattic/jetpack-logo/src/class-logo.php'
894
  'version' => '0.2.5.0',
895
  'path' => $vendorDir . '/automattic/jetpack-admin-ui/src/class-admin-menu.php'
896
  ),
 
 
 
 
897
  'Automattic\\Jetpack\\Heartbeat' => array(
898
  'version' => '1.4.0.0',
899
  'path' => $vendorDir . '/automattic/jetpack-heartbeat/src/class-heartbeat.php'
900
  ),
901
+ 'Automattic\\Jetpack\\Roles' => array(
902
+ 'version' => '1.4.14.0',
903
+ 'path' => $vendorDir . '/automattic/jetpack-roles/src/class-roles.php'
904
+ ),
905
  'Jetpack_Tracks_Client' => array(
906
  'version' => '1.14.5.0',
907
  'path' => $vendorDir . '/automattic/jetpack-tracking/legacy/class-jetpack-tracks-client.php'
vendor/composer/platform_check.php DELETED
@@ -1,26 +0,0 @@
1
- <?php
2
-
3
- // platform_check.php @generated by Composer
4
-
5
- $issues = array();
6
-
7
- if (!(PHP_VERSION_ID >= 70100)) {
8
- $issues[] = 'Your Composer dependencies require a PHP version ">= 7.1.0". You are running ' . PHP_VERSION . '.';
9
- }
10
-
11
- if ($issues) {
12
- if (!headers_sent()) {
13
- header('HTTP/1.1 500 Internal Server Error');
14
- }
15
- if (!ini_get('display_errors')) {
16
- if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') {
17
- fwrite(STDERR, 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . implode(PHP_EOL, $issues) . PHP_EOL.PHP_EOL);
18
- } elseif (!headers_sent()) {
19
- echo 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . str_replace('You are running '.PHP_VERSION.'.', '', implode(PHP_EOL, $issues)) . PHP_EOL.PHP_EOL;
20
- }
21
- }
22
- trigger_error(
23
- 'Composer detected issues in your platform: ' . implode(' ', $issues),
24
- E_USER_ERROR
25
- );
26
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendor/jetpack-autoloader/class-autoloader-handler.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jp26b827636a1625941560b14a8d79d2a1;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jp69b1c1664a1a8123356bdc15c6e40d5f;
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\jp26b827636a1625941560b14a8d79d2a1;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jp69b1c1664a1a8123356bdc15c6e40d5f;
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\jp26b827636a1625941560b14a8d79d2a1;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jp69b1c1664a1a8123356bdc15c6e40d5f;
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\jp26b827636a1625941560b14a8d79d2a1;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jp69b1c1664a1a8123356bdc15c6e40d5f;
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\jp26b827636a1625941560b14a8d79d2a1;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jp69b1c1664a1a8123356bdc15c6e40d5f;
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\jp26b827636a1625941560b14a8d79d2a1;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jp69b1c1664a1a8123356bdc15c6e40d5f;
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\jp26b827636a1625941560b14a8d79d2a1;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jp69b1c1664a1a8123356bdc15c6e40d5f;
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\jp26b827636a1625941560b14a8d79d2a1;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jp69b1c1664a1a8123356bdc15c6e40d5f;
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\jp26b827636a1625941560b14a8d79d2a1;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jp69b1c1664a1a8123356bdc15c6e40d5f;
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\jp26b827636a1625941560b14a8d79d2a1;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jp69b1c1664a1a8123356bdc15c6e40d5f;
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\jp26b827636a1625941560b14a8d79d2a1;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jp69b1c1664a1a8123356bdc15c6e40d5f;
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\jp26b827636a1625941560b14a8d79d2a1;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jp69b1c1664a1a8123356bdc15c6e40d5f;
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\jp26b827636a1625941560b14a8d79d2a1;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jp69b1c1664a1a8123356bdc15c6e40d5f;
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\jp26b827636a1625941560b14a8d79d2a1;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jp69b1c1664a1a8123356bdc15c6e40d5f;
9
 
10
  // phpcs:ignore
11
 
woocommerce-payments.php CHANGED
@@ -12,7 +12,7 @@
12
  * WC tested up to: 6.5.1
13
  * Requires at least: 5.7
14
  * Requires PHP: 7.0
15
- * Version: 4.2.0
16
  *
17
  * @package WooCommerce\Payments
18
  */
12
  * WC tested up to: 6.5.1
13
  * Requires at least: 5.7
14
  * Requires PHP: 7.0
15
+ * Version: 4.2.1
16
  *
17
  * @package WooCommerce\Payments
18
  */