first commit

This commit is contained in:
2024-07-15 11:28:08 +02:00
commit f52d538ea5
21891 changed files with 6161164 additions and 0 deletions

View File

@@ -0,0 +1,445 @@
<?php
/*
* This file is part of Composer.
*
* (c) Nils Adermann <naderman@naderman.de>
* Jordi Boggiano <j.boggiano@seld.be>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace WbsVendors\Composer\Autoload;
/**
* ClassLoader implements a PSR-0, PSR-4 and classmap class loader.
*
* $loader = new \Composer\Autoload\ClassLoader();
*
* // register classes with namespaces
* $loader->add('Symfony\Component', __DIR__.'/component');
* $loader->add('Symfony', __DIR__.'/framework');
*
* // activate the autoloader
* $loader->register();
*
* // to enable searching the include path (eg. for PEAR packages)
* $loader->setUseIncludePath(true);
*
* In this example, if you try to use a class in the Symfony\Component
* namespace or one of its children (Symfony\Component\Console for instance),
* the autoloader will first look for the class under the component/
* directory, and it will then fallback to the framework/ directory if not
* found before giving up.
*
* This class is loosely based on the Symfony UniversalClassLoader.
*
* @author Fabien Potencier <fabien@symfony.com>
* @author Jordi Boggiano <j.boggiano@seld.be>
* @see http://www.php-fig.org/psr/psr-0/
* @see http://www.php-fig.org/psr/psr-4/
*/
class ClassLoader
{
// PSR-4
private $prefixLengthsPsr4 = array();
private $prefixDirsPsr4 = array();
private $fallbackDirsPsr4 = array();
// PSR-0
private $prefixesPsr0 = array();
private $fallbackDirsPsr0 = array();
private $useIncludePath = false;
private $classMap = array();
private $classMapAuthoritative = false;
private $missingClasses = array();
private $apcuPrefix;
public function getPrefixes()
{
if (!empty($this->prefixesPsr0)) {
return call_user_func_array('array_merge', $this->prefixesPsr0);
}
return array();
}
public function getPrefixesPsr4()
{
return $this->prefixDirsPsr4;
}
public function getFallbackDirs()
{
return $this->fallbackDirsPsr0;
}
public function getFallbackDirsPsr4()
{
return $this->fallbackDirsPsr4;
}
public function getClassMap()
{
return $this->classMap;
}
/**
* @param array $classMap Class to filename map
*/
public function addClassMap(array $classMap)
{
if ($this->classMap) {
$this->classMap = array_merge($this->classMap, $classMap);
} else {
$this->classMap = $classMap;
}
}
/**
* Registers a set of PSR-0 directories for a given prefix, either
* appending or prepending to the ones previously set for this prefix.
*
* @param string $prefix The prefix
* @param array|string $paths The PSR-0 root directories
* @param bool $prepend Whether to prepend the directories
*/
public function add($prefix, $paths, $prepend = false)
{
if (!$prefix) {
if ($prepend) {
$this->fallbackDirsPsr0 = array_merge(
(array) $paths,
$this->fallbackDirsPsr0
);
} else {
$this->fallbackDirsPsr0 = array_merge(
$this->fallbackDirsPsr0,
(array) $paths
);
}
return;
}
$first = $prefix[0];
if (!isset($this->prefixesPsr0[$first][$prefix])) {
$this->prefixesPsr0[$first][$prefix] = (array) $paths;
return;
}
if ($prepend) {
$this->prefixesPsr0[$first][$prefix] = array_merge(
(array) $paths,
$this->prefixesPsr0[$first][$prefix]
);
} else {
$this->prefixesPsr0[$first][$prefix] = array_merge(
$this->prefixesPsr0[$first][$prefix],
(array) $paths
);
}
}
/**
* Registers a set of PSR-4 directories for a given namespace, either
* appending or prepending to the ones previously set for this namespace.
*
* @param string $prefix The prefix/namespace, with trailing '\\'
* @param array|string $paths The PSR-4 base directories
* @param bool $prepend Whether to prepend the directories
*
* @throws \InvalidArgumentException
*/
public function addPsr4($prefix, $paths, $prepend = false)
{
if (!$prefix) {
// Register directories for the root namespace.
if ($prepend) {
$this->fallbackDirsPsr4 = array_merge(
(array) $paths,
$this->fallbackDirsPsr4
);
} else {
$this->fallbackDirsPsr4 = array_merge(
$this->fallbackDirsPsr4,
(array) $paths
);
}
} elseif (!isset($this->prefixDirsPsr4[$prefix])) {
// Register directories for a new namespace.
$length = strlen($prefix);
if ('\\' !== $prefix[$length - 1]) {
throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");
}
$this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
$this->prefixDirsPsr4[$prefix] = (array) $paths;
} elseif ($prepend) {
// Prepend directories for an already registered namespace.
$this->prefixDirsPsr4[$prefix] = array_merge(
(array) $paths,
$this->prefixDirsPsr4[$prefix]
);
} else {
// Append directories for an already registered namespace.
$this->prefixDirsPsr4[$prefix] = array_merge(
$this->prefixDirsPsr4[$prefix],
(array) $paths
);
}
}
/**
* Registers a set of PSR-0 directories for a given prefix,
* replacing any others previously set for this prefix.
*
* @param string $prefix The prefix
* @param array|string $paths The PSR-0 base directories
*/
public function set($prefix, $paths)
{
if (!$prefix) {
$this->fallbackDirsPsr0 = (array) $paths;
} else {
$this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths;
}
}
/**
* Registers a set of PSR-4 directories for a given namespace,
* replacing any others previously set for this namespace.
*
* @param string $prefix The prefix/namespace, with trailing '\\'
* @param array|string $paths The PSR-4 base directories
*
* @throws \InvalidArgumentException
*/
public function setPsr4($prefix, $paths)
{
if (!$prefix) {
$this->fallbackDirsPsr4 = (array) $paths;
} else {
$length = strlen($prefix);
if ('\\' !== $prefix[$length - 1]) {
throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");
}
$this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
$this->prefixDirsPsr4[$prefix] = (array) $paths;
}
}
/**
* Turns on searching the include path for class files.
*
* @param bool $useIncludePath
*/
public function setUseIncludePath($useIncludePath)
{
$this->useIncludePath = $useIncludePath;
}
/**
* Can be used to check if the autoloader uses the include path to check
* for classes.
*
* @return bool
*/
public function getUseIncludePath()
{
return $this->useIncludePath;
}
/**
* Turns off searching the prefix and fallback directories for classes
* that have not been registered with the class map.
*
* @param bool $classMapAuthoritative
*/
public function setClassMapAuthoritative($classMapAuthoritative)
{
$this->classMapAuthoritative = $classMapAuthoritative;
}
/**
* Should class lookup fail if not found in the current class map?
*
* @return bool
*/
public function isClassMapAuthoritative()
{
return $this->classMapAuthoritative;
}
/**
* APCu prefix to use to cache found/not-found classes, if the extension is enabled.
*
* @param string|null $apcuPrefix
*/
public function setApcuPrefix($apcuPrefix)
{
$this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null;
}
/**
* The APCu prefix in use, or null if APCu caching is not enabled.
*
* @return string|null
*/
public function getApcuPrefix()
{
return $this->apcuPrefix;
}
/**
* Registers this instance as an autoloader.
*
* @param bool $prepend Whether to prepend the autoloader or not
*/
public function register($prepend = false)
{
spl_autoload_register(array($this, 'loadClass'), true, $prepend);
}
/**
* Unregisters this instance as an autoloader.
*/
public function unregister()
{
spl_autoload_unregister(array($this, 'loadClass'));
}
/**
* Loads the given class or interface.
*
* @param string $class The name of the class
* @return bool|null True if loaded, null otherwise
*/
public function loadClass($class)
{
if ($file = $this->findFile($class)) {
includeFile($file);
return true;
}
}
/**
* Finds the path to the file where the class is defined.
*
* @param string $class The name of the class
*
* @return string|false The path if found, false otherwise
*/
public function findFile($class)
{
// class map lookup
if (isset($this->classMap[$class])) {
return $this->classMap[$class];
}
if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) {
return false;
}
if (null !== $this->apcuPrefix) {
$file = apcu_fetch($this->apcuPrefix.$class, $hit);
if ($hit) {
return $file;
}
}
$file = $this->findFileWithExtension($class, '.php');
// Search for Hack files if we are running on HHVM
if (false === $file && defined('HHVM_VERSION')) {
$file = $this->findFileWithExtension($class, '.hh');
}
if (null !== $this->apcuPrefix) {
apcu_add($this->apcuPrefix.$class, $file);
}
if (false === $file) {
// Remember that this class does not exist.
$this->missingClasses[$class] = true;
}
return $file;
}
private function findFileWithExtension($class, $ext)
{
// PSR-4 lookup
$logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext;
$first = $class[0];
if (isset($this->prefixLengthsPsr4[$first])) {
$subPath = $class;
while (false !== $lastPos = strrpos($subPath, '\\')) {
$subPath = substr($subPath, 0, $lastPos);
$search = $subPath . '\\';
if (isset($this->prefixDirsPsr4[$search])) {
$pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1);
foreach ($this->prefixDirsPsr4[$search] as $dir) {
if (file_exists($file = $dir . $pathEnd)) {
return $file;
}
}
}
}
}
// PSR-4 fallback dirs
foreach ($this->fallbackDirsPsr4 as $dir) {
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) {
return $file;
}
}
// PSR-0 lookup
if (false !== $pos = strrpos($class, '\\')) {
// namespaced class name
$logicalPathPsr0 = substr($logicalPathPsr4, 0, $pos + 1)
. strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR);
} else {
// PEAR-like class name
$logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext;
}
if (isset($this->prefixesPsr0[$first])) {
foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) {
if (0 === strpos($class, $prefix)) {
foreach ($dirs as $dir) {
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
return $file;
}
}
}
}
}
// PSR-0 fallback dirs
foreach ($this->fallbackDirsPsr0 as $dir) {
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
return $file;
}
}
// PSR-0 include paths.
if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) {
return $file;
}
return false;
}
}
/**
* Scope isolated include.
*
* Prevents access to $this/self from included files.
*/
function includeFile($file)
{
include $file;
}

View File

@@ -0,0 +1,17 @@
<?php
// autoload_classmap.php @generated by Composer
$vendorDir = dirname(dirname(__FILE__));
$baseDir = dirname($vendorDir);
return array(
'WbsVendors\\Deferred\\Deferred' => $vendorDir . '/dangoodman/deferred/Deferred.php',
'WbsVendors\\Dgm\\Arrays\\Arrays' => $vendorDir . '/dangoodman/arrays/Arrays.php',
'WbsVendors\\Dgm\\ClassNameAware\\ClassNameAware' => $vendorDir . '/dangoodman/class-name-aware/ClassNameAware.php',
'WbsVendors\\Dgm\\SimpleProperties\\SimpleProperties' => $vendorDir . '/dangoodman/simple-properties/SimpleProperties.php',
'WbsVendors\\Dgm\\WcTools\\WcTools' => $vendorDir . '/dangoodman/wc-tools/WcTools.php',
'WbsVendors_DgmWpDismissibleNotices' => $vendorDir . '/dangoodman/wp-plugin-bootstrap-guard/DgmWpDismissibleNotices.php',
'WbsVendors_DgmWpPluginBootstrapGuard' => $vendorDir . '/dangoodman/wp-plugin-bootstrap-guard/DgmWpPluginBootstrapGuard.php',
'wbs' => $baseDir . '/wbs.php',
);

View File

@@ -0,0 +1,10 @@
<?php
// autoload_files.php @generated by Composer
$vendorDir = dirname(dirname(__FILE__));
$baseDir = dirname($vendorDir);
return array(
'b411d774a68934fe83360f73e6fe640f' => $vendorDir . '/dangoodman/composer-capsule-runtime/autoload.php',
);

View File

@@ -0,0 +1,9 @@
<?php
// autoload_namespaces.php @generated by Composer
$vendorDir = dirname(dirname(__FILE__));
$baseDir = dirname($vendorDir);
return array(
);

View File

@@ -0,0 +1,19 @@
<?php
// autoload_psr4.php @generated by Composer
$vendorDir = dirname(dirname(__FILE__));
$baseDir = dirname($vendorDir);
return array(
'Wbs\\' => array($baseDir . '/src'),
'WbsVendors\\Dgm\\Shengine\\Woocommerce\\Model\\Item\\' => array($vendorDir . '/dangoodman/shengine-wc-item/src'),
'WbsVendors\\Dgm\\Shengine\\Woocommerce\\Converters\\' => array($vendorDir . '/dangoodman/shengine-wc-converters/src'),
'WbsVendors\\Dgm\\Shengine\\Migrations\\' => array($vendorDir . '/dangoodman/shengine-migrations/src'),
'WbsVendors\\Dgm\\Shengine\\' => array($vendorDir . '/dangoodman/shengine/src'),
'WbsVendors\\Dgm\\Range\\' => array($vendorDir . '/dangoodman/range/src'),
'WbsVendors\\Dgm\\PluginServices\\' => array($vendorDir . '/dangoodman/wp-plugin-services/src'),
'WbsVendors\\Dgm\\NumberUnit\\' => array($vendorDir . '/dangoodman/number-unit/src'),
'WbsVendors\\Dgm\\Comparator\\' => array($vendorDir . '/dangoodman/comparator/src'),
'WbsVendors\\BoxPacking\\' => array($vendorDir . '/dangoodman/boxpacking/src'),
);

View File

@@ -0,0 +1,70 @@
<?php
// autoload_real.php @generated by Composer
class WbsVendors_ComposerAutoloaderInit1ef25787cb7c3885f7c08ca2bea15684
{
private static $loader;
public static function loadClassLoader($class)
{
if ('WbsVendors\Composer\Autoload\ClassLoader' === $class) {
require __DIR__ . '/ClassLoader.php';
}
}
public static function getLoader()
{
if (null !== self::$loader) {
return self::$loader;
}
spl_autoload_register(array('WbsVendors_ComposerAutoloaderInit1ef25787cb7c3885f7c08ca2bea15684', 'loadClassLoader'), true, true);
self::$loader = $loader = new \WbsVendors\Composer\Autoload\ClassLoader();
spl_autoload_unregister(array('WbsVendors_ComposerAutoloaderInit1ef25787cb7c3885f7c08ca2bea15684', 'loadClassLoader'));
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
if ($useStaticLoader) {
require_once __DIR__ . '/autoload_static.php';
call_user_func(\WbsVendors\Composer\Autoload\ComposerStaticInit1ef25787cb7c3885f7c08ca2bea15684::getInitializer($loader));
} else {
$map = require __DIR__ . '/autoload_namespaces.php';
foreach ($map as $namespace => $path) {
$loader->set($namespace, $path);
}
$map = require __DIR__ . '/autoload_psr4.php';
foreach ($map as $namespace => $path) {
$loader->setPsr4($namespace, $path);
}
$classMap = require __DIR__ . '/autoload_classmap.php';
if ($classMap) {
$loader->addClassMap($classMap);
}
}
$loader->register(true);
if ($useStaticLoader) {
$includeFiles = \WbsVendors\Composer\Autoload\ComposerStaticInit1ef25787cb7c3885f7c08ca2bea15684::$files;
} else {
$includeFiles = require __DIR__ . '/autoload_files.php';
}
foreach ($includeFiles as $fileIdentifier => $file) {
composerRequire1ef25787cb7c3885f7c08ca2bea15684($fileIdentifier, $file);
}
return $loader;
}
}
function composerRequire1ef25787cb7c3885f7c08ca2bea15684($fileIdentifier, $file)
{
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
require $file;
$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
}
}

View File

@@ -0,0 +1,92 @@
<?php
// autoload_static.php @generated by Composer
namespace WbsVendors\Composer\Autoload;
class ComposerStaticInit1ef25787cb7c3885f7c08ca2bea15684
{
public static $files = array (
'b411d774a68934fe83360f73e6fe640f' => __DIR__ . '/..' . '/dangoodman/composer-capsule-runtime/autoload.php',
);
public static $prefixLengthsPsr4 = array (
'W' =>
array (
'Wbs\\' => 4,
'WbsVendors\\Dgm\\Shengine\\Woocommerce\\Model\\Item\\' => 47,
'WbsVendors\\Dgm\\Shengine\\Woocommerce\\Converters\\' => 47,
'WbsVendors\\Dgm\\Shengine\\Migrations\\' => 35,
'WbsVendors\\Dgm\\Shengine\\' => 24,
'WbsVendors\\Dgm\\Range\\' => 21,
'WbsVendors\\Dgm\\PluginServices\\' => 30,
'WbsVendors\\Dgm\\NumberUnit\\' => 26,
'WbsVendors\\Dgm\\Comparator\\' => 26,
'WbsVendors\\BoxPacking\\' => 22,
),
);
public static $prefixDirsPsr4 = array (
'Wbs\\' =>
array (
0 => __DIR__ . '/../..' . '/src',
),
'WbsVendors\\Dgm\\Shengine\\Woocommerce\\Model\\Item\\' =>
array (
0 => __DIR__ . '/..' . '/dangoodman/shengine-wc-item/src',
),
'WbsVendors\\Dgm\\Shengine\\Woocommerce\\Converters\\' =>
array (
0 => __DIR__ . '/..' . '/dangoodman/shengine-wc-converters/src',
),
'WbsVendors\\Dgm\\Shengine\\Migrations\\' =>
array (
0 => __DIR__ . '/..' . '/dangoodman/shengine-migrations/src',
),
'WbsVendors\\Dgm\\Shengine\\' =>
array (
0 => __DIR__ . '/..' . '/dangoodman/shengine/src',
),
'WbsVendors\\Dgm\\Range\\' =>
array (
0 => __DIR__ . '/..' . '/dangoodman/range/src',
),
'WbsVendors\\Dgm\\PluginServices\\' =>
array (
0 => __DIR__ . '/..' . '/dangoodman/wp-plugin-services/src',
),
'WbsVendors\\Dgm\\NumberUnit\\' =>
array (
0 => __DIR__ . '/..' . '/dangoodman/number-unit/src',
),
'WbsVendors\\Dgm\\Comparator\\' =>
array (
0 => __DIR__ . '/..' . '/dangoodman/comparator/src',
),
'WbsVendors\\BoxPacking\\' =>
array (
0 => __DIR__ . '/..' . '/dangoodman/boxpacking/src',
),
);
public static $classMap = array (
'WbsVendors\\Deferred\\Deferred' => __DIR__ . '/..' . '/dangoodman/deferred/Deferred.php',
'WbsVendors\\Dgm\\Arrays\\Arrays' => __DIR__ . '/..' . '/dangoodman/arrays/Arrays.php',
'WbsVendors\\Dgm\\ClassNameAware\\ClassNameAware' => __DIR__ . '/..' . '/dangoodman/class-name-aware/ClassNameAware.php',
'WbsVendors\\Dgm\\SimpleProperties\\SimpleProperties' => __DIR__ . '/..' . '/dangoodman/simple-properties/SimpleProperties.php',
'WbsVendors\\Dgm\\WcTools\\WcTools' => __DIR__ . '/..' . '/dangoodman/wc-tools/WcTools.php',
'WbsVendors_DgmWpDismissibleNotices' => __DIR__ . '/..' . '/dangoodman/wp-plugin-bootstrap-guard/DgmWpDismissibleNotices.php',
'WbsVendors_DgmWpPluginBootstrapGuard' => __DIR__ . '/..' . '/dangoodman/wp-plugin-bootstrap-guard/DgmWpPluginBootstrapGuard.php',
'wbs' => __DIR__ . '/../..' . '/wbs.php',
);
public static function getInitializer(\WbsVendors\Composer\Autoload\ClassLoader $loader)
{
return \Closure::bind(function () use ($loader) {
$loader->prefixLengthsPsr4 = \WbsVendors\Composer\Autoload\ComposerStaticInit1ef25787cb7c3885f7c08ca2bea15684::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = \WbsVendors\Composer\Autoload\ComposerStaticInit1ef25787cb7c3885f7c08ca2bea15684::$prefixDirsPsr4;
$loader->classMap = \WbsVendors\Composer\Autoload\ComposerStaticInit1ef25787cb7c3885f7c08ca2bea15684::$classMap;
}, null, \WbsVendors\Composer\Autoload\ClassLoader::class);
}
}

View File

@@ -0,0 +1,302 @@
<?php return array (
'capsule' =>
array (
'class' =>
array (
'ComposerAutoloaderInit1ef25787cb7c3885f7c08ca2bea15684' => 'WbsVendors_ComposerAutoloaderInit1ef25787cb7c3885f7c08ca2bea15684',
'Composer\\Autoload\\ComposerStaticInit1ef25787cb7c3885f7c08ca2bea15684' => 'WbsVendors\\Composer\\Autoload\\ComposerStaticInit1ef25787cb7c3885f7c08ca2bea15684',
'Composer\\Autoload\\ClassLoader' => 'WbsVendors\\Composer\\Autoload\\ClassLoader',
'Dgm\\Arrays\\Arrays' => 'WbsVendors\\Dgm\\Arrays\\Arrays',
'BoxPacking\\Packer' => 'WbsVendors\\BoxPacking\\Packer',
'BoxPacking\\Skyline' => 'WbsVendors\\BoxPacking\\Skyline',
'BoxPacking\\Utils' => 'WbsVendors\\BoxPacking\\Utils',
'Dgm\\ClassNameAware\\ClassNameAware' => 'WbsVendors\\Dgm\\ClassNameAware\\ClassNameAware',
'Dgm\\Comparator\\AbstractComparator' => 'WbsVendors\\Dgm\\Comparator\\AbstractComparator',
'Dgm\\Comparator\\IComparator' => 'WbsVendors\\Dgm\\Comparator\\IComparator',
'Dgm\\Comparator\\NumberComparator' => 'WbsVendors\\Dgm\\Comparator\\NumberComparator',
'Dgm\\Comparator\\StringComparator' => 'WbsVendors\\Dgm\\Comparator\\StringComparator',
'CCR' => 'WbsVendors_CCR',
'Dgm\\ComposerCapsule\\Runtime\\Runtime' => 'WbsVendors\\Dgm\\ComposerCapsule\\Runtime\\Runtime',
'Dgm\\ComposerCapsule\\Runtime\\Wrapper' => 'WbsVendors\\Dgm\\ComposerCapsule\\Runtime\\Wrapper',
'Deferred\\Deferred' => 'WbsVendors\\Deferred\\Deferred',
'Dgm\\NumberUnit\\NumberUnit' => 'WbsVendors\\Dgm\\NumberUnit\\NumberUnit',
'Dgm\\Range\\Range' => 'WbsVendors\\Dgm\\Range\\Range',
'Dgm\\Shengine\\Aggregators\\AverageAggregator' => 'WbsVendors\\Dgm\\Shengine\\Aggregators\\AverageAggregator',
'Dgm\\Shengine\\Aggregators\\FirstAggregator' => 'WbsVendors\\Dgm\\Shengine\\Aggregators\\FirstAggregator',
'Dgm\\Shengine\\Aggregators\\LastAggregator' => 'WbsVendors\\Dgm\\Shengine\\Aggregators\\LastAggregator',
'Dgm\\Shengine\\Aggregators\\MaxAggregator' => 'WbsVendors\\Dgm\\Shengine\\Aggregators\\MaxAggregator',
'Dgm\\Shengine\\Aggregators\\MinAggregator' => 'WbsVendors\\Dgm\\Shengine\\Aggregators\\MinAggregator',
'Dgm\\Shengine\\Aggregators\\ReduceAggregator' => 'WbsVendors\\Dgm\\Shengine\\Aggregators\\ReduceAggregator',
'Dgm\\Shengine\\Aggregators\\SumAggregator' => 'WbsVendors\\Dgm\\Shengine\\Aggregators\\SumAggregator',
'Dgm\\Shengine\\Attributes\\AbstractAttribute' => 'WbsVendors\\Dgm\\Shengine\\Attributes\\AbstractAttribute',
'Dgm\\Shengine\\Attributes\\CountAttribute' => 'WbsVendors\\Dgm\\Shengine\\Attributes\\CountAttribute',
'Dgm\\Shengine\\Attributes\\CouponsAttribute' => 'WbsVendors\\Dgm\\Shengine\\Attributes\\CouponsAttribute',
'Dgm\\Shengine\\Attributes\\CustomerRolesAttribute' => 'WbsVendors\\Dgm\\Shengine\\Attributes\\CustomerRolesAttribute',
'Dgm\\Shengine\\Attributes\\DestinationAttribute' => 'WbsVendors\\Dgm\\Shengine\\Attributes\\DestinationAttribute',
'Dgm\\Shengine\\Attributes\\ItemAttribute' => 'WbsVendors\\Dgm\\Shengine\\Attributes\\ItemAttribute',
'Dgm\\Shengine\\Attributes\\ItemDimensionsAttribute' => 'WbsVendors\\Dgm\\Shengine\\Attributes\\ItemDimensionsAttribute',
'Dgm\\Shengine\\Attributes\\MapAttribute' => 'WbsVendors\\Dgm\\Shengine\\Attributes\\MapAttribute',
'Dgm\\Shengine\\Attributes\\PriceAttribute' => 'WbsVendors\\Dgm\\Shengine\\Attributes\\PriceAttribute',
'Dgm\\Shengine\\Attributes\\ProductAttribute' => 'WbsVendors\\Dgm\\Shengine\\Attributes\\ProductAttribute',
'Dgm\\Shengine\\Attributes\\ProductVariationAttribute' => 'WbsVendors\\Dgm\\Shengine\\Attributes\\ProductVariationAttribute',
'Dgm\\Shengine\\Attributes\\SumAttribute' => 'WbsVendors\\Dgm\\Shengine\\Attributes\\SumAttribute',
'Dgm\\Shengine\\Attributes\\TermsAttribute' => 'WbsVendors\\Dgm\\Shengine\\Attributes\\TermsAttribute',
'Dgm\\Shengine\\Attributes\\VolumeAttribute' => 'WbsVendors\\Dgm\\Shengine\\Attributes\\VolumeAttribute',
'Dgm\\Shengine\\Attributes\\WeightAttribute' => 'WbsVendors\\Dgm\\Shengine\\Attributes\\WeightAttribute',
'Dgm\\Shengine\\Calculators\\AggregatedCalculator' => 'WbsVendors\\Dgm\\Shengine\\Calculators\\AggregatedCalculator',
'Dgm\\Shengine\\Calculators\\AttributeMultiplierCalculator' => 'WbsVendors\\Dgm\\Shengine\\Calculators\\AttributeMultiplierCalculator',
'Dgm\\Shengine\\Calculators\\ChildrenCalculator' => 'WbsVendors\\Dgm\\Shengine\\Calculators\\ChildrenCalculator',
'Dgm\\Shengine\\Calculators\\ClampCalculator' => 'WbsVendors\\Dgm\\Shengine\\Calculators\\ClampCalculator',
'Dgm\\Shengine\\Calculators\\ConstantCalculator' => 'WbsVendors\\Dgm\\Shengine\\Calculators\\ConstantCalculator',
'Dgm\\Shengine\\Calculators\\FreeCalculator' => 'WbsVendors\\Dgm\\Shengine\\Calculators\\FreeCalculator',
'Dgm\\Shengine\\Calculators\\GroupCalculator' => 'WbsVendors\\Dgm\\Shengine\\Calculators\\GroupCalculator',
'Dgm\\Shengine\\Calculators\\ProgressiveCalculator' => 'WbsVendors\\Dgm\\Shengine\\Calculators\\ProgressiveCalculator',
'Dgm\\Shengine\\Calculators\\RuleCalculator' => 'WbsVendors\\Dgm\\Shengine\\Calculators\\RuleCalculator',
'Dgm\\Shengine\\Conditions\\Common\\AbstractCondition' => 'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\AbstractCondition',
'Dgm\\Shengine\\Conditions\\Common\\AggregateCondition' => 'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\AggregateCondition',
'Dgm\\Shengine\\Conditions\\Common\\Compare\\BetweenCondition' => 'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\Compare\\BetweenCondition',
'Dgm\\Shengine\\Conditions\\Common\\Compare\\CompareCondition' => 'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\Compare\\CompareCondition',
'Dgm\\Shengine\\Conditions\\Common\\Compare\\EqualCondition' => 'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\Compare\\EqualCondition',
'Dgm\\Shengine\\Conditions\\Common\\Compare\\GreaterCondition' => 'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\Compare\\GreaterCondition',
'Dgm\\Shengine\\Conditions\\Common\\Compare\\GreaterOrEqualCondition' => 'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\Compare\\GreaterOrEqualCondition',
'Dgm\\Shengine\\Conditions\\Common\\Compare\\LessCondition' => 'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\Compare\\LessCondition',
'Dgm\\Shengine\\Conditions\\Common\\Compare\\LessOrEqualCondition' => 'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\Compare\\LessOrEqualCondition',
'Dgm\\Shengine\\Conditions\\Common\\Compare\\NotEqualCondition' => 'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\Compare\\NotEqualCondition',
'Dgm\\Shengine\\Conditions\\Common\\Enum\\AbstractEnumCondition' => 'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\Enum\\AbstractEnumCondition',
'Dgm\\Shengine\\Conditions\\Common\\Enum\\DisjointCondition' => 'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\Enum\\DisjointCondition',
'Dgm\\Shengine\\Conditions\\Common\\Enum\\EmptyEnumCondition' => 'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\Enum\\EmptyEnumCondition',
'Dgm\\Shengine\\Conditions\\Common\\Enum\\EqualEnumCondition' => 'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\Enum\\EqualEnumCondition',
'Dgm\\Shengine\\Conditions\\Common\\Enum\\IntersectCondition' => 'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\Enum\\IntersectCondition',
'Dgm\\Shengine\\Conditions\\Common\\Enum\\SubsetCondition' => 'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\Enum\\SubsetCondition',
'Dgm\\Shengine\\Conditions\\Common\\Enum\\SupersetCondition' => 'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\Enum\\SupersetCondition',
'Dgm\\Shengine\\Conditions\\Common\\GroupCondition' => 'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\GroupCondition',
'Dgm\\Shengine\\Conditions\\Common\\Logic\\AndCondition' => 'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\Logic\\AndCondition',
'Dgm\\Shengine\\Conditions\\Common\\Logic\\NotCondition' => 'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\Logic\\NotCondition',
'Dgm\\Shengine\\Conditions\\Common\\Logic\\OrCondition' => 'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\Logic\\OrCondition',
'Dgm\\Shengine\\Conditions\\Common\\StringPatternCondition' => 'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\StringPatternCondition',
'Dgm\\Shengine\\Conditions\\Common\\Stub\\FalseCondition' => 'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\Stub\\FalseCondition',
'Dgm\\Shengine\\Conditions\\Common\\Stub\\TrueCondition' => 'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\Stub\\TrueCondition',
'Dgm\\Shengine\\Conditions\\DestinationCondition' => 'WbsVendors\\Dgm\\Shengine\\Conditions\\DestinationCondition',
'Dgm\\Shengine\\Conditions\\ItemsPackableCondition' => 'WbsVendors\\Dgm\\Shengine\\Conditions\\ItemsPackableCondition',
'Dgm\\Shengine\\Conditions\\Package\\AbstractPackageCondition' => 'WbsVendors\\Dgm\\Shengine\\Conditions\\Package\\AbstractPackageCondition',
'Dgm\\Shengine\\Conditions\\Package\\PackageAttributeCondition' => 'WbsVendors\\Dgm\\Shengine\\Conditions\\Package\\PackageAttributeCondition',
'Dgm\\Shengine\\Conditions\\Package\\TermsCondition' => 'WbsVendors\\Dgm\\Shengine\\Conditions\\Package\\TermsCondition',
'Dgm\\Shengine\\Grouping\\AttributeGrouping' => 'WbsVendors\\Dgm\\Shengine\\Grouping\\AttributeGrouping',
'Dgm\\Shengine\\Grouping\\FakeGrouping' => 'WbsVendors\\Dgm\\Shengine\\Grouping\\FakeGrouping',
'Dgm\\Shengine\\Interfaces\\IAggregator' => 'WbsVendors\\Dgm\\Shengine\\Interfaces\\IAggregator',
'Dgm\\Shengine\\Interfaces\\IAttribute' => 'WbsVendors\\Dgm\\Shengine\\Interfaces\\IAttribute',
'Dgm\\Shengine\\Interfaces\\ICalculator' => 'WbsVendors\\Dgm\\Shengine\\Interfaces\\ICalculator',
'Dgm\\Shengine\\Interfaces\\ICondition' => 'WbsVendors\\Dgm\\Shengine\\Interfaces\\ICondition',
'Dgm\\Shengine\\Interfaces\\IGrouping' => 'WbsVendors\\Dgm\\Shengine\\Interfaces\\IGrouping',
'Dgm\\Shengine\\Interfaces\\IItem' => 'WbsVendors\\Dgm\\Shengine\\Interfaces\\IItem',
'Dgm\\Shengine\\Interfaces\\IItemAggregatables' => 'WbsVendors\\Dgm\\Shengine\\Interfaces\\IItemAggregatables',
'Dgm\\Shengine\\Loader\\ILoader' => 'WbsVendors\\Dgm\\Shengine\\Loader\\ILoader',
'Dgm\\Shengine\\Interfaces\\IMatcher' => 'WbsVendors\\Dgm\\Shengine\\Interfaces\\IMatcher',
'Dgm\\Shengine\\Interfaces\\IOperation' => 'WbsVendors\\Dgm\\Shengine\\Interfaces\\IOperation',
'Dgm\\Shengine\\Interfaces\\IPackage' => 'WbsVendors\\Dgm\\Shengine\\Interfaces\\IPackage',
'Dgm\\Shengine\\Interfaces\\IProcessor' => 'WbsVendors\\Dgm\\Shengine\\Interfaces\\IProcessor',
'Dgm\\Shengine\\Interfaces\\IRate' => 'WbsVendors\\Dgm\\Shengine\\Interfaces\\IRate',
'Dgm\\Shengine\\Interfaces\\IRule' => 'WbsVendors\\Dgm\\Shengine\\Interfaces\\IRule',
'Dgm\\Shengine\\Interfaces\\IRuleMeta' => 'WbsVendors\\Dgm\\Shengine\\Interfaces\\IRuleMeta',
'Dgm\\Shengine\\Model\\Address' => 'WbsVendors\\Dgm\\Shengine\\Model\\Address',
'Dgm\\Shengine\\Model\\Customer' => 'WbsVendors\\Dgm\\Shengine\\Model\\Customer',
'Dgm\\Shengine\\Model\\Destination' => 'WbsVendors\\Dgm\\Shengine\\Model\\Destination',
'Dgm\\Shengine\\Model\\Dimensions' => 'WbsVendors\\Dgm\\Shengine\\Model\\Dimensions',
'Dgm\\Shengine\\Model\\Item' => 'WbsVendors\\Dgm\\Shengine\\Model\\Item',
'Dgm\\Shengine\\Model\\ItemDefaults' => 'WbsVendors\\Dgm\\Shengine\\Model\\ItemDefaults',
'Dgm\\Shengine\\Model\\Package' => 'WbsVendors\\Dgm\\Shengine\\Model\\Package',
'Dgm\\Shengine\\Model\\Price' => 'WbsVendors\\Dgm\\Shengine\\Model\\Price',
'Dgm\\Shengine\\Model\\Rate' => 'WbsVendors\\Dgm\\Shengine\\Model\\Rate',
'Dgm\\Shengine\\Model\\Rule' => 'WbsVendors\\Dgm\\Shengine\\Model\\Rule',
'Dgm\\Shengine\\Model\\RuleMeta' => 'WbsVendors\\Dgm\\Shengine\\Model\\RuleMeta',
'Dgm\\Shengine\\Operations\\AbstractOperation' => 'WbsVendors\\Dgm\\Shengine\\Operations\\AbstractOperation',
'Dgm\\Shengine\\Operations\\AddOperation' => 'WbsVendors\\Dgm\\Shengine\\Operations\\AddOperation',
'Dgm\\Shengine\\Operations\\ClampOperation' => 'WbsVendors\\Dgm\\Shengine\\Operations\\ClampOperation',
'Dgm\\Shengine\\Operations\\GroupOperation' => 'WbsVendors\\Dgm\\Shengine\\Operations\\GroupOperation',
'Dgm\\Shengine\\Operations\\MultiplyOperation' => 'WbsVendors\\Dgm\\Shengine\\Operations\\MultiplyOperation',
'Dgm\\Shengine\\Processing\\Processor' => 'WbsVendors\\Dgm\\Shengine\\Processing\\Processor',
'Dgm\\Shengine\\Processing\\RateRegister' => 'WbsVendors\\Dgm\\Shengine\\Processing\\RateRegister',
'Dgm\\Shengine\\Processing\\Registers' => 'WbsVendors\\Dgm\\Shengine\\Processing\\Registers',
'Dgm\\Shengine\\RuleMatcher' => 'WbsVendors\\Dgm\\Shengine\\RuleMatcher',
'Dgm\\Shengine\\RuleMatcherMeta' => 'WbsVendors\\Dgm\\Shengine\\RuleMatcherMeta',
'Dgm\\Shengine\\Units' => 'WbsVendors\\Dgm\\Shengine\\Units',
'Dgm\\Shengine\\Migrations\\AbstractConfigStorage' => 'WbsVendors\\Dgm\\Shengine\\Migrations\\AbstractConfigStorage',
'Dgm\\Shengine\\Migrations\\Interfaces\\Migrations\\IConfigMigration' => 'WbsVendors\\Dgm\\Shengine\\Migrations\\Interfaces\\Migrations\\IConfigMigration',
'Dgm\\Shengine\\Migrations\\Interfaces\\Migrations\\IRuleMigration' => 'WbsVendors\\Dgm\\Shengine\\Migrations\\Interfaces\\Migrations\\IRuleMigration',
'Dgm\\Shengine\\Migrations\\Interfaces\\Storage\\IStorage' => 'WbsVendors\\Dgm\\Shengine\\Migrations\\Interfaces\\Storage\\IStorage',
'Dgm\\Shengine\\Migrations\\Interfaces\\Storage\\IStorageAccess' => 'WbsVendors\\Dgm\\Shengine\\Migrations\\Interfaces\\Storage\\IStorageAccess',
'Dgm\\Shengine\\Migrations\\Interfaces\\Storage\\IStorageRecord' => 'WbsVendors\\Dgm\\Shengine\\Migrations\\Interfaces\\Storage\\IStorageRecord',
'Dgm\\Shengine\\Migrations\\MigrationService' => 'WbsVendors\\Dgm\\Shengine\\Migrations\\MigrationService',
'Dgm\\Shengine\\Migrations\\Storage\\ArrayStorage' => 'WbsVendors\\Dgm\\Shengine\\Migrations\\Storage\\ArrayStorage',
'Dgm\\Shengine\\Migrations\\Storage\\StorageRecord' => 'WbsVendors\\Dgm\\Shengine\\Migrations\\Storage\\StorageRecord',
'Dgm\\Shengine\\Migrations\\Storage\\WordpressOptions' => 'WbsVendors\\Dgm\\Shengine\\Migrations\\Storage\\WordpressOptions',
'Dgm\\Shengine\\Woocommerce\\Converters\\PackageConverter' => 'WbsVendors\\Dgm\\Shengine\\Woocommerce\\Converters\\PackageConverter',
'Dgm\\Shengine\\Woocommerce\\Converters\\RateConverter' => 'WbsVendors\\Dgm\\Shengine\\Woocommerce\\Converters\\RateConverter',
'Dgm\\Shengine\\Woocommerce\\Model\\Item\\WoocommerceItem' => 'WbsVendors\\Dgm\\Shengine\\Woocommerce\\Model\\Item\\WoocommerceItem',
'Dgm\\Shengine\\Woocommerce\\Model\\Item\\WpmlAwareItem' => 'WbsVendors\\Dgm\\Shengine\\Woocommerce\\Model\\Item\\WpmlAwareItem',
'Dgm\\SimpleProperties\\SimpleProperties' => 'WbsVendors\\Dgm\\SimpleProperties\\SimpleProperties',
'Dgm\\WcTools\\WcTools' => 'WbsVendors\\Dgm\\WcTools\\WcTools',
'DgmWpDismissibleNotices' => 'WbsVendors_DgmWpDismissibleNotices',
'DgmWpPluginBootstrapGuard' => 'WbsVendors_DgmWpPluginBootstrapGuard',
'Dgm\\PluginServices\\IService' => 'WbsVendors\\Dgm\\PluginServices\\IService',
'Dgm\\PluginServices\\IServiceReady' => 'WbsVendors\\Dgm\\PluginServices\\IServiceReady',
'Dgm\\PluginServices\\ServiceInstaller' => 'WbsVendors\\Dgm\\PluginServices\\ServiceInstaller',
),
'func' =>
array (
),
'const' =>
array (
),
),
'uncapsule' =>
array (
'class' =>
array (
'WbsVendors_ComposerAutoloaderInit1ef25787cb7c3885f7c08ca2bea15684' => 'ComposerAutoloaderInit1ef25787cb7c3885f7c08ca2bea15684',
'WbsVendors\\Composer\\Autoload\\ComposerStaticInit1ef25787cb7c3885f7c08ca2bea15684' => 'Composer\\Autoload\\ComposerStaticInit1ef25787cb7c3885f7c08ca2bea15684',
'WbsVendors\\Composer\\Autoload\\ClassLoader' => 'Composer\\Autoload\\ClassLoader',
'WbsVendors\\Dgm\\Arrays\\Arrays' => 'Dgm\\Arrays\\Arrays',
'WbsVendors\\BoxPacking\\Packer' => 'BoxPacking\\Packer',
'WbsVendors\\BoxPacking\\Skyline' => 'BoxPacking\\Skyline',
'WbsVendors\\BoxPacking\\Utils' => 'BoxPacking\\Utils',
'WbsVendors\\Dgm\\ClassNameAware\\ClassNameAware' => 'Dgm\\ClassNameAware\\ClassNameAware',
'WbsVendors\\Dgm\\Comparator\\AbstractComparator' => 'Dgm\\Comparator\\AbstractComparator',
'WbsVendors\\Dgm\\Comparator\\IComparator' => 'Dgm\\Comparator\\IComparator',
'WbsVendors\\Dgm\\Comparator\\NumberComparator' => 'Dgm\\Comparator\\NumberComparator',
'WbsVendors\\Dgm\\Comparator\\StringComparator' => 'Dgm\\Comparator\\StringComparator',
'WbsVendors_CCR' => 'CCR',
'WbsVendors\\Dgm\\ComposerCapsule\\Runtime\\Runtime' => 'Dgm\\ComposerCapsule\\Runtime\\Runtime',
'WbsVendors\\Dgm\\ComposerCapsule\\Runtime\\Wrapper' => 'Dgm\\ComposerCapsule\\Runtime\\Wrapper',
'WbsVendors\\Deferred\\Deferred' => 'Deferred\\Deferred',
'WbsVendors\\Dgm\\NumberUnit\\NumberUnit' => 'Dgm\\NumberUnit\\NumberUnit',
'WbsVendors\\Dgm\\Range\\Range' => 'Dgm\\Range\\Range',
'WbsVendors\\Dgm\\Shengine\\Aggregators\\AverageAggregator' => 'Dgm\\Shengine\\Aggregators\\AverageAggregator',
'WbsVendors\\Dgm\\Shengine\\Aggregators\\FirstAggregator' => 'Dgm\\Shengine\\Aggregators\\FirstAggregator',
'WbsVendors\\Dgm\\Shengine\\Aggregators\\LastAggregator' => 'Dgm\\Shengine\\Aggregators\\LastAggregator',
'WbsVendors\\Dgm\\Shengine\\Aggregators\\MaxAggregator' => 'Dgm\\Shengine\\Aggregators\\MaxAggregator',
'WbsVendors\\Dgm\\Shengine\\Aggregators\\MinAggregator' => 'Dgm\\Shengine\\Aggregators\\MinAggregator',
'WbsVendors\\Dgm\\Shengine\\Aggregators\\ReduceAggregator' => 'Dgm\\Shengine\\Aggregators\\ReduceAggregator',
'WbsVendors\\Dgm\\Shengine\\Aggregators\\SumAggregator' => 'Dgm\\Shengine\\Aggregators\\SumAggregator',
'WbsVendors\\Dgm\\Shengine\\Attributes\\AbstractAttribute' => 'Dgm\\Shengine\\Attributes\\AbstractAttribute',
'WbsVendors\\Dgm\\Shengine\\Attributes\\CountAttribute' => 'Dgm\\Shengine\\Attributes\\CountAttribute',
'WbsVendors\\Dgm\\Shengine\\Attributes\\CouponsAttribute' => 'Dgm\\Shengine\\Attributes\\CouponsAttribute',
'WbsVendors\\Dgm\\Shengine\\Attributes\\CustomerRolesAttribute' => 'Dgm\\Shengine\\Attributes\\CustomerRolesAttribute',
'WbsVendors\\Dgm\\Shengine\\Attributes\\DestinationAttribute' => 'Dgm\\Shengine\\Attributes\\DestinationAttribute',
'WbsVendors\\Dgm\\Shengine\\Attributes\\ItemAttribute' => 'Dgm\\Shengine\\Attributes\\ItemAttribute',
'WbsVendors\\Dgm\\Shengine\\Attributes\\ItemDimensionsAttribute' => 'Dgm\\Shengine\\Attributes\\ItemDimensionsAttribute',
'WbsVendors\\Dgm\\Shengine\\Attributes\\MapAttribute' => 'Dgm\\Shengine\\Attributes\\MapAttribute',
'WbsVendors\\Dgm\\Shengine\\Attributes\\PriceAttribute' => 'Dgm\\Shengine\\Attributes\\PriceAttribute',
'WbsVendors\\Dgm\\Shengine\\Attributes\\ProductAttribute' => 'Dgm\\Shengine\\Attributes\\ProductAttribute',
'WbsVendors\\Dgm\\Shengine\\Attributes\\ProductVariationAttribute' => 'Dgm\\Shengine\\Attributes\\ProductVariationAttribute',
'WbsVendors\\Dgm\\Shengine\\Attributes\\SumAttribute' => 'Dgm\\Shengine\\Attributes\\SumAttribute',
'WbsVendors\\Dgm\\Shengine\\Attributes\\TermsAttribute' => 'Dgm\\Shengine\\Attributes\\TermsAttribute',
'WbsVendors\\Dgm\\Shengine\\Attributes\\VolumeAttribute' => 'Dgm\\Shengine\\Attributes\\VolumeAttribute',
'WbsVendors\\Dgm\\Shengine\\Attributes\\WeightAttribute' => 'Dgm\\Shengine\\Attributes\\WeightAttribute',
'WbsVendors\\Dgm\\Shengine\\Calculators\\AggregatedCalculator' => 'Dgm\\Shengine\\Calculators\\AggregatedCalculator',
'WbsVendors\\Dgm\\Shengine\\Calculators\\AttributeMultiplierCalculator' => 'Dgm\\Shengine\\Calculators\\AttributeMultiplierCalculator',
'WbsVendors\\Dgm\\Shengine\\Calculators\\ChildrenCalculator' => 'Dgm\\Shengine\\Calculators\\ChildrenCalculator',
'WbsVendors\\Dgm\\Shengine\\Calculators\\ClampCalculator' => 'Dgm\\Shengine\\Calculators\\ClampCalculator',
'WbsVendors\\Dgm\\Shengine\\Calculators\\ConstantCalculator' => 'Dgm\\Shengine\\Calculators\\ConstantCalculator',
'WbsVendors\\Dgm\\Shengine\\Calculators\\FreeCalculator' => 'Dgm\\Shengine\\Calculators\\FreeCalculator',
'WbsVendors\\Dgm\\Shengine\\Calculators\\GroupCalculator' => 'Dgm\\Shengine\\Calculators\\GroupCalculator',
'WbsVendors\\Dgm\\Shengine\\Calculators\\ProgressiveCalculator' => 'Dgm\\Shengine\\Calculators\\ProgressiveCalculator',
'WbsVendors\\Dgm\\Shengine\\Calculators\\RuleCalculator' => 'Dgm\\Shengine\\Calculators\\RuleCalculator',
'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\AbstractCondition' => 'Dgm\\Shengine\\Conditions\\Common\\AbstractCondition',
'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\AggregateCondition' => 'Dgm\\Shengine\\Conditions\\Common\\AggregateCondition',
'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\Compare\\BetweenCondition' => 'Dgm\\Shengine\\Conditions\\Common\\Compare\\BetweenCondition',
'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\Compare\\CompareCondition' => 'Dgm\\Shengine\\Conditions\\Common\\Compare\\CompareCondition',
'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\Compare\\EqualCondition' => 'Dgm\\Shengine\\Conditions\\Common\\Compare\\EqualCondition',
'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\Compare\\GreaterCondition' => 'Dgm\\Shengine\\Conditions\\Common\\Compare\\GreaterCondition',
'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\Compare\\GreaterOrEqualCondition' => 'Dgm\\Shengine\\Conditions\\Common\\Compare\\GreaterOrEqualCondition',
'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\Compare\\LessCondition' => 'Dgm\\Shengine\\Conditions\\Common\\Compare\\LessCondition',
'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\Compare\\LessOrEqualCondition' => 'Dgm\\Shengine\\Conditions\\Common\\Compare\\LessOrEqualCondition',
'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\Compare\\NotEqualCondition' => 'Dgm\\Shengine\\Conditions\\Common\\Compare\\NotEqualCondition',
'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\Enum\\AbstractEnumCondition' => 'Dgm\\Shengine\\Conditions\\Common\\Enum\\AbstractEnumCondition',
'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\Enum\\DisjointCondition' => 'Dgm\\Shengine\\Conditions\\Common\\Enum\\DisjointCondition',
'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\Enum\\EmptyEnumCondition' => 'Dgm\\Shengine\\Conditions\\Common\\Enum\\EmptyEnumCondition',
'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\Enum\\EqualEnumCondition' => 'Dgm\\Shengine\\Conditions\\Common\\Enum\\EqualEnumCondition',
'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\Enum\\IntersectCondition' => 'Dgm\\Shengine\\Conditions\\Common\\Enum\\IntersectCondition',
'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\Enum\\SubsetCondition' => 'Dgm\\Shengine\\Conditions\\Common\\Enum\\SubsetCondition',
'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\Enum\\SupersetCondition' => 'Dgm\\Shengine\\Conditions\\Common\\Enum\\SupersetCondition',
'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\GroupCondition' => 'Dgm\\Shengine\\Conditions\\Common\\GroupCondition',
'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\Logic\\AndCondition' => 'Dgm\\Shengine\\Conditions\\Common\\Logic\\AndCondition',
'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\Logic\\NotCondition' => 'Dgm\\Shengine\\Conditions\\Common\\Logic\\NotCondition',
'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\Logic\\OrCondition' => 'Dgm\\Shengine\\Conditions\\Common\\Logic\\OrCondition',
'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\StringPatternCondition' => 'Dgm\\Shengine\\Conditions\\Common\\StringPatternCondition',
'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\Stub\\FalseCondition' => 'Dgm\\Shengine\\Conditions\\Common\\Stub\\FalseCondition',
'WbsVendors\\Dgm\\Shengine\\Conditions\\Common\\Stub\\TrueCondition' => 'Dgm\\Shengine\\Conditions\\Common\\Stub\\TrueCondition',
'WbsVendors\\Dgm\\Shengine\\Conditions\\DestinationCondition' => 'Dgm\\Shengine\\Conditions\\DestinationCondition',
'WbsVendors\\Dgm\\Shengine\\Conditions\\ItemsPackableCondition' => 'Dgm\\Shengine\\Conditions\\ItemsPackableCondition',
'WbsVendors\\Dgm\\Shengine\\Conditions\\Package\\AbstractPackageCondition' => 'Dgm\\Shengine\\Conditions\\Package\\AbstractPackageCondition',
'WbsVendors\\Dgm\\Shengine\\Conditions\\Package\\PackageAttributeCondition' => 'Dgm\\Shengine\\Conditions\\Package\\PackageAttributeCondition',
'WbsVendors\\Dgm\\Shengine\\Conditions\\Package\\TermsCondition' => 'Dgm\\Shengine\\Conditions\\Package\\TermsCondition',
'WbsVendors\\Dgm\\Shengine\\Grouping\\AttributeGrouping' => 'Dgm\\Shengine\\Grouping\\AttributeGrouping',
'WbsVendors\\Dgm\\Shengine\\Grouping\\FakeGrouping' => 'Dgm\\Shengine\\Grouping\\FakeGrouping',
'WbsVendors\\Dgm\\Shengine\\Interfaces\\IAggregator' => 'Dgm\\Shengine\\Interfaces\\IAggregator',
'WbsVendors\\Dgm\\Shengine\\Interfaces\\IAttribute' => 'Dgm\\Shengine\\Interfaces\\IAttribute',
'WbsVendors\\Dgm\\Shengine\\Interfaces\\ICalculator' => 'Dgm\\Shengine\\Interfaces\\ICalculator',
'WbsVendors\\Dgm\\Shengine\\Interfaces\\ICondition' => 'Dgm\\Shengine\\Interfaces\\ICondition',
'WbsVendors\\Dgm\\Shengine\\Interfaces\\IGrouping' => 'Dgm\\Shengine\\Interfaces\\IGrouping',
'WbsVendors\\Dgm\\Shengine\\Interfaces\\IItem' => 'Dgm\\Shengine\\Interfaces\\IItem',
'WbsVendors\\Dgm\\Shengine\\Interfaces\\IItemAggregatables' => 'Dgm\\Shengine\\Interfaces\\IItemAggregatables',
'WbsVendors\\Dgm\\Shengine\\Loader\\ILoader' => 'Dgm\\Shengine\\Loader\\ILoader',
'WbsVendors\\Dgm\\Shengine\\Interfaces\\IMatcher' => 'Dgm\\Shengine\\Interfaces\\IMatcher',
'WbsVendors\\Dgm\\Shengine\\Interfaces\\IOperation' => 'Dgm\\Shengine\\Interfaces\\IOperation',
'WbsVendors\\Dgm\\Shengine\\Interfaces\\IPackage' => 'Dgm\\Shengine\\Interfaces\\IPackage',
'WbsVendors\\Dgm\\Shengine\\Interfaces\\IProcessor' => 'Dgm\\Shengine\\Interfaces\\IProcessor',
'WbsVendors\\Dgm\\Shengine\\Interfaces\\IRate' => 'Dgm\\Shengine\\Interfaces\\IRate',
'WbsVendors\\Dgm\\Shengine\\Interfaces\\IRule' => 'Dgm\\Shengine\\Interfaces\\IRule',
'WbsVendors\\Dgm\\Shengine\\Interfaces\\IRuleMeta' => 'Dgm\\Shengine\\Interfaces\\IRuleMeta',
'WbsVendors\\Dgm\\Shengine\\Model\\Address' => 'Dgm\\Shengine\\Model\\Address',
'WbsVendors\\Dgm\\Shengine\\Model\\Customer' => 'Dgm\\Shengine\\Model\\Customer',
'WbsVendors\\Dgm\\Shengine\\Model\\Destination' => 'Dgm\\Shengine\\Model\\Destination',
'WbsVendors\\Dgm\\Shengine\\Model\\Dimensions' => 'Dgm\\Shengine\\Model\\Dimensions',
'WbsVendors\\Dgm\\Shengine\\Model\\Item' => 'Dgm\\Shengine\\Model\\Item',
'WbsVendors\\Dgm\\Shengine\\Model\\ItemDefaults' => 'Dgm\\Shengine\\Model\\ItemDefaults',
'WbsVendors\\Dgm\\Shengine\\Model\\Package' => 'Dgm\\Shengine\\Model\\Package',
'WbsVendors\\Dgm\\Shengine\\Model\\Price' => 'Dgm\\Shengine\\Model\\Price',
'WbsVendors\\Dgm\\Shengine\\Model\\Rate' => 'Dgm\\Shengine\\Model\\Rate',
'WbsVendors\\Dgm\\Shengine\\Model\\Rule' => 'Dgm\\Shengine\\Model\\Rule',
'WbsVendors\\Dgm\\Shengine\\Model\\RuleMeta' => 'Dgm\\Shengine\\Model\\RuleMeta',
'WbsVendors\\Dgm\\Shengine\\Operations\\AbstractOperation' => 'Dgm\\Shengine\\Operations\\AbstractOperation',
'WbsVendors\\Dgm\\Shengine\\Operations\\AddOperation' => 'Dgm\\Shengine\\Operations\\AddOperation',
'WbsVendors\\Dgm\\Shengine\\Operations\\ClampOperation' => 'Dgm\\Shengine\\Operations\\ClampOperation',
'WbsVendors\\Dgm\\Shengine\\Operations\\GroupOperation' => 'Dgm\\Shengine\\Operations\\GroupOperation',
'WbsVendors\\Dgm\\Shengine\\Operations\\MultiplyOperation' => 'Dgm\\Shengine\\Operations\\MultiplyOperation',
'WbsVendors\\Dgm\\Shengine\\Processing\\Processor' => 'Dgm\\Shengine\\Processing\\Processor',
'WbsVendors\\Dgm\\Shengine\\Processing\\RateRegister' => 'Dgm\\Shengine\\Processing\\RateRegister',
'WbsVendors\\Dgm\\Shengine\\Processing\\Registers' => 'Dgm\\Shengine\\Processing\\Registers',
'WbsVendors\\Dgm\\Shengine\\RuleMatcher' => 'Dgm\\Shengine\\RuleMatcher',
'WbsVendors\\Dgm\\Shengine\\RuleMatcherMeta' => 'Dgm\\Shengine\\RuleMatcherMeta',
'WbsVendors\\Dgm\\Shengine\\Units' => 'Dgm\\Shengine\\Units',
'WbsVendors\\Dgm\\Shengine\\Migrations\\AbstractConfigStorage' => 'Dgm\\Shengine\\Migrations\\AbstractConfigStorage',
'WbsVendors\\Dgm\\Shengine\\Migrations\\Interfaces\\Migrations\\IConfigMigration' => 'Dgm\\Shengine\\Migrations\\Interfaces\\Migrations\\IConfigMigration',
'WbsVendors\\Dgm\\Shengine\\Migrations\\Interfaces\\Migrations\\IRuleMigration' => 'Dgm\\Shengine\\Migrations\\Interfaces\\Migrations\\IRuleMigration',
'WbsVendors\\Dgm\\Shengine\\Migrations\\Interfaces\\Storage\\IStorage' => 'Dgm\\Shengine\\Migrations\\Interfaces\\Storage\\IStorage',
'WbsVendors\\Dgm\\Shengine\\Migrations\\Interfaces\\Storage\\IStorageAccess' => 'Dgm\\Shengine\\Migrations\\Interfaces\\Storage\\IStorageAccess',
'WbsVendors\\Dgm\\Shengine\\Migrations\\Interfaces\\Storage\\IStorageRecord' => 'Dgm\\Shengine\\Migrations\\Interfaces\\Storage\\IStorageRecord',
'WbsVendors\\Dgm\\Shengine\\Migrations\\MigrationService' => 'Dgm\\Shengine\\Migrations\\MigrationService',
'WbsVendors\\Dgm\\Shengine\\Migrations\\Storage\\ArrayStorage' => 'Dgm\\Shengine\\Migrations\\Storage\\ArrayStorage',
'WbsVendors\\Dgm\\Shengine\\Migrations\\Storage\\StorageRecord' => 'Dgm\\Shengine\\Migrations\\Storage\\StorageRecord',
'WbsVendors\\Dgm\\Shengine\\Migrations\\Storage\\WordpressOptions' => 'Dgm\\Shengine\\Migrations\\Storage\\WordpressOptions',
'WbsVendors\\Dgm\\Shengine\\Woocommerce\\Converters\\PackageConverter' => 'Dgm\\Shengine\\Woocommerce\\Converters\\PackageConverter',
'WbsVendors\\Dgm\\Shengine\\Woocommerce\\Converters\\RateConverter' => 'Dgm\\Shengine\\Woocommerce\\Converters\\RateConverter',
'WbsVendors\\Dgm\\Shengine\\Woocommerce\\Model\\Item\\WoocommerceItem' => 'Dgm\\Shengine\\Woocommerce\\Model\\Item\\WoocommerceItem',
'WbsVendors\\Dgm\\Shengine\\Woocommerce\\Model\\Item\\WpmlAwareItem' => 'Dgm\\Shengine\\Woocommerce\\Model\\Item\\WpmlAwareItem',
'WbsVendors\\Dgm\\SimpleProperties\\SimpleProperties' => 'Dgm\\SimpleProperties\\SimpleProperties',
'WbsVendors\\Dgm\\WcTools\\WcTools' => 'Dgm\\WcTools\\WcTools',
'WbsVendors_DgmWpDismissibleNotices' => 'DgmWpDismissibleNotices',
'WbsVendors_DgmWpPluginBootstrapGuard' => 'DgmWpPluginBootstrapGuard',
'WbsVendors\\Dgm\\PluginServices\\IService' => 'Dgm\\PluginServices\\IService',
'WbsVendors\\Dgm\\PluginServices\\IServiceReady' => 'Dgm\\PluginServices\\IServiceReady',
'WbsVendors\\Dgm\\PluginServices\\ServiceInstaller' => 'Dgm\\PluginServices\\ServiceInstaller',
),
'func' =>
array (
),
'const' =>
array (
),
),
);

View File

@@ -0,0 +1,493 @@
[
{
"name": "dangoodman/arrays",
"version": "1.0.0",
"version_normalized": "1.0.0.0",
"source": {
"type": "git",
"url": "git@bitbucket.org:dangoodman/lib-arrays.git",
"reference": "0ba562ebbad45adf287d9d94e3193737523dd24c"
},
"dist": {
"type": "zip",
"url": "file:///D:/projects/all/satis/build/output/dist/dangoodman/arrays/dangoodman-arrays-1.0.0-60e036.zip",
"reference": "0ba562ebbad45adf287d9d94e3193737523dd24c",
"shasum": "9eb3c199b1cf425c7783ac182a38a2a01fc8da95"
},
"require": {
"php": "^5.3"
},
"time": "2017-01-16T14:29:01+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
"classmap": [
"Arrays.php"
]
}
},
{
"name": "dangoodman/boxpacking",
"version": "1.0.3",
"version_normalized": "1.0.3.0",
"source": {
"type": "git",
"url": "git@bitbucket.org:dangoodman/lib-box-packing.git",
"reference": "380f2942c4e246fc7f3837e1b5c7671f1419efb3"
},
"dist": {
"type": "zip",
"url": "file:///D:/projects/all/satis/build/output/dist/dangoodman/boxpacking/dangoodman-boxpacking-1.0.3-3d4a27.zip",
"reference": "380f2942c4e246fc7f3837e1b5c7671f1419efb3",
"shasum": "501e73781522d2c6ef227ff70942bbd2a08bf01e"
},
"require": {
"php": ">=5.3"
},
"require-dev": {
"phpunit/phpunit": "*"
},
"time": "2016-04-28T10:54:55+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
"psr-4": {
"BoxPacking\\": "src/"
}
}
},
{
"name": "dangoodman/class-name-aware",
"version": "1.0.0",
"version_normalized": "1.0.0.0",
"source": {
"type": "git",
"url": "git@bitbucket.org:dangoodman/lib-class-name-aware.git",
"reference": "751c281f1e46d2c4f12c8a1d11879285b1e44bcb"
},
"dist": {
"type": "zip",
"url": "file:///D:/projects/all/satis/build/output/dist/dangoodman/class-name-aware/dangoodman-class-name-aware-1.0.0-56054d.zip",
"reference": "751c281f1e46d2c4f12c8a1d11879285b1e44bcb",
"shasum": "6b42fd18491a95f3bda1af179fddfc6f6184908f"
},
"require": {
"php": "^5.3"
},
"time": "2017-01-16T14:39:39+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
"classmap": [
"ClassNameAware.php"
]
}
},
{
"name": "dangoodman/comparator",
"version": "1.0.0",
"version_normalized": "1.0.0.0",
"source": {
"type": "git",
"url": "git@bitbucket.org:dangoodman/lib-comparator.git",
"reference": "e9ed812ea54194bce2800b223b053c1e030b9f94"
},
"dist": {
"type": "zip",
"url": "file:///D:/projects/all/satis/build/output/dist/dangoodman/comparator/dangoodman-comparator-1.0.0-ec2078.zip",
"reference": "e9ed812ea54194bce2800b223b053c1e030b9f94",
"shasum": "3ea5b1ec1c4a3299afe085d907e99e769ccc3e0f"
},
"require": {
"php": "^5.3"
},
"require-dev": {
"phpunit/phpunit": "5.3.*"
},
"time": "2017-01-15T13:38:35+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
"psr-4": {
"Dgm\\Comparator\\": "src/"
}
}
},
{
"name": "dangoodman/composer-capsule-runtime",
"version": "dev-master",
"version_normalized": "9999999-dev",
"source": {
"type": "git",
"url": "git@bitbucket.org:dangoodman/composer-capsule-runtime.git",
"reference": "c7aa54112dfdc97c3db71fe2aebb526227889e8a"
},
"require": {
"php": "^5.3.0"
},
"time": "2017-04-22T20:57:56+00:00",
"type": "library",
"extra": {
"composer-capsule": {
"processing": {
"skipRuntimeHooks": true
}
}
},
"installation-source": "source",
"autoload": {
"files": [
"autoload.php"
]
}
},
{
"name": "dangoodman/deferred",
"version": "1.0.1",
"version_normalized": "1.0.1.0",
"source": {
"type": "git",
"url": "https://github.com/dangoodman/deferred.git",
"reference": "cf0d7d8370c0f7225da872a3a2e3c8f1a5bc4205"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/dangoodman/deferred/zipball/cf0d7d8370c0f7225da872a3a2e3c8f1a5bc4205",
"reference": "cf0d7d8370c0f7225da872a3a2e3c8f1a5bc4205",
"shasum": ""
},
"require": {
"php": ">=5.3.0"
},
"require-dev": {
"phpunit/phpunit": "~3.7"
},
"time": "2017-04-26T11:54:04+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
"classmap": [
"Deferred.php"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"description": "Deferred callback execution based on RAII"
},
{
"name": "dangoodman/number-unit",
"version": "1.1.0",
"version_normalized": "1.1.0.0",
"source": {
"type": "git",
"url": "git@bitbucket.org:dangoodman/lib-number-unit.git",
"reference": "0fa92f489d4329691e3b8b5950631b65dcaeb1c7"
},
"require": {
"dangoodman/comparator": "^1.0",
"php": "^5.3"
},
"require-dev": {
"phpunit/phpunit": "5.3.*"
},
"time": "2017-10-21T13:06:16+00:00",
"type": "library",
"installation-source": "source",
"autoload": {
"psr-4": {
"Dgm\\NumberUnit\\": "src/"
}
}
},
{
"name": "dangoodman/range",
"version": "1.0.0",
"version_normalized": "1.0.0.0",
"source": {
"type": "git",
"url": "git@bitbucket.org:dangoodman/lib-range.git",
"reference": "d883da0f503905191070af25169c976520ce4f6a"
},
"dist": {
"type": "zip",
"url": "file:///D:/projects/all/satis/build/output/dist/dangoodman/range/dangoodman-range-1.0.0-a7064c.zip",
"reference": "d883da0f503905191070af25169c976520ce4f6a",
"shasum": "1b35e276b2ad5cc5e2ce1152d5ee44405e67d99d"
},
"require": {
"dangoodman/comparator": "^1.0",
"dangoodman/simple-properties": "^1.0",
"php": "^5.3"
},
"time": "2017-01-17T06:20:48+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
"psr-4": {
"Dgm\\Range\\": "src/"
}
}
},
{
"name": "dangoodman/shengine",
"version": "1.2.2",
"version_normalized": "1.2.2.0",
"source": {
"type": "git",
"url": "git@bitbucket.org:dangoodman/lib-shengine.git",
"reference": "c3440a709445636a5c4d49d18a51fc1e225f89c6"
},
"dist": {
"type": "zip",
"url": "file:///D:/projects/all/satis/build/output/dist/dangoodman/shengine/dangoodman-shengine-1.2.2-68790b.zip",
"reference": "c3440a709445636a5c4d49d18a51fc1e225f89c6",
"shasum": "50413eb7b1b0af2e400862485620cb9f0315f12e"
},
"require": {
"dangoodman/arrays": "^1.0",
"dangoodman/boxpacking": "^1.0",
"dangoodman/class-name-aware": "^1.0",
"dangoodman/comparator": "^1.0",
"dangoodman/number-unit": "^1.1.0",
"dangoodman/range": "^1.0",
"dangoodman/simple-properties": "^1.0",
"php": "^5.3"
},
"require-dev": {
"phpunit/phpunit": "5.3.*"
},
"time": "2019-04-05T19:38:48+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
"psr-4": {
"Dgm\\Shengine\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Dgm\\Shengine\\Tests\\": "tests/"
}
}
},
{
"name": "dangoodman/shengine-migrations",
"version": "1.0.0",
"version_normalized": "1.0.0.0",
"source": {
"type": "git",
"url": "git@bitbucket.org:dangoodman/lib-shengine-migrations.git",
"reference": "72dd379ff41e3920bc3b161607c2794e27a3196e"
},
"dist": {
"type": "zip",
"url": "file:///D:/projects/all/satis/build/output/dist/dangoodman/shengine-migrations/dangoodman-shengine-migrations-1.0.0-831a62.zip",
"reference": "72dd379ff41e3920bc3b161607c2794e27a3196e",
"shasum": "d470129f196e7eab36423a4f4345a7718a3fa7e8"
},
"require": {
"dangoodman/wc-tools": "^2.0.0",
"dangoodman/wp-plugin-services": "^1.0.0",
"php": "^5.3"
},
"require-dev": {
"php": "^5.6",
"phpunit/phpunit": "^7"
},
"time": "2019-07-28T18:00:08+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
"psr-4": {
"Dgm\\Shengine\\Migrations\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Dgm\\Shengine\\Migrations\\Tests\\": [
"tests",
"tests/inc"
]
}
}
},
{
"name": "dangoodman/shengine-wc-converters",
"version": "1.5.1",
"version_normalized": "1.5.1.0",
"source": {
"type": "git",
"url": "git@bitbucket.org:dangoodman/lib-shengine-wc-converters.git",
"reference": "d711d845f1df197c2529488c2fd3f117d363148d"
},
"dist": {
"type": "zip",
"url": "file:///D:/projects/all/satis/build/output/dist/dangoodman/shengine-wc-converters/dangoodman-shengine-wc-converters-1.5.1-85f533.zip",
"reference": "d711d845f1df197c2529488c2fd3f117d363148d",
"shasum": "ae5582643ac5da713f80d4e256a716d845ba6c64"
},
"require": {
"dangoodman/arrays": "^1.0",
"dangoodman/deferred": "^1.0.1",
"dangoodman/shengine": "^1.1.0",
"dangoodman/shengine-wc-item": "^1.0",
"php": ">=5.3"
},
"require-dev": {
"phpunit/phpunit": "^7"
},
"time": "2019-04-15T17:48:53+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
"psr-4": {
"Dgm\\Shengine\\Woocommerce\\Converters\\": "src/"
}
}
},
{
"name": "dangoodman/shengine-wc-item",
"version": "1.0.0",
"version_normalized": "1.0.0.0",
"source": {
"type": "git",
"url": "git@bitbucket.org:dangoodman/lib-shengine-wc-item.git",
"reference": "d3c972fa8bbf8f357956c50f20a5dd9a62ab81d9"
},
"dist": {
"type": "zip",
"url": "file:///D:/projects/all/satis/build/output/dist/dangoodman/shengine-wc-item/dangoodman-shengine-wc-item-1.0.0-d92bfe.zip",
"reference": "d3c972fa8bbf8f357956c50f20a5dd9a62ab81d9",
"shasum": "1fe04cf78cccf63587c135b2d4c2041394c57c32"
},
"require": {
"dangoodman/arrays": "^1.0",
"dangoodman/deferred": "^1.0",
"dangoodman/shengine": "^1.0",
"php": ">=5.3"
},
"time": "2017-01-17T13:20:47+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
"psr-4": {
"Dgm\\Shengine\\Woocommerce\\Model\\Item\\": "src/"
}
}
},
{
"name": "dangoodman/simple-properties",
"version": "1.0.0",
"version_normalized": "1.0.0.0",
"source": {
"type": "git",
"url": "git@bitbucket.org:dangoodman/lib-simple-properties.git",
"reference": "4dc103978830f83b655812323966e54cb6006e4e"
},
"dist": {
"type": "zip",
"url": "file:///D:/projects/all/satis/build/output/dist/dangoodman/simple-properties/dangoodman-simple-properties-1.0.0-61db1f.zip",
"reference": "4dc103978830f83b655812323966e54cb6006e4e",
"shasum": "a30611ee0a6de25d75d0a3ff66be0ff88bdddf87"
},
"require": {
"php": "^5.3"
},
"time": "2017-01-15T13:20:14+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
"classmap": [
"SimpleProperties.php"
]
}
},
{
"name": "dangoodman/wc-tools",
"version": "2.0.1",
"version_normalized": "2.0.1.0",
"source": {
"type": "git",
"url": "git@bitbucket.org:dangoodman/lib-wc-tools.git",
"reference": "6db8e79ac493d59657a8aaabe16f67e25de61905"
},
"dist": {
"type": "zip",
"url": "file:///D:/projects/all/satis/build/output/dist/dangoodman/wc-tools/dangoodman-wc-tools-2.0.1-ec636d.zip",
"reference": "6db8e79ac493d59657a8aaabe16f67e25de61905",
"shasum": "ca05d540ac18566c557cc274056a8bd07155af47"
},
"require": {
"php": "^5.3"
},
"time": "2019-07-28T20:26:34+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
"classmap": [
"WcTools.php"
]
}
},
{
"name": "dangoodman/wp-plugin-bootstrap-guard",
"version": "2.0.0",
"version_normalized": "2.0.0.0",
"source": {
"type": "git",
"url": "git@bitbucket.org:dangoodman/lib-wp-plugin-bootstrap-guard.git",
"reference": "263a8599fc25f037b660d118f4702d732310a16b"
},
"dist": {
"type": "zip",
"url": "file:///D:/projects/all/satis/build/output/dist/dangoodman/wp-plugin-bootstrap-guard/dangoodman-wp-plugin-bootstrap-guard-2.0.0-dad255.zip",
"reference": "263a8599fc25f037b660d118f4702d732310a16b",
"shasum": "8c5155dc839fd839038a0ab7a1907d5aefaf5f5e"
},
"require": {
"php": "^5.0"
},
"time": "2018-09-10T14:21:21+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
"classmap": [
"DgmWpPluginBootstrapGuard.php",
"DgmWpDismissibleNotices.php"
]
}
},
{
"name": "dangoodman/wp-plugin-services",
"version": "1.1.1",
"version_normalized": "1.1.1.0",
"source": {
"type": "git",
"url": "git@bitbucket.org:dangoodman/lib-wp-plugin-services.git",
"reference": "a0aa2ffeb15bb257f06141b9212545f0dae33444"
},
"dist": {
"type": "zip",
"url": "file:///D:/projects/all/satis/build/output/dist/dangoodman/wp-plugin-services/dangoodman-wp-plugin-services-1.1.1-600d77.zip",
"reference": "a0aa2ffeb15bb257f06141b9212545f0dae33444",
"shasum": "93390c8b2f9eabaa7531ac5185a3654a8dc3dd76"
},
"require": {
"php": "^5.3"
},
"require-dev": {
"php": "^5.6",
"phpunit/phpunit": "^7"
},
"time": "2019-07-30T19:41:54+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
"psr-4": {
"Dgm\\PluginServices\\": "src/"
}
}
}
]