Plugin Directory

Changeset 3135606


Ignore:
Timestamp:
08/14/2024 01:55:42 PM (20 months ago)
Author:
dotMailer
Message:

Updating trunk for version 1.4.3

Location:
dotdigital-for-woocommerce/trunk
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • dotdigital-for-woocommerce/trunk/class-dotdigital-woocommerce-bootstrapper.php

    r3075827 r3135606  
    1616 * Plugin Name:       Dotdigital for WooCommerce
    1717 * Description:       Connect your WooCommerce store to dotdigital and put customer, subscriber, product and order data at your fingertips.
    18  * Version:           1.4.2
     18 * Version:           1.4.3
    1919 * Author:            dotdigital
    2020 * Author URI:        https://www.dotdigital.com/
     
    5959use Dotdigital_WooCommerce\Includes\Dotdigital_WooCommerce_Activator;
    6060\define('DOTDIGITAL_FOR_WOOCOMMERCE_PLUGIN_NAME', 'dotdigital-for-woocommerce');
    61 \define('DOTDIGITAL_FOR_WOOCOMMERCE_PLUGIN_VERSION', '1.4.2');
     61\define('DOTDIGITAL_FOR_WOOCOMMERCE_PLUGIN_VERSION', '1.4.3');
    6262\define('DOTDIGITAL_FOR_WOOCOMMERCE_PLUGIN_DIR_PATH', __DIR__);
    6363\define('DOTDIGITAL_FOR_WOOCOMMERCE_PUBLIC_MEDIA_PATH', plugin_dir_url(__FILE__) . 'public/image/');
  • dotdigital-for-woocommerce/trunk/includes/cart/class-dotdigital-woocommerce-cart-insight.php

    r3065504 r3135606  
    4646                // phpcs:ignore WordPress.Security.EscapeOutput
    4747            }
    48             $line_item_data = array('sku' => $product->get_sku(), 'name' => $product->get_name(), 'description' => $product->get_short_description(), 'category' => $dotdigital_woocommerce_category_helper->get_product_categories($product->get_id()), 'quantity' => $cart_item['quantity'], 'total_price' => \round($cart_item['line_total'], 2), 'image_url' => $image_finder->get_product_image_url($product), 'product_url' => get_permalink($product->get_id()));
     48            $line_item_data = array('sku' => $product->get_sku(), 'name' => $product->get_name(), 'description' => $product->get_short_description(), 'category' => $dotdigital_woocommerce_category_helper->get_product_categories($product->get_id()), 'quantity' => $cart_item['quantity'], 'total_price' => \round($cart_item['line_total'], 2), 'total_price_incl_tax' => \round($cart_item['line_total'] + $cart_item['line_tax'], 2), 'image_url' => $image_finder->get_product_image_url($product), 'product_url' => get_permalink($product->get_id()));
    4949            if ('variable' === $product->get_type()) {
    5050                $product = wc_get_product($cart_item['variation_id']);
  • dotdigital-for-woocommerce/trunk/public/js/tracking/cart-insight.js

    r2991918 r3135606  
    33
    44    var data = cart_insight.data;
    5    
     5
    66    if (data.customer_email) {
    77        window.dmPt( "identify", data.customer_email );
     
    4444            quantity: item.quantity,
    4545            totalPrice: item.total_price,
     46            totalPrice_incl_tax: item.total_price_incl_tax,
    4647            imageUrl: item.image_url,
    4748            productUrl: item.product_url
  • dotdigital-for-woocommerce/trunk/readme.txt

    r3075827 r3135606  
    22Contributors: dotMailer, amucklow, fstrezos, pvpcookie
    33Requires at least: 5.7
    4 Tested up to: 6.5
     4Tested up to: 6.6
    55Requires PHP: 7.0
    6 Stable tag: 1.4.2
     6Stable tag: 1.4.3
    77License: MIT
    88License URI: https://opensource.org/licenses/MIT
     
    6868
    6969== Changelog ==
     70
     71= 1.4.3 =
     72
     73**Improvements**
     74- We added `totalprice_incl_tax` to cart insight line items.
    7075
    7176= 1.4.2 =
  • dotdigital-for-woocommerce/trunk/vendor/composer/autoload_classmap.php

    r3075827 r3135606  
    9797    'Dotdigital_Woo_Vendor\\Carbon\\MessageFormatter\\MessageFormatterMapper' => $vendorDir . '/nesbot/carbon/src/Carbon/MessageFormatter/MessageFormatterMapper.php',
    9898    'Dotdigital_Woo_Vendor\\Carbon\\PHPStan\\AbstractMacro' => $vendorDir . '/nesbot/carbon/src/Carbon/PHPStan/AbstractMacro.php',
    99     'Dotdigital_Woo_Vendor\\Carbon\\PHPStan\\AbstractReflectionMacro' => $vendorDir . '/nesbot/carbon/lazy/Carbon/PHPStan/AbstractMacroStatic.php',
     99    'Dotdigital_Woo_Vendor\\Carbon\\PHPStan\\AbstractReflectionMacro' => $vendorDir . '/nesbot/carbon/lazy/Carbon/PHPStan/AbstractMacroBuiltin.php',
    100100    'Dotdigital_Woo_Vendor\\Carbon\\PHPStan\\LazyMacro' => $vendorDir . '/nesbot/carbon/lazy/Carbon/PHPStan/MacroStrongType.php',
    101101    'Dotdigital_Woo_Vendor\\Carbon\\PHPStan\\Macro' => $vendorDir . '/nesbot/carbon/src/Carbon/PHPStan/Macro.php',
  • dotdigital-for-woocommerce/trunk/vendor/composer/autoload_static.php

    r3075827 r3135606  
    9898        'Dotdigital_Woo_Vendor\\Carbon\\MessageFormatter\\MessageFormatterMapper' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/MessageFormatter/MessageFormatterMapper.php',
    9999        'Dotdigital_Woo_Vendor\\Carbon\\PHPStan\\AbstractMacro' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/PHPStan/AbstractMacro.php',
    100         'Dotdigital_Woo_Vendor\\Carbon\\PHPStan\\AbstractReflectionMacro' => __DIR__ . '/..' . '/nesbot/carbon/lazy/Carbon/PHPStan/AbstractMacroStatic.php',
     100        'Dotdigital_Woo_Vendor\\Carbon\\PHPStan\\AbstractReflectionMacro' => __DIR__ . '/..' . '/nesbot/carbon/lazy/Carbon/PHPStan/AbstractMacroBuiltin.php',
    101101        'Dotdigital_Woo_Vendor\\Carbon\\PHPStan\\LazyMacro' => __DIR__ . '/..' . '/nesbot/carbon/lazy/Carbon/PHPStan/MacroStrongType.php',
    102102        'Dotdigital_Woo_Vendor\\Carbon\\PHPStan\\Macro' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/PHPStan/Macro.php',
  • dotdigital-for-woocommerce/trunk/vendor/composer/installed.php

    r3075827 r3135606  
    33namespace Dotdigital_Woo_Vendor;
    44
    5 return array('root' => array('name' => 'dotdigital/dotdigital-for-woocommerce', 'pretty_version' => '1.4.2', 'version' => '1.4.2.0', 'reference' => null, 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev' => \false), 'versions' => array('carbonphp/carbon-doctrine-types' => array('pretty_version' => '2.1.0', 'version' => '2.1.0.0', 'reference' => '99f76ffa36cce3b70a4a6abce41dba15ca2e84cb', 'type' => 'library', 'install_path' => __DIR__ . '/../carbonphp/carbon-doctrine-types', 'aliases' => array(), 'dev_requirement' => \false), 'clue/stream-filter' => array('pretty_version' => 'v1.7.0', 'version' => '1.7.0.0', 'reference' => '049509fef80032cb3f051595029ab75b49a3c2f7', 'type' => 'library', 'install_path' => __DIR__ . '/../clue/stream-filter', 'aliases' => array(), 'dev_requirement' => \false), 'dotdigital/dotdigital-for-woocommerce' => array('pretty_version' => '1.4.2', 'version' => '1.4.2.0', 'reference' => null, 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev_requirement' => \false), 'dotdigital/dotdigital-php' => array('pretty_version' => '2.1.0', 'version' => '2.1.0.0', 'reference' => '2caa7ec0f982ab7ab299a62910cdd6542322accb', 'type' => 'library', 'install_path' => __DIR__ . '/../dotdigital/dotdigital-php', 'aliases' => array(), 'dev_requirement' => \false), 'guzzlehttp/guzzle' => array('pretty_version' => '7.8.1', 'version' => '7.8.1.0', 'reference' => '41042bc7ab002487b876a0683fc8dce04ddce104', 'type' => 'library', 'install_path' => __DIR__ . '/../guzzlehttp/guzzle', 'aliases' => array(), 'dev_requirement' => \false), 'guzzlehttp/promises' => array('pretty_version' => '2.0.2', 'version' => '2.0.2.0', 'reference' => 'bbff78d96034045e58e13dedd6ad91b5d1253223', 'type' => 'library', 'install_path' => __DIR__ . '/../guzzlehttp/promises', 'aliases' => array(), 'dev_requirement' => \false), 'guzzlehttp/psr7' => array('pretty_version' => '2.6.2', 'version' => '2.6.2.0', 'reference' => '45b30f99ac27b5ca93cb4831afe16285f57b8221', 'type' => 'library', 'install_path' => __DIR__ . '/../guzzlehttp/psr7', 'aliases' => array(), 'dev_requirement' => \false), 'nesbot/carbon' => array('pretty_version' => '2.72.3', 'version' => '2.72.3.0', 'reference' => '0c6fd108360c562f6e4fd1dedb8233b423e91c83', 'type' => 'library', 'install_path' => __DIR__ . '/../nesbot/carbon', 'aliases' => array(), 'dev_requirement' => \false), 'php-http/async-client-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '*', 1 => '1.0')), 'php-http/client-common' => array('pretty_version' => '2.7.1', 'version' => '2.7.1.0', 'reference' => '1e19c059b0e4d5f717bf5d524d616165aeab0612', 'type' => 'library', 'install_path' => __DIR__ . '/../php-http/client-common', 'aliases' => array(), 'dev_requirement' => \false), 'php-http/client-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '*', 1 => '1.0')), 'php-http/curl-client' => array('pretty_version' => '2.3.2', 'version' => '2.3.2.0', 'reference' => '0b869922458b1cde9137374545ed4fff7ac83623', 'type' => 'library', 'install_path' => __DIR__ . '/../php-http/curl-client', 'aliases' => array(), 'dev_requirement' => \false), 'php-http/discovery' => array('pretty_version' => '1.19.4', 'version' => '1.19.4.0', 'reference' => '0700efda8d7526335132360167315fdab3aeb599', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../php-http/discovery', 'aliases' => array(), 'dev_requirement' => \false), 'php-http/httplug' => array('pretty_version' => '2.4.0', 'version' => '2.4.0.0', 'reference' => '625ad742c360c8ac580fcc647a1541d29e257f67', 'type' => 'library', 'install_path' => __DIR__ . '/../php-http/httplug', 'aliases' => array(), 'dev_requirement' => \false), 'php-http/message' => array('pretty_version' => '1.16.1', 'version' => '1.16.1.0', 'reference' => '5997f3289332c699fa2545c427826272498a2088', 'type' => 'library', 'install_path' => __DIR__ . '/../php-http/message', 'aliases' => array(), 'dev_requirement' => \false), 'php-http/message-factory-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0')), 'php-http/promise' => array('pretty_version' => '1.3.1', 'version' => '1.3.1.0', 'reference' => 'fc85b1fba37c169a69a07ef0d5a8075770cc1f83', 'type' => 'library', 'install_path' => __DIR__ . '/../php-http/promise', 'aliases' => array(), 'dev_requirement' => \false), 'psr/clock' => array('pretty_version' => '1.0.0', 'version' => '1.0.0.0', 'reference' => 'e41a24703d4560fd0acb709162f73b8adfc3aa0d', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/clock', 'aliases' => array(), 'dev_requirement' => \false), 'psr/clock-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0')), 'psr/http-client' => array('pretty_version' => '1.0.3', 'version' => '1.0.3.0', 'reference' => 'bb5906edc1c324c9a05aa0873d40117941e5fa90', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-client', 'aliases' => array(), 'dev_requirement' => \false), 'psr/http-client-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '*', 1 => '1.0')), 'psr/http-factory' => array('pretty_version' => '1.0.2', 'version' => '1.0.2.0', 'reference' => 'e616d01114759c4c489f93b099585439f795fe35', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-factory', 'aliases' => array(), 'dev_requirement' => \false), 'psr/http-factory-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '*', 1 => '1.0')), 'psr/http-message' => array('pretty_version' => '2.0', 'version' => '2.0.0.0', 'reference' => '402d35bcb92c70c026d1a6a9883f06b2ead23d71', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-message', 'aliases' => array(), 'dev_requirement' => \false), 'psr/http-message-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '*', 1 => '1.0')), 'ralouphie/getallheaders' => array('pretty_version' => '3.0.3', 'version' => '3.0.3.0', 'reference' => '120b605dfeb996808c31b6477290a714d356e822', 'type' => 'library', 'install_path' => __DIR__ . '/../ralouphie/getallheaders', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/deprecation-contracts' => array('pretty_version' => 'v2.5.3', 'version' => '2.5.3.0', 'reference' => '80d075412b557d41002320b96a096ca65aa2c98d', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/deprecation-contracts', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/options-resolver' => array('pretty_version' => 'v5.4.21', 'version' => '5.4.21.0', 'reference' => '4fe5cf6ede71096839f0e4b4444d65dd3a7c1eb9', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/options-resolver', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-mbstring' => array('pretty_version' => 'v1.29.0', 'version' => '1.29.0.0', 'reference' => '9773676c8a1bb1f8d4340a62efe641cf76eda7ec', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-mbstring', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-php73' => array('pretty_version' => 'v1.29.0', 'version' => '1.29.0.0', 'reference' => '21bd091060673a1177ae842c0ef8fe30893114d2', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php73', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-php80' => array('pretty_version' => 'v1.29.0', 'version' => '1.29.0.0', 'reference' => '87b68208d5c1188808dd7839ee1e6c8ec3b02f1b', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php80', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/translation' => array('pretty_version' => 'v5.4.35', 'version' => '5.4.35.0', 'reference' => '77d7d1e46f52827585e65e6cd6f52a2542e59c72', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/translation', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/translation-contracts' => array('pretty_version' => 'v2.5.3', 'version' => '2.5.3.0', 'reference' => 'b0073a77ac0b7ea55131020e87b1e3af540f4664', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/translation-contracts', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/translation-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '2.3'))));
     5return array('root' => array('name' => 'dotdigital/dotdigital-for-woocommerce', 'pretty_version' => '1.4.3', 'version' => '1.4.3.0', 'reference' => null, 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev' => \false), 'versions' => array('carbonphp/carbon-doctrine-types' => array('pretty_version' => '2.1.0', 'version' => '2.1.0.0', 'reference' => '99f76ffa36cce3b70a4a6abce41dba15ca2e84cb', 'type' => 'library', 'install_path' => __DIR__ . '/../carbonphp/carbon-doctrine-types', 'aliases' => array(), 'dev_requirement' => \false), 'clue/stream-filter' => array('pretty_version' => 'v1.7.0', 'version' => '1.7.0.0', 'reference' => '049509fef80032cb3f051595029ab75b49a3c2f7', 'type' => 'library', 'install_path' => __DIR__ . '/../clue/stream-filter', 'aliases' => array(), 'dev_requirement' => \false), 'dotdigital/dotdigital-for-woocommerce' => array('pretty_version' => '1.4.3', 'version' => '1.4.3.0', 'reference' => null, 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev_requirement' => \false), 'dotdigital/dotdigital-php' => array('pretty_version' => '2.1.0', 'version' => '2.1.0.0', 'reference' => '2caa7ec0f982ab7ab299a62910cdd6542322accb', 'type' => 'library', 'install_path' => __DIR__ . '/../dotdigital/dotdigital-php', 'aliases' => array(), 'dev_requirement' => \false), 'guzzlehttp/guzzle' => array('pretty_version' => '7.8.1', 'version' => '7.8.1.0', 'reference' => '41042bc7ab002487b876a0683fc8dce04ddce104', 'type' => 'library', 'install_path' => __DIR__ . '/../guzzlehttp/guzzle', 'aliases' => array(), 'dev_requirement' => \false), 'guzzlehttp/promises' => array('pretty_version' => '2.0.2', 'version' => '2.0.2.0', 'reference' => 'bbff78d96034045e58e13dedd6ad91b5d1253223', 'type' => 'library', 'install_path' => __DIR__ . '/../guzzlehttp/promises', 'aliases' => array(), 'dev_requirement' => \false), 'guzzlehttp/psr7' => array('pretty_version' => '2.6.2', 'version' => '2.6.2.0', 'reference' => '45b30f99ac27b5ca93cb4831afe16285f57b8221', 'type' => 'library', 'install_path' => __DIR__ . '/../guzzlehttp/psr7', 'aliases' => array(), 'dev_requirement' => \false), 'nesbot/carbon' => array('pretty_version' => '2.72.3', 'version' => '2.72.3.0', 'reference' => '0c6fd108360c562f6e4fd1dedb8233b423e91c83', 'type' => 'library', 'install_path' => __DIR__ . '/../nesbot/carbon', 'aliases' => array(), 'dev_requirement' => \false), 'php-http/async-client-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '*', 1 => '1.0')), 'php-http/client-common' => array('pretty_version' => '2.7.1', 'version' => '2.7.1.0', 'reference' => '1e19c059b0e4d5f717bf5d524d616165aeab0612', 'type' => 'library', 'install_path' => __DIR__ . '/../php-http/client-common', 'aliases' => array(), 'dev_requirement' => \false), 'php-http/client-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '*', 1 => '1.0')), 'php-http/curl-client' => array('pretty_version' => '2.3.2', 'version' => '2.3.2.0', 'reference' => '0b869922458b1cde9137374545ed4fff7ac83623', 'type' => 'library', 'install_path' => __DIR__ . '/../php-http/curl-client', 'aliases' => array(), 'dev_requirement' => \false), 'php-http/discovery' => array('pretty_version' => '1.19.4', 'version' => '1.19.4.0', 'reference' => '0700efda8d7526335132360167315fdab3aeb599', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../php-http/discovery', 'aliases' => array(), 'dev_requirement' => \false), 'php-http/httplug' => array('pretty_version' => '2.4.0', 'version' => '2.4.0.0', 'reference' => '625ad742c360c8ac580fcc647a1541d29e257f67', 'type' => 'library', 'install_path' => __DIR__ . '/../php-http/httplug', 'aliases' => array(), 'dev_requirement' => \false), 'php-http/message' => array('pretty_version' => '1.16.1', 'version' => '1.16.1.0', 'reference' => '5997f3289332c699fa2545c427826272498a2088', 'type' => 'library', 'install_path' => __DIR__ . '/../php-http/message', 'aliases' => array(), 'dev_requirement' => \false), 'php-http/message-factory-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0')), 'php-http/promise' => array('pretty_version' => '1.3.1', 'version' => '1.3.1.0', 'reference' => 'fc85b1fba37c169a69a07ef0d5a8075770cc1f83', 'type' => 'library', 'install_path' => __DIR__ . '/../php-http/promise', 'aliases' => array(), 'dev_requirement' => \false), 'psr/clock' => array('pretty_version' => '1.0.0', 'version' => '1.0.0.0', 'reference' => 'e41a24703d4560fd0acb709162f73b8adfc3aa0d', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/clock', 'aliases' => array(), 'dev_requirement' => \false), 'psr/clock-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0')), 'psr/http-client' => array('pretty_version' => '1.0.3', 'version' => '1.0.3.0', 'reference' => 'bb5906edc1c324c9a05aa0873d40117941e5fa90', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-client', 'aliases' => array(), 'dev_requirement' => \false), 'psr/http-client-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '*', 1 => '1.0')), 'psr/http-factory' => array('pretty_version' => '1.0.2', 'version' => '1.0.2.0', 'reference' => 'e616d01114759c4c489f93b099585439f795fe35', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-factory', 'aliases' => array(), 'dev_requirement' => \false), 'psr/http-factory-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '*', 1 => '1.0')), 'psr/http-message' => array('pretty_version' => '2.0', 'version' => '2.0.0.0', 'reference' => '402d35bcb92c70c026d1a6a9883f06b2ead23d71', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-message', 'aliases' => array(), 'dev_requirement' => \false), 'psr/http-message-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '*', 1 => '1.0')), 'ralouphie/getallheaders' => array('pretty_version' => '3.0.3', 'version' => '3.0.3.0', 'reference' => '120b605dfeb996808c31b6477290a714d356e822', 'type' => 'library', 'install_path' => __DIR__ . '/../ralouphie/getallheaders', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/deprecation-contracts' => array('pretty_version' => 'v2.5.3', 'version' => '2.5.3.0', 'reference' => '80d075412b557d41002320b96a096ca65aa2c98d', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/deprecation-contracts', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/options-resolver' => array('pretty_version' => 'v5.4.21', 'version' => '5.4.21.0', 'reference' => '4fe5cf6ede71096839f0e4b4444d65dd3a7c1eb9', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/options-resolver', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-mbstring' => array('pretty_version' => 'v1.29.0', 'version' => '1.29.0.0', 'reference' => '9773676c8a1bb1f8d4340a62efe641cf76eda7ec', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-mbstring', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-php73' => array('pretty_version' => 'v1.29.0', 'version' => '1.29.0.0', 'reference' => '21bd091060673a1177ae842c0ef8fe30893114d2', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php73', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-php80' => array('pretty_version' => 'v1.29.0', 'version' => '1.29.0.0', 'reference' => '87b68208d5c1188808dd7839ee1e6c8ec3b02f1b', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php80', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/translation' => array('pretty_version' => 'v5.4.35', 'version' => '5.4.35.0', 'reference' => '77d7d1e46f52827585e65e6cd6f52a2542e59c72', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/translation', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/translation-contracts' => array('pretty_version' => 'v2.5.3', 'version' => '2.5.3.0', 'reference' => 'b0073a77ac0b7ea55131020e87b1e3af540f4664', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/translation-contracts', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/translation-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '2.3'))));
  • dotdigital-for-woocommerce/trunk/vendor/scoper-autoload.php

    r3075827 r3135606  
    3131}
    3232humbug_phpscoper_expose_class('JsonException', 'Dotdigital_Woo_Vendor\JsonException');
     33humbug_phpscoper_expose_class('Stringable', 'Dotdigital_Woo_Vendor\Stringable');
    3334humbug_phpscoper_expose_class('ValueError', 'Dotdigital_Woo_Vendor\ValueError');
    3435humbug_phpscoper_expose_class('PhpToken', 'Dotdigital_Woo_Vendor\PhpToken');
    35 humbug_phpscoper_expose_class('Stringable', 'Dotdigital_Woo_Vendor\Stringable');
     36humbug_phpscoper_expose_class('UnhandledMatchError', 'Dotdigital_Woo_Vendor\UnhandledMatchError');
    3637humbug_phpscoper_expose_class('Attribute', 'Dotdigital_Woo_Vendor\Attribute');
    37 humbug_phpscoper_expose_class('UnhandledMatchError', 'Dotdigital_Woo_Vendor\UnhandledMatchError');
    3838humbug_phpscoper_expose_class('ComposerAutoloaderInit89cb698a49191790593d2dabf186dd1c', 'Dotdigital_Woo_Vendor\ComposerAutoloaderInit89cb698a49191790593d2dabf186dd1c');
    3939
Note: See TracChangeset for help on using the changeset viewer.