diff options
Diffstat (limited to 'plugins/jetpack/vendor/composer')
-rw-r--r-- | plugins/jetpack/vendor/composer/ClassLoader.php | 445 | ||||
-rw-r--r-- | plugins/jetpack/vendor/composer/LICENSE | 21 | ||||
-rw-r--r-- | plugins/jetpack/vendor/composer/autoload_classmap.php | 82 | ||||
-rw-r--r-- | plugins/jetpack/vendor/composer/autoload_classmap_package.php | 390 | ||||
-rw-r--r-- | plugins/jetpack/vendor/composer/autoload_files.php | 12 | ||||
-rw-r--r-- | plugins/jetpack/vendor/composer/autoload_namespaces.php | 9 | ||||
-rw-r--r-- | plugins/jetpack/vendor/composer/autoload_psr4.php | 16 | ||||
-rw-r--r-- | plugins/jetpack/vendor/composer/autoload_real.php | 61 | ||||
-rw-r--r-- | plugins/jetpack/vendor/composer/autoload_static.php | 152 | ||||
-rw-r--r-- | plugins/jetpack/vendor/composer/installed.json | 530 |
10 files changed, 1718 insertions, 0 deletions
diff --git a/plugins/jetpack/vendor/composer/ClassLoader.php b/plugins/jetpack/vendor/composer/ClassLoader.php new file mode 100644 index 00000000..fce8549f --- /dev/null +++ b/plugins/jetpack/vendor/composer/ClassLoader.php @@ -0,0 +1,445 @@ +<?php + +/* + * This file is part of Composer. + * + * (c) Nils Adermann <naderman@naderman.de> + * Jordi Boggiano <j.boggiano@seld.be> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Composer\Autoload; + +/** + * ClassLoader implements a PSR-0, PSR-4 and classmap class loader. + * + * $loader = new \Composer\Autoload\ClassLoader(); + * + * // register classes with namespaces + * $loader->add('Symfony\Component', __DIR__.'/component'); + * $loader->add('Symfony', __DIR__.'/framework'); + * + * // activate the autoloader + * $loader->register(); + * + * // to enable searching the include path (eg. for PEAR packages) + * $loader->setUseIncludePath(true); + * + * In this example, if you try to use a class in the Symfony\Component + * namespace or one of its children (Symfony\Component\Console for instance), + * the autoloader will first look for the class under the component/ + * directory, and it will then fallback to the framework/ directory if not + * found before giving up. + * + * This class is loosely based on the Symfony UniversalClassLoader. + * + * @author Fabien Potencier <fabien@symfony.com> + * @author Jordi Boggiano <j.boggiano@seld.be> + * @see http://www.php-fig.org/psr/psr-0/ + * @see http://www.php-fig.org/psr/psr-4/ + */ +class ClassLoader +{ + // PSR-4 + private $prefixLengthsPsr4 = array(); + private $prefixDirsPsr4 = array(); + private $fallbackDirsPsr4 = array(); + + // PSR-0 + private $prefixesPsr0 = array(); + private $fallbackDirsPsr0 = array(); + + private $useIncludePath = false; + private $classMap = array(); + private $classMapAuthoritative = false; + private $missingClasses = array(); + private $apcuPrefix; + + public function getPrefixes() + { + if (!empty($this->prefixesPsr0)) { + return call_user_func_array('array_merge', $this->prefixesPsr0); + } + + return array(); + } + + public function getPrefixesPsr4() + { + return $this->prefixDirsPsr4; + } + + public function getFallbackDirs() + { + return $this->fallbackDirsPsr0; + } + + public function getFallbackDirsPsr4() + { + return $this->fallbackDirsPsr4; + } + + public function getClassMap() + { + return $this->classMap; + } + + /** + * @param array $classMap Class to filename map + */ + public function addClassMap(array $classMap) + { + if ($this->classMap) { + $this->classMap = array_merge($this->classMap, $classMap); + } else { + $this->classMap = $classMap; + } + } + + /** + * Registers a set of PSR-0 directories for a given prefix, either + * appending or prepending to the ones previously set for this prefix. + * + * @param string $prefix The prefix + * @param array|string $paths The PSR-0 root directories + * @param bool $prepend Whether to prepend the directories + */ + public function add($prefix, $paths, $prepend = false) + { + if (!$prefix) { + if ($prepend) { + $this->fallbackDirsPsr0 = array_merge( + (array) $paths, + $this->fallbackDirsPsr0 + ); + } else { + $this->fallbackDirsPsr0 = array_merge( + $this->fallbackDirsPsr0, + (array) $paths + ); + } + + return; + } + + $first = $prefix[0]; + if (!isset($this->prefixesPsr0[$first][$prefix])) { + $this->prefixesPsr0[$first][$prefix] = (array) $paths; + + return; + } + if ($prepend) { + $this->prefixesPsr0[$first][$prefix] = array_merge( + (array) $paths, + $this->prefixesPsr0[$first][$prefix] + ); + } else { + $this->prefixesPsr0[$first][$prefix] = array_merge( + $this->prefixesPsr0[$first][$prefix], + (array) $paths + ); + } + } + + /** + * Registers a set of PSR-4 directories for a given namespace, either + * appending or prepending to the ones previously set for this namespace. + * + * @param string $prefix The prefix/namespace, with trailing '\\' + * @param array|string $paths The PSR-4 base directories + * @param bool $prepend Whether to prepend the directories + * + * @throws \InvalidArgumentException + */ + public function addPsr4($prefix, $paths, $prepend = false) + { + if (!$prefix) { + // Register directories for the root namespace. + if ($prepend) { + $this->fallbackDirsPsr4 = array_merge( + (array) $paths, + $this->fallbackDirsPsr4 + ); + } else { + $this->fallbackDirsPsr4 = array_merge( + $this->fallbackDirsPsr4, + (array) $paths + ); + } + } elseif (!isset($this->prefixDirsPsr4[$prefix])) { + // Register directories for a new namespace. + $length = strlen($prefix); + if ('\\' !== $prefix[$length - 1]) { + throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); + } + $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; + $this->prefixDirsPsr4[$prefix] = (array) $paths; + } elseif ($prepend) { + // Prepend directories for an already registered namespace. + $this->prefixDirsPsr4[$prefix] = array_merge( + (array) $paths, + $this->prefixDirsPsr4[$prefix] + ); + } else { + // Append directories for an already registered namespace. + $this->prefixDirsPsr4[$prefix] = array_merge( + $this->prefixDirsPsr4[$prefix], + (array) $paths + ); + } + } + + /** + * Registers a set of PSR-0 directories for a given prefix, + * replacing any others previously set for this prefix. + * + * @param string $prefix The prefix + * @param array|string $paths The PSR-0 base directories + */ + public function set($prefix, $paths) + { + if (!$prefix) { + $this->fallbackDirsPsr0 = (array) $paths; + } else { + $this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths; + } + } + + /** + * Registers a set of PSR-4 directories for a given namespace, + * replacing any others previously set for this namespace. + * + * @param string $prefix The prefix/namespace, with trailing '\\' + * @param array|string $paths The PSR-4 base directories + * + * @throws \InvalidArgumentException + */ + public function setPsr4($prefix, $paths) + { + if (!$prefix) { + $this->fallbackDirsPsr4 = (array) $paths; + } else { + $length = strlen($prefix); + if ('\\' !== $prefix[$length - 1]) { + throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); + } + $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; + $this->prefixDirsPsr4[$prefix] = (array) $paths; + } + } + + /** + * Turns on searching the include path for class files. + * + * @param bool $useIncludePath + */ + public function setUseIncludePath($useIncludePath) + { + $this->useIncludePath = $useIncludePath; + } + + /** + * Can be used to check if the autoloader uses the include path to check + * for classes. + * + * @return bool + */ + public function getUseIncludePath() + { + return $this->useIncludePath; + } + + /** + * Turns off searching the prefix and fallback directories for classes + * that have not been registered with the class map. + * + * @param bool $classMapAuthoritative + */ + public function setClassMapAuthoritative($classMapAuthoritative) + { + $this->classMapAuthoritative = $classMapAuthoritative; + } + + /** + * Should class lookup fail if not found in the current class map? + * + * @return bool + */ + public function isClassMapAuthoritative() + { + return $this->classMapAuthoritative; + } + + /** + * APCu prefix to use to cache found/not-found classes, if the extension is enabled. + * + * @param string|null $apcuPrefix + */ + public function setApcuPrefix($apcuPrefix) + { + $this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null; + } + + /** + * The APCu prefix in use, or null if APCu caching is not enabled. + * + * @return string|null + */ + public function getApcuPrefix() + { + return $this->apcuPrefix; + } + + /** + * Registers this instance as an autoloader. + * + * @param bool $prepend Whether to prepend the autoloader or not + */ + public function register($prepend = false) + { + spl_autoload_register(array($this, 'loadClass'), true, $prepend); + } + + /** + * Unregisters this instance as an autoloader. + */ + public function unregister() + { + spl_autoload_unregister(array($this, 'loadClass')); + } + + /** + * Loads the given class or interface. + * + * @param string $class The name of the class + * @return bool|null True if loaded, null otherwise + */ + public function loadClass($class) + { + if ($file = $this->findFile($class)) { + includeFile($file); + + return true; + } + } + + /** + * Finds the path to the file where the class is defined. + * + * @param string $class The name of the class + * + * @return string|false The path if found, false otherwise + */ + public function findFile($class) + { + // class map lookup + if (isset($this->classMap[$class])) { + return $this->classMap[$class]; + } + if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) { + return false; + } + if (null !== $this->apcuPrefix) { + $file = apcu_fetch($this->apcuPrefix.$class, $hit); + if ($hit) { + return $file; + } + } + + $file = $this->findFileWithExtension($class, '.php'); + + // Search for Hack files if we are running on HHVM + if (false === $file && defined('HHVM_VERSION')) { + $file = $this->findFileWithExtension($class, '.hh'); + } + + if (null !== $this->apcuPrefix) { + apcu_add($this->apcuPrefix.$class, $file); + } + + if (false === $file) { + // Remember that this class does not exist. + $this->missingClasses[$class] = true; + } + + return $file; + } + + private function findFileWithExtension($class, $ext) + { + // PSR-4 lookup + $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext; + + $first = $class[0]; + if (isset($this->prefixLengthsPsr4[$first])) { + $subPath = $class; + while (false !== $lastPos = strrpos($subPath, '\\')) { + $subPath = substr($subPath, 0, $lastPos); + $search = $subPath . '\\'; + if (isset($this->prefixDirsPsr4[$search])) { + $pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1); + foreach ($this->prefixDirsPsr4[$search] as $dir) { + if (file_exists($file = $dir . $pathEnd)) { + return $file; + } + } + } + } + } + + // PSR-4 fallback dirs + foreach ($this->fallbackDirsPsr4 as $dir) { + if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) { + return $file; + } + } + + // PSR-0 lookup + if (false !== $pos = strrpos($class, '\\')) { + // namespaced class name + $logicalPathPsr0 = substr($logicalPathPsr4, 0, $pos + 1) + . strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR); + } else { + // PEAR-like class name + $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext; + } + + if (isset($this->prefixesPsr0[$first])) { + foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) { + if (0 === strpos($class, $prefix)) { + foreach ($dirs as $dir) { + if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { + return $file; + } + } + } + } + } + + // PSR-0 fallback dirs + foreach ($this->fallbackDirsPsr0 as $dir) { + if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { + return $file; + } + } + + // PSR-0 include paths. + if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) { + return $file; + } + + return false; + } +} + +/** + * Scope isolated include. + * + * Prevents access to $this/self from included files. + */ +function includeFile($file) +{ + include $file; +} diff --git a/plugins/jetpack/vendor/composer/LICENSE b/plugins/jetpack/vendor/composer/LICENSE new file mode 100644 index 00000000..f27399a0 --- /dev/null +++ b/plugins/jetpack/vendor/composer/LICENSE @@ -0,0 +1,21 @@ + +Copyright (c) Nils Adermann, Jordi Boggiano + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is furnished +to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + diff --git a/plugins/jetpack/vendor/composer/autoload_classmap.php b/plugins/jetpack/vendor/composer/autoload_classmap.php new file mode 100644 index 00000000..b354f2a4 --- /dev/null +++ b/plugins/jetpack/vendor/composer/autoload_classmap.php @@ -0,0 +1,82 @@ +<?php + +// autoload_classmap.php @generated by Composer + +$vendorDir = dirname(dirname(__FILE__)); +$baseDir = dirname($vendorDir); + +return array( + 'Automattic\\Jetpack\\Abtest' => $vendorDir . '/automattic/jetpack-abtest/src/class-abtest.php', + 'Automattic\\Jetpack\\Assets' => $vendorDir . '/automattic/jetpack-assets/src/class-assets.php', + 'Automattic\\Jetpack\\Assets\\Logo' => $vendorDir . '/automattic/jetpack-logo/src/class-logo.php', + 'Automattic\\Jetpack\\Autoloader\\AutoloadGenerator' => $vendorDir . '/automattic/jetpack-autoloader/src/AutoloadGenerator.php', + 'Automattic\\Jetpack\\Autoloader\\CustomAutoloaderPlugin' => $vendorDir . '/automattic/jetpack-autoloader/src/CustomAutoloaderPlugin.php', + 'Automattic\\Jetpack\\Backup\\Helper_Script_Manager' => $vendorDir . '/automattic/jetpack-backup/src/class-helper-script-manager.php', + 'Automattic\\Jetpack\\Connection\\Client' => $vendorDir . '/automattic/jetpack-connection/src/class-client.php', + 'Automattic\\Jetpack\\Connection\\Manager' => $vendorDir . '/automattic/jetpack-connection/src/class-manager.php', + 'Automattic\\Jetpack\\Connection\\Manager_Interface' => $vendorDir . '/automattic/jetpack-connection/src/interface-manager.php', + 'Automattic\\Jetpack\\Connection\\REST_Connector' => $vendorDir . '/automattic/jetpack-connection/src/class-rest-connector.php', + 'Automattic\\Jetpack\\Connection\\Utils' => $vendorDir . '/automattic/jetpack-connection/src/class-utils.php', + 'Automattic\\Jetpack\\Connection\\XMLRPC_Connector' => $vendorDir . '/automattic/jetpack-connection/src/class-xmlrpc-connector.php', + 'Automattic\\Jetpack\\Constants' => $vendorDir . '/automattic/jetpack-constants/src/class-constants.php', + 'Automattic\\Jetpack\\Error' => $vendorDir . '/automattic/jetpack-error/src/class-error.php', + 'Automattic\\Jetpack\\JITM' => $vendorDir . '/automattic/jetpack-jitm/src/class-jitm.php', + 'Automattic\\Jetpack\\Plugin\\Tracking' => $baseDir . '/src/class-tracking.php', + 'Automattic\\Jetpack\\Roles' => $vendorDir . '/automattic/jetpack-roles/src/class-roles.php', + 'Automattic\\Jetpack\\Status' => $vendorDir . '/automattic/jetpack-status/src/class-status.php', + 'Automattic\\Jetpack\\Sync\\Actions' => $vendorDir . '/automattic/jetpack-sync/src/class-actions.php', + 'Automattic\\Jetpack\\Sync\\Codec_Interface' => $vendorDir . '/automattic/jetpack-sync/src/interface-codec.php', + 'Automattic\\Jetpack\\Sync\\Defaults' => $vendorDir . '/automattic/jetpack-sync/src/class-defaults.php', + 'Automattic\\Jetpack\\Sync\\Functions' => $vendorDir . '/automattic/jetpack-sync/src/class-functions.php', + 'Automattic\\Jetpack\\Sync\\JSON_Deflate_Array_Codec' => $vendorDir . '/automattic/jetpack-sync/src/class-json-deflate-array-codec.php', + 'Automattic\\Jetpack\\Sync\\Listener' => $vendorDir . '/automattic/jetpack-sync/src/class-listener.php', + 'Automattic\\Jetpack\\Sync\\Lock' => $vendorDir . '/automattic/jetpack-sync/src/class-lock.php', + 'Automattic\\Jetpack\\Sync\\Main' => $vendorDir . '/automattic/jetpack-sync/src/class-main.php', + 'Automattic\\Jetpack\\Sync\\Modules' => $vendorDir . '/automattic/jetpack-sync/src/class-modules.php', + 'Automattic\\Jetpack\\Sync\\Modules\\Attachments' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-attachments.php', + 'Automattic\\Jetpack\\Sync\\Modules\\Callables' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-callables.php', + 'Automattic\\Jetpack\\Sync\\Modules\\Comments' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-comments.php', + 'Automattic\\Jetpack\\Sync\\Modules\\Constants' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-constants.php', + 'Automattic\\Jetpack\\Sync\\Modules\\Full_Sync' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-full-sync.php', + 'Automattic\\Jetpack\\Sync\\Modules\\Import' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-import.php', + 'Automattic\\Jetpack\\Sync\\Modules\\Menus' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-menus.php', + 'Automattic\\Jetpack\\Sync\\Modules\\Meta' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-meta.php', + 'Automattic\\Jetpack\\Sync\\Modules\\Module' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-module.php', + 'Automattic\\Jetpack\\Sync\\Modules\\Network_Options' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-network-options.php', + 'Automattic\\Jetpack\\Sync\\Modules\\Options' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-options.php', + 'Automattic\\Jetpack\\Sync\\Modules\\Plugins' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-plugins.php', + 'Automattic\\Jetpack\\Sync\\Modules\\Posts' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-posts.php', + 'Automattic\\Jetpack\\Sync\\Modules\\Protect' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-protect.php', + 'Automattic\\Jetpack\\Sync\\Modules\\Stats' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-stats.php', + 'Automattic\\Jetpack\\Sync\\Modules\\Term_Relationships' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-term-relationships.php', + 'Automattic\\Jetpack\\Sync\\Modules\\Terms' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-terms.php', + 'Automattic\\Jetpack\\Sync\\Modules\\Themes' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-themes.php', + 'Automattic\\Jetpack\\Sync\\Modules\\Updates' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-updates.php', + 'Automattic\\Jetpack\\Sync\\Modules\\Users' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-users.php', + 'Automattic\\Jetpack\\Sync\\Modules\\WP_Super_Cache' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-wp-super-cache.php', + 'Automattic\\Jetpack\\Sync\\Modules\\WooCommerce' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-woocommerce.php', + 'Automattic\\Jetpack\\Sync\\Queue' => $vendorDir . '/automattic/jetpack-sync/src/class-queue.php', + 'Automattic\\Jetpack\\Sync\\Queue_Buffer' => $vendorDir . '/automattic/jetpack-sync/src/class-queue-buffer.php', + 'Automattic\\Jetpack\\Sync\\Replicastore' => $vendorDir . '/automattic/jetpack-sync/src/class-replicastore.php', + 'Automattic\\Jetpack\\Sync\\Replicastore_Interface' => $vendorDir . '/automattic/jetpack-sync/src/interface-replicastore.php', + 'Automattic\\Jetpack\\Sync\\Sender' => $vendorDir . '/automattic/jetpack-sync/src/class-sender.php', + 'Automattic\\Jetpack\\Sync\\Server' => $vendorDir . '/automattic/jetpack-sync/src/class-server.php', + 'Automattic\\Jetpack\\Sync\\Settings' => $vendorDir . '/automattic/jetpack-sync/src/class-settings.php', + 'Automattic\\Jetpack\\Sync\\Simple_Codec' => $vendorDir . '/automattic/jetpack-sync/src/class-simple-codec.php', + 'Automattic\\Jetpack\\Sync\\Users' => $vendorDir . '/automattic/jetpack-sync/src/class-users.php', + 'Automattic\\Jetpack\\Sync\\Utils' => $vendorDir . '/automattic/jetpack-sync/src/class-utils.php', + 'Automattic\\Jetpack\\Terms_Of_Service' => $vendorDir . '/automattic/jetpack-terms-of-service/src/class-terms-of-service.php', + 'Automattic\\Jetpack\\Tracking' => $vendorDir . '/automattic/jetpack-tracking/src/class-tracking.php', + 'JetpackTracking' => $vendorDir . '/automattic/jetpack-compat/legacy/class-jetpacktracking.php', + 'Jetpack_Client' => $vendorDir . '/automattic/jetpack-compat/legacy/class-jetpack-client.php', + 'Jetpack_IXR_Client' => $vendorDir . '/automattic/jetpack-connection/legacy/class-jetpack-ixr-client.php', + 'Jetpack_IXR_ClientMulticall' => $vendorDir . '/automattic/jetpack-connection/legacy/class-jetpack-ixr-clientmulticall.php', + 'Jetpack_Options' => $vendorDir . '/automattic/jetpack-options/legacy/class-jetpack-options.php', + 'Jetpack_Signature' => $vendorDir . '/automattic/jetpack-connection/legacy/class-jetpack-signature.php', + 'Jetpack_Sync_Actions' => $vendorDir . '/automattic/jetpack-compat/legacy/class-jetpack-sync-actions.php', + 'Jetpack_Sync_Modules' => $vendorDir . '/automattic/jetpack-compat/legacy/class-jetpack-sync-modules.php', + 'Jetpack_Sync_Settings' => $vendorDir . '/automattic/jetpack-compat/legacy/class-jetpack-sync-settings.php', + 'Jetpack_Tracks_Client' => $vendorDir . '/automattic/jetpack-tracking/legacy/class-jetpack-tracks-client.php', + 'Jetpack_Tracks_Event' => $vendorDir . '/automattic/jetpack-tracking/legacy/class-jetpack-tracks-event.php', + 'Jetpack_XMLRPC_Server' => $vendorDir . '/automattic/jetpack-connection/legacy/class-jetpack-xmlrpc-server.php', +); diff --git a/plugins/jetpack/vendor/composer/autoload_classmap_package.php b/plugins/jetpack/vendor/composer/autoload_classmap_package.php new file mode 100644 index 00000000..84054931 --- /dev/null +++ b/plugins/jetpack/vendor/composer/autoload_classmap_package.php @@ -0,0 +1,390 @@ +<?php + +// This file `autoload_classmap_packages.php` was auto generated by automattic/jetpack-autoloader. + +$vendorDir = dirname(__DIR__); +$baseDir = dirname($vendorDir); + +return array( + 'Automattic\\Jetpack\\Sync\\Modules\\Posts' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-posts.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\Attachments' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-attachments.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\WooCommerce' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-woocommerce.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\WP_Super_Cache' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-wp-super-cache.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\Module' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-module.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\Plugins' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-plugins.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\Menus' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-menus.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\Stats' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-stats.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\Meta' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-meta.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\Users' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-users.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\Comments' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-comments.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\Options' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-options.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\Constants' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-constants.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\Term_Relationships' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-term-relationships.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\Terms' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-terms.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\Themes' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-themes.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\Network_Options' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-network-options.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\Protect' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-protect.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\Import' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-import.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\Callables' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-callables.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\Full_Sync' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-full-sync.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\Updates' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-updates.php' + ), + 'Automattic\\Jetpack\\Sync\\Defaults' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/class-defaults.php' + ), + 'Automattic\\Jetpack\\Sync\\Sender' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/class-sender.php' + ), + 'Automattic\\Jetpack\\Sync\\Replicastore_Interface' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/interface-replicastore.php' + ), + 'Automattic\\Jetpack\\Sync\\Replicastore' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/class-replicastore.php' + ), + 'Automattic\\Jetpack\\Sync\\Actions' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/class-actions.php' + ), + 'Automattic\\Jetpack\\Sync\\Functions' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/class-functions.php' + ), + 'Automattic\\Jetpack\\Sync\\Utils' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/class-utils.php' + ), + 'Automattic\\Jetpack\\Sync\\Lock' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/class-lock.php' + ), + 'Automattic\\Jetpack\\Sync\\Codec_Interface' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/interface-codec.php' + ), + 'Automattic\\Jetpack\\Sync\\Main' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/class-main.php' + ), + 'Automattic\\Jetpack\\Sync\\Queue_Buffer' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/class-queue-buffer.php' + ), + 'Automattic\\Jetpack\\Sync\\Users' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/class-users.php' + ), + 'Automattic\\Jetpack\\Sync\\Simple_Codec' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/class-simple-codec.php' + ), + 'Automattic\\Jetpack\\Sync\\Queue' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/class-queue.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/class-modules.php' + ), + 'Automattic\\Jetpack\\Sync\\Listener' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/class-listener.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\Posts' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-posts.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\Attachments' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-attachments.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\WooCommerce' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-woocommerce.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\WP_Super_Cache' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-wp-super-cache.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\Module' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-module.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\Plugins' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-plugins.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\Menus' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-menus.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\Stats' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-stats.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\Meta' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-meta.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\Users' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-users.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\Comments' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-comments.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\Options' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-options.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\Constants' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-constants.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\Term_Relationships' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-term-relationships.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\Terms' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-terms.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\Themes' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-themes.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\Network_Options' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-network-options.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\Protect' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-protect.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\Import' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-import.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\Callables' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-callables.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\Full_Sync' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-full-sync.php' + ), + 'Automattic\\Jetpack\\Sync\\Modules\\Updates' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-updates.php' + ), + 'Automattic\\Jetpack\\Sync\\JSON_Deflate_Array_Codec' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/class-json-deflate-array-codec.php' + ), + 'Automattic\\Jetpack\\Sync\\Settings' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/class-settings.php' + ), + 'Automattic\\Jetpack\\Sync\\Server' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-sync/src/class-server.php' + ), + 'Automattic\\Jetpack\\Connection\\REST_Connector' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-connection/src/class-rest-connector.php' + ), + 'Automattic\\Jetpack\\Connection\\Client' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-connection/src/class-client.php' + ), + 'Automattic\\Jetpack\\Connection\\Utils' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-connection/src/class-utils.php' + ), + 'Automattic\\Jetpack\\Connection\\Manager_Interface' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-connection/src/interface-manager.php' + ), + 'Automattic\\Jetpack\\Connection\\Manager' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-connection/src/class-manager.php' + ), + 'Automattic\\Jetpack\\Connection\\XMLRPC_Connector' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-connection/src/class-xmlrpc-connector.php' + ), + 'Automattic\\Jetpack\\Backup\\Helper_Script_Manager' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-backup/src/class-helper-script-manager.php' + ), + 'Automattic\\Jetpack\\Autoloader\\AutoloadGenerator' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/AutoloadGenerator.php' + ), + 'Automattic\\Jetpack\\Autoloader\\CustomAutoloaderPlugin' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/CustomAutoloaderPlugin.php' + ), + 'Automattic\\Jetpack\\Assets\\Logo' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-logo/src/class-logo.php' + ), + 'Automattic\\Jetpack\\Error' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-error/src/class-error.php' + ), + 'Automattic\\Jetpack\\Constants' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-constants/src/class-constants.php' + ), + 'Automattic\\Jetpack\\Abtest' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-abtest/src/class-abtest.php' + ), + 'Automattic\\Jetpack\\Status' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-status/src/class-status.php' + ), + 'Automattic\\Jetpack\\Terms_Of_Service' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-terms-of-service/src/class-terms-of-service.php' + ), + 'Automattic\\Jetpack\\Tracking' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-tracking/src/class-tracking.php' + ), + 'Automattic\\Jetpack\\Assets' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-assets/src/class-assets.php' + ), + 'Automattic\\Jetpack\\JITM' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-jitm/src/class-jitm.php' + ), + 'Automattic\\Jetpack\\Roles' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-roles/src/class-roles.php' + ), + 'Automattic\\Jetpack\\Plugin\\Tracking' => array( + 'version' => 'dev-branch-8.0', + 'path' => $baseDir . '/src/class-tracking.php' + ), + 'Jetpack_Sync_Settings' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-compat/legacy/class-jetpack-sync-settings.php' + ), + 'JetpackTracking' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-compat/legacy/class-jetpacktracking.php' + ), + 'Jetpack_Client' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-compat/legacy/class-jetpack-client.php' + ), + 'Jetpack_Sync_Modules' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-compat/legacy/class-jetpack-sync-modules.php' + ), + 'Jetpack_Sync_Actions' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-compat/legacy/class-jetpack-sync-actions.php' + ), + 'Jetpack_Tracks_Client' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-tracking/legacy/class-jetpack-tracks-client.php' + ), + 'Jetpack_Tracks_Event' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-tracking/legacy/class-jetpack-tracks-event.php' + ), + 'Jetpack_XMLRPC_Server' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-connection/legacy/class-jetpack-xmlrpc-server.php' + ), + 'Jetpack_IXR_Client' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-connection/legacy/class-jetpack-ixr-client.php' + ), + 'Jetpack_Signature' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-connection/legacy/class-jetpack-signature.php' + ), + 'Jetpack_IXR_ClientMulticall' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-connection/legacy/class-jetpack-ixr-clientmulticall.php' + ), + 'Jetpack_Options' => array( + 'version' => 'dev-retry/phpcs-changed', + 'path' => $vendorDir . '/automattic/jetpack-options/legacy/class-jetpack-options.php' + ), +); + diff --git a/plugins/jetpack/vendor/composer/autoload_files.php b/plugins/jetpack/vendor/composer/autoload_files.php new file mode 100644 index 00000000..0d7f6fca --- /dev/null +++ b/plugins/jetpack/vendor/composer/autoload_files.php @@ -0,0 +1,12 @@ +<?php + +// autoload_files.php @generated by Composer + +$vendorDir = dirname(dirname(__FILE__)); +$baseDir = dirname($vendorDir); + +return array( + 'bce4ecd6aabb2a2948e06d0e2c4ea9a6' => $vendorDir . '/automattic/jetpack-connection/legacy/load-ixr.php', + 'd4eb94df91a729802d18373ee8cdc79f' => $vendorDir . '/automattic/jetpack-backup/actions.php', + '009de6aaa0d497eacea41fab13fc05f1' => $vendorDir . '/automattic/jetpack-compat/functions.php', +); diff --git a/plugins/jetpack/vendor/composer/autoload_namespaces.php b/plugins/jetpack/vendor/composer/autoload_namespaces.php new file mode 100644 index 00000000..b7fc0125 --- /dev/null +++ b/plugins/jetpack/vendor/composer/autoload_namespaces.php @@ -0,0 +1,9 @@ +<?php + +// autoload_namespaces.php @generated by Composer + +$vendorDir = dirname(dirname(__FILE__)); +$baseDir = dirname($vendorDir); + +return array( +); diff --git a/plugins/jetpack/vendor/composer/autoload_psr4.php b/plugins/jetpack/vendor/composer/autoload_psr4.php new file mode 100644 index 00000000..dbb66875 --- /dev/null +++ b/plugins/jetpack/vendor/composer/autoload_psr4.php @@ -0,0 +1,16 @@ +<?php + +// autoload_psr4.php @generated by Composer + +$vendorDir = dirname(dirname(__FILE__)); +$baseDir = dirname($vendorDir); + +return array( + 'Automattic\\Jetpack\\Sync\\Modules\\' => array($vendorDir . '/automattic/jetpack-sync/src/modules'), + 'Automattic\\Jetpack\\Sync\\' => array($vendorDir . '/automattic/jetpack-sync/src'), + 'Automattic\\Jetpack\\Connection\\' => array($vendorDir . '/automattic/jetpack-connection/src'), + 'Automattic\\Jetpack\\Backup\\' => array($vendorDir . '/automattic/jetpack-backup/src'), + 'Automattic\\Jetpack\\Autoloader\\' => array($vendorDir . '/automattic/jetpack-autoloader/src'), + 'Automattic\\Jetpack\\Assets\\' => array($vendorDir . '/automattic/jetpack-logo/src'), + 'Automattic\\Jetpack\\' => array($vendorDir . '/automattic/jetpack-error/src', $vendorDir . '/automattic/jetpack-constants/src', $vendorDir . '/automattic/jetpack-abtest/src', $vendorDir . '/automattic/jetpack-status/src', $vendorDir . '/automattic/jetpack-terms-of-service/src', $vendorDir . '/automattic/jetpack-tracking/src', $vendorDir . '/automattic/jetpack-assets/src', $vendorDir . '/automattic/jetpack-jitm/src', $vendorDir . '/automattic/jetpack-roles/src'), +); diff --git a/plugins/jetpack/vendor/composer/autoload_real.php b/plugins/jetpack/vendor/composer/autoload_real.php new file mode 100644 index 00000000..aba180cb --- /dev/null +++ b/plugins/jetpack/vendor/composer/autoload_real.php @@ -0,0 +1,61 @@ +<?php + +// autoload_real.php @generated by Composer + +class ComposerAutoloaderInit2476b41c8cf17e4e68e22a516cf4ed25 +{ + private static $loader; + + public static function loadClassLoader($class) + { + if ('Composer\Autoload\ClassLoader' === $class) { + require __DIR__ . '/ClassLoader.php'; + } + } + + public static function getLoader() + { + if (null !== self::$loader) { + return self::$loader; + } + + spl_autoload_register(array('ComposerAutoloaderInit2476b41c8cf17e4e68e22a516cf4ed25', 'loadClassLoader'), true, true); + self::$loader = $loader = new \Composer\Autoload\ClassLoader(); + spl_autoload_unregister(array('ComposerAutoloaderInit2476b41c8cf17e4e68e22a516cf4ed25', 'loadClassLoader')); + + $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); + if ($useStaticLoader) { + require_once __DIR__ . '/autoload_static.php'; + + call_user_func(\Composer\Autoload\ComposerStaticInit2476b41c8cf17e4e68e22a516cf4ed25::getInitializer($loader)); + } else { + $classMap = require __DIR__ . '/autoload_classmap.php'; + if ($classMap) { + $loader->addClassMap($classMap); + } + } + + $loader->setClassMapAuthoritative(true); + $loader->register(true); + + if ($useStaticLoader) { + $includeFiles = Composer\Autoload\ComposerStaticInit2476b41c8cf17e4e68e22a516cf4ed25::$files; + } else { + $includeFiles = require __DIR__ . '/autoload_files.php'; + } + foreach ($includeFiles as $fileIdentifier => $file) { + composerRequire2476b41c8cf17e4e68e22a516cf4ed25($fileIdentifier, $file); + } + + return $loader; + } +} + +function composerRequire2476b41c8cf17e4e68e22a516cf4ed25($fileIdentifier, $file) +{ + if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { + require $file; + + $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true; + } +} diff --git a/plugins/jetpack/vendor/composer/autoload_static.php b/plugins/jetpack/vendor/composer/autoload_static.php new file mode 100644 index 00000000..bcd589c9 --- /dev/null +++ b/plugins/jetpack/vendor/composer/autoload_static.php @@ -0,0 +1,152 @@ +<?php + +// autoload_static.php @generated by Composer + +namespace Composer\Autoload; + +class ComposerStaticInit2476b41c8cf17e4e68e22a516cf4ed25 +{ + public static $files = array ( + 'bce4ecd6aabb2a2948e06d0e2c4ea9a6' => __DIR__ . '/..' . '/automattic/jetpack-connection/legacy/load-ixr.php', + 'd4eb94df91a729802d18373ee8cdc79f' => __DIR__ . '/..' . '/automattic/jetpack-backup/actions.php', + '009de6aaa0d497eacea41fab13fc05f1' => __DIR__ . '/..' . '/automattic/jetpack-compat/functions.php', + ); + + public static $prefixLengthsPsr4 = array ( + 'A' => + array ( + 'Automattic\\Jetpack\\Sync\\Modules\\' => 32, + 'Automattic\\Jetpack\\Sync\\' => 24, + 'Automattic\\Jetpack\\Connection\\' => 30, + 'Automattic\\Jetpack\\Backup\\' => 26, + 'Automattic\\Jetpack\\Autoloader\\' => 30, + 'Automattic\\Jetpack\\Assets\\' => 26, + 'Automattic\\Jetpack\\' => 19, + ), + ); + + public static $prefixDirsPsr4 = array ( + 'Automattic\\Jetpack\\Sync\\Modules\\' => + array ( + 0 => __DIR__ . '/..' . '/automattic/jetpack-sync/src/modules', + ), + 'Automattic\\Jetpack\\Sync\\' => + array ( + 0 => __DIR__ . '/..' . '/automattic/jetpack-sync/src', + ), + 'Automattic\\Jetpack\\Connection\\' => + array ( + 0 => __DIR__ . '/..' . '/automattic/jetpack-connection/src', + ), + 'Automattic\\Jetpack\\Backup\\' => + array ( + 0 => __DIR__ . '/..' . '/automattic/jetpack-backup/src', + ), + 'Automattic\\Jetpack\\Autoloader\\' => + array ( + 0 => __DIR__ . '/..' . '/automattic/jetpack-autoloader/src', + ), + 'Automattic\\Jetpack\\Assets\\' => + array ( + 0 => __DIR__ . '/..' . '/automattic/jetpack-logo/src', + ), + 'Automattic\\Jetpack\\' => + array ( + 0 => __DIR__ . '/..' . '/automattic/jetpack-error/src', + 1 => __DIR__ . '/..' . '/automattic/jetpack-constants/src', + 2 => __DIR__ . '/..' . '/automattic/jetpack-abtest/src', + 3 => __DIR__ . '/..' . '/automattic/jetpack-status/src', + 4 => __DIR__ . '/..' . '/automattic/jetpack-terms-of-service/src', + 5 => __DIR__ . '/..' . '/automattic/jetpack-tracking/src', + 6 => __DIR__ . '/..' . '/automattic/jetpack-assets/src', + 7 => __DIR__ . '/..' . '/automattic/jetpack-jitm/src', + 8 => __DIR__ . '/..' . '/automattic/jetpack-roles/src', + ), + ); + + public static $classMap = array ( + 'Automattic\\Jetpack\\Abtest' => __DIR__ . '/..' . '/automattic/jetpack-abtest/src/class-abtest.php', + 'Automattic\\Jetpack\\Assets' => __DIR__ . '/..' . '/automattic/jetpack-assets/src/class-assets.php', + 'Automattic\\Jetpack\\Assets\\Logo' => __DIR__ . '/..' . '/automattic/jetpack-logo/src/class-logo.php', + 'Automattic\\Jetpack\\Autoloader\\AutoloadGenerator' => __DIR__ . '/..' . '/automattic/jetpack-autoloader/src/AutoloadGenerator.php', + 'Automattic\\Jetpack\\Autoloader\\CustomAutoloaderPlugin' => __DIR__ . '/..' . '/automattic/jetpack-autoloader/src/CustomAutoloaderPlugin.php', + 'Automattic\\Jetpack\\Backup\\Helper_Script_Manager' => __DIR__ . '/..' . '/automattic/jetpack-backup/src/class-helper-script-manager.php', + 'Automattic\\Jetpack\\Connection\\Client' => __DIR__ . '/..' . '/automattic/jetpack-connection/src/class-client.php', + 'Automattic\\Jetpack\\Connection\\Manager' => __DIR__ . '/..' . '/automattic/jetpack-connection/src/class-manager.php', + 'Automattic\\Jetpack\\Connection\\Manager_Interface' => __DIR__ . '/..' . '/automattic/jetpack-connection/src/interface-manager.php', + 'Automattic\\Jetpack\\Connection\\REST_Connector' => __DIR__ . '/..' . '/automattic/jetpack-connection/src/class-rest-connector.php', + 'Automattic\\Jetpack\\Connection\\Utils' => __DIR__ . '/..' . '/automattic/jetpack-connection/src/class-utils.php', + 'Automattic\\Jetpack\\Connection\\XMLRPC_Connector' => __DIR__ . '/..' . '/automattic/jetpack-connection/src/class-xmlrpc-connector.php', + 'Automattic\\Jetpack\\Constants' => __DIR__ . '/..' . '/automattic/jetpack-constants/src/class-constants.php', + 'Automattic\\Jetpack\\Error' => __DIR__ . '/..' . '/automattic/jetpack-error/src/class-error.php', + 'Automattic\\Jetpack\\JITM' => __DIR__ . '/..' . '/automattic/jetpack-jitm/src/class-jitm.php', + 'Automattic\\Jetpack\\Plugin\\Tracking' => __DIR__ . '/../..' . '/src/class-tracking.php', + 'Automattic\\Jetpack\\Roles' => __DIR__ . '/..' . '/automattic/jetpack-roles/src/class-roles.php', + 'Automattic\\Jetpack\\Status' => __DIR__ . '/..' . '/automattic/jetpack-status/src/class-status.php', + 'Automattic\\Jetpack\\Sync\\Actions' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/class-actions.php', + 'Automattic\\Jetpack\\Sync\\Codec_Interface' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/interface-codec.php', + 'Automattic\\Jetpack\\Sync\\Defaults' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/class-defaults.php', + 'Automattic\\Jetpack\\Sync\\Functions' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/class-functions.php', + 'Automattic\\Jetpack\\Sync\\JSON_Deflate_Array_Codec' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/class-json-deflate-array-codec.php', + 'Automattic\\Jetpack\\Sync\\Listener' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/class-listener.php', + 'Automattic\\Jetpack\\Sync\\Lock' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/class-lock.php', + 'Automattic\\Jetpack\\Sync\\Main' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/class-main.php', + 'Automattic\\Jetpack\\Sync\\Modules' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/class-modules.php', + 'Automattic\\Jetpack\\Sync\\Modules\\Attachments' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/modules/class-attachments.php', + 'Automattic\\Jetpack\\Sync\\Modules\\Callables' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/modules/class-callables.php', + 'Automattic\\Jetpack\\Sync\\Modules\\Comments' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/modules/class-comments.php', + 'Automattic\\Jetpack\\Sync\\Modules\\Constants' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/modules/class-constants.php', + 'Automattic\\Jetpack\\Sync\\Modules\\Full_Sync' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/modules/class-full-sync.php', + 'Automattic\\Jetpack\\Sync\\Modules\\Import' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/modules/class-import.php', + 'Automattic\\Jetpack\\Sync\\Modules\\Menus' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/modules/class-menus.php', + 'Automattic\\Jetpack\\Sync\\Modules\\Meta' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/modules/class-meta.php', + 'Automattic\\Jetpack\\Sync\\Modules\\Module' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/modules/class-module.php', + 'Automattic\\Jetpack\\Sync\\Modules\\Network_Options' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/modules/class-network-options.php', + 'Automattic\\Jetpack\\Sync\\Modules\\Options' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/modules/class-options.php', + 'Automattic\\Jetpack\\Sync\\Modules\\Plugins' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/modules/class-plugins.php', + 'Automattic\\Jetpack\\Sync\\Modules\\Posts' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/modules/class-posts.php', + 'Automattic\\Jetpack\\Sync\\Modules\\Protect' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/modules/class-protect.php', + 'Automattic\\Jetpack\\Sync\\Modules\\Stats' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/modules/class-stats.php', + 'Automattic\\Jetpack\\Sync\\Modules\\Term_Relationships' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/modules/class-term-relationships.php', + 'Automattic\\Jetpack\\Sync\\Modules\\Terms' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/modules/class-terms.php', + 'Automattic\\Jetpack\\Sync\\Modules\\Themes' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/modules/class-themes.php', + 'Automattic\\Jetpack\\Sync\\Modules\\Updates' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/modules/class-updates.php', + 'Automattic\\Jetpack\\Sync\\Modules\\Users' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/modules/class-users.php', + 'Automattic\\Jetpack\\Sync\\Modules\\WP_Super_Cache' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/modules/class-wp-super-cache.php', + 'Automattic\\Jetpack\\Sync\\Modules\\WooCommerce' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/modules/class-woocommerce.php', + 'Automattic\\Jetpack\\Sync\\Queue' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/class-queue.php', + 'Automattic\\Jetpack\\Sync\\Queue_Buffer' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/class-queue-buffer.php', + 'Automattic\\Jetpack\\Sync\\Replicastore' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/class-replicastore.php', + 'Automattic\\Jetpack\\Sync\\Replicastore_Interface' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/interface-replicastore.php', + 'Automattic\\Jetpack\\Sync\\Sender' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/class-sender.php', + 'Automattic\\Jetpack\\Sync\\Server' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/class-server.php', + 'Automattic\\Jetpack\\Sync\\Settings' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/class-settings.php', + 'Automattic\\Jetpack\\Sync\\Simple_Codec' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/class-simple-codec.php', + 'Automattic\\Jetpack\\Sync\\Users' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/class-users.php', + 'Automattic\\Jetpack\\Sync\\Utils' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/class-utils.php', + 'Automattic\\Jetpack\\Terms_Of_Service' => __DIR__ . '/..' . '/automattic/jetpack-terms-of-service/src/class-terms-of-service.php', + 'Automattic\\Jetpack\\Tracking' => __DIR__ . '/..' . '/automattic/jetpack-tracking/src/class-tracking.php', + 'JetpackTracking' => __DIR__ . '/..' . '/automattic/jetpack-compat/legacy/class-jetpacktracking.php', + 'Jetpack_Client' => __DIR__ . '/..' . '/automattic/jetpack-compat/legacy/class-jetpack-client.php', + 'Jetpack_IXR_Client' => __DIR__ . '/..' . '/automattic/jetpack-connection/legacy/class-jetpack-ixr-client.php', + 'Jetpack_IXR_ClientMulticall' => __DIR__ . '/..' . '/automattic/jetpack-connection/legacy/class-jetpack-ixr-clientmulticall.php', + 'Jetpack_Options' => __DIR__ . '/..' . '/automattic/jetpack-options/legacy/class-jetpack-options.php', + 'Jetpack_Signature' => __DIR__ . '/..' . '/automattic/jetpack-connection/legacy/class-jetpack-signature.php', + 'Jetpack_Sync_Actions' => __DIR__ . '/..' . '/automattic/jetpack-compat/legacy/class-jetpack-sync-actions.php', + 'Jetpack_Sync_Modules' => __DIR__ . '/..' . '/automattic/jetpack-compat/legacy/class-jetpack-sync-modules.php', + 'Jetpack_Sync_Settings' => __DIR__ . '/..' . '/automattic/jetpack-compat/legacy/class-jetpack-sync-settings.php', + 'Jetpack_Tracks_Client' => __DIR__ . '/..' . '/automattic/jetpack-tracking/legacy/class-jetpack-tracks-client.php', + 'Jetpack_Tracks_Event' => __DIR__ . '/..' . '/automattic/jetpack-tracking/legacy/class-jetpack-tracks-event.php', + 'Jetpack_XMLRPC_Server' => __DIR__ . '/..' . '/automattic/jetpack-connection/legacy/class-jetpack-xmlrpc-server.php', + ); + + public static function getInitializer(ClassLoader $loader) + { + return \Closure::bind(function () use ($loader) { + $loader->prefixLengthsPsr4 = ComposerStaticInit2476b41c8cf17e4e68e22a516cf4ed25::$prefixLengthsPsr4; + $loader->prefixDirsPsr4 = ComposerStaticInit2476b41c8cf17e4e68e22a516cf4ed25::$prefixDirsPsr4; + $loader->classMap = ComposerStaticInit2476b41c8cf17e4e68e22a516cf4ed25::$classMap; + + }, null, ClassLoader::class); + } +} diff --git a/plugins/jetpack/vendor/composer/installed.json b/plugins/jetpack/vendor/composer/installed.json new file mode 100644 index 00000000..820059af --- /dev/null +++ b/plugins/jetpack/vendor/composer/installed.json @@ -0,0 +1,530 @@ +[ + { + "name": "automattic/jetpack-abtest", + "version": "dev-retry/phpcs-changed", + "version_normalized": "dev-retry/phpcs-changed", + "dist": { + "type": "path", + "url": "./packages/abtest", + "reference": "b873be98786907a49ac5cd21836167f662212aa0" + }, + "require": { + "automattic/jetpack-connection": "@dev", + "automattic/jetpack-error": "@dev" + }, + "require-dev": { + "php-mock/php-mock": "^2.1", + "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5" + }, + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "Automattic\\Jetpack\\": "src/" + } + }, + "scripts": { + "phpunit": [ + "@composer install", + "./vendor/phpunit/phpunit/phpunit --colors=always" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "description": "Provides an interface to the WP.com A/B tests." + }, + { + "name": "automattic/jetpack-assets", + "version": "dev-retry/phpcs-changed", + "version_normalized": "dev-retry/phpcs-changed", + "dist": { + "type": "path", + "url": "./packages/assets", + "reference": "e93b5911e77ff0abfad498e99edbb5f6a8a124a9" + }, + "require": { + "automattic/jetpack-constants": "@dev" + }, + "require-dev": { + "php-mock/php-mock": "^2.1", + "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5" + }, + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "Automattic\\Jetpack\\": "src/" + } + }, + "scripts": { + "phpunit": [ + "@composer install", + "./vendor/phpunit/phpunit/phpunit --colors=always" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "description": "Asset management utilities for Jetpack ecosystem packages" + }, + { + "name": "automattic/jetpack-autoloader", + "version": "dev-retry/phpcs-changed", + "version_normalized": "dev-retry/phpcs-changed", + "dist": { + "type": "path", + "url": "./packages/autoloader", + "reference": "43bb413915e6aad7e4a088490cb76d72df22a8fb" + }, + "require": { + "composer-plugin-api": "^1.1" + }, + "require-dev": { + "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5" + }, + "type": "composer-plugin", + "extra": { + "class": "Automattic\\Jetpack\\Autoloader\\CustomAutoloaderPlugin" + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Automattic\\Jetpack\\Autoloader\\": "src" + } + }, + "scripts": { + "phpunit": [ + "@composer install", + "./vendor/phpunit/phpunit/phpunit --colors=always" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "description": "Creates a custom autoloader for a plugin or theme." + }, + { + "name": "automattic/jetpack-backup", + "version": "dev-retry/phpcs-changed", + "version_normalized": "dev-retry/phpcs-changed", + "dist": { + "type": "path", + "url": "./packages/backup", + "reference": "3dd44f29c9c6ab41cc2492675078ba8b808caea7" + }, + "type": "library", + "installation-source": "dist", + "autoload": { + "files": [ + "actions.php" + ], + "psr-4": { + "Automattic\\Jetpack\\Backup\\": "src/" + } + }, + "license": [ + "GPL-2.0-or-later" + ], + "description": "Tools to assist with backing up Jetpack sites." + }, + { + "name": "automattic/jetpack-compat", + "version": "dev-retry/phpcs-changed", + "version_normalized": "dev-retry/phpcs-changed", + "dist": { + "type": "path", + "url": "./packages/compat", + "reference": "2138cbc8b0b1aecb290608b5d82e873c7330aac5" + }, + "require-dev": { + "php-mock/php-mock": "^2.1", + "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5" + }, + "type": "library", + "installation-source": "dist", + "autoload": { + "files": [ + "functions.php" + ], + "classmap": [ + "legacy" + ] + }, + "scripts": { + "phpunit": [ + "@composer install", + "./vendor/phpunit/phpunit/phpunit --colors=always" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "description": "Compatibility layer with previous versions of Jetpack" + }, + { + "name": "automattic/jetpack-connection", + "version": "dev-retry/phpcs-changed", + "version_normalized": "dev-retry/phpcs-changed", + "dist": { + "type": "path", + "url": "./packages/connection", + "reference": "59fa2bc973303b013ce63978ff8d875d1223f510" + }, + "require": { + "automattic/jetpack-constants": "@dev", + "automattic/jetpack-options": "@dev" + }, + "require-dev": { + "php-mock/php-mock": "^2.1", + "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5" + }, + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "Automattic\\Jetpack\\Connection\\": "src" + }, + "files": [ + "legacy/load-ixr.php" + ], + "classmap": [ + "legacy" + ] + }, + "scripts": { + "phpunit": [ + "@composer install", + "./vendor/phpunit/phpunit/phpunit --colors=always" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "description": "Everything needed to connect to the Jetpack infrastructure" + }, + { + "name": "automattic/jetpack-constants", + "version": "dev-retry/phpcs-changed", + "version_normalized": "dev-retry/phpcs-changed", + "dist": { + "type": "path", + "url": "./packages/constants", + "reference": "a6ab6360f4b48962ec7d62b06b39d1470b1dbe95" + }, + "require-dev": { + "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5" + }, + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "Automattic\\Jetpack\\": "src/" + } + }, + "scripts": { + "phpunit": [ + "@composer install", + "./vendor/phpunit/phpunit/phpunit --colors=always" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "description": "A wrapper for defining constants in a more testable way." + }, + { + "name": "automattic/jetpack-error", + "version": "dev-retry/phpcs-changed", + "version_normalized": "dev-retry/phpcs-changed", + "dist": { + "type": "path", + "url": "./packages/error", + "reference": "1707cf33a92fc66f1635dfe1e4215819101e9bb4" + }, + "require-dev": { + "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5" + }, + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "Automattic\\Jetpack\\": "src/" + } + }, + "scripts": { + "phpunit": [ + "@composer install", + "./vendor/phpunit/phpunit/phpunit --colors=always" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "description": "Jetpack Error - a wrapper around WP_Error." + }, + { + "name": "automattic/jetpack-jitm", + "version": "dev-retry/phpcs-changed", + "version_normalized": "dev-retry/phpcs-changed", + "dist": { + "type": "path", + "url": "./packages/jitm", + "reference": "b0c2da6ce6a0137f3a1895ab82a93ad7769fddca" + }, + "require": { + "automattic/jetpack-assets": "@dev", + "automattic/jetpack-connection": "@dev", + "automattic/jetpack-constants": "@dev", + "automattic/jetpack-logo": "@dev", + "automattic/jetpack-options": "@dev", + "automattic/jetpack-tracking": "@dev" + }, + "require-dev": { + "mockery/mockery": "^1.2", + "php-mock/php-mock": "^2.1", + "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5" + }, + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "Automattic\\Jetpack\\": "src/" + } + }, + "scripts": { + "phpunit": [ + "@composer install", + "./vendor/phpunit/phpunit/phpunit --colors=always" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "description": "Just in time messages for Jetpack" + }, + { + "name": "automattic/jetpack-logo", + "version": "dev-retry/phpcs-changed", + "version_normalized": "dev-retry/phpcs-changed", + "dist": { + "type": "path", + "url": "./packages/logo", + "reference": "d8a31dfd40166c4867fa2c526a03d9df481d5610" + }, + "require-dev": { + "php-mock/php-mock": "^2.1", + "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5" + }, + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "Automattic\\Jetpack\\Assets\\": "src/" + } + }, + "scripts": { + "phpunit": [ + "@composer install", + "./vendor/phpunit/phpunit/phpunit --colors=always" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "description": "A logo for Jetpack" + }, + { + "name": "automattic/jetpack-options", + "version": "dev-retry/phpcs-changed", + "version_normalized": "dev-retry/phpcs-changed", + "dist": { + "type": "path", + "url": "./packages/options", + "reference": "78220bf7d3c1a3a5ed4edb77462e84982b3c408f" + }, + "require": { + "automattic/jetpack-constants": "@dev" + }, + "require-dev": { + "10up/wp_mock": "0.4.2", + "phpunit/phpunit": "7.*.*" + }, + "type": "library", + "installation-source": "dist", + "autoload": { + "classmap": [ + "legacy" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "description": "A wrapper for wp-options to manage specific Jetpack options." + }, + { + "name": "automattic/jetpack-roles", + "version": "dev-retry/phpcs-changed", + "version_normalized": "dev-retry/phpcs-changed", + "dist": { + "type": "path", + "url": "./packages/roles", + "reference": "f38b3379c11a05e4711b4fb29b390c8107daccd7" + }, + "require-dev": { + "php-mock/php-mock": "^2.1", + "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5" + }, + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "Automattic\\Jetpack\\": "src/" + } + }, + "scripts": { + "phpunit": [ + "@composer install", + "./vendor/phpunit/phpunit/phpunit --colors=always" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "description": "Utilities, related with user roles and capabilities." + }, + { + "name": "automattic/jetpack-status", + "version": "dev-retry/phpcs-changed", + "version_normalized": "dev-retry/phpcs-changed", + "dist": { + "type": "path", + "url": "./packages/status", + "reference": "99ecd79ed31dc3432892df709ba745ebc6f747e9" + }, + "require-dev": { + "php-mock/php-mock": "^2.1", + "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5" + }, + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "Automattic\\Jetpack\\": "src/" + } + }, + "scripts": { + "phpunit": [ + "@composer install", + "./vendor/phpunit/phpunit/phpunit --colors=always" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "description": "Used to retrieve information about the current status of Jetpack and the site overall." + }, + { + "name": "automattic/jetpack-sync", + "version": "dev-retry/phpcs-changed", + "version_normalized": "dev-retry/phpcs-changed", + "dist": { + "type": "path", + "url": "./packages/sync", + "reference": "1cad05fcfd38ad123af0bbf08b5a1224bd95312a" + }, + "require": { + "automattic/jetpack-connection": "@dev", + "automattic/jetpack-constants": "@dev", + "automattic/jetpack-options": "@dev", + "automattic/jetpack-roles": "@dev", + "automattic/jetpack-status": "@dev" + }, + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "Automattic\\Jetpack\\Sync\\": "src/", + "Automattic\\Jetpack\\Sync\\Modules\\": "src/modules/" + } + }, + "license": [ + "GPL-2.0-or-later" + ], + "description": "Everything needed to allow syncing to the WP.com infrastructure." + }, + { + "name": "automattic/jetpack-terms-of-service", + "version": "dev-retry/phpcs-changed", + "version_normalized": "dev-retry/phpcs-changed", + "dist": { + "type": "path", + "url": "./packages/terms-of-service", + "reference": "6f53f2987be1c025edcd7820759df50c134065e6" + }, + "require": { + "automattic/jetpack-connection": "@dev", + "automattic/jetpack-options": "@dev", + "automattic/jetpack-status": "@dev" + }, + "require-dev": { + "php-mock/php-mock": "^2.1", + "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5" + }, + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "Automattic\\Jetpack\\": "src/" + } + }, + "scripts": { + "phpunit": [ + "@composer install", + "./vendor/phpunit/phpunit/phpunit --colors=always" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "description": "Everything need to manage the terms of service state" + }, + { + "name": "automattic/jetpack-tracking", + "version": "dev-retry/phpcs-changed", + "version_normalized": "dev-retry/phpcs-changed", + "dist": { + "type": "path", + "url": "./packages/tracking", + "reference": "fd194dfc4f01a66de9c5b9caf239cdd806a8d3eb" + }, + "require": { + "automattic/jetpack-options": "@dev", + "automattic/jetpack-terms-of-service": "@dev" + }, + "require-dev": { + "php-mock/php-mock": "^2.1", + "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5" + }, + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "Automattic\\Jetpack\\": "src/" + }, + "classmap": [ + "legacy" + ] + }, + "scripts": { + "phpunit": [ + "@composer install", + "./vendor/phpunit/phpunit/phpunit --colors=always" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "description": "Tracking for Jetpack" + } +] |