Plugin Directory

Changeset 3104911


Ignore:
Timestamp:
06/20/2024 07:46:16 AM (9 months ago)
Author:
kilbot
Message:

Update to version 1.6.2 from GitHub

Location:
woocommerce-pos
Files:
34 edited
1 copied

Legend:

Unmodified
Added
Removed
  • woocommerce-pos/tags/1.6.2/includes/API/Customers_Controller.php

    r3104241 r3104911  
    337337            $execution_time = microtime( true ) - $start_time;
    338338            $execution_time_ms = number_format( $execution_time * 1000, 2 );
    339             $server_load = sys_getloadavg();
     339            $server_load = $this->get_server_load();
    340340
    341341            $response = rest_ensure_response( $formatted_results );
  • woocommerce-pos/tags/1.6.2/includes/API/Orders_Controller.php

    r3102003 r3104911  
    735735            $execution_time = microtime( true ) - $start_time;
    736736            $execution_time_ms = number_format( $execution_time * 1000, 2 );
    737             $server_load = sys_getloadavg();
     737            $server_load = $this->get_server_load();
    738738
    739739            $response = rest_ensure_response( $formatted_results );
  • woocommerce-pos/tags/1.6.2/includes/API/Product_Categories_Controller.php

    r3102003 r3104911  
    179179            $execution_time = microtime( true ) - $start_time;
    180180            $execution_time_ms = number_format( $execution_time * 1000, 2 );
    181             $server_load = sys_getloadavg();
     181            $server_load = $this->get_server_load();
    182182
    183183            $response = rest_ensure_response( $formatted_results );
  • woocommerce-pos/tags/1.6.2/includes/API/Product_Tags_Controller.php

    r3104241 r3104911  
    179179            $execution_time = microtime( true ) - $start_time;
    180180            $execution_time_ms = number_format( $execution_time * 1000, 2 );
    181             $server_load = sys_getloadavg();
     181            $server_load = $this->get_server_load();
    182182
    183183            $response = rest_ensure_response( $formatted_results );
  • woocommerce-pos/tags/1.6.2/includes/API/Product_Variations_Controller.php

    r3104241 r3104911  
    454454            $execution_time = microtime( true ) - $start_time;
    455455            $execution_time_ms = number_format( $execution_time * 1000, 2 );
    456             $server_load = sys_getloadavg();
     456            $server_load = $this->get_server_load();
    457457
    458458            $response = rest_ensure_response( $formatted_results );
  • woocommerce-pos/tags/1.6.2/includes/API/Products_Controller.php

    r3104241 r3104911  
    510510            $execution_time = microtime( true ) - $start_time;
    511511            $execution_time_ms = number_format( $execution_time * 1000, 2 );
    512             $server_load = sys_getloadavg();
     512            $server_load = $this->get_server_load();
    513513
    514514            $response = rest_ensure_response( $formatted_results );
  • woocommerce-pos/tags/1.6.2/includes/API/Taxes_Controller.php

    r3102003 r3104911  
    248248            $execution_time = microtime( true ) - $start_time;
    249249            $execution_time_ms = number_format( $execution_time * 1000, 2 );
    250             $server_load = sys_getloadavg();
     250            $server_load = $this->get_server_load();
    251251
    252252            $response = rest_ensure_response( $formatted_results );
  • woocommerce-pos/tags/1.6.2/includes/API/Traits/WCPOS_REST_API.php

    r3104241 r3104911  
    9898        return true === $allow_decimal_quantities;
    9999    }
     100
     101    /**
     102     * Get server load average.
     103     *
     104     * @return array The load average.
     105     */
     106    public function get_server_load() {
     107        try {
     108            if ( stristr( PHP_OS, 'win' ) ) {
     109                    // Use WMIC to get load percentage from Windows.
     110                    $load = @shell_exec( 'wmic cpu get loadpercentage /all' );
     111                if ( $load ) {
     112                        $load = explode( "\n", $load );
     113                    if ( isset( $load[1] ) ) {
     114                        $load = intval( $load[1] );
     115                        return array( $load, $load, $load ); // Mimic the array structure of sys_getloadavg().
     116                    }
     117                }
     118            } elseif ( function_exists( 'sys_getloadavg' ) ) {
     119                return sys_getloadavg();
     120            }
     121        } catch ( Exception $e ) {
     122            // Log the error for debugging purposes.
     123            Logger::log( 'Error getting server load: ' . $e->getMessage() );
     124        }
     125
     126        // Fallback if no method is available or an error occurs.
     127        return array( 0, 0, 0 );
     128    }
    100129}
  • woocommerce-pos/tags/1.6.2/readme.txt

    r3104241 r3104911  
    8080
    8181== Changelog ==
     82
     83= 1.6.2 - 2024/06/20 =
     84- Fix: Error preventing resources (products, orders, customers, etc) from loading on Windows servers
    8285
    8386= 1.6.1 - 2024/06/18 =
  • woocommerce-pos/tags/1.6.2/vendor/autoload.php

    r3104241 r3104911  
    2323require_once __DIR__ . '/composer/autoload_real.php';
    2424
    25 return ComposerAutoloaderInit8daa22bd77ffda310551229f28983943::getLoader();
     25return ComposerAutoloaderInitc98b80182214e6ff7ae8eafd10e585d0::getLoader();
  • woocommerce-pos/tags/1.6.2/vendor/composer/autoload_real.php

    r3104241 r3104911  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit8daa22bd77ffda310551229f28983943
     5class ComposerAutoloaderInitc98b80182214e6ff7ae8eafd10e585d0
    66{
    77    private static $loader;
     
    2323        }
    2424
    25         spl_autoload_register(array('ComposerAutoloaderInit8daa22bd77ffda310551229f28983943', 'loadClassLoader'), true, true);
     25        spl_autoload_register(array('ComposerAutoloaderInitc98b80182214e6ff7ae8eafd10e585d0', 'loadClassLoader'), true, true);
    2626        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    27         spl_autoload_unregister(array('ComposerAutoloaderInit8daa22bd77ffda310551229f28983943', 'loadClassLoader'));
     27        spl_autoload_unregister(array('ComposerAutoloaderInitc98b80182214e6ff7ae8eafd10e585d0', 'loadClassLoader'));
    2828
    2929        require __DIR__ . '/autoload_static.php';
    30         call_user_func(\Composer\Autoload\ComposerStaticInit8daa22bd77ffda310551229f28983943::getInitializer($loader));
     30        call_user_func(\Composer\Autoload\ComposerStaticInitc98b80182214e6ff7ae8eafd10e585d0::getInitializer($loader));
    3131
    3232        $loader->register(true);
    3333
    34         $filesToLoad = \Composer\Autoload\ComposerStaticInit8daa22bd77ffda310551229f28983943::$files;
     34        $filesToLoad = \Composer\Autoload\ComposerStaticInitc98b80182214e6ff7ae8eafd10e585d0::$files;
    3535        $requireFile = \Closure::bind(static function ($fileIdentifier, $file) {
    3636            if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
  • woocommerce-pos/tags/1.6.2/vendor/composer/autoload_static.php

    r3104241 r3104911  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit8daa22bd77ffda310551229f28983943
     7class ComposerStaticInitc98b80182214e6ff7ae8eafd10e585d0
    88{
    99    public static $files = array (
     
    304304    {
    305305        return \Closure::bind(function () use ($loader) {
    306             $loader->prefixLengthsPsr4 = ComposerStaticInit8daa22bd77ffda310551229f28983943::$prefixLengthsPsr4;
    307             $loader->prefixDirsPsr4 = ComposerStaticInit8daa22bd77ffda310551229f28983943::$prefixDirsPsr4;
    308             $loader->prefixesPsr0 = ComposerStaticInit8daa22bd77ffda310551229f28983943::$prefixesPsr0;
    309             $loader->classMap = ComposerStaticInit8daa22bd77ffda310551229f28983943::$classMap;
     306            $loader->prefixLengthsPsr4 = ComposerStaticInitc98b80182214e6ff7ae8eafd10e585d0::$prefixLengthsPsr4;
     307            $loader->prefixDirsPsr4 = ComposerStaticInitc98b80182214e6ff7ae8eafd10e585d0::$prefixDirsPsr4;
     308            $loader->prefixesPsr0 = ComposerStaticInitc98b80182214e6ff7ae8eafd10e585d0::$prefixesPsr0;
     309            $loader->classMap = ComposerStaticInitc98b80182214e6ff7ae8eafd10e585d0::$classMap;
    310310
    311311        }, null, ClassLoader::class);
  • woocommerce-pos/tags/1.6.2/vendor/composer/installed.json

    r3102003 r3104911  
    313313        {
    314314            "name": "symfony/polyfill-ctype",
    315             "version": "v1.29.0",
    316             "version_normalized": "1.29.0.0",
     315            "version": "v1.30.0",
     316            "version_normalized": "1.30.0.0",
    317317            "source": {
    318318                "type": "git",
    319319                "url": "https://github.com/symfony/polyfill-ctype.git",
    320                 "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4"
    321             },
    322             "dist": {
    323                 "type": "zip",
    324                 "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4",
    325                 "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4",
     320                "reference": "0424dff1c58f028c451efff2045f5d92410bd540"
     321            },
     322            "dist": {
     323                "type": "zip",
     324                "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/0424dff1c58f028c451efff2045f5d92410bd540",
     325                "reference": "0424dff1c58f028c451efff2045f5d92410bd540",
    326326                "shasum": ""
    327327            },
     
    335335                "ext-ctype": "For best performance"
    336336            },
    337             "time": "2024-01-29T20:11:03+00:00",
     337            "time": "2024-05-31T15:07:36+00:00",
    338338            "type": "library",
    339339            "extra": {
     
    375375            ],
    376376            "support": {
    377                 "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0"
     377                "source": "https://github.com/symfony/polyfill-ctype/tree/v1.30.0"
    378378            },
    379379            "funding": [
     
    395395        {
    396396            "name": "symfony/polyfill-php80",
    397             "version": "v1.29.0",
    398             "version_normalized": "1.29.0.0",
     397            "version": "v1.30.0",
     398            "version_normalized": "1.30.0.0",
    399399            "source": {
    400400                "type": "git",
    401401                "url": "https://github.com/symfony/polyfill-php80.git",
    402                 "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
    403             },
    404             "dist": {
    405                 "type": "zip",
    406                 "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
    407                 "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
     402                "reference": "77fa7995ac1b21ab60769b7323d600a991a90433"
     403            },
     404            "dist": {
     405                "type": "zip",
     406                "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/77fa7995ac1b21ab60769b7323d600a991a90433",
     407                "reference": "77fa7995ac1b21ab60769b7323d600a991a90433",
    408408                "shasum": ""
    409409            },
     
    411411                "php": ">=7.1"
    412412            },
    413             "time": "2024-01-29T20:11:03+00:00",
     413            "time": "2024-05-31T15:07:36+00:00",
    414414            "type": "library",
    415415            "extra": {
     
    458458            ],
    459459            "support": {
    460                 "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
     460                "source": "https://github.com/symfony/polyfill-php80/tree/v1.30.0"
    461461            },
    462462            "funding": [
     
    478478        {
    479479            "name": "symfony/polyfill-php81",
    480             "version": "v1.29.0",
    481             "version_normalized": "1.29.0.0",
     480            "version": "v1.30.0",
     481            "version_normalized": "1.30.0.0",
    482482            "source": {
    483483                "type": "git",
    484484                "url": "https://github.com/symfony/polyfill-php81.git",
    485                 "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d"
    486             },
    487             "dist": {
    488                 "type": "zip",
    489                 "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d",
    490                 "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d",
     485                "reference": "3fb075789fb91f9ad9af537c4012d523085bd5af"
     486            },
     487            "dist": {
     488                "type": "zip",
     489                "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/3fb075789fb91f9ad9af537c4012d523085bd5af",
     490                "reference": "3fb075789fb91f9ad9af537c4012d523085bd5af",
    491491                "shasum": ""
    492492            },
     
    494494                "php": ">=7.1"
    495495            },
    496             "time": "2024-01-29T20:11:03+00:00",
     496            "time": "2024-06-19T12:30:46+00:00",
    497497            "type": "library",
    498498            "extra": {
     
    537537            ],
    538538            "support": {
    539                 "source": "https://github.com/symfony/polyfill-php81/tree/v1.29.0"
     539                "source": "https://github.com/symfony/polyfill-php81/tree/v1.30.0"
    540540            },
    541541            "funding": [
  • woocommerce-pos/tags/1.6.2/vendor/composer/installed.php

    r3104241 r3104911  
    22    'root' => array(
    33        'name' => 'wcpos/woocommerce-pos',
    4         'pretty_version' => 'v1.6.1',
    5         'version' => '1.6.1.0',
    6         'reference' => 'e3a36ec1a0184e9ed2bfa32842080aa07087d922',
     4        'pretty_version' => 'v1.6.2',
     5        'version' => '1.6.2.0',
     6        'reference' => '02641dbdae75b0df95452de501b6d402c988df8a',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    5454        ),
    5555        'symfony/polyfill-ctype' => array(
    56             'pretty_version' => 'v1.29.0',
    57             'version' => '1.29.0.0',
    58             'reference' => 'ef4d7e442ca910c4764bce785146269b30cb5fc4',
     56            'pretty_version' => 'v1.30.0',
     57            'version' => '1.30.0.0',
     58            'reference' => '0424dff1c58f028c451efff2045f5d92410bd540',
    5959            'type' => 'library',
    6060            'install_path' => __DIR__ . '/../symfony/polyfill-ctype',
     
    6363        ),
    6464        'symfony/polyfill-php80' => array(
    65             'pretty_version' => 'v1.29.0',
    66             'version' => '1.29.0.0',
    67             'reference' => '87b68208d5c1188808dd7839ee1e6c8ec3b02f1b',
     65            'pretty_version' => 'v1.30.0',
     66            'version' => '1.30.0.0',
     67            'reference' => '77fa7995ac1b21ab60769b7323d600a991a90433',
    6868            'type' => 'library',
    6969            'install_path' => __DIR__ . '/../symfony/polyfill-php80',
     
    7272        ),
    7373        'symfony/polyfill-php81' => array(
    74             'pretty_version' => 'v1.29.0',
    75             'version' => '1.29.0.0',
    76             'reference' => 'c565ad1e63f30e7477fc40738343c62b40bc672d',
     74            'pretty_version' => 'v1.30.0',
     75            'version' => '1.30.0.0',
     76            'reference' => '3fb075789fb91f9ad9af537c4012d523085bd5af',
    7777            'type' => 'library',
    7878            'install_path' => __DIR__ . '/../symfony/polyfill-php81',
     
    8181        ),
    8282        'wcpos/woocommerce-pos' => array(
    83             'pretty_version' => 'v1.6.1',
    84             'version' => '1.6.1.0',
    85             'reference' => 'e3a36ec1a0184e9ed2bfa32842080aa07087d922',
     83            'pretty_version' => 'v1.6.2',
     84            'version' => '1.6.2.0',
     85            'reference' => '02641dbdae75b0df95452de501b6d402c988df8a',
    8686            'type' => 'wordpress-plugin',
    8787            'install_path' => __DIR__ . '/../../',
  • woocommerce-pos/tags/1.6.2/vendor/symfony/polyfill-php81/Resources/stubs/CURLStringFile.php

    r3005250 r3104911  
    3333
    3434            if (is_object($value) ? !method_exists($value, '__toString') : !is_scalar($value)) {
    35                 throw new \TypeError('Cannot assign '.gettype($value).' to property CURLStringFile::$data of type string');
     35                throw new TypeError('Cannot assign '.gettype($value).' to property CURLStringFile::$data of type string');
    3636            }
    3737
  • woocommerce-pos/tags/1.6.2/vendor_prefixed/autoload.php

    r3102003 r3104911  
    44
    55$classMap = [
     6    'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheCoreException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheCoreException.php',
     7    'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheIOException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheIOException.php',
    68    'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheDriverCheckException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheDriverCheckException.php',
    7     'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheSimpleCacheException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheSimpleCacheException.php',
    8     'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheDriverNotFoundException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheDriverNotFoundException.php',
    9     'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheIOException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheIOException.php',
     9    'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheReplicationException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheReplicationException.php',
     10    'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheInvalidArgumentException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheInvalidArgumentException.php',
     11    'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheInvalidConfigurationException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheInvalidConfigurationException.php',
    1012    'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheInvalidArgumentTypeException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheInvalidArgumentTypeException.php',
    11     'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheCoreException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheCoreException.php',
    12     'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheInvalidConfigurationException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheInvalidConfigurationException.php',
    13     'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheDriverException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheDriverException.php',
    14     'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheDeprecatedException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheDeprecatedException.php',
    15     'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheReplicationException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheReplicationException.php',
    16     'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheExceptionInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheExceptionInterface.php',
    1713    'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheUnsupportedOperationException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheUnsupportedOperationException.php',
    18     'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheInstanceNotFoundException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheInstanceNotFoundException.php',
    19     'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheInvalidArgumentException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheInvalidArgumentException.php',
    2014    'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheLogicException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheLogicException.php',
    2115    'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheDriverConnectException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheDriverConnectException.php',
     16    'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheExceptionInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheExceptionInterface.php',
     17    'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheSimpleCacheException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheSimpleCacheException.php',
     18    'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheInstanceNotFoundException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheInstanceNotFoundException.php',
    2219    'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheRootException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheRootException.php',
    23     'WCPOS\Vendor\Phpfastcache\Util\ClassNamespaceResolverInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Util/ClassNamespaceResolverInterface.php',
     20    'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheDriverException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheDriverException.php',
     21    'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheDriverNotFoundException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheDriverNotFoundException.php',
     22    'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheDeprecatedException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheDeprecatedException.php',
     23    'WCPOS\Vendor\Phpfastcache\Helper\CacheConditionalHelper' => './phpfastcache/phpfastcache/lib/Phpfastcache/Helper/CacheConditionalHelper.php',
     24    'WCPOS\Vendor\Phpfastcache\Helper\Psr16Adapter' => './phpfastcache/phpfastcache/lib/Phpfastcache/Helper/Psr16Adapter.php',
     25    'WCPOS\Vendor\Phpfastcache\Cluster\AggregatorInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/AggregatorInterface.php',
     26    'WCPOS\Vendor\Phpfastcache\Cluster\ClusterPoolInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/ClusterPoolInterface.php',
     27    'WCPOS\Vendor\Phpfastcache\Cluster\ItemAbstract' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/ItemAbstract.php',
     28    'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\RandomReplication\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/RandomReplication/Item.php',
     29    'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\RandomReplication\RandomReplicationCluster' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/RandomReplication/RandomReplicationCluster.php',
     30    'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\SemiReplication\SemiReplicationCluster' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/SemiReplication/SemiReplicationCluster.php',
     31    'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\SemiReplication\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/SemiReplication/Item.php',
     32    'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\MasterSlaveReplication\MasterSlaveReplicationCluster' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/MasterSlaveReplication/MasterSlaveReplicationCluster.php',
     33    'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\MasterSlaveReplication\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/MasterSlaveReplication/Item.php',
     34    'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\FullReplication\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/FullReplication/Item.php',
     35    'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\FullReplication\FullReplicationCluster' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/FullReplication/FullReplicationCluster.php',
     36    'WCPOS\Vendor\Phpfastcache\Cluster\ClusterPoolTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/ClusterPoolTrait.php',
     37    'WCPOS\Vendor\Phpfastcache\Cluster\ClusterPoolAbstract' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/ClusterPoolAbstract.php',
     38    'WCPOS\Vendor\Phpfastcache\Cluster\ClusterAggregator' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/ClusterAggregator.php',
     39    'WCPOS\Vendor\Phpfastcache\Cluster\AggregatablePoolInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/AggregatablePoolInterface.php',
     40    'WCPOS\Vendor\Phpfastcache\Drivers\Ssdb\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Ssdb/Item.php',
     41    'WCPOS\Vendor\Phpfastcache\Drivers\Ssdb\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Ssdb/Driver.php',
     42    'WCPOS\Vendor\Phpfastcache\Drivers\Ssdb\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Ssdb/Config.php',
     43    'WCPOS\Vendor\Phpfastcache\Drivers\Couchbasev3\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbasev3/Item.php',
     44    'WCPOS\Vendor\Phpfastcache\Drivers\Couchbasev3\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbasev3/Driver.php',
     45    'WCPOS\Vendor\Phpfastcache\Drivers\Couchbasev3\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbasev3/Config.php',
     46    'WCPOS\Vendor\Phpfastcache\Drivers\Predis\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Predis/Item.php',
     47    'WCPOS\Vendor\Phpfastcache\Drivers\Predis\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Predis/Driver.php',
     48    'WCPOS\Vendor\Phpfastcache\Drivers\Predis\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Predis/Config.php',
     49    'WCPOS\Vendor\Phpfastcache\Drivers\Memstatic\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memstatic/Item.php',
     50    'WCPOS\Vendor\Phpfastcache\Drivers\Memstatic\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memstatic/Driver.php',
     51    'WCPOS\Vendor\Phpfastcache\Drivers\Memstatic\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memstatic/Config.php',
     52    'WCPOS\Vendor\Phpfastcache\Drivers\Mongodb\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Mongodb/Item.php',
     53    'WCPOS\Vendor\Phpfastcache\Drivers\Mongodb\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Mongodb/Driver.php',
     54    'WCPOS\Vendor\Phpfastcache\Drivers\Mongodb\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Mongodb/Config.php',
     55    'WCPOS\Vendor\Phpfastcache\Drivers\Cookie\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cookie/Item.php',
     56    'WCPOS\Vendor\Phpfastcache\Drivers\Cookie\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cookie/Driver.php',
     57    'WCPOS\Vendor\Phpfastcache\Drivers\Cookie\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cookie/Config.php',
     58    'WCPOS\Vendor\Phpfastcache\Drivers\Couchdb\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchdb/Item.php',
     59    'WCPOS\Vendor\Phpfastcache\Drivers\Couchdb\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchdb/Driver.php',
     60    'WCPOS\Vendor\Phpfastcache\Drivers\Couchdb\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchdb/Config.php',
     61    'WCPOS\Vendor\Phpfastcache\Drivers\Zenddisk\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zenddisk/Item.php',
     62    'WCPOS\Vendor\Phpfastcache\Drivers\Zenddisk\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zenddisk/Driver.php',
     63    'WCPOS\Vendor\Phpfastcache\Drivers\Zenddisk\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zenddisk/Config.php',
     64    'WCPOS\Vendor\Phpfastcache\Drivers\Cassandra\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cassandra/Item.php',
     65    'WCPOS\Vendor\Phpfastcache\Drivers\Cassandra\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cassandra/Driver.php',
     66    'WCPOS\Vendor\Phpfastcache\Drivers\Cassandra\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cassandra/Config.php',
     67    'WCPOS\Vendor\Phpfastcache\Drivers\Sqlite\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Sqlite/Item.php',
     68    'WCPOS\Vendor\Phpfastcache\Drivers\Sqlite\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Sqlite/Driver.php',
     69    'WCPOS\Vendor\Phpfastcache\Drivers\Sqlite\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Sqlite/Config.php',
     70    'WCPOS\Vendor\Phpfastcache\Drivers\Apcu\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Apcu/Item.php',
     71    'WCPOS\Vendor\Phpfastcache\Drivers\Apcu\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Apcu/Driver.php',
     72    'WCPOS\Vendor\Phpfastcache\Drivers\Apcu\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Apcu/Config.php',
     73    'WCPOS\Vendor\Phpfastcache\Drivers\Devfalse\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devfalse/Item.php',
     74    'WCPOS\Vendor\Phpfastcache\Drivers\Devfalse\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devfalse/Driver.php',
     75    'WCPOS\Vendor\Phpfastcache\Drivers\Devfalse\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devfalse/Config.php',
     76    'WCPOS\Vendor\Phpfastcache\Drivers\Memcache\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcache/Item.php',
     77    'WCPOS\Vendor\Phpfastcache\Drivers\Memcache\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcache/Driver.php',
     78    'WCPOS\Vendor\Phpfastcache\Drivers\Memcache\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcache/Config.php',
     79    'WCPOS\Vendor\Phpfastcache\Drivers\Couchbase\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbase/Item.php',
     80    'WCPOS\Vendor\Phpfastcache\Drivers\Couchbase\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbase/Driver.php',
     81    'WCPOS\Vendor\Phpfastcache\Drivers\Couchbase\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbase/Config.php',
     82    'WCPOS\Vendor\Phpfastcache\Drivers\Devtrue\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devtrue/Item.php',
     83    'WCPOS\Vendor\Phpfastcache\Drivers\Devtrue\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devtrue/Driver.php',
     84    'WCPOS\Vendor\Phpfastcache\Drivers\Devtrue\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devtrue/Config.php',
     85    'WCPOS\Vendor\Phpfastcache\Drivers\Leveldb\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Leveldb/Item.php',
     86    'WCPOS\Vendor\Phpfastcache\Drivers\Leveldb\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Leveldb/Driver.php',
     87    'WCPOS\Vendor\Phpfastcache\Drivers\Leveldb\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Leveldb/Config.php',
     88    'WCPOS\Vendor\Phpfastcache\Drivers\Files\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Files/Item.php',
     89    'WCPOS\Vendor\Phpfastcache\Drivers\Files\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Files/Driver.php',
     90    'WCPOS\Vendor\Phpfastcache\Drivers\Files\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Files/Config.php',
     91    'WCPOS\Vendor\Phpfastcache\Drivers\Wincache\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Wincache/Item.php',
     92    'WCPOS\Vendor\Phpfastcache\Drivers\Wincache\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Wincache/Driver.php',
     93    'WCPOS\Vendor\Phpfastcache\Drivers\Wincache\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Wincache/Config.php',
     94    'WCPOS\Vendor\Phpfastcache\Drivers\Devnull\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devnull/Item.php',
     95    'WCPOS\Vendor\Phpfastcache\Drivers\Devnull\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devnull/Driver.php',
     96    'WCPOS\Vendor\Phpfastcache\Drivers\Devnull\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devnull/Config.php',
     97    'WCPOS\Vendor\Phpfastcache\Drivers\Memcached\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcached/Item.php',
     98    'WCPOS\Vendor\Phpfastcache\Drivers\Memcached\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcached/Driver.php',
     99    'WCPOS\Vendor\Phpfastcache\Drivers\Memcached\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcached/Config.php',
     100    'WCPOS\Vendor\Phpfastcache\Drivers\Zendshm\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zendshm/Item.php',
     101    'WCPOS\Vendor\Phpfastcache\Drivers\Zendshm\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zendshm/Driver.php',
     102    'WCPOS\Vendor\Phpfastcache\Drivers\Zendshm\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zendshm/Config.php',
     103    'WCPOS\Vendor\Phpfastcache\Drivers\Redis\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Redis/Item.php',
     104    'WCPOS\Vendor\Phpfastcache\Drivers\Redis\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Redis/Driver.php',
     105    'WCPOS\Vendor\Phpfastcache\Drivers\Redis\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Redis/Config.php',
     106    'WCPOS\Vendor\Phpfastcache\CacheManager' => './phpfastcache/phpfastcache/lib/Phpfastcache/CacheManager.php',
     107    'WCPOS\Vendor\Phpfastcache\EventManager' => './phpfastcache/phpfastcache/lib/Phpfastcache/EventManager.php',
     108    'WCPOS\Vendor\Phpfastcache\Proxy\PhpfastcacheAbstractProxy' => './phpfastcache/phpfastcache/lib/Phpfastcache/Proxy/PhpfastcacheAbstractProxy.php',
     109    'WCPOS\Vendor\Phpfastcache\Api' => './phpfastcache/phpfastcache/lib/Phpfastcache/Api.php',
     110    'WCPOS\Vendor\Phpfastcache\Event\EventManagerDispatcherTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Event/EventManagerDispatcherTrait.php',
     111    'WCPOS\Vendor\Phpfastcache\Event\EventManagerDispatcherInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Event/EventManagerDispatcherInterface.php',
     112    'WCPOS\Vendor\Phpfastcache\Event\EventManagerInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Event/EventManagerInterface.php',
     113    'WCPOS\Vendor\Phpfastcache\Entities\ItemBatch' => './phpfastcache/phpfastcache/lib/Phpfastcache/Entities/ItemBatch.php',
     114    'WCPOS\Vendor\Phpfastcache\Entities\DriverStatistic' => './phpfastcache/phpfastcache/lib/Phpfastcache/Entities/DriverStatistic.php',
     115    'WCPOS\Vendor\Phpfastcache\Entities\DriverIO' => './phpfastcache/phpfastcache/lib/Phpfastcache/Entities/DriverIO.php',
     116    'WCPOS\Vendor\Phpfastcache\Core\Item\ExtendedCacheItemInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Item/ExtendedCacheItemInterface.php',
     117    'WCPOS\Vendor\Phpfastcache\Core\Item\TaggableCacheItemInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Item/TaggableCacheItemInterface.php',
     118    'WCPOS\Vendor\Phpfastcache\Core\Item\TaggableCacheItemTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Item/TaggableCacheItemTrait.php',
     119    'WCPOS\Vendor\Phpfastcache\Core\Item\ItemBaseTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Item/ItemBaseTrait.php',
     120    'WCPOS\Vendor\Phpfastcache\Core\Item\ItemExtendedTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Item/ItemExtendedTrait.php',
     121    'WCPOS\Vendor\Phpfastcache\Core\Pool\AbstractDriverPoolTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/AbstractDriverPoolTrait.php',
     122    'WCPOS\Vendor\Phpfastcache\Core\Pool\ExtendedCacheItemPoolInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/ExtendedCacheItemPoolInterface.php',
     123    'WCPOS\Vendor\Phpfastcache\Core\Pool\TaggableCacheItemPoolInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/TaggableCacheItemPoolInterface.php',
     124    'WCPOS\Vendor\Phpfastcache\Core\Pool\IO\IOHelperTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/IO/IOHelperTrait.php',
     125    'WCPOS\Vendor\Phpfastcache\Core\Pool\ExtendedCacheItemPoolTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/ExtendedCacheItemPoolTrait.php',
     126    'WCPOS\Vendor\Phpfastcache\Core\Pool\TaggableCacheItemPoolTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/TaggableCacheItemPoolTrait.php',
     127    'WCPOS\Vendor\Phpfastcache\Core\Pool\DriverBaseTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/DriverBaseTrait.php',
     128    'WCPOS\Vendor\Phpfastcache\Core\Pool\CacheItemPoolTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/CacheItemPoolTrait.php',
    24129    'WCPOS\Vendor\Phpfastcache\Util\MemcacheDriverCollisionDetectorTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Util/MemcacheDriverCollisionDetectorTrait.php',
    25130    'WCPOS\Vendor\Phpfastcache\Util\ArrayObject' => './phpfastcache/phpfastcache/lib/Phpfastcache/Util/ArrayObject.php',
    26131    'WCPOS\Vendor\Phpfastcache\Util\ClassNamespaceResolverTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Util/ClassNamespaceResolverTrait.php',
     132    'WCPOS\Vendor\Phpfastcache\Util\ClassNamespaceResolverInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Util/ClassNamespaceResolverInterface.php',
    27133    'WCPOS\Vendor\Phpfastcache\Util\Directory' => './phpfastcache/phpfastcache/lib/Phpfastcache/Util/Directory.php',
    28     'WCPOS\Vendor\Phpfastcache\Event\EventManagerDispatcherTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Event/EventManagerDispatcherTrait.php',
    29     'WCPOS\Vendor\Phpfastcache\Event\EventManagerInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Event/EventManagerInterface.php',
    30     'WCPOS\Vendor\Phpfastcache\Event\EventManagerDispatcherInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Event/EventManagerDispatcherInterface.php',
    31     'WCPOS\Vendor\Phpfastcache\CacheManager' => './phpfastcache/phpfastcache/lib/Phpfastcache/CacheManager.php',
    32     'WCPOS\Vendor\Phpfastcache\Core\Item\ItemExtendedTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Item/ItemExtendedTrait.php',
    33     'WCPOS\Vendor\Phpfastcache\Core\Item\ItemBaseTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Item/ItemBaseTrait.php',
    34     'WCPOS\Vendor\Phpfastcache\Core\Item\TaggableCacheItemTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Item/TaggableCacheItemTrait.php',
    35     'WCPOS\Vendor\Phpfastcache\Core\Item\ExtendedCacheItemInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Item/ExtendedCacheItemInterface.php',
    36     'WCPOS\Vendor\Phpfastcache\Core\Item\TaggableCacheItemInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Item/TaggableCacheItemInterface.php',
    37     'WCPOS\Vendor\Phpfastcache\Core\Pool\ExtendedCacheItemPoolTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/ExtendedCacheItemPoolTrait.php',
    38     'WCPOS\Vendor\Phpfastcache\Core\Pool\TaggableCacheItemPoolInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/TaggableCacheItemPoolInterface.php',
    39     'WCPOS\Vendor\Phpfastcache\Core\Pool\CacheItemPoolTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/CacheItemPoolTrait.php',
    40     'WCPOS\Vendor\Phpfastcache\Core\Pool\DriverBaseTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/DriverBaseTrait.php',
    41     'WCPOS\Vendor\Phpfastcache\Core\Pool\AbstractDriverPoolTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/AbstractDriverPoolTrait.php',
    42     'WCPOS\Vendor\Phpfastcache\Core\Pool\TaggableCacheItemPoolTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/TaggableCacheItemPoolTrait.php',
    43     'WCPOS\Vendor\Phpfastcache\Core\Pool\IO\IOHelperTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/IO/IOHelperTrait.php',
    44     'WCPOS\Vendor\Phpfastcache\Core\Pool\ExtendedCacheItemPoolInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/ExtendedCacheItemPoolInterface.php',
    45     'WCPOS\Vendor\Phpfastcache\Proxy\PhpfastcacheAbstractProxy' => './phpfastcache/phpfastcache/lib/Phpfastcache/Proxy/PhpfastcacheAbstractProxy.php',
    46     'WCPOS\Vendor\Phpfastcache\Helper\CacheConditionalHelper' => './phpfastcache/phpfastcache/lib/Phpfastcache/Helper/CacheConditionalHelper.php',
    47     'WCPOS\Vendor\Phpfastcache\Helper\Psr16Adapter' => './phpfastcache/phpfastcache/lib/Phpfastcache/Helper/Psr16Adapter.php',
    48     'WCPOS\Vendor\Phpfastcache\Config\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Config/Config.php',
    49134    'WCPOS\Vendor\Phpfastcache\Config\ConfigurationOption' => './phpfastcache/phpfastcache/lib/Phpfastcache/Config/ConfigurationOption.php',
    50135    'WCPOS\Vendor\Phpfastcache\Config\IOConfigurationOptionTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Config/IOConfigurationOptionTrait.php',
     136    'WCPOS\Vendor\Phpfastcache\Config\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Config/Config.php',
    51137    'WCPOS\Vendor\Phpfastcache\Config\ConfigurationOptionInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Config/ConfigurationOptionInterface.php',
    52     'WCPOS\Vendor\Phpfastcache\Cluster\AggregatablePoolInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/AggregatablePoolInterface.php',
    53     'WCPOS\Vendor\Phpfastcache\Cluster\ClusterPoolInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/ClusterPoolInterface.php',
    54     'WCPOS\Vendor\Phpfastcache\Cluster\ClusterAggregator' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/ClusterAggregator.php',
    55     'WCPOS\Vendor\Phpfastcache\Cluster\AggregatorInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/AggregatorInterface.php',
    56     'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\RandomReplication\RandomReplicationCluster' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/RandomReplication/RandomReplicationCluster.php',
    57     'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\RandomReplication\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/RandomReplication/Item.php',
    58     'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\SemiReplication\SemiReplicationCluster' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/SemiReplication/SemiReplicationCluster.php',
    59     'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\SemiReplication\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/SemiReplication/Item.php',
    60     'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\FullReplication\FullReplicationCluster' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/FullReplication/FullReplicationCluster.php',
    61     'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\FullReplication\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/FullReplication/Item.php',
    62     'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\MasterSlaveReplication\MasterSlaveReplicationCluster' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/MasterSlaveReplication/MasterSlaveReplicationCluster.php',
    63     'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\MasterSlaveReplication\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/MasterSlaveReplication/Item.php',
    64     'WCPOS\Vendor\Phpfastcache\Cluster\ClusterPoolTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/ClusterPoolTrait.php',
    65     'WCPOS\Vendor\Phpfastcache\Cluster\ItemAbstract' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/ItemAbstract.php',
    66     'WCPOS\Vendor\Phpfastcache\Cluster\ClusterPoolAbstract' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/ClusterPoolAbstract.php',
    67     'WCPOS\Vendor\Phpfastcache\Api' => './phpfastcache/phpfastcache/lib/Phpfastcache/Api.php',
    68     'WCPOS\Vendor\Phpfastcache\Drivers\Mongodb\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Mongodb/Config.php',
    69     'WCPOS\Vendor\Phpfastcache\Drivers\Mongodb\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Mongodb/Driver.php',
    70     'WCPOS\Vendor\Phpfastcache\Drivers\Mongodb\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Mongodb/Item.php',
    71     'WCPOS\Vendor\Phpfastcache\Drivers\Wincache\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Wincache/Config.php',
    72     'WCPOS\Vendor\Phpfastcache\Drivers\Wincache\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Wincache/Driver.php',
    73     'WCPOS\Vendor\Phpfastcache\Drivers\Wincache\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Wincache/Item.php',
    74     'WCPOS\Vendor\Phpfastcache\Drivers\Files\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Files/Config.php',
    75     'WCPOS\Vendor\Phpfastcache\Drivers\Files\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Files/Driver.php',
    76     'WCPOS\Vendor\Phpfastcache\Drivers\Files\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Files/Item.php',
    77     'WCPOS\Vendor\Phpfastcache\Drivers\Devnull\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devnull/Config.php',
    78     'WCPOS\Vendor\Phpfastcache\Drivers\Devnull\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devnull/Driver.php',
    79     'WCPOS\Vendor\Phpfastcache\Drivers\Devnull\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devnull/Item.php',
    80     'WCPOS\Vendor\Phpfastcache\Drivers\Couchbasev3\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbasev3/Config.php',
    81     'WCPOS\Vendor\Phpfastcache\Drivers\Couchbasev3\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbasev3/Driver.php',
    82     'WCPOS\Vendor\Phpfastcache\Drivers\Couchbasev3\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbasev3/Item.php',
    83     'WCPOS\Vendor\Phpfastcache\Drivers\Couchdb\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchdb/Config.php',
    84     'WCPOS\Vendor\Phpfastcache\Drivers\Couchdb\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchdb/Driver.php',
    85     'WCPOS\Vendor\Phpfastcache\Drivers\Couchdb\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchdb/Item.php',
    86     'WCPOS\Vendor\Phpfastcache\Drivers\Memcache\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcache/Config.php',
    87     'WCPOS\Vendor\Phpfastcache\Drivers\Memcache\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcache/Driver.php',
    88     'WCPOS\Vendor\Phpfastcache\Drivers\Memcache\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcache/Item.php',
    89     'WCPOS\Vendor\Phpfastcache\Drivers\Predis\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Predis/Config.php',
    90     'WCPOS\Vendor\Phpfastcache\Drivers\Predis\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Predis/Driver.php',
    91     'WCPOS\Vendor\Phpfastcache\Drivers\Predis\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Predis/Item.php',
    92     'WCPOS\Vendor\Phpfastcache\Drivers\Devfalse\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devfalse/Config.php',
    93     'WCPOS\Vendor\Phpfastcache\Drivers\Devfalse\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devfalse/Driver.php',
    94     'WCPOS\Vendor\Phpfastcache\Drivers\Devfalse\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devfalse/Item.php',
    95     'WCPOS\Vendor\Phpfastcache\Drivers\Zendshm\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zendshm/Config.php',
    96     'WCPOS\Vendor\Phpfastcache\Drivers\Zendshm\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zendshm/Driver.php',
    97     'WCPOS\Vendor\Phpfastcache\Drivers\Zendshm\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zendshm/Item.php',
    98     'WCPOS\Vendor\Phpfastcache\Drivers\Redis\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Redis/Config.php',
    99     'WCPOS\Vendor\Phpfastcache\Drivers\Redis\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Redis/Driver.php',
    100     'WCPOS\Vendor\Phpfastcache\Drivers\Redis\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Redis/Item.php',
    101     'WCPOS\Vendor\Phpfastcache\Drivers\Ssdb\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Ssdb/Config.php',
    102     'WCPOS\Vendor\Phpfastcache\Drivers\Ssdb\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Ssdb/Driver.php',
    103     'WCPOS\Vendor\Phpfastcache\Drivers\Ssdb\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Ssdb/Item.php',
    104     'WCPOS\Vendor\Phpfastcache\Drivers\Cookie\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cookie/Config.php',
    105     'WCPOS\Vendor\Phpfastcache\Drivers\Cookie\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cookie/Driver.php',
    106     'WCPOS\Vendor\Phpfastcache\Drivers\Cookie\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cookie/Item.php',
    107     'WCPOS\Vendor\Phpfastcache\Drivers\Couchbase\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbase/Config.php',
    108     'WCPOS\Vendor\Phpfastcache\Drivers\Couchbase\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbase/Driver.php',
    109     'WCPOS\Vendor\Phpfastcache\Drivers\Couchbase\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbase/Item.php',
    110     'WCPOS\Vendor\Phpfastcache\Drivers\Memcached\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcached/Config.php',
    111     'WCPOS\Vendor\Phpfastcache\Drivers\Memcached\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcached/Driver.php',
    112     'WCPOS\Vendor\Phpfastcache\Drivers\Memcached\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcached/Item.php',
    113     'WCPOS\Vendor\Phpfastcache\Drivers\Memstatic\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memstatic/Config.php',
    114     'WCPOS\Vendor\Phpfastcache\Drivers\Memstatic\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memstatic/Driver.php',
    115     'WCPOS\Vendor\Phpfastcache\Drivers\Memstatic\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memstatic/Item.php',
    116     'WCPOS\Vendor\Phpfastcache\Drivers\Sqlite\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Sqlite/Config.php',
    117     'WCPOS\Vendor\Phpfastcache\Drivers\Sqlite\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Sqlite/Driver.php',
    118     'WCPOS\Vendor\Phpfastcache\Drivers\Sqlite\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Sqlite/Item.php',
    119     'WCPOS\Vendor\Phpfastcache\Drivers\Zenddisk\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zenddisk/Config.php',
    120     'WCPOS\Vendor\Phpfastcache\Drivers\Zenddisk\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zenddisk/Driver.php',
    121     'WCPOS\Vendor\Phpfastcache\Drivers\Zenddisk\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zenddisk/Item.php',
    122     'WCPOS\Vendor\Phpfastcache\Drivers\Cassandra\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cassandra/Config.php',
    123     'WCPOS\Vendor\Phpfastcache\Drivers\Cassandra\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cassandra/Driver.php',
    124     'WCPOS\Vendor\Phpfastcache\Drivers\Cassandra\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cassandra/Item.php',
    125     'WCPOS\Vendor\Phpfastcache\Drivers\Apcu\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Apcu/Config.php',
    126     'WCPOS\Vendor\Phpfastcache\Drivers\Apcu\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Apcu/Driver.php',
    127     'WCPOS\Vendor\Phpfastcache\Drivers\Apcu\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Apcu/Item.php',
    128     'WCPOS\Vendor\Phpfastcache\Drivers\Leveldb\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Leveldb/Config.php',
    129     'WCPOS\Vendor\Phpfastcache\Drivers\Leveldb\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Leveldb/Driver.php',
    130     'WCPOS\Vendor\Phpfastcache\Drivers\Leveldb\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Leveldb/Item.php',
    131     'WCPOS\Vendor\Phpfastcache\Drivers\Devtrue\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devtrue/Config.php',
    132     'WCPOS\Vendor\Phpfastcache\Drivers\Devtrue\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devtrue/Driver.php',
    133     'WCPOS\Vendor\Phpfastcache\Drivers\Devtrue\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devtrue/Item.php',
    134     'WCPOS\Vendor\Phpfastcache\EventManager' => './phpfastcache/phpfastcache/lib/Phpfastcache/EventManager.php',
    135     'WCPOS\Vendor\Phpfastcache\Entities\DriverStatistic' => './phpfastcache/phpfastcache/lib/Phpfastcache/Entities/DriverStatistic.php',
    136     'WCPOS\Vendor\Phpfastcache\Entities\ItemBatch' => './phpfastcache/phpfastcache/lib/Phpfastcache/Entities/ItemBatch.php',
    137     'WCPOS\Vendor\Phpfastcache\Entities\DriverIO' => './phpfastcache/phpfastcache/lib/Phpfastcache/Entities/DriverIO.php',
    138     'WCPOS\Vendor\Psr\SimpleCache\CacheInterface' => './phpfastcache/phpfastcache/bin/dependencies/Psr/SimpleCache/src/CacheInterface.php',
     138    'WCPOS\Vendor\Psr\Cache\InvalidArgumentException' => './phpfastcache/phpfastcache/bin/dependencies/Psr/Cache/src/InvalidArgumentException.php',
     139    'WCPOS\Vendor\Psr\Cache\CacheException' => './phpfastcache/phpfastcache/bin/dependencies/Psr/Cache/src/CacheException.php',
     140    'WCPOS\Vendor\Psr\Cache\CacheItemInterface' => './phpfastcache/phpfastcache/bin/dependencies/Psr/Cache/src/CacheItemInterface.php',
     141    'WCPOS\Vendor\Psr\Cache\CacheItemPoolInterface' => './phpfastcache/phpfastcache/bin/dependencies/Psr/Cache/src/CacheItemPoolInterface.php',
    139142    'WCPOS\Vendor\Psr\SimpleCache\InvalidArgumentException' => './phpfastcache/phpfastcache/bin/dependencies/Psr/SimpleCache/src/InvalidArgumentException.php',
    140143    'WCPOS\Vendor\Psr\SimpleCache\CacheException' => './phpfastcache/phpfastcache/bin/dependencies/Psr/SimpleCache/src/CacheException.php',
    141     'WCPOS\Vendor\Psr\Cache\CacheItemPoolInterface' => './phpfastcache/phpfastcache/bin/dependencies/Psr/Cache/src/CacheItemPoolInterface.php',
    142     'WCPOS\Vendor\Psr\Cache\CacheItemInterface' => './phpfastcache/phpfastcache/bin/dependencies/Psr/Cache/src/CacheItemInterface.php',
    143     'WCPOS\Vendor\Psr\Cache\InvalidArgumentException' => './phpfastcache/phpfastcache/bin/dependencies/Psr/Cache/src/InvalidArgumentException.php',
    144     'WCPOS\Vendor\Psr\Cache\CacheException' => './phpfastcache/phpfastcache/bin/dependencies/Psr/Cache/src/CacheException.php',
     144    'WCPOS\Vendor\Psr\SimpleCache\CacheInterface' => './phpfastcache/phpfastcache/bin/dependencies/Psr/SimpleCache/src/CacheInterface.php',
     145    'WCPOS\Vendor\Firebase\JWT\JWK' => './firebase/php-jwt/src/JWK.php',
     146    'WCPOS\Vendor\Firebase\JWT\ExpiredException' => './firebase/php-jwt/src/ExpiredException.php',
     147    'WCPOS\Vendor\Firebase\JWT\JWTExceptionWithPayloadInterface' => './firebase/php-jwt/src/JWTExceptionWithPayloadInterface.php',
    145148    'WCPOS\Vendor\Firebase\JWT\CachedKeySet' => './firebase/php-jwt/src/CachedKeySet.php',
     149    'WCPOS\Vendor\Firebase\JWT\Key' => './firebase/php-jwt/src/Key.php',
    146150    'WCPOS\Vendor\Firebase\JWT\JWT' => './firebase/php-jwt/src/JWT.php',
    147     'WCPOS\Vendor\Firebase\JWT\ExpiredException' => './firebase/php-jwt/src/ExpiredException.php',
    148     'WCPOS\Vendor\Firebase\JWT\JWK' => './firebase/php-jwt/src/JWK.php',
    149     'WCPOS\Vendor\Firebase\JWT\Key' => './firebase/php-jwt/src/Key.php',
     151    'WCPOS\Vendor\Firebase\JWT\BeforeValidException' => './firebase/php-jwt/src/BeforeValidException.php',
    150152    'WCPOS\Vendor\Firebase\JWT\SignatureInvalidException' => './firebase/php-jwt/src/SignatureInvalidException.php',
    151     'WCPOS\Vendor\Firebase\JWT\BeforeValidException' => './firebase/php-jwt/src/BeforeValidException.php',
    152     'WCPOS\Vendor\Firebase\JWT\JWTExceptionWithPayloadInterface' => './firebase/php-jwt/src/JWTExceptionWithPayloadInterface.php',
    153153];
    154154
  • woocommerce-pos/tags/1.6.2/woocommerce-pos.php

    r3104241 r3104911  
    44 * Plugin URI:        https://wordpress.org/plugins/woocommerce-pos/
    55 * Description:       A simple front-end for taking WooCommerce orders at the Point of Sale. Requires <a href="http://wordpress.org/plugins/woocommerce/">WooCommerce</a>.
    6  * Version:           1.6.1
     6 * Version:           1.6.2
    77 * Author:            kilbot
    88 * Author URI:        http://wcpos.com
     
    1515 * Requires PHP:      7.4
    1616 * Requires Plugins:  woocommerce
    17  * WC tested up to:   8.9
     17 * WC tested up to:   9.0
    1818 * WC requires at least: 5.3
    1919 *
     
    2525
    2626// Define plugin constants.
    27 const VERSION     = '1.6.1';
     27const VERSION     = '1.6.2';
    2828const PLUGIN_NAME = 'woocommerce-pos';
    2929const SHORT_NAME  = 'wcpos';
     
    3838
    3939// Load .env flags (for development).
    40 function load_env( $file ) {
     40function wcpos_load_env( $file ) {
    4141    if ( ! file_exists( $file ) ) {
    4242        return;
     
    7676
    7777// Environment variables.
    78 load_env( __DIR__ . '/.env' );
     78wcpos_load_env( __DIR__ . '/.env' );
    7979
    8080// Error handling for autoload failure.
  • woocommerce-pos/trunk/includes/API/Customers_Controller.php

    r3104241 r3104911  
    337337            $execution_time = microtime( true ) - $start_time;
    338338            $execution_time_ms = number_format( $execution_time * 1000, 2 );
    339             $server_load = sys_getloadavg();
     339            $server_load = $this->get_server_load();
    340340
    341341            $response = rest_ensure_response( $formatted_results );
  • woocommerce-pos/trunk/includes/API/Orders_Controller.php

    r3102003 r3104911  
    735735            $execution_time = microtime( true ) - $start_time;
    736736            $execution_time_ms = number_format( $execution_time * 1000, 2 );
    737             $server_load = sys_getloadavg();
     737            $server_load = $this->get_server_load();
    738738
    739739            $response = rest_ensure_response( $formatted_results );
  • woocommerce-pos/trunk/includes/API/Product_Categories_Controller.php

    r3102003 r3104911  
    179179            $execution_time = microtime( true ) - $start_time;
    180180            $execution_time_ms = number_format( $execution_time * 1000, 2 );
    181             $server_load = sys_getloadavg();
     181            $server_load = $this->get_server_load();
    182182
    183183            $response = rest_ensure_response( $formatted_results );
  • woocommerce-pos/trunk/includes/API/Product_Tags_Controller.php

    r3104241 r3104911  
    179179            $execution_time = microtime( true ) - $start_time;
    180180            $execution_time_ms = number_format( $execution_time * 1000, 2 );
    181             $server_load = sys_getloadavg();
     181            $server_load = $this->get_server_load();
    182182
    183183            $response = rest_ensure_response( $formatted_results );
  • woocommerce-pos/trunk/includes/API/Product_Variations_Controller.php

    r3104241 r3104911  
    454454            $execution_time = microtime( true ) - $start_time;
    455455            $execution_time_ms = number_format( $execution_time * 1000, 2 );
    456             $server_load = sys_getloadavg();
     456            $server_load = $this->get_server_load();
    457457
    458458            $response = rest_ensure_response( $formatted_results );
  • woocommerce-pos/trunk/includes/API/Products_Controller.php

    r3104241 r3104911  
    510510            $execution_time = microtime( true ) - $start_time;
    511511            $execution_time_ms = number_format( $execution_time * 1000, 2 );
    512             $server_load = sys_getloadavg();
     512            $server_load = $this->get_server_load();
    513513
    514514            $response = rest_ensure_response( $formatted_results );
  • woocommerce-pos/trunk/includes/API/Taxes_Controller.php

    r3102003 r3104911  
    248248            $execution_time = microtime( true ) - $start_time;
    249249            $execution_time_ms = number_format( $execution_time * 1000, 2 );
    250             $server_load = sys_getloadavg();
     250            $server_load = $this->get_server_load();
    251251
    252252            $response = rest_ensure_response( $formatted_results );
  • woocommerce-pos/trunk/includes/API/Traits/WCPOS_REST_API.php

    r3104241 r3104911  
    9898        return true === $allow_decimal_quantities;
    9999    }
     100
     101    /**
     102     * Get server load average.
     103     *
     104     * @return array The load average.
     105     */
     106    public function get_server_load() {
     107        try {
     108            if ( stristr( PHP_OS, 'win' ) ) {
     109                    // Use WMIC to get load percentage from Windows.
     110                    $load = @shell_exec( 'wmic cpu get loadpercentage /all' );
     111                if ( $load ) {
     112                        $load = explode( "\n", $load );
     113                    if ( isset( $load[1] ) ) {
     114                        $load = intval( $load[1] );
     115                        return array( $load, $load, $load ); // Mimic the array structure of sys_getloadavg().
     116                    }
     117                }
     118            } elseif ( function_exists( 'sys_getloadavg' ) ) {
     119                return sys_getloadavg();
     120            }
     121        } catch ( Exception $e ) {
     122            // Log the error for debugging purposes.
     123            Logger::log( 'Error getting server load: ' . $e->getMessage() );
     124        }
     125
     126        // Fallback if no method is available or an error occurs.
     127        return array( 0, 0, 0 );
     128    }
    100129}
  • woocommerce-pos/trunk/readme.txt

    r3104241 r3104911  
    8080
    8181== Changelog ==
     82
     83= 1.6.2 - 2024/06/20 =
     84- Fix: Error preventing resources (products, orders, customers, etc) from loading on Windows servers
    8285
    8386= 1.6.1 - 2024/06/18 =
  • woocommerce-pos/trunk/vendor/autoload.php

    r3104241 r3104911  
    2323require_once __DIR__ . '/composer/autoload_real.php';
    2424
    25 return ComposerAutoloaderInit8daa22bd77ffda310551229f28983943::getLoader();
     25return ComposerAutoloaderInitc98b80182214e6ff7ae8eafd10e585d0::getLoader();
  • woocommerce-pos/trunk/vendor/composer/autoload_real.php

    r3104241 r3104911  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit8daa22bd77ffda310551229f28983943
     5class ComposerAutoloaderInitc98b80182214e6ff7ae8eafd10e585d0
    66{
    77    private static $loader;
     
    2323        }
    2424
    25         spl_autoload_register(array('ComposerAutoloaderInit8daa22bd77ffda310551229f28983943', 'loadClassLoader'), true, true);
     25        spl_autoload_register(array('ComposerAutoloaderInitc98b80182214e6ff7ae8eafd10e585d0', 'loadClassLoader'), true, true);
    2626        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    27         spl_autoload_unregister(array('ComposerAutoloaderInit8daa22bd77ffda310551229f28983943', 'loadClassLoader'));
     27        spl_autoload_unregister(array('ComposerAutoloaderInitc98b80182214e6ff7ae8eafd10e585d0', 'loadClassLoader'));
    2828
    2929        require __DIR__ . '/autoload_static.php';
    30         call_user_func(\Composer\Autoload\ComposerStaticInit8daa22bd77ffda310551229f28983943::getInitializer($loader));
     30        call_user_func(\Composer\Autoload\ComposerStaticInitc98b80182214e6ff7ae8eafd10e585d0::getInitializer($loader));
    3131
    3232        $loader->register(true);
    3333
    34         $filesToLoad = \Composer\Autoload\ComposerStaticInit8daa22bd77ffda310551229f28983943::$files;
     34        $filesToLoad = \Composer\Autoload\ComposerStaticInitc98b80182214e6ff7ae8eafd10e585d0::$files;
    3535        $requireFile = \Closure::bind(static function ($fileIdentifier, $file) {
    3636            if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
  • woocommerce-pos/trunk/vendor/composer/autoload_static.php

    r3104241 r3104911  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit8daa22bd77ffda310551229f28983943
     7class ComposerStaticInitc98b80182214e6ff7ae8eafd10e585d0
    88{
    99    public static $files = array (
     
    304304    {
    305305        return \Closure::bind(function () use ($loader) {
    306             $loader->prefixLengthsPsr4 = ComposerStaticInit8daa22bd77ffda310551229f28983943::$prefixLengthsPsr4;
    307             $loader->prefixDirsPsr4 = ComposerStaticInit8daa22bd77ffda310551229f28983943::$prefixDirsPsr4;
    308             $loader->prefixesPsr0 = ComposerStaticInit8daa22bd77ffda310551229f28983943::$prefixesPsr0;
    309             $loader->classMap = ComposerStaticInit8daa22bd77ffda310551229f28983943::$classMap;
     306            $loader->prefixLengthsPsr4 = ComposerStaticInitc98b80182214e6ff7ae8eafd10e585d0::$prefixLengthsPsr4;
     307            $loader->prefixDirsPsr4 = ComposerStaticInitc98b80182214e6ff7ae8eafd10e585d0::$prefixDirsPsr4;
     308            $loader->prefixesPsr0 = ComposerStaticInitc98b80182214e6ff7ae8eafd10e585d0::$prefixesPsr0;
     309            $loader->classMap = ComposerStaticInitc98b80182214e6ff7ae8eafd10e585d0::$classMap;
    310310
    311311        }, null, ClassLoader::class);
  • woocommerce-pos/trunk/vendor/composer/installed.json

    r3102003 r3104911  
    313313        {
    314314            "name": "symfony/polyfill-ctype",
    315             "version": "v1.29.0",
    316             "version_normalized": "1.29.0.0",
     315            "version": "v1.30.0",
     316            "version_normalized": "1.30.0.0",
    317317            "source": {
    318318                "type": "git",
    319319                "url": "https://github.com/symfony/polyfill-ctype.git",
    320                 "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4"
    321             },
    322             "dist": {
    323                 "type": "zip",
    324                 "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4",
    325                 "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4",
     320                "reference": "0424dff1c58f028c451efff2045f5d92410bd540"
     321            },
     322            "dist": {
     323                "type": "zip",
     324                "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/0424dff1c58f028c451efff2045f5d92410bd540",
     325                "reference": "0424dff1c58f028c451efff2045f5d92410bd540",
    326326                "shasum": ""
    327327            },
     
    335335                "ext-ctype": "For best performance"
    336336            },
    337             "time": "2024-01-29T20:11:03+00:00",
     337            "time": "2024-05-31T15:07:36+00:00",
    338338            "type": "library",
    339339            "extra": {
     
    375375            ],
    376376            "support": {
    377                 "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0"
     377                "source": "https://github.com/symfony/polyfill-ctype/tree/v1.30.0"
    378378            },
    379379            "funding": [
     
    395395        {
    396396            "name": "symfony/polyfill-php80",
    397             "version": "v1.29.0",
    398             "version_normalized": "1.29.0.0",
     397            "version": "v1.30.0",
     398            "version_normalized": "1.30.0.0",
    399399            "source": {
    400400                "type": "git",
    401401                "url": "https://github.com/symfony/polyfill-php80.git",
    402                 "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
    403             },
    404             "dist": {
    405                 "type": "zip",
    406                 "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
    407                 "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
     402                "reference": "77fa7995ac1b21ab60769b7323d600a991a90433"
     403            },
     404            "dist": {
     405                "type": "zip",
     406                "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/77fa7995ac1b21ab60769b7323d600a991a90433",
     407                "reference": "77fa7995ac1b21ab60769b7323d600a991a90433",
    408408                "shasum": ""
    409409            },
     
    411411                "php": ">=7.1"
    412412            },
    413             "time": "2024-01-29T20:11:03+00:00",
     413            "time": "2024-05-31T15:07:36+00:00",
    414414            "type": "library",
    415415            "extra": {
     
    458458            ],
    459459            "support": {
    460                 "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
     460                "source": "https://github.com/symfony/polyfill-php80/tree/v1.30.0"
    461461            },
    462462            "funding": [
     
    478478        {
    479479            "name": "symfony/polyfill-php81",
    480             "version": "v1.29.0",
    481             "version_normalized": "1.29.0.0",
     480            "version": "v1.30.0",
     481            "version_normalized": "1.30.0.0",
    482482            "source": {
    483483                "type": "git",
    484484                "url": "https://github.com/symfony/polyfill-php81.git",
    485                 "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d"
    486             },
    487             "dist": {
    488                 "type": "zip",
    489                 "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d",
    490                 "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d",
     485                "reference": "3fb075789fb91f9ad9af537c4012d523085bd5af"
     486            },
     487            "dist": {
     488                "type": "zip",
     489                "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/3fb075789fb91f9ad9af537c4012d523085bd5af",
     490                "reference": "3fb075789fb91f9ad9af537c4012d523085bd5af",
    491491                "shasum": ""
    492492            },
     
    494494                "php": ">=7.1"
    495495            },
    496             "time": "2024-01-29T20:11:03+00:00",
     496            "time": "2024-06-19T12:30:46+00:00",
    497497            "type": "library",
    498498            "extra": {
     
    537537            ],
    538538            "support": {
    539                 "source": "https://github.com/symfony/polyfill-php81/tree/v1.29.0"
     539                "source": "https://github.com/symfony/polyfill-php81/tree/v1.30.0"
    540540            },
    541541            "funding": [
  • woocommerce-pos/trunk/vendor/composer/installed.php

    r3104241 r3104911  
    22    'root' => array(
    33        'name' => 'wcpos/woocommerce-pos',
    4         'pretty_version' => 'v1.6.1',
    5         'version' => '1.6.1.0',
    6         'reference' => 'e3a36ec1a0184e9ed2bfa32842080aa07087d922',
     4        'pretty_version' => 'v1.6.2',
     5        'version' => '1.6.2.0',
     6        'reference' => '02641dbdae75b0df95452de501b6d402c988df8a',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    5454        ),
    5555        'symfony/polyfill-ctype' => array(
    56             'pretty_version' => 'v1.29.0',
    57             'version' => '1.29.0.0',
    58             'reference' => 'ef4d7e442ca910c4764bce785146269b30cb5fc4',
     56            'pretty_version' => 'v1.30.0',
     57            'version' => '1.30.0.0',
     58            'reference' => '0424dff1c58f028c451efff2045f5d92410bd540',
    5959            'type' => 'library',
    6060            'install_path' => __DIR__ . '/../symfony/polyfill-ctype',
     
    6363        ),
    6464        'symfony/polyfill-php80' => array(
    65             'pretty_version' => 'v1.29.0',
    66             'version' => '1.29.0.0',
    67             'reference' => '87b68208d5c1188808dd7839ee1e6c8ec3b02f1b',
     65            'pretty_version' => 'v1.30.0',
     66            'version' => '1.30.0.0',
     67            'reference' => '77fa7995ac1b21ab60769b7323d600a991a90433',
    6868            'type' => 'library',
    6969            'install_path' => __DIR__ . '/../symfony/polyfill-php80',
     
    7272        ),
    7373        'symfony/polyfill-php81' => array(
    74             'pretty_version' => 'v1.29.0',
    75             'version' => '1.29.0.0',
    76             'reference' => 'c565ad1e63f30e7477fc40738343c62b40bc672d',
     74            'pretty_version' => 'v1.30.0',
     75            'version' => '1.30.0.0',
     76            'reference' => '3fb075789fb91f9ad9af537c4012d523085bd5af',
    7777            'type' => 'library',
    7878            'install_path' => __DIR__ . '/../symfony/polyfill-php81',
     
    8181        ),
    8282        'wcpos/woocommerce-pos' => array(
    83             'pretty_version' => 'v1.6.1',
    84             'version' => '1.6.1.0',
    85             'reference' => 'e3a36ec1a0184e9ed2bfa32842080aa07087d922',
     83            'pretty_version' => 'v1.6.2',
     84            'version' => '1.6.2.0',
     85            'reference' => '02641dbdae75b0df95452de501b6d402c988df8a',
    8686            'type' => 'wordpress-plugin',
    8787            'install_path' => __DIR__ . '/../../',
  • woocommerce-pos/trunk/vendor/symfony/polyfill-php81/Resources/stubs/CURLStringFile.php

    r3005250 r3104911  
    3333
    3434            if (is_object($value) ? !method_exists($value, '__toString') : !is_scalar($value)) {
    35                 throw new \TypeError('Cannot assign '.gettype($value).' to property CURLStringFile::$data of type string');
     35                throw new TypeError('Cannot assign '.gettype($value).' to property CURLStringFile::$data of type string');
    3636            }
    3737
  • woocommerce-pos/trunk/vendor_prefixed/autoload.php

    r3102003 r3104911  
    44
    55$classMap = [
     6    'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheCoreException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheCoreException.php',
     7    'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheIOException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheIOException.php',
    68    'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheDriverCheckException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheDriverCheckException.php',
    7     'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheSimpleCacheException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheSimpleCacheException.php',
    8     'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheDriverNotFoundException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheDriverNotFoundException.php',
    9     'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheIOException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheIOException.php',
     9    'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheReplicationException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheReplicationException.php',
     10    'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheInvalidArgumentException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheInvalidArgumentException.php',
     11    'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheInvalidConfigurationException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheInvalidConfigurationException.php',
    1012    'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheInvalidArgumentTypeException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheInvalidArgumentTypeException.php',
    11     'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheCoreException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheCoreException.php',
    12     'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheInvalidConfigurationException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheInvalidConfigurationException.php',
    13     'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheDriverException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheDriverException.php',
    14     'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheDeprecatedException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheDeprecatedException.php',
    15     'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheReplicationException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheReplicationException.php',
    16     'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheExceptionInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheExceptionInterface.php',
    1713    'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheUnsupportedOperationException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheUnsupportedOperationException.php',
    18     'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheInstanceNotFoundException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheInstanceNotFoundException.php',
    19     'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheInvalidArgumentException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheInvalidArgumentException.php',
    2014    'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheLogicException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheLogicException.php',
    2115    'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheDriverConnectException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheDriverConnectException.php',
     16    'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheExceptionInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheExceptionInterface.php',
     17    'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheSimpleCacheException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheSimpleCacheException.php',
     18    'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheInstanceNotFoundException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheInstanceNotFoundException.php',
    2219    'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheRootException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheRootException.php',
    23     'WCPOS\Vendor\Phpfastcache\Util\ClassNamespaceResolverInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Util/ClassNamespaceResolverInterface.php',
     20    'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheDriverException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheDriverException.php',
     21    'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheDriverNotFoundException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheDriverNotFoundException.php',
     22    'WCPOS\Vendor\Phpfastcache\Exceptions\PhpfastcacheDeprecatedException' => './phpfastcache/phpfastcache/lib/Phpfastcache/Exceptions/PhpfastcacheDeprecatedException.php',
     23    'WCPOS\Vendor\Phpfastcache\Helper\CacheConditionalHelper' => './phpfastcache/phpfastcache/lib/Phpfastcache/Helper/CacheConditionalHelper.php',
     24    'WCPOS\Vendor\Phpfastcache\Helper\Psr16Adapter' => './phpfastcache/phpfastcache/lib/Phpfastcache/Helper/Psr16Adapter.php',
     25    'WCPOS\Vendor\Phpfastcache\Cluster\AggregatorInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/AggregatorInterface.php',
     26    'WCPOS\Vendor\Phpfastcache\Cluster\ClusterPoolInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/ClusterPoolInterface.php',
     27    'WCPOS\Vendor\Phpfastcache\Cluster\ItemAbstract' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/ItemAbstract.php',
     28    'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\RandomReplication\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/RandomReplication/Item.php',
     29    'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\RandomReplication\RandomReplicationCluster' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/RandomReplication/RandomReplicationCluster.php',
     30    'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\SemiReplication\SemiReplicationCluster' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/SemiReplication/SemiReplicationCluster.php',
     31    'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\SemiReplication\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/SemiReplication/Item.php',
     32    'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\MasterSlaveReplication\MasterSlaveReplicationCluster' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/MasterSlaveReplication/MasterSlaveReplicationCluster.php',
     33    'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\MasterSlaveReplication\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/MasterSlaveReplication/Item.php',
     34    'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\FullReplication\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/FullReplication/Item.php',
     35    'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\FullReplication\FullReplicationCluster' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/FullReplication/FullReplicationCluster.php',
     36    'WCPOS\Vendor\Phpfastcache\Cluster\ClusterPoolTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/ClusterPoolTrait.php',
     37    'WCPOS\Vendor\Phpfastcache\Cluster\ClusterPoolAbstract' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/ClusterPoolAbstract.php',
     38    'WCPOS\Vendor\Phpfastcache\Cluster\ClusterAggregator' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/ClusterAggregator.php',
     39    'WCPOS\Vendor\Phpfastcache\Cluster\AggregatablePoolInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/AggregatablePoolInterface.php',
     40    'WCPOS\Vendor\Phpfastcache\Drivers\Ssdb\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Ssdb/Item.php',
     41    'WCPOS\Vendor\Phpfastcache\Drivers\Ssdb\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Ssdb/Driver.php',
     42    'WCPOS\Vendor\Phpfastcache\Drivers\Ssdb\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Ssdb/Config.php',
     43    'WCPOS\Vendor\Phpfastcache\Drivers\Couchbasev3\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbasev3/Item.php',
     44    'WCPOS\Vendor\Phpfastcache\Drivers\Couchbasev3\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbasev3/Driver.php',
     45    'WCPOS\Vendor\Phpfastcache\Drivers\Couchbasev3\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbasev3/Config.php',
     46    'WCPOS\Vendor\Phpfastcache\Drivers\Predis\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Predis/Item.php',
     47    'WCPOS\Vendor\Phpfastcache\Drivers\Predis\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Predis/Driver.php',
     48    'WCPOS\Vendor\Phpfastcache\Drivers\Predis\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Predis/Config.php',
     49    'WCPOS\Vendor\Phpfastcache\Drivers\Memstatic\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memstatic/Item.php',
     50    'WCPOS\Vendor\Phpfastcache\Drivers\Memstatic\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memstatic/Driver.php',
     51    'WCPOS\Vendor\Phpfastcache\Drivers\Memstatic\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memstatic/Config.php',
     52    'WCPOS\Vendor\Phpfastcache\Drivers\Mongodb\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Mongodb/Item.php',
     53    'WCPOS\Vendor\Phpfastcache\Drivers\Mongodb\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Mongodb/Driver.php',
     54    'WCPOS\Vendor\Phpfastcache\Drivers\Mongodb\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Mongodb/Config.php',
     55    'WCPOS\Vendor\Phpfastcache\Drivers\Cookie\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cookie/Item.php',
     56    'WCPOS\Vendor\Phpfastcache\Drivers\Cookie\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cookie/Driver.php',
     57    'WCPOS\Vendor\Phpfastcache\Drivers\Cookie\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cookie/Config.php',
     58    'WCPOS\Vendor\Phpfastcache\Drivers\Couchdb\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchdb/Item.php',
     59    'WCPOS\Vendor\Phpfastcache\Drivers\Couchdb\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchdb/Driver.php',
     60    'WCPOS\Vendor\Phpfastcache\Drivers\Couchdb\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchdb/Config.php',
     61    'WCPOS\Vendor\Phpfastcache\Drivers\Zenddisk\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zenddisk/Item.php',
     62    'WCPOS\Vendor\Phpfastcache\Drivers\Zenddisk\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zenddisk/Driver.php',
     63    'WCPOS\Vendor\Phpfastcache\Drivers\Zenddisk\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zenddisk/Config.php',
     64    'WCPOS\Vendor\Phpfastcache\Drivers\Cassandra\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cassandra/Item.php',
     65    'WCPOS\Vendor\Phpfastcache\Drivers\Cassandra\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cassandra/Driver.php',
     66    'WCPOS\Vendor\Phpfastcache\Drivers\Cassandra\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cassandra/Config.php',
     67    'WCPOS\Vendor\Phpfastcache\Drivers\Sqlite\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Sqlite/Item.php',
     68    'WCPOS\Vendor\Phpfastcache\Drivers\Sqlite\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Sqlite/Driver.php',
     69    'WCPOS\Vendor\Phpfastcache\Drivers\Sqlite\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Sqlite/Config.php',
     70    'WCPOS\Vendor\Phpfastcache\Drivers\Apcu\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Apcu/Item.php',
     71    'WCPOS\Vendor\Phpfastcache\Drivers\Apcu\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Apcu/Driver.php',
     72    'WCPOS\Vendor\Phpfastcache\Drivers\Apcu\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Apcu/Config.php',
     73    'WCPOS\Vendor\Phpfastcache\Drivers\Devfalse\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devfalse/Item.php',
     74    'WCPOS\Vendor\Phpfastcache\Drivers\Devfalse\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devfalse/Driver.php',
     75    'WCPOS\Vendor\Phpfastcache\Drivers\Devfalse\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devfalse/Config.php',
     76    'WCPOS\Vendor\Phpfastcache\Drivers\Memcache\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcache/Item.php',
     77    'WCPOS\Vendor\Phpfastcache\Drivers\Memcache\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcache/Driver.php',
     78    'WCPOS\Vendor\Phpfastcache\Drivers\Memcache\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcache/Config.php',
     79    'WCPOS\Vendor\Phpfastcache\Drivers\Couchbase\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbase/Item.php',
     80    'WCPOS\Vendor\Phpfastcache\Drivers\Couchbase\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbase/Driver.php',
     81    'WCPOS\Vendor\Phpfastcache\Drivers\Couchbase\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbase/Config.php',
     82    'WCPOS\Vendor\Phpfastcache\Drivers\Devtrue\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devtrue/Item.php',
     83    'WCPOS\Vendor\Phpfastcache\Drivers\Devtrue\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devtrue/Driver.php',
     84    'WCPOS\Vendor\Phpfastcache\Drivers\Devtrue\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devtrue/Config.php',
     85    'WCPOS\Vendor\Phpfastcache\Drivers\Leveldb\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Leveldb/Item.php',
     86    'WCPOS\Vendor\Phpfastcache\Drivers\Leveldb\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Leveldb/Driver.php',
     87    'WCPOS\Vendor\Phpfastcache\Drivers\Leveldb\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Leveldb/Config.php',
     88    'WCPOS\Vendor\Phpfastcache\Drivers\Files\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Files/Item.php',
     89    'WCPOS\Vendor\Phpfastcache\Drivers\Files\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Files/Driver.php',
     90    'WCPOS\Vendor\Phpfastcache\Drivers\Files\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Files/Config.php',
     91    'WCPOS\Vendor\Phpfastcache\Drivers\Wincache\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Wincache/Item.php',
     92    'WCPOS\Vendor\Phpfastcache\Drivers\Wincache\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Wincache/Driver.php',
     93    'WCPOS\Vendor\Phpfastcache\Drivers\Wincache\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Wincache/Config.php',
     94    'WCPOS\Vendor\Phpfastcache\Drivers\Devnull\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devnull/Item.php',
     95    'WCPOS\Vendor\Phpfastcache\Drivers\Devnull\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devnull/Driver.php',
     96    'WCPOS\Vendor\Phpfastcache\Drivers\Devnull\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devnull/Config.php',
     97    'WCPOS\Vendor\Phpfastcache\Drivers\Memcached\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcached/Item.php',
     98    'WCPOS\Vendor\Phpfastcache\Drivers\Memcached\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcached/Driver.php',
     99    'WCPOS\Vendor\Phpfastcache\Drivers\Memcached\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcached/Config.php',
     100    'WCPOS\Vendor\Phpfastcache\Drivers\Zendshm\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zendshm/Item.php',
     101    'WCPOS\Vendor\Phpfastcache\Drivers\Zendshm\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zendshm/Driver.php',
     102    'WCPOS\Vendor\Phpfastcache\Drivers\Zendshm\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zendshm/Config.php',
     103    'WCPOS\Vendor\Phpfastcache\Drivers\Redis\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Redis/Item.php',
     104    'WCPOS\Vendor\Phpfastcache\Drivers\Redis\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Redis/Driver.php',
     105    'WCPOS\Vendor\Phpfastcache\Drivers\Redis\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Redis/Config.php',
     106    'WCPOS\Vendor\Phpfastcache\CacheManager' => './phpfastcache/phpfastcache/lib/Phpfastcache/CacheManager.php',
     107    'WCPOS\Vendor\Phpfastcache\EventManager' => './phpfastcache/phpfastcache/lib/Phpfastcache/EventManager.php',
     108    'WCPOS\Vendor\Phpfastcache\Proxy\PhpfastcacheAbstractProxy' => './phpfastcache/phpfastcache/lib/Phpfastcache/Proxy/PhpfastcacheAbstractProxy.php',
     109    'WCPOS\Vendor\Phpfastcache\Api' => './phpfastcache/phpfastcache/lib/Phpfastcache/Api.php',
     110    'WCPOS\Vendor\Phpfastcache\Event\EventManagerDispatcherTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Event/EventManagerDispatcherTrait.php',
     111    'WCPOS\Vendor\Phpfastcache\Event\EventManagerDispatcherInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Event/EventManagerDispatcherInterface.php',
     112    'WCPOS\Vendor\Phpfastcache\Event\EventManagerInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Event/EventManagerInterface.php',
     113    'WCPOS\Vendor\Phpfastcache\Entities\ItemBatch' => './phpfastcache/phpfastcache/lib/Phpfastcache/Entities/ItemBatch.php',
     114    'WCPOS\Vendor\Phpfastcache\Entities\DriverStatistic' => './phpfastcache/phpfastcache/lib/Phpfastcache/Entities/DriverStatistic.php',
     115    'WCPOS\Vendor\Phpfastcache\Entities\DriverIO' => './phpfastcache/phpfastcache/lib/Phpfastcache/Entities/DriverIO.php',
     116    'WCPOS\Vendor\Phpfastcache\Core\Item\ExtendedCacheItemInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Item/ExtendedCacheItemInterface.php',
     117    'WCPOS\Vendor\Phpfastcache\Core\Item\TaggableCacheItemInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Item/TaggableCacheItemInterface.php',
     118    'WCPOS\Vendor\Phpfastcache\Core\Item\TaggableCacheItemTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Item/TaggableCacheItemTrait.php',
     119    'WCPOS\Vendor\Phpfastcache\Core\Item\ItemBaseTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Item/ItemBaseTrait.php',
     120    'WCPOS\Vendor\Phpfastcache\Core\Item\ItemExtendedTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Item/ItemExtendedTrait.php',
     121    'WCPOS\Vendor\Phpfastcache\Core\Pool\AbstractDriverPoolTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/AbstractDriverPoolTrait.php',
     122    'WCPOS\Vendor\Phpfastcache\Core\Pool\ExtendedCacheItemPoolInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/ExtendedCacheItemPoolInterface.php',
     123    'WCPOS\Vendor\Phpfastcache\Core\Pool\TaggableCacheItemPoolInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/TaggableCacheItemPoolInterface.php',
     124    'WCPOS\Vendor\Phpfastcache\Core\Pool\IO\IOHelperTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/IO/IOHelperTrait.php',
     125    'WCPOS\Vendor\Phpfastcache\Core\Pool\ExtendedCacheItemPoolTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/ExtendedCacheItemPoolTrait.php',
     126    'WCPOS\Vendor\Phpfastcache\Core\Pool\TaggableCacheItemPoolTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/TaggableCacheItemPoolTrait.php',
     127    'WCPOS\Vendor\Phpfastcache\Core\Pool\DriverBaseTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/DriverBaseTrait.php',
     128    'WCPOS\Vendor\Phpfastcache\Core\Pool\CacheItemPoolTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/CacheItemPoolTrait.php',
    24129    'WCPOS\Vendor\Phpfastcache\Util\MemcacheDriverCollisionDetectorTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Util/MemcacheDriverCollisionDetectorTrait.php',
    25130    'WCPOS\Vendor\Phpfastcache\Util\ArrayObject' => './phpfastcache/phpfastcache/lib/Phpfastcache/Util/ArrayObject.php',
    26131    'WCPOS\Vendor\Phpfastcache\Util\ClassNamespaceResolverTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Util/ClassNamespaceResolverTrait.php',
     132    'WCPOS\Vendor\Phpfastcache\Util\ClassNamespaceResolverInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Util/ClassNamespaceResolverInterface.php',
    27133    'WCPOS\Vendor\Phpfastcache\Util\Directory' => './phpfastcache/phpfastcache/lib/Phpfastcache/Util/Directory.php',
    28     'WCPOS\Vendor\Phpfastcache\Event\EventManagerDispatcherTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Event/EventManagerDispatcherTrait.php',
    29     'WCPOS\Vendor\Phpfastcache\Event\EventManagerInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Event/EventManagerInterface.php',
    30     'WCPOS\Vendor\Phpfastcache\Event\EventManagerDispatcherInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Event/EventManagerDispatcherInterface.php',
    31     'WCPOS\Vendor\Phpfastcache\CacheManager' => './phpfastcache/phpfastcache/lib/Phpfastcache/CacheManager.php',
    32     'WCPOS\Vendor\Phpfastcache\Core\Item\ItemExtendedTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Item/ItemExtendedTrait.php',
    33     'WCPOS\Vendor\Phpfastcache\Core\Item\ItemBaseTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Item/ItemBaseTrait.php',
    34     'WCPOS\Vendor\Phpfastcache\Core\Item\TaggableCacheItemTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Item/TaggableCacheItemTrait.php',
    35     'WCPOS\Vendor\Phpfastcache\Core\Item\ExtendedCacheItemInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Item/ExtendedCacheItemInterface.php',
    36     'WCPOS\Vendor\Phpfastcache\Core\Item\TaggableCacheItemInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Item/TaggableCacheItemInterface.php',
    37     'WCPOS\Vendor\Phpfastcache\Core\Pool\ExtendedCacheItemPoolTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/ExtendedCacheItemPoolTrait.php',
    38     'WCPOS\Vendor\Phpfastcache\Core\Pool\TaggableCacheItemPoolInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/TaggableCacheItemPoolInterface.php',
    39     'WCPOS\Vendor\Phpfastcache\Core\Pool\CacheItemPoolTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/CacheItemPoolTrait.php',
    40     'WCPOS\Vendor\Phpfastcache\Core\Pool\DriverBaseTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/DriverBaseTrait.php',
    41     'WCPOS\Vendor\Phpfastcache\Core\Pool\AbstractDriverPoolTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/AbstractDriverPoolTrait.php',
    42     'WCPOS\Vendor\Phpfastcache\Core\Pool\TaggableCacheItemPoolTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/TaggableCacheItemPoolTrait.php',
    43     'WCPOS\Vendor\Phpfastcache\Core\Pool\IO\IOHelperTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/IO/IOHelperTrait.php',
    44     'WCPOS\Vendor\Phpfastcache\Core\Pool\ExtendedCacheItemPoolInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Core/Pool/ExtendedCacheItemPoolInterface.php',
    45     'WCPOS\Vendor\Phpfastcache\Proxy\PhpfastcacheAbstractProxy' => './phpfastcache/phpfastcache/lib/Phpfastcache/Proxy/PhpfastcacheAbstractProxy.php',
    46     'WCPOS\Vendor\Phpfastcache\Helper\CacheConditionalHelper' => './phpfastcache/phpfastcache/lib/Phpfastcache/Helper/CacheConditionalHelper.php',
    47     'WCPOS\Vendor\Phpfastcache\Helper\Psr16Adapter' => './phpfastcache/phpfastcache/lib/Phpfastcache/Helper/Psr16Adapter.php',
    48     'WCPOS\Vendor\Phpfastcache\Config\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Config/Config.php',
    49134    'WCPOS\Vendor\Phpfastcache\Config\ConfigurationOption' => './phpfastcache/phpfastcache/lib/Phpfastcache/Config/ConfigurationOption.php',
    50135    'WCPOS\Vendor\Phpfastcache\Config\IOConfigurationOptionTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Config/IOConfigurationOptionTrait.php',
     136    'WCPOS\Vendor\Phpfastcache\Config\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Config/Config.php',
    51137    'WCPOS\Vendor\Phpfastcache\Config\ConfigurationOptionInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Config/ConfigurationOptionInterface.php',
    52     'WCPOS\Vendor\Phpfastcache\Cluster\AggregatablePoolInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/AggregatablePoolInterface.php',
    53     'WCPOS\Vendor\Phpfastcache\Cluster\ClusterPoolInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/ClusterPoolInterface.php',
    54     'WCPOS\Vendor\Phpfastcache\Cluster\ClusterAggregator' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/ClusterAggregator.php',
    55     'WCPOS\Vendor\Phpfastcache\Cluster\AggregatorInterface' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/AggregatorInterface.php',
    56     'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\RandomReplication\RandomReplicationCluster' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/RandomReplication/RandomReplicationCluster.php',
    57     'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\RandomReplication\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/RandomReplication/Item.php',
    58     'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\SemiReplication\SemiReplicationCluster' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/SemiReplication/SemiReplicationCluster.php',
    59     'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\SemiReplication\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/SemiReplication/Item.php',
    60     'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\FullReplication\FullReplicationCluster' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/FullReplication/FullReplicationCluster.php',
    61     'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\FullReplication\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/FullReplication/Item.php',
    62     'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\MasterSlaveReplication\MasterSlaveReplicationCluster' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/MasterSlaveReplication/MasterSlaveReplicationCluster.php',
    63     'WCPOS\Vendor\Phpfastcache\Cluster\Drivers\MasterSlaveReplication\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/Drivers/MasterSlaveReplication/Item.php',
    64     'WCPOS\Vendor\Phpfastcache\Cluster\ClusterPoolTrait' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/ClusterPoolTrait.php',
    65     'WCPOS\Vendor\Phpfastcache\Cluster\ItemAbstract' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/ItemAbstract.php',
    66     'WCPOS\Vendor\Phpfastcache\Cluster\ClusterPoolAbstract' => './phpfastcache/phpfastcache/lib/Phpfastcache/Cluster/ClusterPoolAbstract.php',
    67     'WCPOS\Vendor\Phpfastcache\Api' => './phpfastcache/phpfastcache/lib/Phpfastcache/Api.php',
    68     'WCPOS\Vendor\Phpfastcache\Drivers\Mongodb\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Mongodb/Config.php',
    69     'WCPOS\Vendor\Phpfastcache\Drivers\Mongodb\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Mongodb/Driver.php',
    70     'WCPOS\Vendor\Phpfastcache\Drivers\Mongodb\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Mongodb/Item.php',
    71     'WCPOS\Vendor\Phpfastcache\Drivers\Wincache\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Wincache/Config.php',
    72     'WCPOS\Vendor\Phpfastcache\Drivers\Wincache\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Wincache/Driver.php',
    73     'WCPOS\Vendor\Phpfastcache\Drivers\Wincache\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Wincache/Item.php',
    74     'WCPOS\Vendor\Phpfastcache\Drivers\Files\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Files/Config.php',
    75     'WCPOS\Vendor\Phpfastcache\Drivers\Files\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Files/Driver.php',
    76     'WCPOS\Vendor\Phpfastcache\Drivers\Files\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Files/Item.php',
    77     'WCPOS\Vendor\Phpfastcache\Drivers\Devnull\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devnull/Config.php',
    78     'WCPOS\Vendor\Phpfastcache\Drivers\Devnull\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devnull/Driver.php',
    79     'WCPOS\Vendor\Phpfastcache\Drivers\Devnull\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devnull/Item.php',
    80     'WCPOS\Vendor\Phpfastcache\Drivers\Couchbasev3\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbasev3/Config.php',
    81     'WCPOS\Vendor\Phpfastcache\Drivers\Couchbasev3\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbasev3/Driver.php',
    82     'WCPOS\Vendor\Phpfastcache\Drivers\Couchbasev3\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbasev3/Item.php',
    83     'WCPOS\Vendor\Phpfastcache\Drivers\Couchdb\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchdb/Config.php',
    84     'WCPOS\Vendor\Phpfastcache\Drivers\Couchdb\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchdb/Driver.php',
    85     'WCPOS\Vendor\Phpfastcache\Drivers\Couchdb\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchdb/Item.php',
    86     'WCPOS\Vendor\Phpfastcache\Drivers\Memcache\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcache/Config.php',
    87     'WCPOS\Vendor\Phpfastcache\Drivers\Memcache\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcache/Driver.php',
    88     'WCPOS\Vendor\Phpfastcache\Drivers\Memcache\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcache/Item.php',
    89     'WCPOS\Vendor\Phpfastcache\Drivers\Predis\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Predis/Config.php',
    90     'WCPOS\Vendor\Phpfastcache\Drivers\Predis\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Predis/Driver.php',
    91     'WCPOS\Vendor\Phpfastcache\Drivers\Predis\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Predis/Item.php',
    92     'WCPOS\Vendor\Phpfastcache\Drivers\Devfalse\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devfalse/Config.php',
    93     'WCPOS\Vendor\Phpfastcache\Drivers\Devfalse\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devfalse/Driver.php',
    94     'WCPOS\Vendor\Phpfastcache\Drivers\Devfalse\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devfalse/Item.php',
    95     'WCPOS\Vendor\Phpfastcache\Drivers\Zendshm\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zendshm/Config.php',
    96     'WCPOS\Vendor\Phpfastcache\Drivers\Zendshm\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zendshm/Driver.php',
    97     'WCPOS\Vendor\Phpfastcache\Drivers\Zendshm\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zendshm/Item.php',
    98     'WCPOS\Vendor\Phpfastcache\Drivers\Redis\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Redis/Config.php',
    99     'WCPOS\Vendor\Phpfastcache\Drivers\Redis\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Redis/Driver.php',
    100     'WCPOS\Vendor\Phpfastcache\Drivers\Redis\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Redis/Item.php',
    101     'WCPOS\Vendor\Phpfastcache\Drivers\Ssdb\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Ssdb/Config.php',
    102     'WCPOS\Vendor\Phpfastcache\Drivers\Ssdb\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Ssdb/Driver.php',
    103     'WCPOS\Vendor\Phpfastcache\Drivers\Ssdb\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Ssdb/Item.php',
    104     'WCPOS\Vendor\Phpfastcache\Drivers\Cookie\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cookie/Config.php',
    105     'WCPOS\Vendor\Phpfastcache\Drivers\Cookie\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cookie/Driver.php',
    106     'WCPOS\Vendor\Phpfastcache\Drivers\Cookie\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cookie/Item.php',
    107     'WCPOS\Vendor\Phpfastcache\Drivers\Couchbase\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbase/Config.php',
    108     'WCPOS\Vendor\Phpfastcache\Drivers\Couchbase\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbase/Driver.php',
    109     'WCPOS\Vendor\Phpfastcache\Drivers\Couchbase\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Couchbase/Item.php',
    110     'WCPOS\Vendor\Phpfastcache\Drivers\Memcached\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcached/Config.php',
    111     'WCPOS\Vendor\Phpfastcache\Drivers\Memcached\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcached/Driver.php',
    112     'WCPOS\Vendor\Phpfastcache\Drivers\Memcached\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memcached/Item.php',
    113     'WCPOS\Vendor\Phpfastcache\Drivers\Memstatic\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memstatic/Config.php',
    114     'WCPOS\Vendor\Phpfastcache\Drivers\Memstatic\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memstatic/Driver.php',
    115     'WCPOS\Vendor\Phpfastcache\Drivers\Memstatic\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Memstatic/Item.php',
    116     'WCPOS\Vendor\Phpfastcache\Drivers\Sqlite\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Sqlite/Config.php',
    117     'WCPOS\Vendor\Phpfastcache\Drivers\Sqlite\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Sqlite/Driver.php',
    118     'WCPOS\Vendor\Phpfastcache\Drivers\Sqlite\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Sqlite/Item.php',
    119     'WCPOS\Vendor\Phpfastcache\Drivers\Zenddisk\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zenddisk/Config.php',
    120     'WCPOS\Vendor\Phpfastcache\Drivers\Zenddisk\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zenddisk/Driver.php',
    121     'WCPOS\Vendor\Phpfastcache\Drivers\Zenddisk\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Zenddisk/Item.php',
    122     'WCPOS\Vendor\Phpfastcache\Drivers\Cassandra\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cassandra/Config.php',
    123     'WCPOS\Vendor\Phpfastcache\Drivers\Cassandra\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cassandra/Driver.php',
    124     'WCPOS\Vendor\Phpfastcache\Drivers\Cassandra\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Cassandra/Item.php',
    125     'WCPOS\Vendor\Phpfastcache\Drivers\Apcu\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Apcu/Config.php',
    126     'WCPOS\Vendor\Phpfastcache\Drivers\Apcu\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Apcu/Driver.php',
    127     'WCPOS\Vendor\Phpfastcache\Drivers\Apcu\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Apcu/Item.php',
    128     'WCPOS\Vendor\Phpfastcache\Drivers\Leveldb\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Leveldb/Config.php',
    129     'WCPOS\Vendor\Phpfastcache\Drivers\Leveldb\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Leveldb/Driver.php',
    130     'WCPOS\Vendor\Phpfastcache\Drivers\Leveldb\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Leveldb/Item.php',
    131     'WCPOS\Vendor\Phpfastcache\Drivers\Devtrue\Config' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devtrue/Config.php',
    132     'WCPOS\Vendor\Phpfastcache\Drivers\Devtrue\Driver' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devtrue/Driver.php',
    133     'WCPOS\Vendor\Phpfastcache\Drivers\Devtrue\Item' => './phpfastcache/phpfastcache/lib/Phpfastcache/Drivers/Devtrue/Item.php',
    134     'WCPOS\Vendor\Phpfastcache\EventManager' => './phpfastcache/phpfastcache/lib/Phpfastcache/EventManager.php',
    135     'WCPOS\Vendor\Phpfastcache\Entities\DriverStatistic' => './phpfastcache/phpfastcache/lib/Phpfastcache/Entities/DriverStatistic.php',
    136     'WCPOS\Vendor\Phpfastcache\Entities\ItemBatch' => './phpfastcache/phpfastcache/lib/Phpfastcache/Entities/ItemBatch.php',
    137     'WCPOS\Vendor\Phpfastcache\Entities\DriverIO' => './phpfastcache/phpfastcache/lib/Phpfastcache/Entities/DriverIO.php',
    138     'WCPOS\Vendor\Psr\SimpleCache\CacheInterface' => './phpfastcache/phpfastcache/bin/dependencies/Psr/SimpleCache/src/CacheInterface.php',
     138    'WCPOS\Vendor\Psr\Cache\InvalidArgumentException' => './phpfastcache/phpfastcache/bin/dependencies/Psr/Cache/src/InvalidArgumentException.php',
     139    'WCPOS\Vendor\Psr\Cache\CacheException' => './phpfastcache/phpfastcache/bin/dependencies/Psr/Cache/src/CacheException.php',
     140    'WCPOS\Vendor\Psr\Cache\CacheItemInterface' => './phpfastcache/phpfastcache/bin/dependencies/Psr/Cache/src/CacheItemInterface.php',
     141    'WCPOS\Vendor\Psr\Cache\CacheItemPoolInterface' => './phpfastcache/phpfastcache/bin/dependencies/Psr/Cache/src/CacheItemPoolInterface.php',
    139142    'WCPOS\Vendor\Psr\SimpleCache\InvalidArgumentException' => './phpfastcache/phpfastcache/bin/dependencies/Psr/SimpleCache/src/InvalidArgumentException.php',
    140143    'WCPOS\Vendor\Psr\SimpleCache\CacheException' => './phpfastcache/phpfastcache/bin/dependencies/Psr/SimpleCache/src/CacheException.php',
    141     'WCPOS\Vendor\Psr\Cache\CacheItemPoolInterface' => './phpfastcache/phpfastcache/bin/dependencies/Psr/Cache/src/CacheItemPoolInterface.php',
    142     'WCPOS\Vendor\Psr\Cache\CacheItemInterface' => './phpfastcache/phpfastcache/bin/dependencies/Psr/Cache/src/CacheItemInterface.php',
    143     'WCPOS\Vendor\Psr\Cache\InvalidArgumentException' => './phpfastcache/phpfastcache/bin/dependencies/Psr/Cache/src/InvalidArgumentException.php',
    144     'WCPOS\Vendor\Psr\Cache\CacheException' => './phpfastcache/phpfastcache/bin/dependencies/Psr/Cache/src/CacheException.php',
     144    'WCPOS\Vendor\Psr\SimpleCache\CacheInterface' => './phpfastcache/phpfastcache/bin/dependencies/Psr/SimpleCache/src/CacheInterface.php',
     145    'WCPOS\Vendor\Firebase\JWT\JWK' => './firebase/php-jwt/src/JWK.php',
     146    'WCPOS\Vendor\Firebase\JWT\ExpiredException' => './firebase/php-jwt/src/ExpiredException.php',
     147    'WCPOS\Vendor\Firebase\JWT\JWTExceptionWithPayloadInterface' => './firebase/php-jwt/src/JWTExceptionWithPayloadInterface.php',
    145148    'WCPOS\Vendor\Firebase\JWT\CachedKeySet' => './firebase/php-jwt/src/CachedKeySet.php',
     149    'WCPOS\Vendor\Firebase\JWT\Key' => './firebase/php-jwt/src/Key.php',
    146150    'WCPOS\Vendor\Firebase\JWT\JWT' => './firebase/php-jwt/src/JWT.php',
    147     'WCPOS\Vendor\Firebase\JWT\ExpiredException' => './firebase/php-jwt/src/ExpiredException.php',
    148     'WCPOS\Vendor\Firebase\JWT\JWK' => './firebase/php-jwt/src/JWK.php',
    149     'WCPOS\Vendor\Firebase\JWT\Key' => './firebase/php-jwt/src/Key.php',
     151    'WCPOS\Vendor\Firebase\JWT\BeforeValidException' => './firebase/php-jwt/src/BeforeValidException.php',
    150152    'WCPOS\Vendor\Firebase\JWT\SignatureInvalidException' => './firebase/php-jwt/src/SignatureInvalidException.php',
    151     'WCPOS\Vendor\Firebase\JWT\BeforeValidException' => './firebase/php-jwt/src/BeforeValidException.php',
    152     'WCPOS\Vendor\Firebase\JWT\JWTExceptionWithPayloadInterface' => './firebase/php-jwt/src/JWTExceptionWithPayloadInterface.php',
    153153];
    154154
  • woocommerce-pos/trunk/woocommerce-pos.php

    r3104241 r3104911  
    44 * Plugin URI:        https://wordpress.org/plugins/woocommerce-pos/
    55 * Description:       A simple front-end for taking WooCommerce orders at the Point of Sale. Requires <a href="http://wordpress.org/plugins/woocommerce/">WooCommerce</a>.
    6  * Version:           1.6.1
     6 * Version:           1.6.2
    77 * Author:            kilbot
    88 * Author URI:        http://wcpos.com
     
    1515 * Requires PHP:      7.4
    1616 * Requires Plugins:  woocommerce
    17  * WC tested up to:   8.9
     17 * WC tested up to:   9.0
    1818 * WC requires at least: 5.3
    1919 *
     
    2525
    2626// Define plugin constants.
    27 const VERSION     = '1.6.1';
     27const VERSION     = '1.6.2';
    2828const PLUGIN_NAME = 'woocommerce-pos';
    2929const SHORT_NAME  = 'wcpos';
     
    3838
    3939// Load .env flags (for development).
    40 function load_env( $file ) {
     40function wcpos_load_env( $file ) {
    4141    if ( ! file_exists( $file ) ) {
    4242        return;
     
    7676
    7777// Environment variables.
    78 load_env( __DIR__ . '/.env' );
     78wcpos_load_env( __DIR__ . '/.env' );
    7979
    8080// Error handling for autoload failure.
Note: See TracChangeset for help on using the changeset viewer.