Changeset 2462422
- Timestamp:
- 01/25/2021 05:53:38 PM (5 years ago)
- Location:
- incuca-tech-pix-for-woocommerce
- Files:
-
- 12 edited
-
tags/1.1.2/vendor/composer/ClassLoader.php (modified) (4 diffs)
-
tags/1.1.2/vendor/composer/LICENSE (modified) (1 diff)
-
tags/1.1.2/vendor/composer/autoload_classmap.php (modified) (1 diff)
-
tags/1.1.2/vendor/composer/autoload_real.php (modified) (3 diffs)
-
tags/1.1.2/vendor/composer/autoload_static.php (modified) (2 diffs)
-
tags/1.1.2/vendor/composer/installed.json (modified) (1 diff)
-
trunk/vendor/composer/ClassLoader.php (modified) (4 diffs)
-
trunk/vendor/composer/LICENSE (modified) (1 diff)
-
trunk/vendor/composer/autoload_classmap.php (modified) (1 diff)
-
trunk/vendor/composer/autoload_real.php (modified) (3 diffs)
-
trunk/vendor/composer/autoload_static.php (modified) (2 diffs)
-
trunk/vendor/composer/installed.json (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
incuca-tech-pix-for-woocommerce/tags/1.1.2/vendor/composer/ClassLoader.php
r2462413 r2462422 38 38 * @author Fabien Potencier <fabien@symfony.com> 39 39 * @author Jordi Boggiano <j.boggiano@seld.be> 40 * @see http s://www.php-fig.org/psr/psr-0/41 * @see http s://www.php-fig.org/psr/psr-4/40 * @see http://www.php-fig.org/psr/psr-0/ 41 * @see http://www.php-fig.org/psr/psr-4/ 42 42 */ 43 43 class ClassLoader … … 61 61 { 62 62 if (!empty($this->prefixesPsr0)) { 63 return call_user_func_array('array_merge', array_values($this->prefixesPsr0));63 return call_user_func_array('array_merge', $this->prefixesPsr0); 64 64 } 65 65 … … 280 280 public function setApcuPrefix($apcuPrefix) 281 281 { 282 $this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null;282 $this->apcuPrefix = function_exists('apcu_fetch') && ini_get('apc.enabled') ? $apcuPrefix : null; 283 283 } 284 284 … … 378 378 while (false !== $lastPos = strrpos($subPath, '\\')) { 379 379 $subPath = substr($subPath, 0, $lastPos); 380 $search = $subPath .'\\';380 $search = $subPath.'\\'; 381 381 if (isset($this->prefixDirsPsr4[$search])) { 382 382 $pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1); -
incuca-tech-pix-for-woocommerce/tags/1.1.2/vendor/composer/LICENSE
r2462413 r2462422 1 Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ 2 Upstream-Name: Composer 3 Upstream-Contact: Jordi Boggiano <j.boggiano@seld.be> 4 Source: https://github.com/composer/composer 1 5 2 Copyright (c) Nils Adermann, Jordi Boggiano 6 Files: * 7 Copyright: 2016, Nils Adermann <naderman@naderman.de> 8 2016, Jordi Boggiano <j.boggiano@seld.be> 9 License: Expat 3 10 4 Permission is hereby granted, free of charge, to any person obtaining a copy 5 of this software and associated documentation files (the "Software"), to deal 6 in the Software without restriction, including without limitation the rights 7 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 8 copies of the Software, and to permit persons to whom the Software is furnished 9 to do so, subject to the following conditions: 11 Files: src/Composer/Util/TlsHelper.php 12 Copyright: 2016, Nils Adermann <naderman@naderman.de> 13 2016, Jordi Boggiano <j.boggiano@seld.be> 14 2013, Evan Coury <me@evancoury.com> 15 License: Expat and BSD-2-Clause 10 16 11 The above copyright notice and this permission notice shall be included in all 12 copies or substantial portions of the Software. 17 License: BSD-2-Clause 18 Redistribution and use in source and binary forms, with or without modification, 19 are permitted provided that the following conditions are met: 20 . 21 * Redistributions of source code must retain the above copyright notice, 22 this list of conditions and the following disclaimer. 23 . 24 * Redistributions in binary form must reproduce the above copyright notice, 25 this list of conditions and the following disclaimer in the documentation 26 and/or other materials provided with the distribution. 27 . 28 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 29 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 30 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 31 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR 32 ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 33 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 34 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON 35 ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 36 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 37 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 13 38 14 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 19 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 20 THE SOFTWARE. 21 39 License: Expat 40 Permission is hereby granted, free of charge, to any person obtaining a copy 41 of this software and associated documentation files (the "Software"), to deal 42 in the Software without restriction, including without limitation the rights 43 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 44 copies of the Software, and to permit persons to whom the Software is furnished 45 to do so, subject to the following conditions: 46 . 47 The above copyright notice and this permission notice shall be included in all 48 copies or substantial portions of the Software. 49 . 50 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 51 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 52 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 53 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 54 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 55 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 56 THE SOFTWARE. -
incuca-tech-pix-for-woocommerce/tags/1.1.2/vendor/composer/autoload_classmap.php
r2462413 r2462422 7 7 8 8 return array( 9 'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',10 9 ); -
incuca-tech-pix-for-woocommerce/tags/1.1.2/vendor/composer/autoload_real.php
r2462413 r2462422 14 14 } 15 15 16 /**17 * @return \Composer\Autoload\ClassLoader18 */19 16 public static function getLoader() 20 17 { … … 22 19 return self::$loader; 23 20 } 24 25 require __DIR__ . '/platform_check.php';26 21 27 22 spl_autoload_register(array('ComposerAutoloaderInit92c76e888725823143216b8ed2394f91', 'loadClassLoader'), true, true); … … 31 26 $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); 32 27 if ($useStaticLoader) { 33 require __DIR__ . '/autoload_static.php';28 require_once __DIR__ . '/autoload_static.php'; 34 29 35 30 call_user_func(\Composer\Autoload\ComposerStaticInit92c76e888725823143216b8ed2394f91::getInitializer($loader)); -
incuca-tech-pix-for-woocommerce/tags/1.1.2/vendor/composer/autoload_static.php
r2462413 r2462422 26 26 ); 27 27 28 public static $classMap = array (29 'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',30 );31 32 28 public static function getInitializer(ClassLoader $loader) 33 29 { … … 35 31 $loader->prefixLengthsPsr4 = ComposerStaticInit92c76e888725823143216b8ed2394f91::$prefixLengthsPsr4; 36 32 $loader->prefixDirsPsr4 = ComposerStaticInit92c76e888725823143216b8ed2394f91::$prefixDirsPsr4; 37 $loader->classMap = ComposerStaticInit92c76e888725823143216b8ed2394f91::$classMap;38 33 39 34 }, null, ClassLoader::class); -
incuca-tech-pix-for-woocommerce/tags/1.1.2/vendor/composer/installed.json
r2462413 r2462422 1 { 2 "packages": [ 3 { 4 "name": "chillerlan/php-qrcode", 5 "version": "4.3.0", 6 "version_normalized": "4.3.0.0", 7 "source": { 8 "type": "git", 9 "url": "https://github.com/chillerlan/php-qrcode.git", 10 "reference": "4968063fb3baeedb658293f89f9673fbf2499a3e" 1 [ 2 { 3 "name": "chillerlan/php-qrcode", 4 "version": "4.3.0", 5 "version_normalized": "4.3.0.0", 6 "source": { 7 "type": "git", 8 "url": "https://github.com/chillerlan/php-qrcode.git", 9 "reference": "4968063fb3baeedb658293f89f9673fbf2499a3e" 10 }, 11 "dist": { 12 "type": "zip", 13 "url": "https://api.github.com/repos/chillerlan/php-qrcode/zipball/4968063fb3baeedb658293f89f9673fbf2499a3e", 14 "reference": "4968063fb3baeedb658293f89f9673fbf2499a3e", 15 "shasum": "" 16 }, 17 "require": { 18 "chillerlan/php-settings-container": "^2.1", 19 "ext-mbstring": "*", 20 "php": "^7.4 || ^8.0" 21 }, 22 "require-dev": { 23 "phan/phan": "^3.2.2", 24 "phpunit/phpunit": "^9.4", 25 "setasign/fpdf": "^1.8.2" 26 }, 27 "suggest": { 28 "chillerlan/php-authenticator": "Yet another Google authenticator! Also creates URIs for mobile apps.", 29 "setasign/fpdf": "Required to use the QR FPDF output." 30 }, 31 "time": "2020-11-18T20:49:20+00:00", 32 "type": "library", 33 "installation-source": "dist", 34 "autoload": { 35 "psr-4": { 36 "chillerlan\\QRCode\\": "src/" 37 } 38 }, 39 "notification-url": "https://packagist.org/downloads/", 40 "license": [ 41 "MIT" 42 ], 43 "authors": [ 44 { 45 "name": "Kazuhiko Arase", 46 "homepage": "https://github.com/kazuhikoarase" 11 47 }, 12 "dist": { 13 "type": "zip", 14 "url": "https://api.github.com/repos/chillerlan/php-qrcode/zipball/4968063fb3baeedb658293f89f9673fbf2499a3e", 15 "reference": "4968063fb3baeedb658293f89f9673fbf2499a3e", 16 "shasum": "" 48 { 49 "name": "Smiley", 50 "email": "smiley@chillerlan.net", 51 "homepage": "https://github.com/codemasher" 17 52 }, 18 "require": { 19 "chillerlan/php-settings-container": "^2.1", 20 "ext-mbstring": "*", 21 "php": "^7.4 || ^8.0" 22 }, 23 "require-dev": { 24 "phan/phan": "^3.2.2", 25 "phpunit/phpunit": "^9.4", 26 "setasign/fpdf": "^1.8.2" 27 }, 28 "suggest": { 29 "chillerlan/php-authenticator": "Yet another Google authenticator! Also creates URIs for mobile apps.", 30 "setasign/fpdf": "Required to use the QR FPDF output." 31 }, 32 "time": "2020-11-18T20:49:20+00:00", 33 "type": "library", 34 "installation-source": "dist", 35 "autoload": { 36 "psr-4": { 37 "chillerlan\\QRCode\\": "src/" 38 } 39 }, 40 "notification-url": "https://packagist.org/downloads/", 41 "license": [ 42 "MIT" 43 ], 44 "authors": [ 45 { 46 "name": "Kazuhiko Arase", 47 "homepage": "https://github.com/kazuhikoarase" 48 }, 49 { 50 "name": "Smiley", 51 "email": "smiley@chillerlan.net", 52 "homepage": "https://github.com/codemasher" 53 }, 54 { 55 "name": "Contributors", 56 "homepage": "https://github.com/chillerlan/php-qrcode/graphs/contributors" 57 } 58 ], 59 "description": "A QR code generator. PHP 7.4+", 60 "homepage": "https://github.com/chillerlan/php-qrcode", 61 "keywords": [ 62 "phpqrcode", 63 "qr", 64 "qr code", 65 "qrcode", 66 "qrcode-generator" 67 ], 68 "install-path": "../chillerlan/php-qrcode" 53 { 54 "name": "Contributors", 55 "homepage": "https://github.com/chillerlan/php-qrcode/graphs/contributors" 56 } 57 ], 58 "description": "A QR code generator. PHP 7.4+", 59 "homepage": "https://github.com/chillerlan/php-qrcode", 60 "keywords": [ 61 "phpqrcode", 62 "qr", 63 "qr code", 64 "qrcode", 65 "qrcode-generator" 66 ] 67 }, 68 { 69 "name": "chillerlan/php-settings-container", 70 "version": "2.1.0", 71 "version_normalized": "2.1.0.0", 72 "source": { 73 "type": "git", 74 "url": "https://github.com/chillerlan/php-settings-container.git", 75 "reference": "90ab24a3dc09569bfa0f3dbc3d44bab3aaa2a6c5" 69 76 }, 70 { 71 "name": "chillerlan/php-settings-container", 72 "version": "2.1.0", 73 "version_normalized": "2.1.0.0", 74 "source": { 75 "type": "git", 76 "url": "https://github.com/chillerlan/php-settings-container.git", 77 "reference": "90ab24a3dc09569bfa0f3dbc3d44bab3aaa2a6c5" 78 }, 79 "dist": { 80 "type": "zip", 81 "url": "https://api.github.com/repos/chillerlan/php-settings-container/zipball/90ab24a3dc09569bfa0f3dbc3d44bab3aaa2a6c5", 82 "reference": "90ab24a3dc09569bfa0f3dbc3d44bab3aaa2a6c5", 83 "shasum": "" 84 }, 85 "require": { 86 "ext-json": "*", 87 "php": "^7.4 || ^8.0" 88 }, 89 "require-dev": { 90 "phan/phan": "^3.2.2", 91 "phpunit/phpunit": "9.4" 92 }, 93 "time": "2020-10-07T13:18:35+00:00", 94 "type": "library", 95 "installation-source": "dist", 96 "autoload": { 97 "psr-4": { 98 "chillerlan\\Settings\\": "src/" 99 } 100 }, 101 "notification-url": "https://packagist.org/downloads/", 102 "license": [ 103 "MIT" 104 ], 105 "authors": [ 106 { 107 "name": "Smiley", 108 "email": "smiley@chillerlan.net", 109 "homepage": "https://github.com/codemasher" 110 } 111 ], 112 "description": "A container class for immutable settings objects. Not a DI container. PHP 7.4+", 113 "homepage": "https://github.com/chillerlan/php-settings-container", 114 "keywords": [ 115 "PHP7", 116 "Settings", 117 "container", 118 "helper" 119 ], 120 "install-path": "../chillerlan/php-settings-container" 121 } 122 ], 123 "dev": true, 124 "dev-package-names": [] 125 } 77 "dist": { 78 "type": "zip", 79 "url": "https://api.github.com/repos/chillerlan/php-settings-container/zipball/90ab24a3dc09569bfa0f3dbc3d44bab3aaa2a6c5", 80 "reference": "90ab24a3dc09569bfa0f3dbc3d44bab3aaa2a6c5", 81 "shasum": "" 82 }, 83 "require": { 84 "ext-json": "*", 85 "php": "^7.4 || ^8.0" 86 }, 87 "require-dev": { 88 "phan/phan": "^3.2.2", 89 "phpunit/phpunit": "9.4" 90 }, 91 "time": "2020-10-07T13:18:35+00:00", 92 "type": "library", 93 "installation-source": "dist", 94 "autoload": { 95 "psr-4": { 96 "chillerlan\\Settings\\": "src/" 97 } 98 }, 99 "notification-url": "https://packagist.org/downloads/", 100 "license": [ 101 "MIT" 102 ], 103 "authors": [ 104 { 105 "name": "Smiley", 106 "email": "smiley@chillerlan.net", 107 "homepage": "https://github.com/codemasher" 108 } 109 ], 110 "description": "A container class for immutable settings objects. Not a DI container. PHP 7.4+", 111 "homepage": "https://github.com/chillerlan/php-settings-container", 112 "keywords": [ 113 "PHP7", 114 "Settings", 115 "container", 116 "helper" 117 ] 118 } 119 ] -
incuca-tech-pix-for-woocommerce/trunk/vendor/composer/ClassLoader.php
r2462413 r2462422 38 38 * @author Fabien Potencier <fabien@symfony.com> 39 39 * @author Jordi Boggiano <j.boggiano@seld.be> 40 * @see http s://www.php-fig.org/psr/psr-0/41 * @see http s://www.php-fig.org/psr/psr-4/40 * @see http://www.php-fig.org/psr/psr-0/ 41 * @see http://www.php-fig.org/psr/psr-4/ 42 42 */ 43 43 class ClassLoader … … 61 61 { 62 62 if (!empty($this->prefixesPsr0)) { 63 return call_user_func_array('array_merge', array_values($this->prefixesPsr0));63 return call_user_func_array('array_merge', $this->prefixesPsr0); 64 64 } 65 65 … … 280 280 public function setApcuPrefix($apcuPrefix) 281 281 { 282 $this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null;282 $this->apcuPrefix = function_exists('apcu_fetch') && ini_get('apc.enabled') ? $apcuPrefix : null; 283 283 } 284 284 … … 378 378 while (false !== $lastPos = strrpos($subPath, '\\')) { 379 379 $subPath = substr($subPath, 0, $lastPos); 380 $search = $subPath .'\\';380 $search = $subPath.'\\'; 381 381 if (isset($this->prefixDirsPsr4[$search])) { 382 382 $pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1); -
incuca-tech-pix-for-woocommerce/trunk/vendor/composer/LICENSE
r2462413 r2462422 1 Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ 2 Upstream-Name: Composer 3 Upstream-Contact: Jordi Boggiano <j.boggiano@seld.be> 4 Source: https://github.com/composer/composer 1 5 2 Copyright (c) Nils Adermann, Jordi Boggiano 6 Files: * 7 Copyright: 2016, Nils Adermann <naderman@naderman.de> 8 2016, Jordi Boggiano <j.boggiano@seld.be> 9 License: Expat 3 10 4 Permission is hereby granted, free of charge, to any person obtaining a copy 5 of this software and associated documentation files (the "Software"), to deal 6 in the Software without restriction, including without limitation the rights 7 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 8 copies of the Software, and to permit persons to whom the Software is furnished 9 to do so, subject to the following conditions: 11 Files: src/Composer/Util/TlsHelper.php 12 Copyright: 2016, Nils Adermann <naderman@naderman.de> 13 2016, Jordi Boggiano <j.boggiano@seld.be> 14 2013, Evan Coury <me@evancoury.com> 15 License: Expat and BSD-2-Clause 10 16 11 The above copyright notice and this permission notice shall be included in all 12 copies or substantial portions of the Software. 17 License: BSD-2-Clause 18 Redistribution and use in source and binary forms, with or without modification, 19 are permitted provided that the following conditions are met: 20 . 21 * Redistributions of source code must retain the above copyright notice, 22 this list of conditions and the following disclaimer. 23 . 24 * Redistributions in binary form must reproduce the above copyright notice, 25 this list of conditions and the following disclaimer in the documentation 26 and/or other materials provided with the distribution. 27 . 28 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 29 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 30 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 31 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR 32 ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 33 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 34 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON 35 ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 36 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 37 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 13 38 14 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 19 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 20 THE SOFTWARE. 21 39 License: Expat 40 Permission is hereby granted, free of charge, to any person obtaining a copy 41 of this software and associated documentation files (the "Software"), to deal 42 in the Software without restriction, including without limitation the rights 43 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 44 copies of the Software, and to permit persons to whom the Software is furnished 45 to do so, subject to the following conditions: 46 . 47 The above copyright notice and this permission notice shall be included in all 48 copies or substantial portions of the Software. 49 . 50 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 51 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 52 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 53 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 54 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 55 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 56 THE SOFTWARE. -
incuca-tech-pix-for-woocommerce/trunk/vendor/composer/autoload_classmap.php
r2462413 r2462422 7 7 8 8 return array( 9 'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',10 9 ); -
incuca-tech-pix-for-woocommerce/trunk/vendor/composer/autoload_real.php
r2462413 r2462422 14 14 } 15 15 16 /**17 * @return \Composer\Autoload\ClassLoader18 */19 16 public static function getLoader() 20 17 { … … 22 19 return self::$loader; 23 20 } 24 25 require __DIR__ . '/platform_check.php';26 21 27 22 spl_autoload_register(array('ComposerAutoloaderInit92c76e888725823143216b8ed2394f91', 'loadClassLoader'), true, true); … … 31 26 $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); 32 27 if ($useStaticLoader) { 33 require __DIR__ . '/autoload_static.php';28 require_once __DIR__ . '/autoload_static.php'; 34 29 35 30 call_user_func(\Composer\Autoload\ComposerStaticInit92c76e888725823143216b8ed2394f91::getInitializer($loader)); -
incuca-tech-pix-for-woocommerce/trunk/vendor/composer/autoload_static.php
r2462413 r2462422 26 26 ); 27 27 28 public static $classMap = array (29 'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',30 );31 32 28 public static function getInitializer(ClassLoader $loader) 33 29 { … … 35 31 $loader->prefixLengthsPsr4 = ComposerStaticInit92c76e888725823143216b8ed2394f91::$prefixLengthsPsr4; 36 32 $loader->prefixDirsPsr4 = ComposerStaticInit92c76e888725823143216b8ed2394f91::$prefixDirsPsr4; 37 $loader->classMap = ComposerStaticInit92c76e888725823143216b8ed2394f91::$classMap;38 33 39 34 }, null, ClassLoader::class); -
incuca-tech-pix-for-woocommerce/trunk/vendor/composer/installed.json
r2462413 r2462422 1 { 2 "packages": [ 3 { 4 "name": "chillerlan/php-qrcode", 5 "version": "4.3.0", 6 "version_normalized": "4.3.0.0", 7 "source": { 8 "type": "git", 9 "url": "https://github.com/chillerlan/php-qrcode.git", 10 "reference": "4968063fb3baeedb658293f89f9673fbf2499a3e" 1 [ 2 { 3 "name": "chillerlan/php-qrcode", 4 "version": "4.3.0", 5 "version_normalized": "4.3.0.0", 6 "source": { 7 "type": "git", 8 "url": "https://github.com/chillerlan/php-qrcode.git", 9 "reference": "4968063fb3baeedb658293f89f9673fbf2499a3e" 10 }, 11 "dist": { 12 "type": "zip", 13 "url": "https://api.github.com/repos/chillerlan/php-qrcode/zipball/4968063fb3baeedb658293f89f9673fbf2499a3e", 14 "reference": "4968063fb3baeedb658293f89f9673fbf2499a3e", 15 "shasum": "" 16 }, 17 "require": { 18 "chillerlan/php-settings-container": "^2.1", 19 "ext-mbstring": "*", 20 "php": "^7.4 || ^8.0" 21 }, 22 "require-dev": { 23 "phan/phan": "^3.2.2", 24 "phpunit/phpunit": "^9.4", 25 "setasign/fpdf": "^1.8.2" 26 }, 27 "suggest": { 28 "chillerlan/php-authenticator": "Yet another Google authenticator! Also creates URIs for mobile apps.", 29 "setasign/fpdf": "Required to use the QR FPDF output." 30 }, 31 "time": "2020-11-18T20:49:20+00:00", 32 "type": "library", 33 "installation-source": "dist", 34 "autoload": { 35 "psr-4": { 36 "chillerlan\\QRCode\\": "src/" 37 } 38 }, 39 "notification-url": "https://packagist.org/downloads/", 40 "license": [ 41 "MIT" 42 ], 43 "authors": [ 44 { 45 "name": "Kazuhiko Arase", 46 "homepage": "https://github.com/kazuhikoarase" 11 47 }, 12 "dist": { 13 "type": "zip", 14 "url": "https://api.github.com/repos/chillerlan/php-qrcode/zipball/4968063fb3baeedb658293f89f9673fbf2499a3e", 15 "reference": "4968063fb3baeedb658293f89f9673fbf2499a3e", 16 "shasum": "" 48 { 49 "name": "Smiley", 50 "email": "smiley@chillerlan.net", 51 "homepage": "https://github.com/codemasher" 17 52 }, 18 "require": { 19 "chillerlan/php-settings-container": "^2.1", 20 "ext-mbstring": "*", 21 "php": "^7.4 || ^8.0" 22 }, 23 "require-dev": { 24 "phan/phan": "^3.2.2", 25 "phpunit/phpunit": "^9.4", 26 "setasign/fpdf": "^1.8.2" 27 }, 28 "suggest": { 29 "chillerlan/php-authenticator": "Yet another Google authenticator! Also creates URIs for mobile apps.", 30 "setasign/fpdf": "Required to use the QR FPDF output." 31 }, 32 "time": "2020-11-18T20:49:20+00:00", 33 "type": "library", 34 "installation-source": "dist", 35 "autoload": { 36 "psr-4": { 37 "chillerlan\\QRCode\\": "src/" 38 } 39 }, 40 "notification-url": "https://packagist.org/downloads/", 41 "license": [ 42 "MIT" 43 ], 44 "authors": [ 45 { 46 "name": "Kazuhiko Arase", 47 "homepage": "https://github.com/kazuhikoarase" 48 }, 49 { 50 "name": "Smiley", 51 "email": "smiley@chillerlan.net", 52 "homepage": "https://github.com/codemasher" 53 }, 54 { 55 "name": "Contributors", 56 "homepage": "https://github.com/chillerlan/php-qrcode/graphs/contributors" 57 } 58 ], 59 "description": "A QR code generator. PHP 7.4+", 60 "homepage": "https://github.com/chillerlan/php-qrcode", 61 "keywords": [ 62 "phpqrcode", 63 "qr", 64 "qr code", 65 "qrcode", 66 "qrcode-generator" 67 ], 68 "install-path": "../chillerlan/php-qrcode" 53 { 54 "name": "Contributors", 55 "homepage": "https://github.com/chillerlan/php-qrcode/graphs/contributors" 56 } 57 ], 58 "description": "A QR code generator. PHP 7.4+", 59 "homepage": "https://github.com/chillerlan/php-qrcode", 60 "keywords": [ 61 "phpqrcode", 62 "qr", 63 "qr code", 64 "qrcode", 65 "qrcode-generator" 66 ] 67 }, 68 { 69 "name": "chillerlan/php-settings-container", 70 "version": "2.1.0", 71 "version_normalized": "2.1.0.0", 72 "source": { 73 "type": "git", 74 "url": "https://github.com/chillerlan/php-settings-container.git", 75 "reference": "90ab24a3dc09569bfa0f3dbc3d44bab3aaa2a6c5" 69 76 }, 70 { 71 "name": "chillerlan/php-settings-container", 72 "version": "2.1.0", 73 "version_normalized": "2.1.0.0", 74 "source": { 75 "type": "git", 76 "url": "https://github.com/chillerlan/php-settings-container.git", 77 "reference": "90ab24a3dc09569bfa0f3dbc3d44bab3aaa2a6c5" 78 }, 79 "dist": { 80 "type": "zip", 81 "url": "https://api.github.com/repos/chillerlan/php-settings-container/zipball/90ab24a3dc09569bfa0f3dbc3d44bab3aaa2a6c5", 82 "reference": "90ab24a3dc09569bfa0f3dbc3d44bab3aaa2a6c5", 83 "shasum": "" 84 }, 85 "require": { 86 "ext-json": "*", 87 "php": "^7.4 || ^8.0" 88 }, 89 "require-dev": { 90 "phan/phan": "^3.2.2", 91 "phpunit/phpunit": "9.4" 92 }, 93 "time": "2020-10-07T13:18:35+00:00", 94 "type": "library", 95 "installation-source": "dist", 96 "autoload": { 97 "psr-4": { 98 "chillerlan\\Settings\\": "src/" 99 } 100 }, 101 "notification-url": "https://packagist.org/downloads/", 102 "license": [ 103 "MIT" 104 ], 105 "authors": [ 106 { 107 "name": "Smiley", 108 "email": "smiley@chillerlan.net", 109 "homepage": "https://github.com/codemasher" 110 } 111 ], 112 "description": "A container class for immutable settings objects. Not a DI container. PHP 7.4+", 113 "homepage": "https://github.com/chillerlan/php-settings-container", 114 "keywords": [ 115 "PHP7", 116 "Settings", 117 "container", 118 "helper" 119 ], 120 "install-path": "../chillerlan/php-settings-container" 121 } 122 ], 123 "dev": true, 124 "dev-package-names": [] 125 } 77 "dist": { 78 "type": "zip", 79 "url": "https://api.github.com/repos/chillerlan/php-settings-container/zipball/90ab24a3dc09569bfa0f3dbc3d44bab3aaa2a6c5", 80 "reference": "90ab24a3dc09569bfa0f3dbc3d44bab3aaa2a6c5", 81 "shasum": "" 82 }, 83 "require": { 84 "ext-json": "*", 85 "php": "^7.4 || ^8.0" 86 }, 87 "require-dev": { 88 "phan/phan": "^3.2.2", 89 "phpunit/phpunit": "9.4" 90 }, 91 "time": "2020-10-07T13:18:35+00:00", 92 "type": "library", 93 "installation-source": "dist", 94 "autoload": { 95 "psr-4": { 96 "chillerlan\\Settings\\": "src/" 97 } 98 }, 99 "notification-url": "https://packagist.org/downloads/", 100 "license": [ 101 "MIT" 102 ], 103 "authors": [ 104 { 105 "name": "Smiley", 106 "email": "smiley@chillerlan.net", 107 "homepage": "https://github.com/codemasher" 108 } 109 ], 110 "description": "A container class for immutable settings objects. Not a DI container. PHP 7.4+", 111 "homepage": "https://github.com/chillerlan/php-settings-container", 112 "keywords": [ 113 "PHP7", 114 "Settings", 115 "container", 116 "helper" 117 ] 118 } 119 ]
Note: See TracChangeset
for help on using the changeset viewer.