Changeset 2625363
- Timestamp:
- 11/06/2021 08:28:49 AM (4 years ago)
- Location:
- ecomail
- Files:
-
- 34 edited
- 1 copied
-
tags/1.0.7 (copied) (copied from ecomail/trunk)
-
tags/1.0.7/deps/autoload.php (modified) (1 diff)
-
tags/1.0.7/deps/composer/InstalledVersions.php (modified) (1 diff)
-
tags/1.0.7/deps/composer/autoload_real.php (modified) (5 diffs)
-
tags/1.0.7/deps/composer/autoload_static.php (modified) (2 diffs)
-
tags/1.0.7/deps/composer/installed.json (modified) (2 diffs)
-
tags/1.0.7/deps/composer/installed.php (modified) (1 diff)
-
tags/1.0.7/deps/psr/container/composer.json (modified) (1 diff)
-
tags/1.0.7/deps/psr/container/src/ContainerExceptionInterface.php (modified) (1 diff)
-
tags/1.0.7/ecomail.php (modified) (1 diff)
-
tags/1.0.7/readme.txt (modified) (2 diffs)
-
tags/1.0.7/src/Models/WooOrderModel.php (modified) (2 diffs)
-
tags/1.0.7/src/Plugin.php (modified) (1 diff)
-
tags/1.0.7/vendor/autoload.php (modified) (1 diff)
-
tags/1.0.7/vendor/composer/InstalledVersions.php (modified) (1 diff)
-
tags/1.0.7/vendor/composer/autoload_real.php (modified) (3 diffs)
-
tags/1.0.7/vendor/composer/autoload_static.php (modified) (2 diffs)
-
tags/1.0.7/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/deps/autoload.php (modified) (1 diff)
-
trunk/deps/composer/InstalledVersions.php (modified) (1 diff)
-
trunk/deps/composer/autoload_real.php (modified) (5 diffs)
-
trunk/deps/composer/autoload_static.php (modified) (2 diffs)
-
trunk/deps/composer/installed.json (modified) (2 diffs)
-
trunk/deps/composer/installed.php (modified) (1 diff)
-
trunk/deps/psr/container/composer.json (modified) (1 diff)
-
trunk/deps/psr/container/src/ContainerExceptionInterface.php (modified) (1 diff)
-
trunk/ecomail.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/src/Models/WooOrderModel.php (modified) (2 diffs)
-
trunk/src/Plugin.php (modified) (1 diff)
-
trunk/vendor/autoload.php (modified) (1 diff)
-
trunk/vendor/composer/InstalledVersions.php (modified) (1 diff)
-
trunk/vendor/composer/autoload_real.php (modified) (3 diffs)
-
trunk/vendor/composer/autoload_static.php (modified) (2 diffs)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ecomail/tags/1.0.7/deps/autoload.php
r2620837 r2625363 5 5 require_once __DIR__ . '/composer/autoload_real.php'; 6 6 7 return ComposerAutoloaderInit d984079cf7b2e02205fb06e5dbb65c4d::getLoader();7 return ComposerAutoloaderInit05f1df44fe6002fc6b7a3c25927fbd41::getLoader(); -
ecomail/tags/1.0.7/deps/composer/InstalledVersions.php
r2620837 r2625363 23 23 class InstalledVersions 24 24 { 25 /** 26 * @var mixed[]|null 27 * @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 28 */ 25 29 private static $installed; 30 /** 31 * @var bool|null 32 */ 26 33 private static $canGetVendors; 34 /** 35 * @var array[] 36 * @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}>}> 37 */ 27 38 private static $installedByVendor = array(); 28 39 /** -
ecomail/tags/1.0.7/deps/composer/autoload_real.php
r2620837 r2625363 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit d984079cf7b2e02205fb06e5dbb65c4d5 class ComposerAutoloaderInit05f1df44fe6002fc6b7a3c25927fbd41 6 6 { 7 7 private static $loader; … … 23 23 } 24 24 25 spl_autoload_register(array('ComposerAutoloaderInit d984079cf7b2e02205fb06e5dbb65c4d', 'loadClassLoader'), true, true);25 spl_autoload_register(array('ComposerAutoloaderInit05f1df44fe6002fc6b7a3c25927fbd41', 'loadClassLoader'), true, true); 26 26 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__))); 27 spl_autoload_unregister(array('ComposerAutoloaderInit d984079cf7b2e02205fb06e5dbb65c4d', 'loadClassLoader'));27 spl_autoload_unregister(array('ComposerAutoloaderInit05f1df44fe6002fc6b7a3c25927fbd41', 'loadClassLoader')); 28 28 29 29 $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); … … 31 31 require __DIR__ . '/autoload_static.php'; 32 32 33 call_user_func(\Composer\Autoload\ComposerStaticInit d984079cf7b2e02205fb06e5dbb65c4d::getInitializer($loader));33 call_user_func(\Composer\Autoload\ComposerStaticInit05f1df44fe6002fc6b7a3c25927fbd41::getInitializer($loader)); 34 34 } else { 35 35 $map = require __DIR__ . '/autoload_namespaces.php'; … … 52 52 53 53 if ($useStaticLoader) { 54 $includeFiles = Composer\Autoload\ComposerStaticInit d984079cf7b2e02205fb06e5dbb65c4d::$files;54 $includeFiles = Composer\Autoload\ComposerStaticInit05f1df44fe6002fc6b7a3c25927fbd41::$files; 55 55 } else { 56 56 $includeFiles = require __DIR__ . '/autoload_files.php'; 57 57 } 58 58 foreach ($includeFiles as $fileIdentifier => $file) { 59 composerRequire d984079cf7b2e02205fb06e5dbb65c4d($fileIdentifier, $file);59 composerRequire05f1df44fe6002fc6b7a3c25927fbd41($fileIdentifier, $file); 60 60 } 61 61 … … 64 64 } 65 65 66 function composerRequire d984079cf7b2e02205fb06e5dbb65c4d($fileIdentifier, $file)66 function composerRequire05f1df44fe6002fc6b7a3c25927fbd41($fileIdentifier, $file) 67 67 { 68 68 if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { -
ecomail/tags/1.0.7/deps/composer/autoload_static.php
r2620837 r2625363 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit d984079cf7b2e02205fb06e5dbb65c4d7 class ComposerStaticInit05f1df44fe6002fc6b7a3c25927fbd41 8 8 { 9 9 public static $files = array ( … … 379 379 { 380 380 return \Closure::bind(function () use ($loader) { 381 $loader->prefixLengthsPsr4 = ComposerStaticInit d984079cf7b2e02205fb06e5dbb65c4d::$prefixLengthsPsr4;382 $loader->prefixDirsPsr4 = ComposerStaticInit d984079cf7b2e02205fb06e5dbb65c4d::$prefixDirsPsr4;383 $loader->classMap = ComposerStaticInit d984079cf7b2e02205fb06e5dbb65c4d::$classMap;381 $loader->prefixLengthsPsr4 = ComposerStaticInit05f1df44fe6002fc6b7a3c25927fbd41::$prefixLengthsPsr4; 382 $loader->prefixDirsPsr4 = ComposerStaticInit05f1df44fe6002fc6b7a3c25927fbd41::$prefixDirsPsr4; 383 $loader->classMap = ComposerStaticInit05f1df44fe6002fc6b7a3c25927fbd41::$classMap; 384 384 385 385 }, null, ClassLoader::class); -
ecomail/tags/1.0.7/deps/composer/installed.json
r2620837 r2625363 488 488 { 489 489 "name": "psr\/container", 490 "version": "1.1. 1",491 "version_normalized": "1.1. 1.0",490 "version": "1.1.2", 491 "version_normalized": "1.1.2.0", 492 492 "source": { 493 493 "type": "git", 494 494 "url": "https:\/\/github.com\/php-fig\/container.git", 495 "reference": " 8622567409010282b7aeebe4bb841fe98b58dcaf"496 }, 497 "dist": { 498 "type": "zip", 499 "url": "https:\/\/api.github.com\/repos\/php-fig\/container\/zipball\/ 8622567409010282b7aeebe4bb841fe98b58dcaf",500 "reference": " 8622567409010282b7aeebe4bb841fe98b58dcaf",501 "shasum": "" 502 }, 503 "require": { 504 "php": ">=7. 2.0"505 }, 506 "time": "2021- 03-05T17:36:06+00:00",495 "reference": "513e0666f7216c7459170d56df27dfcefe1689ea" 496 }, 497 "dist": { 498 "type": "zip", 499 "url": "https:\/\/api.github.com\/repos\/php-fig\/container\/zipball\/513e0666f7216c7459170d56df27dfcefe1689ea", 500 "reference": "513e0666f7216c7459170d56df27dfcefe1689ea", 501 "shasum": "" 502 }, 503 "require": { 504 "php": ">=7.4.0" 505 }, 506 "time": "2021-11-05T16:50:12+00:00", 507 507 "type": "library", 508 508 "installation-source": "dist", … … 533 533 "support": { 534 534 "issues": "https:\/\/github.com\/php-fig\/container\/issues", 535 "source": "https:\/\/github.com\/php-fig\/container\/tree\/1.1. 1"535 "source": "https:\/\/github.com\/php-fig\/container\/tree\/1.1.2" 536 536 }, 537 537 "install-path": "..\/psr\/container" -
ecomail/tags/1.0.7/deps/composer/installed.php
r2620837 r2625363 3 3 namespace EcomailDeps; 4 4 5 return array('root' => array('pretty_version' => '1.0.0+no-version-set', 'version' => '1.0.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'reference' => \NULL, 'name' => '__root__', 'dev' => \true), 'versions' => array('__root__' => array('pretty_version' => '1.0.0+no-version-set', 'version' => '1.0.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'reference' => \NULL, 'dev_requirement' => \false), 'doctrine/collections' => array('pretty_version' => '1.6.8', 'version' => '1.6.8.0', 'type' => 'library', 'install_path' => __DIR__ . '/../doctrine/collections', 'aliases' => array(), 'reference' => '1958a744696c6bb3bb0d28db2611dc11610e78af', 'dev_requirement' => \false), 'ecomailcz/ecomail' => array('pretty_version' => 'dev-add-event', 'version' => 'dev-add-event', 'type' => 'library', 'install_path' => __DIR__ . '/../ecomailcz/ecomail', 'aliases' => array(), 'reference' => '27af61dac680cdd543f7c2ba0524ae34f6cd233b', 'dev_requirement' => \false), 'monolog/monolog' => array('pretty_version' => '2.3.5', 'version' => '2.3.5.0', 'type' => 'library', 'install_path' => __DIR__ . '/../monolog/monolog', 'aliases' => array(), 'reference' => 'fd4380d6fc37626e2f799f29d91195040137eba9', 'dev_requirement' => \false), 'opis/closure' => array('pretty_version' => '3.6.2', 'version' => '3.6.2.0', 'type' => 'library', 'install_path' => __DIR__ . '/../opis/closure', 'aliases' => array(), 'reference' => '06e2ebd25f2869e54a306dda991f7db58066f7f6', 'dev_requirement' => \false), 'php-di/invoker' => array('pretty_version' => '2.3.2', 'version' => '2.3.2.0', 'type' => 'library', 'install_path' => __DIR__ . '/../php-di/invoker', 'aliases' => array(), 'reference' => '5214cbe5aad066022cd845dbf313f0e47aed928f', 'dev_requirement' => \false), 'php-di/php-di' => array('pretty_version' => '6.3.5', 'version' => '6.3.5.0', 'type' => 'library', 'install_path' => __DIR__ . '/../php-di/php-di', 'aliases' => array(), 'reference' => 'b8126d066ce144765300ee0ab040c1ed6c9ef588', 'dev_requirement' => \false), 'php-di/phpdoc-reader' => array('pretty_version' => '2.2.1', 'version' => '2.2.1.0', 'type' => 'library', 'install_path' => __DIR__ . '/../php-di/phpdoc-reader', 'aliases' => array(), 'reference' => '66daff34cbd2627740ffec9469ffbac9f8c8185c', 'dev_requirement' => \false), 'psr/container' => array('pretty_version' => '1.1. 1', 'version' => '1.1.1.0', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/container', 'aliases' => array(), 'reference' => '8622567409010282b7aeebe4bb841fe98b58dcaf', 'dev_requirement' => \false), 'psr/container-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '^1.0')), 'psr/log' => array('pretty_version' => '1.1.4', 'version' => '1.1.4.0', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/log', 'aliases' => array(), 'reference' => 'd49695b909c3b7628b6289db5479a1c204601f11', 'dev_requirement' => \false), 'psr/log-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0.0 || 2.0.0 || 3.0.0')), 'wpify/core' => array('pretty_version' => '5.0.x-dev', 'version' => '5.0.9999999.9999999-dev', 'type' => 'library', 'install_path' => __DIR__ . '/../wpify/core', 'aliases' => array(), 'reference' => '2e9a247de0295641918d096d78b40835e9a97b4c', 'dev_requirement' => \false), 'wpify/custom-fields' => array('pretty_version' => '2.0.4', 'version' => '2.0.4.0', 'type' => 'library', 'install_path' => __DIR__ . '/../wpify/custom-fields', 'aliases' => array(), 'reference' => '5a358e9ba05478d9fb7f780a57fc19a2bbec65a3', 'dev_requirement' => \false)));5 return array('root' => array('pretty_version' => '1.0.0+no-version-set', 'version' => '1.0.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'reference' => \NULL, 'name' => '__root__', 'dev' => \true), 'versions' => array('__root__' => array('pretty_version' => '1.0.0+no-version-set', 'version' => '1.0.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'reference' => \NULL, 'dev_requirement' => \false), 'doctrine/collections' => array('pretty_version' => '1.6.8', 'version' => '1.6.8.0', 'type' => 'library', 'install_path' => __DIR__ . '/../doctrine/collections', 'aliases' => array(), 'reference' => '1958a744696c6bb3bb0d28db2611dc11610e78af', 'dev_requirement' => \false), 'ecomailcz/ecomail' => array('pretty_version' => 'dev-add-event', 'version' => 'dev-add-event', 'type' => 'library', 'install_path' => __DIR__ . '/../ecomailcz/ecomail', 'aliases' => array(), 'reference' => '27af61dac680cdd543f7c2ba0524ae34f6cd233b', 'dev_requirement' => \false), 'monolog/monolog' => array('pretty_version' => '2.3.5', 'version' => '2.3.5.0', 'type' => 'library', 'install_path' => __DIR__ . '/../monolog/monolog', 'aliases' => array(), 'reference' => 'fd4380d6fc37626e2f799f29d91195040137eba9', 'dev_requirement' => \false), 'opis/closure' => array('pretty_version' => '3.6.2', 'version' => '3.6.2.0', 'type' => 'library', 'install_path' => __DIR__ . '/../opis/closure', 'aliases' => array(), 'reference' => '06e2ebd25f2869e54a306dda991f7db58066f7f6', 'dev_requirement' => \false), 'php-di/invoker' => array('pretty_version' => '2.3.2', 'version' => '2.3.2.0', 'type' => 'library', 'install_path' => __DIR__ . '/../php-di/invoker', 'aliases' => array(), 'reference' => '5214cbe5aad066022cd845dbf313f0e47aed928f', 'dev_requirement' => \false), 'php-di/php-di' => array('pretty_version' => '6.3.5', 'version' => '6.3.5.0', 'type' => 'library', 'install_path' => __DIR__ . '/../php-di/php-di', 'aliases' => array(), 'reference' => 'b8126d066ce144765300ee0ab040c1ed6c9ef588', 'dev_requirement' => \false), 'php-di/phpdoc-reader' => array('pretty_version' => '2.2.1', 'version' => '2.2.1.0', 'type' => 'library', 'install_path' => __DIR__ . '/../php-di/phpdoc-reader', 'aliases' => array(), 'reference' => '66daff34cbd2627740ffec9469ffbac9f8c8185c', 'dev_requirement' => \false), 'psr/container' => array('pretty_version' => '1.1.2', 'version' => '1.1.2.0', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/container', 'aliases' => array(), 'reference' => '513e0666f7216c7459170d56df27dfcefe1689ea', 'dev_requirement' => \false), 'psr/container-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '^1.0')), 'psr/log' => array('pretty_version' => '1.1.4', 'version' => '1.1.4.0', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/log', 'aliases' => array(), 'reference' => 'd49695b909c3b7628b6289db5479a1c204601f11', 'dev_requirement' => \false), 'psr/log-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0.0 || 2.0.0 || 3.0.0')), 'wpify/core' => array('pretty_version' => '5.0.x-dev', 'version' => '5.0.9999999.9999999-dev', 'type' => 'library', 'install_path' => __DIR__ . '/../wpify/core', 'aliases' => array(), 'reference' => '2e9a247de0295641918d096d78b40835e9a97b4c', 'dev_requirement' => \false), 'wpify/custom-fields' => array('pretty_version' => '2.0.4', 'version' => '2.0.4.0', 'type' => 'library', 'install_path' => __DIR__ . '/../wpify/custom-fields', 'aliases' => array(), 'reference' => '5a358e9ba05478d9fb7f780a57fc19a2bbec65a3', 'dev_requirement' => \false))); -
ecomail/tags/1.0.7/deps/psr/container/composer.json
r2620837 r2625363 19 19 ], 20 20 "require": { 21 "php": ">=7. 2.0"21 "php": ">=7.4.0" 22 22 }, 23 23 "autoload": { -
ecomail/tags/1.0.7/deps/psr/container/src/ContainerExceptionInterface.php
r2620837 r2625363 3 3 namespace EcomailDeps\Psr\Container; 4 4 5 use Throwable; 5 6 /** 6 7 * Base interface representing a generic exception in a container. 7 8 */ 8 interface ContainerExceptionInterface 9 interface ContainerExceptionInterface extends Throwable 9 10 { 10 11 } -
ecomail/tags/1.0.7/ecomail.php
r2620837 r2625363 5 5 * Plugin Name: Ecomail 6 6 * Description: Official Ecomail integration for WordPress and WooCommerce 7 * Version: 1.0. 67 * Version: 1.0.7 8 8 * Requires PHP: 7.3.0 9 9 * Requires at least: 5.3.0 -
ecomail/tags/1.0.7/readme.txt
r2620837 r2625363 6 6 Tested up to: 5.7 7 7 Requires PHP: 7.3 8 Stable tag: 1.0. 68 Stable tag: 1.0.7 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 39 39 40 40 == Changelog == 41 = 1.0.7 = 42 * Fix order line item category 41 43 42 44 = 1.0.4 - 1.0.6 = -
ecomail/tags/1.0.7/src/Models/WooOrderModel.php
r2541789 r2625363 4 4 5 5 use EcomailDeps\Wpify\Core\Abstracts\AbstractWooOrderModel; 6 use EcomailDeps\Wpify\Core\Models\WooOrderItemProductModel; 6 7 7 8 class WooOrderModel extends AbstractWooOrderModel { … … 96 97 97 98 foreach ( $this->get_line_items() as $item ) { 99 /** @var WooOrderItemProductModel $item */ 98 100 $category = ''; 99 foreach ( wp_get_post_terms( get_the_id(), 'product_cat' ) as $term ) {101 foreach ( wp_get_post_terms( $item->get_product_id(), 'product_cat' ) as $term ) { 100 102 $category = $term->name; 101 103 break; 102 104 } 105 103 106 $data['transaction_items'][] = array( 104 107 'code' => $item->get_sku() ?? $item->get_product_id(), -
ecomail/tags/1.0.7/src/Plugin.php
r2620837 r2625363 22 22 class Plugin extends AbstractPlugin { 23 23 /** Plugin version */ 24 public const VERSION = '1.0. 6';24 public const VERSION = '1.0.7'; 25 25 26 26 /** Plugin slug name */ -
ecomail/tags/1.0.7/vendor/autoload.php
r2620837 r2625363 5 5 require_once __DIR__ . '/composer/autoload_real.php'; 6 6 7 return ComposerAutoloaderInit de84ab099513b42f5d8ad1690b263db0::getLoader();7 return ComposerAutoloaderInit6da054a36b78ab1f73390161805abf5f::getLoader(); -
ecomail/tags/1.0.7/vendor/composer/InstalledVersions.php
r2620788 r2625363 25 25 class InstalledVersions 26 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 */ 27 31 private static $installed; 32 33 /** 34 * @var bool|null 35 */ 28 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 */ 29 42 private static $installedByVendor = array(); 30 43 -
ecomail/tags/1.0.7/vendor/composer/autoload_real.php
r2620837 r2625363 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit de84ab099513b42f5d8ad1690b263db05 class ComposerAutoloaderInit6da054a36b78ab1f73390161805abf5f 6 6 { 7 7 private static $loader; … … 23 23 } 24 24 25 spl_autoload_register(array('ComposerAutoloaderInit de84ab099513b42f5d8ad1690b263db0', 'loadClassLoader'), true, true);25 spl_autoload_register(array('ComposerAutoloaderInit6da054a36b78ab1f73390161805abf5f', 'loadClassLoader'), true, true); 26 26 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__))); 27 spl_autoload_unregister(array('ComposerAutoloaderInit de84ab099513b42f5d8ad1690b263db0', 'loadClassLoader'));27 spl_autoload_unregister(array('ComposerAutoloaderInit6da054a36b78ab1f73390161805abf5f', 'loadClassLoader')); 28 28 29 29 $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); … … 31 31 require __DIR__ . '/autoload_static.php'; 32 32 33 call_user_func(\Composer\Autoload\ComposerStaticInit de84ab099513b42f5d8ad1690b263db0::getInitializer($loader));33 call_user_func(\Composer\Autoload\ComposerStaticInit6da054a36b78ab1f73390161805abf5f::getInitializer($loader)); 34 34 } else { 35 35 $map = require __DIR__ . '/autoload_namespaces.php'; -
ecomail/tags/1.0.7/vendor/composer/autoload_static.php
r2620837 r2625363 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit de84ab099513b42f5d8ad1690b263db07 class ComposerStaticInit6da054a36b78ab1f73390161805abf5f 8 8 { 9 9 public static $prefixLengthsPsr4 = array ( … … 42 42 { 43 43 return \Closure::bind(function () use ($loader) { 44 $loader->prefixLengthsPsr4 = ComposerStaticInit de84ab099513b42f5d8ad1690b263db0::$prefixLengthsPsr4;45 $loader->prefixDirsPsr4 = ComposerStaticInit de84ab099513b42f5d8ad1690b263db0::$prefixDirsPsr4;46 $loader->classMap = ComposerStaticInit de84ab099513b42f5d8ad1690b263db0::$classMap;44 $loader->prefixLengthsPsr4 = ComposerStaticInit6da054a36b78ab1f73390161805abf5f::$prefixLengthsPsr4; 45 $loader->prefixDirsPsr4 = ComposerStaticInit6da054a36b78ab1f73390161805abf5f::$prefixDirsPsr4; 46 $loader->classMap = ComposerStaticInit6da054a36b78ab1f73390161805abf5f::$classMap; 47 47 48 48 }, null, ClassLoader::class); -
ecomail/tags/1.0.7/vendor/composer/installed.php
r2620837 r2625363 1 1 <?php return array( 2 2 'root' => array( 3 'pretty_version' => '1.0. 6',4 'version' => '1.0. 6.0',3 'pretty_version' => '1.0.7', 4 'version' => '1.0.7.0', 5 5 'type' => 'project', 6 6 'install_path' => __DIR__ . '/../../', 7 7 'aliases' => array(), 8 'reference' => ' 6dc6688336147db8c844985a285c1fabc70260af',8 'reference' => 'f7719ba7141243c4f7506cafacbbd4b2e902ea11', 9 9 'name' => 'ecomailcz/ecomail-woocommerce', 10 10 'dev' => false, … … 12 12 'versions' => array( 13 13 'ecomailcz/ecomail-woocommerce' => array( 14 'pretty_version' => '1.0. 6',15 'version' => '1.0. 6.0',14 'pretty_version' => '1.0.7', 15 'version' => '1.0.7.0', 16 16 'type' => 'project', 17 17 'install_path' => __DIR__ . '/../../', 18 18 'aliases' => array(), 19 'reference' => ' 6dc6688336147db8c844985a285c1fabc70260af',19 'reference' => 'f7719ba7141243c4f7506cafacbbd4b2e902ea11', 20 20 'dev_requirement' => false, 21 21 ), -
ecomail/trunk/deps/autoload.php
r2620837 r2625363 5 5 require_once __DIR__ . '/composer/autoload_real.php'; 6 6 7 return ComposerAutoloaderInit d984079cf7b2e02205fb06e5dbb65c4d::getLoader();7 return ComposerAutoloaderInit05f1df44fe6002fc6b7a3c25927fbd41::getLoader(); -
ecomail/trunk/deps/composer/InstalledVersions.php
r2620837 r2625363 23 23 class InstalledVersions 24 24 { 25 /** 26 * @var mixed[]|null 27 * @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 28 */ 25 29 private static $installed; 30 /** 31 * @var bool|null 32 */ 26 33 private static $canGetVendors; 34 /** 35 * @var array[] 36 * @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}>}> 37 */ 27 38 private static $installedByVendor = array(); 28 39 /** -
ecomail/trunk/deps/composer/autoload_real.php
r2620837 r2625363 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit d984079cf7b2e02205fb06e5dbb65c4d5 class ComposerAutoloaderInit05f1df44fe6002fc6b7a3c25927fbd41 6 6 { 7 7 private static $loader; … … 23 23 } 24 24 25 spl_autoload_register(array('ComposerAutoloaderInit d984079cf7b2e02205fb06e5dbb65c4d', 'loadClassLoader'), true, true);25 spl_autoload_register(array('ComposerAutoloaderInit05f1df44fe6002fc6b7a3c25927fbd41', 'loadClassLoader'), true, true); 26 26 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__))); 27 spl_autoload_unregister(array('ComposerAutoloaderInit d984079cf7b2e02205fb06e5dbb65c4d', 'loadClassLoader'));27 spl_autoload_unregister(array('ComposerAutoloaderInit05f1df44fe6002fc6b7a3c25927fbd41', 'loadClassLoader')); 28 28 29 29 $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); … … 31 31 require __DIR__ . '/autoload_static.php'; 32 32 33 call_user_func(\Composer\Autoload\ComposerStaticInit d984079cf7b2e02205fb06e5dbb65c4d::getInitializer($loader));33 call_user_func(\Composer\Autoload\ComposerStaticInit05f1df44fe6002fc6b7a3c25927fbd41::getInitializer($loader)); 34 34 } else { 35 35 $map = require __DIR__ . '/autoload_namespaces.php'; … … 52 52 53 53 if ($useStaticLoader) { 54 $includeFiles = Composer\Autoload\ComposerStaticInit d984079cf7b2e02205fb06e5dbb65c4d::$files;54 $includeFiles = Composer\Autoload\ComposerStaticInit05f1df44fe6002fc6b7a3c25927fbd41::$files; 55 55 } else { 56 56 $includeFiles = require __DIR__ . '/autoload_files.php'; 57 57 } 58 58 foreach ($includeFiles as $fileIdentifier => $file) { 59 composerRequire d984079cf7b2e02205fb06e5dbb65c4d($fileIdentifier, $file);59 composerRequire05f1df44fe6002fc6b7a3c25927fbd41($fileIdentifier, $file); 60 60 } 61 61 … … 64 64 } 65 65 66 function composerRequire d984079cf7b2e02205fb06e5dbb65c4d($fileIdentifier, $file)66 function composerRequire05f1df44fe6002fc6b7a3c25927fbd41($fileIdentifier, $file) 67 67 { 68 68 if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { -
ecomail/trunk/deps/composer/autoload_static.php
r2620837 r2625363 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit d984079cf7b2e02205fb06e5dbb65c4d7 class ComposerStaticInit05f1df44fe6002fc6b7a3c25927fbd41 8 8 { 9 9 public static $files = array ( … … 379 379 { 380 380 return \Closure::bind(function () use ($loader) { 381 $loader->prefixLengthsPsr4 = ComposerStaticInit d984079cf7b2e02205fb06e5dbb65c4d::$prefixLengthsPsr4;382 $loader->prefixDirsPsr4 = ComposerStaticInit d984079cf7b2e02205fb06e5dbb65c4d::$prefixDirsPsr4;383 $loader->classMap = ComposerStaticInit d984079cf7b2e02205fb06e5dbb65c4d::$classMap;381 $loader->prefixLengthsPsr4 = ComposerStaticInit05f1df44fe6002fc6b7a3c25927fbd41::$prefixLengthsPsr4; 382 $loader->prefixDirsPsr4 = ComposerStaticInit05f1df44fe6002fc6b7a3c25927fbd41::$prefixDirsPsr4; 383 $loader->classMap = ComposerStaticInit05f1df44fe6002fc6b7a3c25927fbd41::$classMap; 384 384 385 385 }, null, ClassLoader::class); -
ecomail/trunk/deps/composer/installed.json
r2620837 r2625363 488 488 { 489 489 "name": "psr\/container", 490 "version": "1.1. 1",491 "version_normalized": "1.1. 1.0",490 "version": "1.1.2", 491 "version_normalized": "1.1.2.0", 492 492 "source": { 493 493 "type": "git", 494 494 "url": "https:\/\/github.com\/php-fig\/container.git", 495 "reference": " 8622567409010282b7aeebe4bb841fe98b58dcaf"496 }, 497 "dist": { 498 "type": "zip", 499 "url": "https:\/\/api.github.com\/repos\/php-fig\/container\/zipball\/ 8622567409010282b7aeebe4bb841fe98b58dcaf",500 "reference": " 8622567409010282b7aeebe4bb841fe98b58dcaf",501 "shasum": "" 502 }, 503 "require": { 504 "php": ">=7. 2.0"505 }, 506 "time": "2021- 03-05T17:36:06+00:00",495 "reference": "513e0666f7216c7459170d56df27dfcefe1689ea" 496 }, 497 "dist": { 498 "type": "zip", 499 "url": "https:\/\/api.github.com\/repos\/php-fig\/container\/zipball\/513e0666f7216c7459170d56df27dfcefe1689ea", 500 "reference": "513e0666f7216c7459170d56df27dfcefe1689ea", 501 "shasum": "" 502 }, 503 "require": { 504 "php": ">=7.4.0" 505 }, 506 "time": "2021-11-05T16:50:12+00:00", 507 507 "type": "library", 508 508 "installation-source": "dist", … … 533 533 "support": { 534 534 "issues": "https:\/\/github.com\/php-fig\/container\/issues", 535 "source": "https:\/\/github.com\/php-fig\/container\/tree\/1.1. 1"535 "source": "https:\/\/github.com\/php-fig\/container\/tree\/1.1.2" 536 536 }, 537 537 "install-path": "..\/psr\/container" -
ecomail/trunk/deps/composer/installed.php
r2620837 r2625363 3 3 namespace EcomailDeps; 4 4 5 return array('root' => array('pretty_version' => '1.0.0+no-version-set', 'version' => '1.0.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'reference' => \NULL, 'name' => '__root__', 'dev' => \true), 'versions' => array('__root__' => array('pretty_version' => '1.0.0+no-version-set', 'version' => '1.0.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'reference' => \NULL, 'dev_requirement' => \false), 'doctrine/collections' => array('pretty_version' => '1.6.8', 'version' => '1.6.8.0', 'type' => 'library', 'install_path' => __DIR__ . '/../doctrine/collections', 'aliases' => array(), 'reference' => '1958a744696c6bb3bb0d28db2611dc11610e78af', 'dev_requirement' => \false), 'ecomailcz/ecomail' => array('pretty_version' => 'dev-add-event', 'version' => 'dev-add-event', 'type' => 'library', 'install_path' => __DIR__ . '/../ecomailcz/ecomail', 'aliases' => array(), 'reference' => '27af61dac680cdd543f7c2ba0524ae34f6cd233b', 'dev_requirement' => \false), 'monolog/monolog' => array('pretty_version' => '2.3.5', 'version' => '2.3.5.0', 'type' => 'library', 'install_path' => __DIR__ . '/../monolog/monolog', 'aliases' => array(), 'reference' => 'fd4380d6fc37626e2f799f29d91195040137eba9', 'dev_requirement' => \false), 'opis/closure' => array('pretty_version' => '3.6.2', 'version' => '3.6.2.0', 'type' => 'library', 'install_path' => __DIR__ . '/../opis/closure', 'aliases' => array(), 'reference' => '06e2ebd25f2869e54a306dda991f7db58066f7f6', 'dev_requirement' => \false), 'php-di/invoker' => array('pretty_version' => '2.3.2', 'version' => '2.3.2.0', 'type' => 'library', 'install_path' => __DIR__ . '/../php-di/invoker', 'aliases' => array(), 'reference' => '5214cbe5aad066022cd845dbf313f0e47aed928f', 'dev_requirement' => \false), 'php-di/php-di' => array('pretty_version' => '6.3.5', 'version' => '6.3.5.0', 'type' => 'library', 'install_path' => __DIR__ . '/../php-di/php-di', 'aliases' => array(), 'reference' => 'b8126d066ce144765300ee0ab040c1ed6c9ef588', 'dev_requirement' => \false), 'php-di/phpdoc-reader' => array('pretty_version' => '2.2.1', 'version' => '2.2.1.0', 'type' => 'library', 'install_path' => __DIR__ . '/../php-di/phpdoc-reader', 'aliases' => array(), 'reference' => '66daff34cbd2627740ffec9469ffbac9f8c8185c', 'dev_requirement' => \false), 'psr/container' => array('pretty_version' => '1.1. 1', 'version' => '1.1.1.0', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/container', 'aliases' => array(), 'reference' => '8622567409010282b7aeebe4bb841fe98b58dcaf', 'dev_requirement' => \false), 'psr/container-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '^1.0')), 'psr/log' => array('pretty_version' => '1.1.4', 'version' => '1.1.4.0', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/log', 'aliases' => array(), 'reference' => 'd49695b909c3b7628b6289db5479a1c204601f11', 'dev_requirement' => \false), 'psr/log-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0.0 || 2.0.0 || 3.0.0')), 'wpify/core' => array('pretty_version' => '5.0.x-dev', 'version' => '5.0.9999999.9999999-dev', 'type' => 'library', 'install_path' => __DIR__ . '/../wpify/core', 'aliases' => array(), 'reference' => '2e9a247de0295641918d096d78b40835e9a97b4c', 'dev_requirement' => \false), 'wpify/custom-fields' => array('pretty_version' => '2.0.4', 'version' => '2.0.4.0', 'type' => 'library', 'install_path' => __DIR__ . '/../wpify/custom-fields', 'aliases' => array(), 'reference' => '5a358e9ba05478d9fb7f780a57fc19a2bbec65a3', 'dev_requirement' => \false)));5 return array('root' => array('pretty_version' => '1.0.0+no-version-set', 'version' => '1.0.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'reference' => \NULL, 'name' => '__root__', 'dev' => \true), 'versions' => array('__root__' => array('pretty_version' => '1.0.0+no-version-set', 'version' => '1.0.0.0', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'reference' => \NULL, 'dev_requirement' => \false), 'doctrine/collections' => array('pretty_version' => '1.6.8', 'version' => '1.6.8.0', 'type' => 'library', 'install_path' => __DIR__ . '/../doctrine/collections', 'aliases' => array(), 'reference' => '1958a744696c6bb3bb0d28db2611dc11610e78af', 'dev_requirement' => \false), 'ecomailcz/ecomail' => array('pretty_version' => 'dev-add-event', 'version' => 'dev-add-event', 'type' => 'library', 'install_path' => __DIR__ . '/../ecomailcz/ecomail', 'aliases' => array(), 'reference' => '27af61dac680cdd543f7c2ba0524ae34f6cd233b', 'dev_requirement' => \false), 'monolog/monolog' => array('pretty_version' => '2.3.5', 'version' => '2.3.5.0', 'type' => 'library', 'install_path' => __DIR__ . '/../monolog/monolog', 'aliases' => array(), 'reference' => 'fd4380d6fc37626e2f799f29d91195040137eba9', 'dev_requirement' => \false), 'opis/closure' => array('pretty_version' => '3.6.2', 'version' => '3.6.2.0', 'type' => 'library', 'install_path' => __DIR__ . '/../opis/closure', 'aliases' => array(), 'reference' => '06e2ebd25f2869e54a306dda991f7db58066f7f6', 'dev_requirement' => \false), 'php-di/invoker' => array('pretty_version' => '2.3.2', 'version' => '2.3.2.0', 'type' => 'library', 'install_path' => __DIR__ . '/../php-di/invoker', 'aliases' => array(), 'reference' => '5214cbe5aad066022cd845dbf313f0e47aed928f', 'dev_requirement' => \false), 'php-di/php-di' => array('pretty_version' => '6.3.5', 'version' => '6.3.5.0', 'type' => 'library', 'install_path' => __DIR__ . '/../php-di/php-di', 'aliases' => array(), 'reference' => 'b8126d066ce144765300ee0ab040c1ed6c9ef588', 'dev_requirement' => \false), 'php-di/phpdoc-reader' => array('pretty_version' => '2.2.1', 'version' => '2.2.1.0', 'type' => 'library', 'install_path' => __DIR__ . '/../php-di/phpdoc-reader', 'aliases' => array(), 'reference' => '66daff34cbd2627740ffec9469ffbac9f8c8185c', 'dev_requirement' => \false), 'psr/container' => array('pretty_version' => '1.1.2', 'version' => '1.1.2.0', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/container', 'aliases' => array(), 'reference' => '513e0666f7216c7459170d56df27dfcefe1689ea', 'dev_requirement' => \false), 'psr/container-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '^1.0')), 'psr/log' => array('pretty_version' => '1.1.4', 'version' => '1.1.4.0', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/log', 'aliases' => array(), 'reference' => 'd49695b909c3b7628b6289db5479a1c204601f11', 'dev_requirement' => \false), 'psr/log-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0.0 || 2.0.0 || 3.0.0')), 'wpify/core' => array('pretty_version' => '5.0.x-dev', 'version' => '5.0.9999999.9999999-dev', 'type' => 'library', 'install_path' => __DIR__ . '/../wpify/core', 'aliases' => array(), 'reference' => '2e9a247de0295641918d096d78b40835e9a97b4c', 'dev_requirement' => \false), 'wpify/custom-fields' => array('pretty_version' => '2.0.4', 'version' => '2.0.4.0', 'type' => 'library', 'install_path' => __DIR__ . '/../wpify/custom-fields', 'aliases' => array(), 'reference' => '5a358e9ba05478d9fb7f780a57fc19a2bbec65a3', 'dev_requirement' => \false))); -
ecomail/trunk/deps/psr/container/composer.json
r2620837 r2625363 19 19 ], 20 20 "require": { 21 "php": ">=7. 2.0"21 "php": ">=7.4.0" 22 22 }, 23 23 "autoload": { -
ecomail/trunk/deps/psr/container/src/ContainerExceptionInterface.php
r2620837 r2625363 3 3 namespace EcomailDeps\Psr\Container; 4 4 5 use Throwable; 5 6 /** 6 7 * Base interface representing a generic exception in a container. 7 8 */ 8 interface ContainerExceptionInterface 9 interface ContainerExceptionInterface extends Throwable 9 10 { 10 11 } -
ecomail/trunk/ecomail.php
r2620837 r2625363 5 5 * Plugin Name: Ecomail 6 6 * Description: Official Ecomail integration for WordPress and WooCommerce 7 * Version: 1.0. 67 * Version: 1.0.7 8 8 * Requires PHP: 7.3.0 9 9 * Requires at least: 5.3.0 -
ecomail/trunk/readme.txt
r2620837 r2625363 6 6 Tested up to: 5.7 7 7 Requires PHP: 7.3 8 Stable tag: 1.0. 68 Stable tag: 1.0.7 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 39 39 40 40 == Changelog == 41 = 1.0.7 = 42 * Fix order line item category 41 43 42 44 = 1.0.4 - 1.0.6 = -
ecomail/trunk/src/Models/WooOrderModel.php
r2541789 r2625363 4 4 5 5 use EcomailDeps\Wpify\Core\Abstracts\AbstractWooOrderModel; 6 use EcomailDeps\Wpify\Core\Models\WooOrderItemProductModel; 6 7 7 8 class WooOrderModel extends AbstractWooOrderModel { … … 96 97 97 98 foreach ( $this->get_line_items() as $item ) { 99 /** @var WooOrderItemProductModel $item */ 98 100 $category = ''; 99 foreach ( wp_get_post_terms( get_the_id(), 'product_cat' ) as $term ) {101 foreach ( wp_get_post_terms( $item->get_product_id(), 'product_cat' ) as $term ) { 100 102 $category = $term->name; 101 103 break; 102 104 } 105 103 106 $data['transaction_items'][] = array( 104 107 'code' => $item->get_sku() ?? $item->get_product_id(), -
ecomail/trunk/src/Plugin.php
r2620837 r2625363 22 22 class Plugin extends AbstractPlugin { 23 23 /** Plugin version */ 24 public const VERSION = '1.0. 6';24 public const VERSION = '1.0.7'; 25 25 26 26 /** Plugin slug name */ -
ecomail/trunk/vendor/autoload.php
r2620837 r2625363 5 5 require_once __DIR__ . '/composer/autoload_real.php'; 6 6 7 return ComposerAutoloaderInit de84ab099513b42f5d8ad1690b263db0::getLoader();7 return ComposerAutoloaderInit6da054a36b78ab1f73390161805abf5f::getLoader(); -
ecomail/trunk/vendor/composer/InstalledVersions.php
r2620788 r2625363 25 25 class InstalledVersions 26 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 */ 27 31 private static $installed; 32 33 /** 34 * @var bool|null 35 */ 28 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 */ 29 42 private static $installedByVendor = array(); 30 43 -
ecomail/trunk/vendor/composer/autoload_real.php
r2620837 r2625363 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit de84ab099513b42f5d8ad1690b263db05 class ComposerAutoloaderInit6da054a36b78ab1f73390161805abf5f 6 6 { 7 7 private static $loader; … … 23 23 } 24 24 25 spl_autoload_register(array('ComposerAutoloaderInit de84ab099513b42f5d8ad1690b263db0', 'loadClassLoader'), true, true);25 spl_autoload_register(array('ComposerAutoloaderInit6da054a36b78ab1f73390161805abf5f', 'loadClassLoader'), true, true); 26 26 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__))); 27 spl_autoload_unregister(array('ComposerAutoloaderInit de84ab099513b42f5d8ad1690b263db0', 'loadClassLoader'));27 spl_autoload_unregister(array('ComposerAutoloaderInit6da054a36b78ab1f73390161805abf5f', 'loadClassLoader')); 28 28 29 29 $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); … … 31 31 require __DIR__ . '/autoload_static.php'; 32 32 33 call_user_func(\Composer\Autoload\ComposerStaticInit de84ab099513b42f5d8ad1690b263db0::getInitializer($loader));33 call_user_func(\Composer\Autoload\ComposerStaticInit6da054a36b78ab1f73390161805abf5f::getInitializer($loader)); 34 34 } else { 35 35 $map = require __DIR__ . '/autoload_namespaces.php'; -
ecomail/trunk/vendor/composer/autoload_static.php
r2620837 r2625363 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit de84ab099513b42f5d8ad1690b263db07 class ComposerStaticInit6da054a36b78ab1f73390161805abf5f 8 8 { 9 9 public static $prefixLengthsPsr4 = array ( … … 42 42 { 43 43 return \Closure::bind(function () use ($loader) { 44 $loader->prefixLengthsPsr4 = ComposerStaticInit de84ab099513b42f5d8ad1690b263db0::$prefixLengthsPsr4;45 $loader->prefixDirsPsr4 = ComposerStaticInit de84ab099513b42f5d8ad1690b263db0::$prefixDirsPsr4;46 $loader->classMap = ComposerStaticInit de84ab099513b42f5d8ad1690b263db0::$classMap;44 $loader->prefixLengthsPsr4 = ComposerStaticInit6da054a36b78ab1f73390161805abf5f::$prefixLengthsPsr4; 45 $loader->prefixDirsPsr4 = ComposerStaticInit6da054a36b78ab1f73390161805abf5f::$prefixDirsPsr4; 46 $loader->classMap = ComposerStaticInit6da054a36b78ab1f73390161805abf5f::$classMap; 47 47 48 48 }, null, ClassLoader::class); -
ecomail/trunk/vendor/composer/installed.php
r2620837 r2625363 1 1 <?php return array( 2 2 'root' => array( 3 'pretty_version' => '1.0. 6',4 'version' => '1.0. 6.0',3 'pretty_version' => '1.0.7', 4 'version' => '1.0.7.0', 5 5 'type' => 'project', 6 6 'install_path' => __DIR__ . '/../../', 7 7 'aliases' => array(), 8 'reference' => ' 6dc6688336147db8c844985a285c1fabc70260af',8 'reference' => 'f7719ba7141243c4f7506cafacbbd4b2e902ea11', 9 9 'name' => 'ecomailcz/ecomail-woocommerce', 10 10 'dev' => false, … … 12 12 'versions' => array( 13 13 'ecomailcz/ecomail-woocommerce' => array( 14 'pretty_version' => '1.0. 6',15 'version' => '1.0. 6.0',14 'pretty_version' => '1.0.7', 15 'version' => '1.0.7.0', 16 16 'type' => 'project', 17 17 'install_path' => __DIR__ . '/../../', 18 18 'aliases' => array(), 19 'reference' => ' 6dc6688336147db8c844985a285c1fabc70260af',19 'reference' => 'f7719ba7141243c4f7506cafacbbd4b2e902ea11', 20 20 'dev_requirement' => false, 21 21 ),
Note: See TracChangeset
for help on using the changeset viewer.