summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/jetpack/vendor/composer')
-rw-r--r--plugins/jetpack/vendor/composer/ClassLoader.php157
-rw-r--r--plugins/jetpack/vendor/composer/InstalledVersions.php337
-rw-r--r--plugins/jetpack/vendor/composer/autoload_classmap.php217
-rw-r--r--plugins/jetpack/vendor/composer/autoload_files.php6
-rw-r--r--plugins/jetpack/vendor/composer/autoload_namespaces.php1
-rw-r--r--plugins/jetpack/vendor/composer/autoload_real.php23
-rw-r--r--plugins/jetpack/vendor/composer/autoload_static.php242
-rw-r--r--plugins/jetpack/vendor/composer/installed.json2401
-rw-r--r--plugins/jetpack/vendor/composer/installed.php320
-rw-r--r--plugins/jetpack/vendor/composer/jetpack_autoload_classmap.php593
-rw-r--r--plugins/jetpack/vendor/composer/jetpack_autoload_filemap.php21
-rw-r--r--plugins/jetpack/vendor/composer/platform_check.php26
12 files changed, 3522 insertions, 822 deletions
diff --git a/plugins/jetpack/vendor/composer/ClassLoader.php b/plugins/jetpack/vendor/composer/ClassLoader.php
index fce8549f..0cd6055d 100644
--- a/plugins/jetpack/vendor/composer/ClassLoader.php
+++ b/plugins/jetpack/vendor/composer/ClassLoader.php
@@ -37,57 +37,130 @@ namespace Composer\Autoload;
*
* @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/
+ * @see https://www.php-fig.org/psr/psr-0/
+ * @see https://www.php-fig.org/psr/psr-4/
*/
class ClassLoader
{
+ /** @var ?string */
+ private $vendorDir;
+
// PSR-4
+ /**
+ * @var array[]
+ * @psalm-var array<string, array<string, int>>
+ */
private $prefixLengthsPsr4 = array();
+ /**
+ * @var array[]
+ * @psalm-var array<string, array<int, string>>
+ */
private $prefixDirsPsr4 = array();
+ /**
+ * @var array[]
+ * @psalm-var array<string, string>
+ */
private $fallbackDirsPsr4 = array();
// PSR-0
+ /**
+ * @var array[]
+ * @psalm-var array<string, array<string, string[]>>
+ */
private $prefixesPsr0 = array();
+ /**
+ * @var array[]
+ * @psalm-var array<string, string>
+ */
private $fallbackDirsPsr0 = array();
+ /** @var bool */
private $useIncludePath = false;
+
+ /**
+ * @var string[]
+ * @psalm-var array<string, string>
+ */
private $classMap = array();
+
+ /** @var bool */
private $classMapAuthoritative = false;
+
+ /**
+ * @var bool[]
+ * @psalm-var array<string, bool>
+ */
private $missingClasses = array();
+
+ /** @var ?string */
private $apcuPrefix;
+ /**
+ * @var self[]
+ */
+ private static $registeredLoaders = array();
+
+ /**
+ * @param ?string $vendorDir
+ */
+ public function __construct($vendorDir = null)
+ {
+ $this->vendorDir = $vendorDir;
+ }
+
+ /**
+ * @return string[]
+ */
public function getPrefixes()
{
if (!empty($this->prefixesPsr0)) {
- return call_user_func_array('array_merge', $this->prefixesPsr0);
+ return call_user_func_array('array_merge', array_values($this->prefixesPsr0));
}
return array();
}
+ /**
+ * @return array[]
+ * @psalm-return array<string, array<int, string>>
+ */
public function getPrefixesPsr4()
{
return $this->prefixDirsPsr4;
}
+ /**
+ * @return array[]
+ * @psalm-return array<string, string>
+ */
public function getFallbackDirs()
{
return $this->fallbackDirsPsr0;
}
+ /**
+ * @return array[]
+ * @psalm-return array<string, string>
+ */
public function getFallbackDirsPsr4()
{
return $this->fallbackDirsPsr4;
}
+ /**
+ * @return string[] Array of classname => path
+ * @psalm-var array<string, string>
+ */
public function getClassMap()
{
return $this->classMap;
}
/**
- * @param array $classMap Class to filename map
+ * @param string[] $classMap Class to filename map
+ * @psalm-param array<string, string> $classMap
+ *
+ * @return void
*/
public function addClassMap(array $classMap)
{
@@ -102,9 +175,11 @@ class ClassLoader
* 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
+ * @param string $prefix The prefix
+ * @param string[]|string $paths The PSR-0 root directories
+ * @param bool $prepend Whether to prepend the directories
+ *
+ * @return void
*/
public function add($prefix, $paths, $prepend = false)
{
@@ -147,11 +222,13 @@ class ClassLoader
* 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
+ * @param string $prefix The prefix/namespace, with trailing '\\'
+ * @param string[]|string $paths The PSR-4 base directories
+ * @param bool $prepend Whether to prepend the directories
*
* @throws \InvalidArgumentException
+ *
+ * @return void
*/
public function addPsr4($prefix, $paths, $prepend = false)
{
@@ -195,8 +272,10 @@ class ClassLoader
* 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
+ * @param string $prefix The prefix
+ * @param string[]|string $paths The PSR-0 base directories
+ *
+ * @return void
*/
public function set($prefix, $paths)
{
@@ -211,10 +290,12 @@ class ClassLoader
* 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
+ * @param string $prefix The prefix/namespace, with trailing '\\'
+ * @param string[]|string $paths The PSR-4 base directories
*
* @throws \InvalidArgumentException
+ *
+ * @return void
*/
public function setPsr4($prefix, $paths)
{
@@ -234,6 +315,8 @@ class ClassLoader
* Turns on searching the include path for class files.
*
* @param bool $useIncludePath
+ *
+ * @return void
*/
public function setUseIncludePath($useIncludePath)
{
@@ -256,6 +339,8 @@ class ClassLoader
* that have not been registered with the class map.
*
* @param bool $classMapAuthoritative
+ *
+ * @return void
*/
public function setClassMapAuthoritative($classMapAuthoritative)
{
@@ -276,6 +361,8 @@ class ClassLoader
* APCu prefix to use to cache found/not-found classes, if the extension is enabled.
*
* @param string|null $apcuPrefix
+ *
+ * @return void
*/
public function setApcuPrefix($apcuPrefix)
{
@@ -296,25 +383,44 @@ class ClassLoader
* Registers this instance as an autoloader.
*
* @param bool $prepend Whether to prepend the autoloader or not
+ *
+ * @return void
*/
public function register($prepend = false)
{
spl_autoload_register(array($this, 'loadClass'), true, $prepend);
+
+ if (null === $this->vendorDir) {
+ return;
+ }
+
+ if ($prepend) {
+ self::$registeredLoaders = array($this->vendorDir => $this) + self::$registeredLoaders;
+ } else {
+ unset(self::$registeredLoaders[$this->vendorDir]);
+ self::$registeredLoaders[$this->vendorDir] = $this;
+ }
}
/**
* Unregisters this instance as an autoloader.
+ *
+ * @return void
*/
public function unregister()
{
spl_autoload_unregister(array($this, 'loadClass'));
+
+ if (null !== $this->vendorDir) {
+ unset(self::$registeredLoaders[$this->vendorDir]);
+ }
}
/**
* Loads the given class or interface.
*
* @param string $class The name of the class
- * @return bool|null True if loaded, null otherwise
+ * @return true|null True if loaded, null otherwise
*/
public function loadClass($class)
{
@@ -323,6 +429,8 @@ class ClassLoader
return true;
}
+
+ return null;
}
/**
@@ -367,6 +475,21 @@ class ClassLoader
return $file;
}
+ /**
+ * Returns the currently registered loaders indexed by their corresponding vendor directories.
+ *
+ * @return self[]
+ */
+ public static function getRegisteredLoaders()
+ {
+ return self::$registeredLoaders;
+ }
+
+ /**
+ * @param string $class
+ * @param string $ext
+ * @return string|false
+ */
private function findFileWithExtension($class, $ext)
{
// PSR-4 lookup
@@ -438,6 +561,10 @@ class ClassLoader
* Scope isolated include.
*
* Prevents access to $this/self from included files.
+ *
+ * @param string $file
+ * @return void
+ * @private
*/
function includeFile($file)
{
diff --git a/plugins/jetpack/vendor/composer/InstalledVersions.php b/plugins/jetpack/vendor/composer/InstalledVersions.php
new file mode 100644
index 00000000..7c5502ca
--- /dev/null
+++ b/plugins/jetpack/vendor/composer/InstalledVersions.php
@@ -0,0 +1,337 @@
+<?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;
+
+use Composer\Autoload\ClassLoader;
+use Composer\Semver\VersionParser;
+
+/**
+ * This class is copied in every Composer installed project and available to all
+ *
+ * See also https://getcomposer.org/doc/07-runtime.md#installed-versions
+ *
+ * To require its presence, you can require `composer-runtime-api ^2.0`
+ */
+class InstalledVersions
+{
+ private static $installed;
+ private static $canGetVendors;
+ private static $installedByVendor = array();
+
+ /**
+ * Returns a list of all package names which are present, either by being installed, replaced or provided
+ *
+ * @return string[]
+ * @psalm-return list<string>
+ */
+ public static function getInstalledPackages()
+ {
+ $packages = array();
+ foreach (self::getInstalled() as $installed) {
+ $packages[] = array_keys($installed['versions']);
+ }
+
+ if (1 === \count($packages)) {
+ return $packages[0];
+ }
+
+ return array_keys(array_flip(\call_user_func_array('array_merge', $packages)));
+ }
+
+ /**
+ * Returns a list of all package names with a specific type e.g. 'library'
+ *
+ * @param string $type
+ * @return string[]
+ * @psalm-return list<string>
+ */
+ public static function getInstalledPackagesByType($type)
+ {
+ $packagesByType = array();
+
+ foreach (self::getInstalled() as $installed) {
+ foreach ($installed['versions'] as $name => $package) {
+ if (isset($package['type']) && $package['type'] === $type) {
+ $packagesByType[] = $name;
+ }
+ }
+ }
+
+ return $packagesByType;
+ }
+
+ /**
+ * Checks whether the given package is installed
+ *
+ * This also returns true if the package name is provided or replaced by another package
+ *
+ * @param string $packageName
+ * @param bool $includeDevRequirements
+ * @return bool
+ */
+ public static function isInstalled($packageName, $includeDevRequirements = true)
+ {
+ foreach (self::getInstalled() as $installed) {
+ if (isset($installed['versions'][$packageName])) {
+ return $includeDevRequirements || empty($installed['versions'][$packageName]['dev_requirement']);
+ }
+ }
+
+ return false;
+ }
+
+ /**
+ * Checks whether the given package satisfies a version constraint
+ *
+ * e.g. If you want to know whether version 2.3+ of package foo/bar is installed, you would call:
+ *
+ * Composer\InstalledVersions::satisfies(new VersionParser, 'foo/bar', '^2.3')
+ *
+ * @param VersionParser $parser Install composer/semver to have access to this class and functionality
+ * @param string $packageName
+ * @param string|null $constraint A version constraint to check for, if you pass one you have to make sure composer/semver is required by your package
+ * @return bool
+ */
+ public static function satisfies(VersionParser $parser, $packageName, $constraint)
+ {
+ $constraint = $parser->parseConstraints($constraint);
+ $provided = $parser->parseConstraints(self::getVersionRanges($packageName));
+
+ return $provided->matches($constraint);
+ }
+
+ /**
+ * Returns a version constraint representing all the range(s) which are installed for a given package
+ *
+ * It is easier to use this via isInstalled() with the $constraint argument if you need to check
+ * whether a given version of a package is installed, and not just whether it exists
+ *
+ * @param string $packageName
+ * @return string Version constraint usable with composer/semver
+ */
+ public static function getVersionRanges($packageName)
+ {
+ foreach (self::getInstalled() as $installed) {
+ if (!isset($installed['versions'][$packageName])) {
+ continue;
+ }
+
+ $ranges = array();
+ if (isset($installed['versions'][$packageName]['pretty_version'])) {
+ $ranges[] = $installed['versions'][$packageName]['pretty_version'];
+ }
+ if (array_key_exists('aliases', $installed['versions'][$packageName])) {
+ $ranges = array_merge($ranges, $installed['versions'][$packageName]['aliases']);
+ }
+ if (array_key_exists('replaced', $installed['versions'][$packageName])) {
+ $ranges = array_merge($ranges, $installed['versions'][$packageName]['replaced']);
+ }
+ if (array_key_exists('provided', $installed['versions'][$packageName])) {
+ $ranges = array_merge($ranges, $installed['versions'][$packageName]['provided']);
+ }
+
+ return implode(' || ', $ranges);
+ }
+
+ throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
+ }
+
+ /**
+ * @param string $packageName
+ * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as version, use satisfies or getVersionRanges if you need to know if a given version is present
+ */
+ public static function getVersion($packageName)
+ {
+ foreach (self::getInstalled() as $installed) {
+ if (!isset($installed['versions'][$packageName])) {
+ continue;
+ }
+
+ if (!isset($installed['versions'][$packageName]['version'])) {
+ return null;
+ }
+
+ return $installed['versions'][$packageName]['version'];
+ }
+
+ throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
+ }
+
+ /**
+ * @param string $packageName
+ * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as version, use satisfies or getVersionRanges if you need to know if a given version is present
+ */
+ public static function getPrettyVersion($packageName)
+ {
+ foreach (self::getInstalled() as $installed) {
+ if (!isset($installed['versions'][$packageName])) {
+ continue;
+ }
+
+ if (!isset($installed['versions'][$packageName]['pretty_version'])) {
+ return null;
+ }
+
+ return $installed['versions'][$packageName]['pretty_version'];
+ }
+
+ throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
+ }
+
+ /**
+ * @param string $packageName
+ * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as reference
+ */
+ public static function getReference($packageName)
+ {
+ foreach (self::getInstalled() as $installed) {
+ if (!isset($installed['versions'][$packageName])) {
+ continue;
+ }
+
+ if (!isset($installed['versions'][$packageName]['reference'])) {
+ return null;
+ }
+
+ return $installed['versions'][$packageName]['reference'];
+ }
+
+ throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
+ }
+
+ /**
+ * @param string $packageName
+ * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as install path. Packages of type metapackages also have a null install path.
+ */
+ public static function getInstallPath($packageName)
+ {
+ foreach (self::getInstalled() as $installed) {
+ if (!isset($installed['versions'][$packageName])) {
+ continue;
+ }
+
+ return isset($installed['versions'][$packageName]['install_path']) ? $installed['versions'][$packageName]['install_path'] : null;
+ }
+
+ throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
+ }
+
+ /**
+ * @return array
+ * @psalm-return array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}
+ */
+ public static function getRootPackage()
+ {
+ $installed = self::getInstalled();
+
+ return $installed[0]['root'];
+ }
+
+ /**
+ * Returns the raw installed.php data for custom implementations
+ *
+ * @deprecated Use getAllRawData() instead which returns all datasets for all autoloaders present in the process. getRawData only returns the first dataset loaded, which may not be what you expect.
+ * @return array[]
+ * @psalm-return array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}
+ */
+ public static function getRawData()
+ {
+ @trigger_error('getRawData only returns the first dataset loaded, which may not be what you expect. Use getAllRawData() instead which returns all datasets for all autoloaders present in the process.', E_USER_DEPRECATED);
+
+ if (null === self::$installed) {
+ // only require the installed.php file if this file is loaded from its dumped location,
+ // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937
+ if (substr(__DIR__, -8, 1) !== 'C') {
+ self::$installed = include __DIR__ . '/installed.php';
+ } else {
+ self::$installed = array();
+ }
+ }
+
+ return self::$installed;
+ }
+
+ /**
+ * Returns the raw data of all installed.php which are currently loaded for custom implementations
+ *
+ * @return array[]
+ * @psalm-return list<array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>
+ */
+ public static function getAllRawData()
+ {
+ return self::getInstalled();
+ }
+
+ /**
+ * Lets you reload the static array from another file
+ *
+ * This is only useful for complex integrations in which a project needs to use
+ * this class but then also needs to execute another project's autoloader in process,
+ * and wants to ensure both projects have access to their version of installed.php.
+ *
+ * A typical case would be PHPUnit, where it would need to make sure it reads all
+ * the data it needs from this class, then call reload() with
+ * `require $CWD/vendor/composer/installed.php` (or similar) as input to make sure
+ * the project in which it runs can then also use this class safely, without
+ * interference between PHPUnit's dependencies and the project's dependencies.
+ *
+ * @param array[] $data A vendor/composer/installed.php data set
+ * @return void
+ *
+ * @psalm-param array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>} $data
+ */
+ public static function reload($data)
+ {
+ self::$installed = $data;
+ self::$installedByVendor = array();
+ }
+
+ /**
+ * @return array[]
+ * @psalm-return list<array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>
+ */
+ private static function getInstalled()
+ {
+ if (null === self::$canGetVendors) {
+ self::$canGetVendors = method_exists('Composer\Autoload\ClassLoader', 'getRegisteredLoaders');
+ }
+
+ $installed = array();
+
+ if (self::$canGetVendors) {
+ foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) {
+ if (isset(self::$installedByVendor[$vendorDir])) {
+ $installed[] = self::$installedByVendor[$vendorDir];
+ } elseif (is_file($vendorDir.'/composer/installed.php')) {
+ $installed[] = self::$installedByVendor[$vendorDir] = require $vendorDir.'/composer/installed.php';
+ if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) {
+ self::$installed = $installed[count($installed) - 1];
+ }
+ }
+ }
+ }
+
+ if (null === self::$installed) {
+ // only require the installed.php file if this file is loaded from its dumped location,
+ // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937
+ if (substr(__DIR__, -8, 1) !== 'C') {
+ self::$installed = require __DIR__ . '/installed.php';
+ } else {
+ self::$installed = array();
+ }
+ }
+ $installed[] = self::$installed;
+
+ return $installed;
+ }
+}
diff --git a/plugins/jetpack/vendor/composer/autoload_classmap.php b/plugins/jetpack/vendor/composer/autoload_classmap.php
index 7e8f8308..f7fb81c7 100644
--- a/plugins/jetpack/vendor/composer/autoload_classmap.php
+++ b/plugins/jetpack/vendor/composer/autoload_classmap.php
@@ -6,80 +6,151 @@ $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\\A8c_Mc_Stats' => $baseDir . '/jetpack_vendor/automattic/jetpack-a8c-mc-stats/src/class-a8c-mc-stats.php',
+ 'Automattic\\Jetpack\\Abtest' => $baseDir . '/jetpack_vendor/automattic/jetpack-abtest/src/class-abtest.php',
+ 'Automattic\\Jetpack\\Admin_UI\\Admin_Menu' => $baseDir . '/jetpack_vendor/automattic/jetpack-admin-ui/src/class-admin-menu.php',
+ 'Automattic\\Jetpack\\Assets' => $baseDir . '/jetpack_vendor/automattic/jetpack-assets/src/class-assets.php',
+ 'Automattic\\Jetpack\\Assets\\Logo' => $baseDir . '/jetpack_vendor/automattic/jetpack-logo/src/class-logo.php',
+ 'Automattic\\Jetpack\\Assets\\Semver' => $baseDir . '/jetpack_vendor/automattic/jetpack-assets/src/class-semver.php',
+ 'Automattic\\Jetpack\\Autoloader\\AutoloadFileWriter' => $vendorDir . '/automattic/jetpack-autoloader/src/AutoloadFileWriter.php',
'Automattic\\Jetpack\\Autoloader\\AutoloadGenerator' => $vendorDir . '/automattic/jetpack-autoloader/src/AutoloadGenerator.php',
+ 'Automattic\\Jetpack\\Autoloader\\AutoloadProcessor' => $vendorDir . '/automattic/jetpack-autoloader/src/AutoloadProcessor.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\\Config' => $vendorDir . '/automattic/jetpack-config/src/class-config.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\\Partner' => $vendorDir . '/automattic/jetpack-partner/src/class-partner.php',
+ 'Automattic\\Jetpack\\Autoloader\\ManifestGenerator' => $vendorDir . '/automattic/jetpack-autoloader/src/ManifestGenerator.php',
+ 'Automattic\\Jetpack\\Backup\\Helper_Script_Manager' => $baseDir . '/jetpack_vendor/automattic/jetpack-backup/src/class-helper-script-manager.php',
+ 'Automattic\\Jetpack\\Backup\\Package_Version' => $baseDir . '/jetpack_vendor/automattic/jetpack-backup/src/class-package-version.php',
+ 'Automattic\\Jetpack\\Backup\\REST_Controller' => $baseDir . '/jetpack_vendor/automattic/jetpack-backup/src/class-rest-controller.php',
+ 'Automattic\\Jetpack\\Blocks' => $baseDir . '/jetpack_vendor/automattic/jetpack-blocks/src/class-blocks.php',
+ 'Automattic\\Jetpack\\Composer\\Manager' => $vendorDir . '/automattic/jetpack-composer-plugin/src/class-manager.php',
+ 'Automattic\\Jetpack\\Composer\\Plugin' => $vendorDir . '/automattic/jetpack-composer-plugin/src/class-plugin.php',
+ 'Automattic\\Jetpack\\Config' => $baseDir . '/jetpack_vendor/automattic/jetpack-config/src/class-config.php',
+ 'Automattic\\Jetpack\\ConnectionUI\\Admin' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection-ui/src/class-admin.php',
+ 'Automattic\\Jetpack\\ConnectionUI\\Initial_State' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection-ui/src/class-initial-state.php',
+ 'Automattic\\Jetpack\\Connection\\Client' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-client.php',
+ 'Automattic\\Jetpack\\Connection\\Error_Handler' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-error-handler.php',
+ 'Automattic\\Jetpack\\Connection\\Initial_State' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-initial-state.php',
+ 'Automattic\\Jetpack\\Connection\\Manager' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-manager.php',
+ 'Automattic\\Jetpack\\Connection\\Manager_Interface' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/interface-manager.php',
+ 'Automattic\\Jetpack\\Connection\\Nonce_Handler' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-nonce-handler.php',
+ 'Automattic\\Jetpack\\Connection\\Package_Version' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-package-version.php',
+ 'Automattic\\Jetpack\\Connection\\Package_Version_Tracker' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-package-version-tracker.php',
+ 'Automattic\\Jetpack\\Connection\\Plugin' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-plugin.php',
+ 'Automattic\\Jetpack\\Connection\\Plugin_Storage' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-plugin-storage.php',
+ 'Automattic\\Jetpack\\Connection\\REST_Connector' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-rest-connector.php',
+ 'Automattic\\Jetpack\\Connection\\Rest_Authentication' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-rest-authentication.php',
+ 'Automattic\\Jetpack\\Connection\\Secrets' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-secrets.php',
+ 'Automattic\\Jetpack\\Connection\\Server_Sandbox' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-server-sandbox.php',
+ 'Automattic\\Jetpack\\Connection\\Tokens' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-tokens.php',
+ 'Automattic\\Jetpack\\Connection\\Urls' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-urls.php',
+ 'Automattic\\Jetpack\\Connection\\Utils' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-utils.php',
+ 'Automattic\\Jetpack\\Connection\\Webhooks' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-webhooks.php',
+ 'Automattic\\Jetpack\\Connection\\XMLRPC_Async_Call' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-xmlrpc-async-call.php',
+ 'Automattic\\Jetpack\\Connection\\XMLRPC_Connector' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-xmlrpc-connector.php',
+ 'Automattic\\Jetpack\\Constants' => $baseDir . '/jetpack_vendor/automattic/jetpack-constants/src/class-constants.php',
+ 'Automattic\\Jetpack\\Device_Detection' => $baseDir . '/jetpack_vendor/automattic/jetpack-device-detection/src/class-device-detection.php',
+ 'Automattic\\Jetpack\\Device_Detection\\User_Agent_Info' => $baseDir . '/jetpack_vendor/automattic/jetpack-device-detection/src/class-user-agent-info.php',
+ 'Automattic\\Jetpack\\Error' => $baseDir . '/jetpack_vendor/automattic/jetpack-error/src/class-error.php',
+ 'Automattic\\Jetpack\\Heartbeat' => $baseDir . '/jetpack_vendor/automattic/jetpack-heartbeat/src/class-heartbeat.php',
+ 'Automattic\\Jetpack\\IdentityCrisis\\REST_Endpoints' => $baseDir . '/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-rest-endpoints.php',
+ 'Automattic\\Jetpack\\IdentityCrisis\\UI' => $baseDir . '/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-ui.php',
+ 'Automattic\\Jetpack\\Identity_Crisis' => $baseDir . '/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-identity-crisis.php',
+ 'Automattic\\Jetpack\\JITMS\\JITM' => $baseDir . '/jetpack_vendor/automattic/jetpack-jitm/src/class-jitm.php',
+ 'Automattic\\Jetpack\\JITMS\\Post_Connection_JITM' => $baseDir . '/jetpack_vendor/automattic/jetpack-jitm/src/class-post-connection-jitm.php',
+ 'Automattic\\Jetpack\\JITMS\\Pre_Connection_JITM' => $baseDir . '/jetpack_vendor/automattic/jetpack-jitm/src/class-pre-connection-jitm.php',
+ 'Automattic\\Jetpack\\JITMS\\Rest_Api_Endpoints' => $baseDir . '/jetpack_vendor/automattic/jetpack-jitm/src/class-rest-api-endpoints.php',
+ 'Automattic\\Jetpack\\Jetpack_Lazy_Images' => $baseDir . '/jetpack_vendor/automattic/jetpack-lazy-images/src/lazy-images.php',
+ 'Automattic\\Jetpack\\Licensing' => $baseDir . '/jetpack_vendor/automattic/jetpack-licensing/src/class-licensing.php',
+ 'Automattic\\Jetpack\\My_Jetpack\\Initializer' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php',
+ 'Automattic\\Jetpack\\Partner' => $baseDir . '/jetpack_vendor/automattic/jetpack-partner/src/class-partner.php',
+ 'Automattic\\Jetpack\\Partner_Coupon' => $baseDir . '/jetpack_vendor/automattic/jetpack-partner/src/class-partner-coupon.php',
+ 'Automattic\\Jetpack\\Password_Checker' => $baseDir . '/jetpack_vendor/automattic/jetpack-password-checker/src/class-password-checker.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\\Full_Sync_Immediately' => $vendorDir . '/automattic/jetpack-sync/src/modules/class-full-sync-immediately.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',
+ 'Automattic\\Jetpack\\Redirect' => $baseDir . '/jetpack_vendor/automattic/jetpack-redirect/src/class-redirect.php',
+ 'Automattic\\Jetpack\\Roles' => $baseDir . '/jetpack_vendor/automattic/jetpack-roles/src/class-roles.php',
+ 'Automattic\\Jetpack\\Search\\Helper' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/class-helper.php',
+ 'Automattic\\Jetpack\\Search\\Module_Control' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/class-module-control.php',
+ 'Automattic\\Jetpack\\Search\\Options' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/class-options.php',
+ 'Automattic\\Jetpack\\Search\\Plan' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/class-plan.php',
+ 'Automattic\\Jetpack\\Search\\REST_Controller' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/class-rest-controller.php',
+ 'Automattic\\Jetpack\\Search\\Settings' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/class-settings.php',
+ 'Automattic\\Jetpack\\Search\\Template_Tags' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/class-template-tags.php',
+ 'Automattic\\Jetpack\\Search\\WPES\\Query_Builder' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/wpes/class-query-builder.php',
+ 'Automattic\\Jetpack\\Search\\WPES\\Query_Parser' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/wpes/class-query-parser.php',
+ 'Automattic\\Jetpack\\Status' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-status.php',
+ 'Automattic\\Jetpack\\Status\\Host' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-host.php',
+ 'Automattic\\Jetpack\\Sync\\Actions' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-actions.php',
+ 'Automattic\\Jetpack\\Sync\\Codec_Interface' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/interface-codec.php',
+ 'Automattic\\Jetpack\\Sync\\Defaults' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-defaults.php',
+ 'Automattic\\Jetpack\\Sync\\Functions' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-functions.php',
+ 'Automattic\\Jetpack\\Sync\\Health' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-health.php',
+ 'Automattic\\Jetpack\\Sync\\JSON_Deflate_Array_Codec' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-json-deflate-array-codec.php',
+ 'Automattic\\Jetpack\\Sync\\Listener' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-listener.php',
+ 'Automattic\\Jetpack\\Sync\\Lock' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-lock.php',
+ 'Automattic\\Jetpack\\Sync\\Main' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-main.php',
+ 'Automattic\\Jetpack\\Sync\\Modules' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-modules.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\Attachments' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-attachments.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\Callables' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-callables.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\Comments' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-comments.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\Constants' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-constants.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\Full_Sync' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-full-sync.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\Full_Sync_Immediately' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-full-sync-immediately.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\Import' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-import.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\Menus' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-menus.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\Meta' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-meta.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\Module' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-module.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\Network_Options' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-network-options.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\Options' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-options.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\Plugins' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-plugins.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\Posts' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-posts.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\Protect' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-protect.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\Stats' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-stats.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\Term_Relationships' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-term-relationships.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\Terms' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-terms.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\Themes' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-themes.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\Updates' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-updates.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\Users' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-users.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\WP_Super_Cache' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-wp-super-cache.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\WooCommerce' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-woocommerce.php',
+ 'Automattic\\Jetpack\\Sync\\Package_Version' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-package-version.php',
+ 'Automattic\\Jetpack\\Sync\\Queue' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-queue.php',
+ 'Automattic\\Jetpack\\Sync\\Queue_Buffer' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-queue-buffer.php',
+ 'Automattic\\Jetpack\\Sync\\REST_Endpoints' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-rest-endpoints.php',
+ 'Automattic\\Jetpack\\Sync\\REST_Sender' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-rest-sender.php',
+ 'Automattic\\Jetpack\\Sync\\Replicastore' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-replicastore.php',
+ 'Automattic\\Jetpack\\Sync\\Replicastore\\Table_Checksum' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum.php',
+ 'Automattic\\Jetpack\\Sync\\Replicastore\\Table_Checksum_Usermeta' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum-usermeta.php',
+ 'Automattic\\Jetpack\\Sync\\Replicastore\\Table_Checksum_Users' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum-users.php',
+ 'Automattic\\Jetpack\\Sync\\Replicastore_Interface' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/interface-replicastore.php',
+ 'Automattic\\Jetpack\\Sync\\Sender' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-sender.php',
+ 'Automattic\\Jetpack\\Sync\\Server' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-server.php',
+ 'Automattic\\Jetpack\\Sync\\Settings' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-settings.php',
+ 'Automattic\\Jetpack\\Sync\\Simple_Codec' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-simple-codec.php',
+ 'Automattic\\Jetpack\\Sync\\Users' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-users.php',
+ 'Automattic\\Jetpack\\Sync\\Utils' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-utils.php',
+ 'Automattic\\Jetpack\\Terms_Of_Service' => $baseDir . '/jetpack_vendor/automattic/jetpack-terms-of-service/src/class-terms-of-service.php',
+ 'Automattic\\Jetpack\\Tracking' => $baseDir . '/jetpack_vendor/automattic/jetpack-tracking/src/class-tracking.php',
+ 'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
+ 'JetpackTracking' => $baseDir . '/jetpack_vendor/automattic/jetpack-compat/legacy/class-jetpacktracking.php',
+ 'Jetpack_Client' => $baseDir . '/jetpack_vendor/automattic/jetpack-compat/legacy/class-jetpack-client.php',
+ 'Jetpack_IXR_Client' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-ixr-client.php',
+ 'Jetpack_IXR_ClientMulticall' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-ixr-clientmulticall.php',
+ 'Jetpack_Options' => $baseDir . '/jetpack_vendor/automattic/jetpack-options/legacy/class-jetpack-options.php',
+ 'Jetpack_Signature' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-signature.php',
+ 'Jetpack_Sync_Actions' => $baseDir . '/jetpack_vendor/automattic/jetpack-compat/legacy/class-jetpack-sync-actions.php',
+ 'Jetpack_Sync_Modules' => $baseDir . '/jetpack_vendor/automattic/jetpack-compat/legacy/class-jetpack-sync-modules.php',
+ 'Jetpack_Sync_Settings' => $baseDir . '/jetpack_vendor/automattic/jetpack-compat/legacy/class-jetpack-sync-settings.php',
+ 'Jetpack_Tracks_Client' => $baseDir . '/jetpack_vendor/automattic/jetpack-tracking/legacy/class-jetpack-tracks-client.php',
+ 'Jetpack_Tracks_Event' => $baseDir . '/jetpack_vendor/automattic/jetpack-tracking/legacy/class-jetpack-tracks-event.php',
+ 'Jetpack_XMLRPC_Server' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-xmlrpc-server.php',
+ 'Twitter\\Text\\Autolink' => $vendorDir . '/nojimage/twitter-text-php/lib/Twitter/Text/Autolink.php',
+ 'Twitter\\Text\\Configuration' => $vendorDir . '/nojimage/twitter-text-php/lib/Twitter/Text/Configuration.php',
+ 'Twitter\\Text\\EmojiRegex' => $vendorDir . '/nojimage/twitter-text-php/lib/Twitter/Text/EmojiRegex.php',
+ 'Twitter\\Text\\Extractor' => $vendorDir . '/nojimage/twitter-text-php/lib/Twitter/Text/Extractor.php',
+ 'Twitter\\Text\\HitHighlighter' => $vendorDir . '/nojimage/twitter-text-php/lib/Twitter/Text/HitHighlighter.php',
+ 'Twitter\\Text\\ParseResults' => $vendorDir . '/nojimage/twitter-text-php/lib/Twitter/Text/ParseResults.php',
+ 'Twitter\\Text\\Parser' => $vendorDir . '/nojimage/twitter-text-php/lib/Twitter/Text/Parser.php',
+ 'Twitter\\Text\\Regex' => $vendorDir . '/nojimage/twitter-text-php/lib/Twitter/Text/Regex.php',
+ 'Twitter\\Text\\StringUtils' => $vendorDir . '/nojimage/twitter-text-php/lib/Twitter/Text/StringUtils.php',
+ 'Twitter\\Text\\TldLists' => $vendorDir . '/nojimage/twitter-text-php/lib/Twitter/Text/TldLists.php',
+ 'Twitter\\Text\\Validator' => $vendorDir . '/nojimage/twitter-text-php/lib/Twitter/Text/Validator.php',
);
diff --git a/plugins/jetpack/vendor/composer/autoload_files.php b/plugins/jetpack/vendor/composer/autoload_files.php
index 0d7f6fca..61d2a978 100644
--- a/plugins/jetpack/vendor/composer/autoload_files.php
+++ b/plugins/jetpack/vendor/composer/autoload_files.php
@@ -6,7 +6,7 @@ $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',
+ '3773ef3f09c37da5478d578e32b03a4b' => $baseDir . '/jetpack_vendor/automattic/jetpack-assets/actions.php',
+ 'd4eb94df91a729802d18373ee8cdc79f' => $baseDir . '/jetpack_vendor/automattic/jetpack-backup/actions.php',
+ '009de6aaa0d497eacea41fab13fc05f1' => $baseDir . '/jetpack_vendor/automattic/jetpack-compat/functions.php',
);
diff --git a/plugins/jetpack/vendor/composer/autoload_namespaces.php b/plugins/jetpack/vendor/composer/autoload_namespaces.php
index b7fc0125..53e84e22 100644
--- a/plugins/jetpack/vendor/composer/autoload_namespaces.php
+++ b/plugins/jetpack/vendor/composer/autoload_namespaces.php
@@ -6,4 +6,5 @@ $vendorDir = dirname(dirname(__FILE__));
$baseDir = dirname($vendorDir);
return array(
+ 'Twitter\\Text\\' => array($vendorDir . '/nojimage/twitter-text-php/lib'),
);
diff --git a/plugins/jetpack/vendor/composer/autoload_real.php b/plugins/jetpack/vendor/composer/autoload_real.php
index 0f957592..e7a173b9 100644
--- a/plugins/jetpack/vendor/composer/autoload_real.php
+++ b/plugins/jetpack/vendor/composer/autoload_real.php
@@ -2,7 +2,7 @@
// autoload_real.php @generated by Composer
-class ComposerAutoloaderInitb971f5b5f09f65d7b815d2961dc675a0
+class ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_5
{
private static $loader;
@@ -13,21 +13,26 @@ class ComposerAutoloaderInitb971f5b5f09f65d7b815d2961dc675a0
}
}
+ /**
+ * @return \Composer\Autoload\ClassLoader
+ */
public static function getLoader()
{
if (null !== self::$loader) {
return self::$loader;
}
- spl_autoload_register(array('ComposerAutoloaderInitb971f5b5f09f65d7b815d2961dc675a0', 'loadClassLoader'), true, true);
- self::$loader = $loader = new \Composer\Autoload\ClassLoader();
- spl_autoload_unregister(array('ComposerAutoloaderInitb971f5b5f09f65d7b815d2961dc675a0', 'loadClassLoader'));
+ require __DIR__ . '/platform_check.php';
+
+ spl_autoload_register(array('ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_5', 'loadClassLoader'), true, true);
+ self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
+ spl_autoload_unregister(array('ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_5', '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';
+ require __DIR__ . '/autoload_static.php';
- call_user_func(\Composer\Autoload\ComposerStaticInitb971f5b5f09f65d7b815d2961dc675a0::getInitializer($loader));
+ call_user_func(\Composer\Autoload\ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_5::getInitializer($loader));
} else {
$classMap = require __DIR__ . '/autoload_classmap.php';
if ($classMap) {
@@ -39,19 +44,19 @@ class ComposerAutoloaderInitb971f5b5f09f65d7b815d2961dc675a0
$loader->register(true);
if ($useStaticLoader) {
- $includeFiles = Composer\Autoload\ComposerStaticInitb971f5b5f09f65d7b815d2961dc675a0::$files;
+ $includeFiles = Composer\Autoload\ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_5::$files;
} else {
$includeFiles = require __DIR__ . '/autoload_files.php';
}
foreach ($includeFiles as $fileIdentifier => $file) {
- composerRequireb971f5b5f09f65d7b815d2961dc675a0($fileIdentifier, $file);
+ composerRequiref11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_5($fileIdentifier, $file);
}
return $loader;
}
}
-function composerRequireb971f5b5f09f65d7b815d2961dc675a0($fileIdentifier, $file)
+function composerRequiref11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_5($fileIdentifier, $file)
{
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
require $file;
diff --git a/plugins/jetpack/vendor/composer/autoload_static.php b/plugins/jetpack/vendor/composer/autoload_static.php
index ce37ceaf..b5f147a9 100644
--- a/plugins/jetpack/vendor/composer/autoload_static.php
+++ b/plugins/jetpack/vendor/composer/autoload_static.php
@@ -4,12 +4,12 @@
namespace Composer\Autoload;
-class ComposerStaticInitb971f5b5f09f65d7b815d2961dc675a0
+class ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_5
{
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',
+ '3773ef3f09c37da5478d578e32b03a4b' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-assets/actions.php',
+ 'd4eb94df91a729802d18373ee8cdc79f' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-backup/actions.php',
+ '009de6aaa0d497eacea41fab13fc05f1' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-compat/functions.php',
);
public static $prefixLengthsPsr4 = array (
@@ -26,91 +26,173 @@ class ComposerStaticInitb971f5b5f09f65d7b815d2961dc675a0
),
);
+ public static $prefixesPsr0 = array (
+ 'T' =>
+ array (
+ 'Twitter\\Text\\' =>
+ array (
+ 0 => __DIR__ . '/..' . '/nojimage/twitter-text-php/lib',
+ ),
+ ),
+ );
+
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\\A8c_Mc_Stats' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-a8c-mc-stats/src/class-a8c-mc-stats.php',
+ 'Automattic\\Jetpack\\Abtest' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-abtest/src/class-abtest.php',
+ 'Automattic\\Jetpack\\Admin_UI\\Admin_Menu' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-admin-ui/src/class-admin-menu.php',
+ 'Automattic\\Jetpack\\Assets' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-assets/src/class-assets.php',
+ 'Automattic\\Jetpack\\Assets\\Logo' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-logo/src/class-logo.php',
+ 'Automattic\\Jetpack\\Assets\\Semver' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-assets/src/class-semver.php',
+ 'Automattic\\Jetpack\\Autoloader\\AutoloadFileWriter' => __DIR__ . '/..' . '/automattic/jetpack-autoloader/src/AutoloadFileWriter.php',
'Automattic\\Jetpack\\Autoloader\\AutoloadGenerator' => __DIR__ . '/..' . '/automattic/jetpack-autoloader/src/AutoloadGenerator.php',
+ 'Automattic\\Jetpack\\Autoloader\\AutoloadProcessor' => __DIR__ . '/..' . '/automattic/jetpack-autoloader/src/AutoloadProcessor.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\\Config' => __DIR__ . '/..' . '/automattic/jetpack-config/src/class-config.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\\Partner' => __DIR__ . '/..' . '/automattic/jetpack-partner/src/class-partner.php',
+ 'Automattic\\Jetpack\\Autoloader\\ManifestGenerator' => __DIR__ . '/..' . '/automattic/jetpack-autoloader/src/ManifestGenerator.php',
+ 'Automattic\\Jetpack\\Backup\\Helper_Script_Manager' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-backup/src/class-helper-script-manager.php',
+ 'Automattic\\Jetpack\\Backup\\Package_Version' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-backup/src/class-package-version.php',
+ 'Automattic\\Jetpack\\Backup\\REST_Controller' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-backup/src/class-rest-controller.php',
+ 'Automattic\\Jetpack\\Blocks' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-blocks/src/class-blocks.php',
+ 'Automattic\\Jetpack\\Composer\\Manager' => __DIR__ . '/..' . '/automattic/jetpack-composer-plugin/src/class-manager.php',
+ 'Automattic\\Jetpack\\Composer\\Plugin' => __DIR__ . '/..' . '/automattic/jetpack-composer-plugin/src/class-plugin.php',
+ 'Automattic\\Jetpack\\Config' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-config/src/class-config.php',
+ 'Automattic\\Jetpack\\ConnectionUI\\Admin' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-connection-ui/src/class-admin.php',
+ 'Automattic\\Jetpack\\ConnectionUI\\Initial_State' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-connection-ui/src/class-initial-state.php',
+ 'Automattic\\Jetpack\\Connection\\Client' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-connection/src/class-client.php',
+ 'Automattic\\Jetpack\\Connection\\Error_Handler' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-connection/src/class-error-handler.php',
+ 'Automattic\\Jetpack\\Connection\\Initial_State' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-connection/src/class-initial-state.php',
+ 'Automattic\\Jetpack\\Connection\\Manager' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-connection/src/class-manager.php',
+ 'Automattic\\Jetpack\\Connection\\Manager_Interface' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-connection/src/interface-manager.php',
+ 'Automattic\\Jetpack\\Connection\\Nonce_Handler' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-connection/src/class-nonce-handler.php',
+ 'Automattic\\Jetpack\\Connection\\Package_Version' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-connection/src/class-package-version.php',
+ 'Automattic\\Jetpack\\Connection\\Package_Version_Tracker' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-connection/src/class-package-version-tracker.php',
+ 'Automattic\\Jetpack\\Connection\\Plugin' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-connection/src/class-plugin.php',
+ 'Automattic\\Jetpack\\Connection\\Plugin_Storage' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-connection/src/class-plugin-storage.php',
+ 'Automattic\\Jetpack\\Connection\\REST_Connector' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-connection/src/class-rest-connector.php',
+ 'Automattic\\Jetpack\\Connection\\Rest_Authentication' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-connection/src/class-rest-authentication.php',
+ 'Automattic\\Jetpack\\Connection\\Secrets' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-connection/src/class-secrets.php',
+ 'Automattic\\Jetpack\\Connection\\Server_Sandbox' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-connection/src/class-server-sandbox.php',
+ 'Automattic\\Jetpack\\Connection\\Tokens' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-connection/src/class-tokens.php',
+ 'Automattic\\Jetpack\\Connection\\Urls' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-connection/src/class-urls.php',
+ 'Automattic\\Jetpack\\Connection\\Utils' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-connection/src/class-utils.php',
+ 'Automattic\\Jetpack\\Connection\\Webhooks' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-connection/src/class-webhooks.php',
+ 'Automattic\\Jetpack\\Connection\\XMLRPC_Async_Call' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-connection/src/class-xmlrpc-async-call.php',
+ 'Automattic\\Jetpack\\Connection\\XMLRPC_Connector' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-connection/src/class-xmlrpc-connector.php',
+ 'Automattic\\Jetpack\\Constants' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-constants/src/class-constants.php',
+ 'Automattic\\Jetpack\\Device_Detection' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-device-detection/src/class-device-detection.php',
+ 'Automattic\\Jetpack\\Device_Detection\\User_Agent_Info' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-device-detection/src/class-user-agent-info.php',
+ 'Automattic\\Jetpack\\Error' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-error/src/class-error.php',
+ 'Automattic\\Jetpack\\Heartbeat' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-heartbeat/src/class-heartbeat.php',
+ 'Automattic\\Jetpack\\IdentityCrisis\\REST_Endpoints' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-rest-endpoints.php',
+ 'Automattic\\Jetpack\\IdentityCrisis\\UI' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-ui.php',
+ 'Automattic\\Jetpack\\Identity_Crisis' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-identity-crisis.php',
+ 'Automattic\\Jetpack\\JITMS\\JITM' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-jitm/src/class-jitm.php',
+ 'Automattic\\Jetpack\\JITMS\\Post_Connection_JITM' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-jitm/src/class-post-connection-jitm.php',
+ 'Automattic\\Jetpack\\JITMS\\Pre_Connection_JITM' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-jitm/src/class-pre-connection-jitm.php',
+ 'Automattic\\Jetpack\\JITMS\\Rest_Api_Endpoints' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-jitm/src/class-rest-api-endpoints.php',
+ 'Automattic\\Jetpack\\Jetpack_Lazy_Images' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-lazy-images/src/lazy-images.php',
+ 'Automattic\\Jetpack\\Licensing' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-licensing/src/class-licensing.php',
+ 'Automattic\\Jetpack\\My_Jetpack\\Initializer' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php',
+ 'Automattic\\Jetpack\\Partner' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-partner/src/class-partner.php',
+ 'Automattic\\Jetpack\\Partner_Coupon' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-partner/src/class-partner-coupon.php',
+ 'Automattic\\Jetpack\\Password_Checker' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-password-checker/src/class-password-checker.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\\Full_Sync_Immediately' => __DIR__ . '/..' . '/automattic/jetpack-sync/src/modules/class-full-sync-immediately.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',
+ 'Automattic\\Jetpack\\Redirect' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-redirect/src/class-redirect.php',
+ 'Automattic\\Jetpack\\Roles' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-roles/src/class-roles.php',
+ 'Automattic\\Jetpack\\Search\\Helper' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-search/src/class-helper.php',
+ 'Automattic\\Jetpack\\Search\\Module_Control' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-search/src/class-module-control.php',
+ 'Automattic\\Jetpack\\Search\\Options' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-search/src/class-options.php',
+ 'Automattic\\Jetpack\\Search\\Plan' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-search/src/class-plan.php',
+ 'Automattic\\Jetpack\\Search\\REST_Controller' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-search/src/class-rest-controller.php',
+ 'Automattic\\Jetpack\\Search\\Settings' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-search/src/class-settings.php',
+ 'Automattic\\Jetpack\\Search\\Template_Tags' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-search/src/class-template-tags.php',
+ 'Automattic\\Jetpack\\Search\\WPES\\Query_Builder' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-search/src/wpes/class-query-builder.php',
+ 'Automattic\\Jetpack\\Search\\WPES\\Query_Parser' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-search/src/wpes/class-query-parser.php',
+ 'Automattic\\Jetpack\\Status' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-status/src/class-status.php',
+ 'Automattic\\Jetpack\\Status\\Host' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-status/src/class-host.php',
+ 'Automattic\\Jetpack\\Sync\\Actions' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/class-actions.php',
+ 'Automattic\\Jetpack\\Sync\\Codec_Interface' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/interface-codec.php',
+ 'Automattic\\Jetpack\\Sync\\Defaults' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/class-defaults.php',
+ 'Automattic\\Jetpack\\Sync\\Functions' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/class-functions.php',
+ 'Automattic\\Jetpack\\Sync\\Health' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/class-health.php',
+ 'Automattic\\Jetpack\\Sync\\JSON_Deflate_Array_Codec' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/class-json-deflate-array-codec.php',
+ 'Automattic\\Jetpack\\Sync\\Listener' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/class-listener.php',
+ 'Automattic\\Jetpack\\Sync\\Lock' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/class-lock.php',
+ 'Automattic\\Jetpack\\Sync\\Main' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/class-main.php',
+ 'Automattic\\Jetpack\\Sync\\Modules' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/class-modules.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\Attachments' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-attachments.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\Callables' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-callables.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\Comments' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-comments.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\Constants' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-constants.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\Full_Sync' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-full-sync.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\Full_Sync_Immediately' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-full-sync-immediately.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\Import' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-import.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\Menus' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-menus.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\Meta' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-meta.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\Module' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-module.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\Network_Options' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-network-options.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\Options' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-options.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\Plugins' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-plugins.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\Posts' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-posts.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\Protect' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-protect.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\Stats' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-stats.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\Term_Relationships' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-term-relationships.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\Terms' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-terms.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\Themes' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-themes.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\Updates' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-updates.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\Users' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-users.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\WP_Super_Cache' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-wp-super-cache.php',
+ 'Automattic\\Jetpack\\Sync\\Modules\\WooCommerce' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-woocommerce.php',
+ 'Automattic\\Jetpack\\Sync\\Package_Version' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/class-package-version.php',
+ 'Automattic\\Jetpack\\Sync\\Queue' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/class-queue.php',
+ 'Automattic\\Jetpack\\Sync\\Queue_Buffer' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/class-queue-buffer.php',
+ 'Automattic\\Jetpack\\Sync\\REST_Endpoints' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/class-rest-endpoints.php',
+ 'Automattic\\Jetpack\\Sync\\REST_Sender' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/class-rest-sender.php',
+ 'Automattic\\Jetpack\\Sync\\Replicastore' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/class-replicastore.php',
+ 'Automattic\\Jetpack\\Sync\\Replicastore\\Table_Checksum' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum.php',
+ 'Automattic\\Jetpack\\Sync\\Replicastore\\Table_Checksum_Usermeta' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum-usermeta.php',
+ 'Automattic\\Jetpack\\Sync\\Replicastore\\Table_Checksum_Users' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum-users.php',
+ 'Automattic\\Jetpack\\Sync\\Replicastore_Interface' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/interface-replicastore.php',
+ 'Automattic\\Jetpack\\Sync\\Sender' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/class-sender.php',
+ 'Automattic\\Jetpack\\Sync\\Server' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/class-server.php',
+ 'Automattic\\Jetpack\\Sync\\Settings' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/class-settings.php',
+ 'Automattic\\Jetpack\\Sync\\Simple_Codec' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/class-simple-codec.php',
+ 'Automattic\\Jetpack\\Sync\\Users' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/class-users.php',
+ 'Automattic\\Jetpack\\Sync\\Utils' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-sync/src/class-utils.php',
+ 'Automattic\\Jetpack\\Terms_Of_Service' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-terms-of-service/src/class-terms-of-service.php',
+ 'Automattic\\Jetpack\\Tracking' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-tracking/src/class-tracking.php',
+ 'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
+ 'JetpackTracking' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-compat/legacy/class-jetpacktracking.php',
+ 'Jetpack_Client' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-compat/legacy/class-jetpack-client.php',
+ 'Jetpack_IXR_Client' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-ixr-client.php',
+ 'Jetpack_IXR_ClientMulticall' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-ixr-clientmulticall.php',
+ 'Jetpack_Options' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-options/legacy/class-jetpack-options.php',
+ 'Jetpack_Signature' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-signature.php',
+ 'Jetpack_Sync_Actions' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-compat/legacy/class-jetpack-sync-actions.php',
+ 'Jetpack_Sync_Modules' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-compat/legacy/class-jetpack-sync-modules.php',
+ 'Jetpack_Sync_Settings' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-compat/legacy/class-jetpack-sync-settings.php',
+ 'Jetpack_Tracks_Client' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-tracking/legacy/class-jetpack-tracks-client.php',
+ 'Jetpack_Tracks_Event' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-tracking/legacy/class-jetpack-tracks-event.php',
+ 'Jetpack_XMLRPC_Server' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-xmlrpc-server.php',
+ 'Twitter\\Text\\Autolink' => __DIR__ . '/..' . '/nojimage/twitter-text-php/lib/Twitter/Text/Autolink.php',
+ 'Twitter\\Text\\Configuration' => __DIR__ . '/..' . '/nojimage/twitter-text-php/lib/Twitter/Text/Configuration.php',
+ 'Twitter\\Text\\EmojiRegex' => __DIR__ . '/..' . '/nojimage/twitter-text-php/lib/Twitter/Text/EmojiRegex.php',
+ 'Twitter\\Text\\Extractor' => __DIR__ . '/..' . '/nojimage/twitter-text-php/lib/Twitter/Text/Extractor.php',
+ 'Twitter\\Text\\HitHighlighter' => __DIR__ . '/..' . '/nojimage/twitter-text-php/lib/Twitter/Text/HitHighlighter.php',
+ 'Twitter\\Text\\ParseResults' => __DIR__ . '/..' . '/nojimage/twitter-text-php/lib/Twitter/Text/ParseResults.php',
+ 'Twitter\\Text\\Parser' => __DIR__ . '/..' . '/nojimage/twitter-text-php/lib/Twitter/Text/Parser.php',
+ 'Twitter\\Text\\Regex' => __DIR__ . '/..' . '/nojimage/twitter-text-php/lib/Twitter/Text/Regex.php',
+ 'Twitter\\Text\\StringUtils' => __DIR__ . '/..' . '/nojimage/twitter-text-php/lib/Twitter/Text/StringUtils.php',
+ 'Twitter\\Text\\TldLists' => __DIR__ . '/..' . '/nojimage/twitter-text-php/lib/Twitter/Text/TldLists.php',
+ 'Twitter\\Text\\Validator' => __DIR__ . '/..' . '/nojimage/twitter-text-php/lib/Twitter/Text/Validator.php',
);
public static function getInitializer(ClassLoader $loader)
{
return \Closure::bind(function () use ($loader) {
- $loader->prefixLengthsPsr4 = ComposerStaticInitb971f5b5f09f65d7b815d2961dc675a0::$prefixLengthsPsr4;
- $loader->prefixDirsPsr4 = ComposerStaticInitb971f5b5f09f65d7b815d2961dc675a0::$prefixDirsPsr4;
- $loader->classMap = ComposerStaticInitb971f5b5f09f65d7b815d2961dc675a0::$classMap;
+ $loader->prefixLengthsPsr4 = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_5::$prefixLengthsPsr4;
+ $loader->prefixDirsPsr4 = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_5::$prefixDirsPsr4;
+ $loader->prefixesPsr0 = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_5::$prefixesPsr0;
+ $loader->classMap = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ10_5::$classMap;
}, null, ClassLoader::class);
}
diff --git a/plugins/jetpack/vendor/composer/installed.json b/plugins/jetpack/vendor/composer/installed.json
index eabb2133..414fda0a 100644
--- a/plugins/jetpack/vendor/composer/installed.json
+++ b/plugins/jetpack/vendor/composer/installed.json
@@ -1,642 +1,1759 @@
-[
- {
- "name": "automattic/jetpack-abtest",
- "version": "v1.0.4",
- "version_normalized": "1.0.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/Automattic/jetpack-abtest.git",
- "reference": "faed5181e0dbe596b7e083e40affceed686928ba"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/Automattic/jetpack-abtest/zipball/faed5181e0dbe596b7e083e40affceed686928ba",
- "reference": "faed5181e0dbe596b7e083e40affceed686928ba",
- "shasum": ""
- },
- "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"
- },
- "time": "2019-11-08T21:16:05+00:00",
- "type": "library",
- "installation-source": "dist",
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "GPL-2.0-or-later"
- ],
- "description": "Provides an interface to the WP.com A/B tests."
- },
- {
- "name": "automattic/jetpack-assets",
- "version": "v1.1.1",
- "version_normalized": "1.1.1.0",
- "source": {
- "type": "git",
- "url": "https://github.com/Automattic/jetpack-assets.git",
- "reference": "157b2d4adfddc7cc395929b6a0de8ab43bc52155"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/Automattic/jetpack-assets/zipball/157b2d4adfddc7cc395929b6a0de8ab43bc52155",
- "reference": "157b2d4adfddc7cc395929b6a0de8ab43bc52155",
- "shasum": ""
- },
- "require": {
- "automattic/jetpack-constants": "@dev"
- },
- "require-dev": {
- "brain/monkey": "2.4.0",
- "php-mock/php-mock": "^2.1",
- "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5"
- },
- "time": "2020-01-27T11:04:11+00:00",
- "type": "library",
- "installation-source": "dist",
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "GPL-2.0-or-later"
- ],
- "description": "Asset management utilities for Jetpack ecosystem packages"
- },
- {
- "name": "automattic/jetpack-autoloader",
- "version": "v1.4.0",
- "version_normalized": "1.4.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/Automattic/jetpack-autoloader.git",
- "reference": "3cb0ad8496d04a648435ebee7c2a652c80eaf550"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/Automattic/jetpack-autoloader/zipball/3cb0ad8496d04a648435ebee7c2a652c80eaf550",
- "reference": "3cb0ad8496d04a648435ebee7c2a652c80eaf550",
- "shasum": ""
- },
- "require": {
- "composer-plugin-api": "^1.1"
- },
- "require-dev": {
- "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5"
- },
- "time": "2020-01-22T17:49:03+00:00",
- "type": "composer-plugin",
- "extra": {
- "class": "Automattic\\Jetpack\\Autoloader\\CustomAutoloaderPlugin"
- },
- "installation-source": "dist",
- "autoload": {
- "psr-4": {
- "Automattic\\Jetpack\\Autoloader\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "GPL-2.0-or-later"
- ],
- "description": "Creates a custom autoloader for a plugin or theme."
- },
- {
- "name": "automattic/jetpack-backup",
- "version": "v1.0.2",
- "version_normalized": "1.0.2.0",
- "source": {
- "type": "git",
- "url": "https://github.com/Automattic/jetpack-backup.git",
- "reference": "ea2aaa9be3697d8b885a74a11411c7818fba5a75"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/Automattic/jetpack-backup/zipball/ea2aaa9be3697d8b885a74a11411c7818fba5a75",
- "reference": "ea2aaa9be3697d8b885a74a11411c7818fba5a75",
- "shasum": ""
- },
- "time": "2019-11-08T21:16:05+00:00",
- "type": "library",
- "installation-source": "dist",
- "autoload": {
- "files": [
- "actions.php"
- ],
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "GPL-2.0-or-later"
- ],
- "description": "Tools to assist with backing up Jetpack sites."
- },
- {
- "name": "automattic/jetpack-compat",
- "version": "v1.0.5",
- "version_normalized": "1.0.5.0",
- "source": {
- "type": "git",
- "url": "https://github.com/Automattic/jetpack-compat.git",
- "reference": "2a4a2fd64bbcaab0a6af6dfe3a5ea8342eca9cbf"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/Automattic/jetpack-compat/zipball/2a4a2fd64bbcaab0a6af6dfe3a5ea8342eca9cbf",
- "reference": "2a4a2fd64bbcaab0a6af6dfe3a5ea8342eca9cbf",
- "shasum": ""
- },
- "require-dev": {
- "php-mock/php-mock": "^2.1",
- "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5"
- },
- "time": "2019-11-08T21:16:05+00:00",
- "type": "library",
- "installation-source": "dist",
- "autoload": {
- "files": [
- "functions.php"
- ],
- "classmap": [
- "legacy"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "GPL-2.0-or-later"
- ],
- "description": "Compatibility layer with previous versions of Jetpack"
- },
- {
- "name": "automattic/jetpack-config",
- "version": "v1.1.0",
- "version_normalized": "1.1.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/Automattic/jetpack-config.git",
- "reference": "df7cfce4231fb50e8cd433a6ccf52e99a269c16c"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/Automattic/jetpack-config/zipball/df7cfce4231fb50e8cd433a6ccf52e99a269c16c",
- "reference": "df7cfce4231fb50e8cd433a6ccf52e99a269c16c",
- "shasum": ""
- },
- "time": "2020-01-21T22:42:22+00:00",
- "type": "library",
- "installation-source": "dist",
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "GPL-2.0-or-later"
- ],
- "description": "Jetpack configuration package that initializes other packages and configures Jetpack's functionality. Can be used as a base for all variants of Jetpack package usage."
- },
- {
- "name": "automattic/jetpack-connection",
- "version": "v1.8.0",
- "version_normalized": "1.8.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/Automattic/jetpack-connection.git",
- "reference": "e9e898ca3acb174a418637cac69355d6aad89762"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/Automattic/jetpack-connection/zipball/e9e898ca3acb174a418637cac69355d6aad89762",
- "reference": "e9e898ca3acb174a418637cac69355d6aad89762",
- "shasum": ""
- },
- "require": {
- "automattic/jetpack-constants": "@dev",
- "automattic/jetpack-options": "@dev",
- "automattic/jetpack-roles": "@dev"
- },
- "require-dev": {
- "php-mock/php-mock": "^2.1",
- "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5"
- },
- "time": "2020-01-27T11:20:58+00:00",
- "type": "library",
- "installation-source": "dist",
- "autoload": {
- "files": [
- "legacy/load-ixr.php"
- ],
- "classmap": [
- "legacy",
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "GPL-2.0-or-later"
- ],
- "description": "Everything needed to connect to the Jetpack infrastructure"
- },
- {
- "name": "automattic/jetpack-constants",
- "version": "v1.1.3",
- "version_normalized": "1.1.3.0",
- "source": {
- "type": "git",
- "url": "https://github.com/Automattic/jetpack-constants.git",
- "reference": "5fdd94dec1151e7defd684a97e0b64fe6ff1bd3a"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/Automattic/jetpack-constants/zipball/5fdd94dec1151e7defd684a97e0b64fe6ff1bd3a",
- "reference": "5fdd94dec1151e7defd684a97e0b64fe6ff1bd3a",
- "shasum": ""
- },
- "require-dev": {
- "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5"
- },
- "time": "2019-11-08T21:16:05+00:00",
- "type": "library",
- "installation-source": "dist",
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "GPL-2.0-or-later"
- ],
- "description": "A wrapper for defining constants in a more testable way."
- },
- {
- "name": "automattic/jetpack-error",
- "version": "v1.0.4",
- "version_normalized": "1.0.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/Automattic/jetpack-error.git",
- "reference": "2128dd5a666154506727010350518529cc87b23d"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/Automattic/jetpack-error/zipball/2128dd5a666154506727010350518529cc87b23d",
- "reference": "2128dd5a666154506727010350518529cc87b23d",
- "shasum": ""
- },
- "require-dev": {
- "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5"
- },
- "time": "2019-11-08T21:16:05+00:00",
- "type": "library",
- "installation-source": "dist",
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "GPL-2.0-or-later"
- ],
- "description": "Jetpack Error - a wrapper around WP_Error."
- },
- {
- "name": "automattic/jetpack-jitm",
- "version": "v1.1.1",
- "version_normalized": "1.1.1.0",
- "source": {
- "type": "git",
- "url": "https://github.com/Automattic/jetpack-jitm.git",
- "reference": "3d8419a38d5ea45c174f98a30e0420011e4bc01c"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/Automattic/jetpack-jitm/zipball/3d8419a38d5ea45c174f98a30e0420011e4bc01c",
- "reference": "3d8419a38d5ea45c174f98a30e0420011e4bc01c",
- "shasum": ""
- },
- "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"
- },
- "time": "2020-01-21T22:42:22+00:00",
- "type": "library",
- "installation-source": "dist",
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "GPL-2.0-or-later"
- ],
- "description": "Just in time messages for Jetpack"
- },
- {
- "name": "automattic/jetpack-logo",
- "version": "v1.1.4",
- "version_normalized": "1.1.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/Automattic/jetpack-logo.git",
- "reference": "7da178a529f772cddfd0bbf1775eb30a852739c2"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/Automattic/jetpack-logo/zipball/7da178a529f772cddfd0bbf1775eb30a852739c2",
- "reference": "7da178a529f772cddfd0bbf1775eb30a852739c2",
- "shasum": ""
- },
- "require-dev": {
- "php-mock/php-mock": "^2.1",
- "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5"
- },
- "time": "2019-11-08T21:16:05+00:00",
- "type": "library",
- "installation-source": "dist",
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "GPL-2.0-or-later"
- ],
- "description": "A logo for Jetpack"
- },
- {
- "name": "automattic/jetpack-options",
- "version": "v1.1.2",
- "version_normalized": "1.1.2.0",
- "source": {
- "type": "git",
- "url": "https://github.com/Automattic/jetpack-options.git",
- "reference": "cc81a75b7b3fecd1155a517a057ca74975ca8b5d"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/Automattic/jetpack-options/zipball/cc81a75b7b3fecd1155a517a057ca74975ca8b5d",
- "reference": "cc81a75b7b3fecd1155a517a057ca74975ca8b5d",
- "shasum": ""
- },
- "require": {
- "automattic/jetpack-constants": "@dev"
- },
- "require-dev": {
- "10up/wp_mock": "0.4.2",
- "phpunit/phpunit": "7.*.*"
- },
- "time": "2019-11-08T21:16:05+00:00",
- "type": "library",
- "installation-source": "dist",
- "autoload": {
- "classmap": [
- "legacy"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "GPL-2.0-or-later"
- ],
- "description": "A wrapper for wp-options to manage specific Jetpack options."
- },
- {
- "name": "automattic/jetpack-partner",
- "version": "v1.0.1",
- "version_normalized": "1.0.1.0",
- "source": {
- "type": "git",
- "url": "https://github.com/Automattic/jetpack-partner.git",
- "reference": "866dfe161654acd18115b94aa117186f53a6ee6d"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/Automattic/jetpack-partner/zipball/866dfe161654acd18115b94aa117186f53a6ee6d",
- "reference": "866dfe161654acd18115b94aa117186f53a6ee6d",
- "shasum": ""
- },
- "require-dev": {
- "brain/monkey": "2.4.0",
- "mockery/mockery": "^1.2",
- "php-mock/php-mock": "^2.1",
- "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5"
- },
- "time": "2020-01-27T11:04:11+00:00",
- "type": "library",
- "installation-source": "dist",
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "GPL-2.0-or-later"
- ],
- "description": "Support functions for Jetpack hosting partners."
- },
- {
- "name": "automattic/jetpack-roles",
- "version": "v1.0.4",
- "version_normalized": "1.0.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/Automattic/jetpack-roles.git",
- "reference": "0cdcff4fdc489c79f20a361c084ec48e326ce483"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/Automattic/jetpack-roles/zipball/0cdcff4fdc489c79f20a361c084ec48e326ce483",
- "reference": "0cdcff4fdc489c79f20a361c084ec48e326ce483",
- "shasum": ""
- },
- "require-dev": {
- "php-mock/php-mock": "^2.1",
- "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5"
- },
- "time": "2019-11-08T21:16:05+00:00",
- "type": "library",
- "installation-source": "dist",
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "GPL-2.0-or-later"
- ],
- "description": "Utilities, related with user roles and capabilities."
- },
- {
- "name": "automattic/jetpack-status",
- "version": "v1.1.1",
- "version_normalized": "1.1.1.0",
- "source": {
- "type": "git",
- "url": "https://github.com/Automattic/jetpack-status.git",
- "reference": "c688b03859381e66164c821971e851408a5e232a"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/Automattic/jetpack-status/zipball/c688b03859381e66164c821971e851408a5e232a",
- "reference": "c688b03859381e66164c821971e851408a5e232a",
- "shasum": ""
- },
- "require-dev": {
- "brain/monkey": "2.4.0",
- "php-mock/php-mock": "^2.1",
- "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5"
- },
- "time": "2020-01-27T11:04:11+00:00",
- "type": "library",
- "installation-source": "dist",
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "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-fork/jetpack-sync-v1.7.4+vip",
- "version_normalized": "dev-fork/jetpack-sync-v1.7.4+vip",
- "source": {
- "type": "git",
- "url": "https://github.com/Automattic/jetpack-sync.git",
- "reference": "070a46e38d34a0ceba15b9d4b0de115fbe76b20f"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/Automattic/jetpack-sync/zipball/070a46e38d34a0ceba15b9d4b0de115fbe76b20f",
- "reference": "070a46e38d34a0ceba15b9d4b0de115fbe76b20f",
- "shasum": ""
- },
- "require": {
- "automattic/jetpack-connection": "@dev",
- "automattic/jetpack-constants": "@dev",
- "automattic/jetpack-options": "@dev",
- "automattic/jetpack-roles": "@dev",
- "automattic/jetpack-status": "@dev"
- },
- "time": "2020-02-14T17:53:00+00:00",
- "type": "library",
- "installation-source": "dist",
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "GPL-2.0-or-later"
- ],
- "description": "Everything needed to allow syncing to the WP.com infrastructure."
- },
- {
- "name": "automattic/jetpack-terms-of-service",
- "version": "v1.0.4",
- "version_normalized": "1.0.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/Automattic/jetpack-terms-of-service.git",
- "reference": "fcee8e9de7f37d36bd68ac1ebabdb15cf6e10952"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/Automattic/jetpack-terms-of-service/zipball/fcee8e9de7f37d36bd68ac1ebabdb15cf6e10952",
- "reference": "fcee8e9de7f37d36bd68ac1ebabdb15cf6e10952",
- "shasum": ""
- },
- "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"
- },
- "time": "2019-11-15T16:03:27+00:00",
- "type": "library",
- "installation-source": "dist",
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "GPL-2.0-or-later"
- ],
- "description": "Everything need to manage the terms of service state"
- },
- {
- "name": "automattic/jetpack-tracking",
- "version": "v1.2.2",
- "version_normalized": "1.2.2.0",
- "source": {
- "type": "git",
- "url": "https://github.com/Automattic/jetpack-tracking.git",
- "reference": "d337a8f4234c684e80a43ff9ad3051a46a1f35d6"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/Automattic/jetpack-tracking/zipball/d337a8f4234c684e80a43ff9ad3051a46a1f35d6",
- "reference": "d337a8f4234c684e80a43ff9ad3051a46a1f35d6",
- "shasum": ""
- },
- "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"
- },
- "time": "2019-11-08T21:16:05+00:00",
- "type": "library",
- "installation-source": "dist",
- "autoload": {
- "classmap": [
- "legacy",
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "GPL-2.0-or-later"
- ],
- "description": "Tracking for Jetpack"
- }
-]
+{
+ "packages": [
+ {
+ "name": "automattic/jetpack-a8c-mc-stats",
+ "version": "v1.4.11",
+ "version_normalized": "1.4.11.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Automattic/jetpack-a8c-mc-stats.git",
+ "reference": "6e7d7c8b9c996f04978b834e4c3484bd2d916998"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Automattic/jetpack-a8c-mc-stats/zipball/6e7d7c8b9c996f04978b834e4c3484bd2d916998",
+ "reference": "6e7d7c8b9c996f04978b834e4c3484bd2d916998",
+ "shasum": ""
+ },
+ "require-dev": {
+ "automattic/jetpack-changelogger": "^3.0",
+ "yoast/phpunit-polyfills": "1.0.3"
+ },
+ "time": "2022-01-04T21:11:24+00:00",
+ "type": "jetpack-library",
+ "extra": {
+ "autotagger": true,
+ "mirror-repo": "Automattic/jetpack-a8c-mc-stats",
+ "changelogger": {
+ "link-template": "https://github.com/Automattic/jetpack-a8c-mc-stats/compare/v${old}...v${new}"
+ },
+ "branch-alias": {
+ "dev-master": "1.4.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0-or-later"
+ ],
+ "description": "Used to record internal usage stats for Automattic. Not visible to site owners.",
+ "support": {
+ "source": "https://github.com/Automattic/jetpack-a8c-mc-stats/tree/v1.4.11"
+ },
+ "install-path": "../../jetpack_vendor/automattic/jetpack-a8c-mc-stats"
+ },
+ {
+ "name": "automattic/jetpack-abtest",
+ "version": "v1.9.18",
+ "version_normalized": "1.9.18.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Automattic/jetpack-abtest.git",
+ "reference": "8ad2e2685a1370f080c403095bad009b2f87370e"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Automattic/jetpack-abtest/zipball/8ad2e2685a1370f080c403095bad009b2f87370e",
+ "reference": "8ad2e2685a1370f080c403095bad009b2f87370e",
+ "shasum": ""
+ },
+ "require": {
+ "automattic/jetpack-connection": "^1.34",
+ "automattic/jetpack-error": "^1.3"
+ },
+ "require-dev": {
+ "automattic/jetpack-changelogger": "^3.0",
+ "automattic/wordbless": "dev-master",
+ "yoast/phpunit-polyfills": "1.0.3"
+ },
+ "time": "2022-01-04T21:11:59+00:00",
+ "type": "jetpack-library",
+ "extra": {
+ "autotagger": true,
+ "mirror-repo": "Automattic/jetpack-abtest",
+ "changelogger": {
+ "link-template": "https://github.com/Automattic/jetpack-abtest/compare/v${old}...v${new}"
+ },
+ "branch-alias": {
+ "dev-master": "1.9.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0-or-later"
+ ],
+ "description": "Provides an interface to the WP.com A/B tests.",
+ "support": {
+ "source": "https://github.com/Automattic/jetpack-abtest/tree/v1.9.18"
+ },
+ "install-path": "../../jetpack_vendor/automattic/jetpack-abtest"
+ },
+ {
+ "name": "automattic/jetpack-admin-ui",
+ "version": "v0.2.1",
+ "version_normalized": "0.2.1.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Automattic/jetpack-admin-ui.git",
+ "reference": "ce6964700c9698f9ea8c0a00120f1fbbd755de57"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Automattic/jetpack-admin-ui/zipball/ce6964700c9698f9ea8c0a00120f1fbbd755de57",
+ "reference": "ce6964700c9698f9ea8c0a00120f1fbbd755de57",
+ "shasum": ""
+ },
+ "require-dev": {
+ "automattic/jetpack-changelogger": "^3.0",
+ "automattic/wordbless": "dev-master",
+ "yoast/phpunit-polyfills": "1.0.3"
+ },
+ "time": "2022-01-04T21:11:25+00:00",
+ "type": "jetpack-library",
+ "extra": {
+ "autotagger": true,
+ "mirror-repo": "Automattic/jetpack-admin-ui",
+ "changelogger": {
+ "link-template": "https://github.com/Automattic/jetpack-admin-ui/compare/${old}...${new}"
+ },
+ "branch-alias": {
+ "dev-master": "0.2.x-dev"
+ },
+ "version-constants": {
+ "::PACKAGE_VERSION": "src/class-admin-menu.php"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0-or-later"
+ ],
+ "description": "Generic Jetpack wp-admin UI elements",
+ "support": {
+ "source": "https://github.com/Automattic/jetpack-admin-ui/tree/v0.2.1"
+ },
+ "install-path": "../../jetpack_vendor/automattic/jetpack-admin-ui"
+ },
+ {
+ "name": "automattic/jetpack-assets",
+ "version": "v1.16.1",
+ "version_normalized": "1.16.1.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Automattic/jetpack-assets.git",
+ "reference": "5a6959969bed4559e080269cafbd69d476249822"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Automattic/jetpack-assets/zipball/5a6959969bed4559e080269cafbd69d476249822",
+ "reference": "5a6959969bed4559e080269cafbd69d476249822",
+ "shasum": ""
+ },
+ "require": {
+ "automattic/jetpack-constants": "^1.6"
+ },
+ "require-dev": {
+ "automattic/jetpack-changelogger": "^3.0",
+ "brain/monkey": "2.6.1",
+ "wikimedia/testing-access-wrapper": "^1.0 | ^2.0",
+ "yoast/phpunit-polyfills": "1.0.3"
+ },
+ "time": "2022-01-05T21:46:22+00:00",
+ "type": "jetpack-library",
+ "extra": {
+ "autotagger": true,
+ "mirror-repo": "Automattic/jetpack-assets",
+ "textdomain": "jetpack-assets",
+ "changelogger": {
+ "link-template": "https://github.com/Automattic/jetpack-assets/compare/v${old}...v${new}"
+ },
+ "branch-alias": {
+ "dev-master": "1.16.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "files": [
+ "actions.php"
+ ],
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0-or-later"
+ ],
+ "description": "Asset management utilities for Jetpack ecosystem packages",
+ "support": {
+ "source": "https://github.com/Automattic/jetpack-assets/tree/v1.16.1"
+ },
+ "install-path": "../../jetpack_vendor/automattic/jetpack-assets"
+ },
+ {
+ "name": "automattic/jetpack-autoloader",
+ "version": "v2.10.11",
+ "version_normalized": "2.10.11.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Automattic/jetpack-autoloader.git",
+ "reference": "924226c0a9e2f9b0be022fc6bab2a90f5e610ef3"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Automattic/jetpack-autoloader/zipball/924226c0a9e2f9b0be022fc6bab2a90f5e610ef3",
+ "reference": "924226c0a9e2f9b0be022fc6bab2a90f5e610ef3",
+ "shasum": ""
+ },
+ "require": {
+ "composer-plugin-api": "^1.1 || ^2.0"
+ },
+ "require-dev": {
+ "automattic/jetpack-changelogger": "^3.0",
+ "yoast/phpunit-polyfills": "1.0.3"
+ },
+ "time": "2022-01-04T21:11:27+00:00",
+ "type": "composer-plugin",
+ "extra": {
+ "autotagger": true,
+ "class": "Automattic\\Jetpack\\Autoloader\\CustomAutoloaderPlugin",
+ "mirror-repo": "Automattic/jetpack-autoloader",
+ "changelogger": {
+ "link-template": "https://github.com/Automattic/jetpack-autoloader/compare/v${old}...v${new}"
+ },
+ "branch-alias": {
+ "dev-master": "2.10.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "classmap": [
+ "src/AutoloadGenerator.php"
+ ],
+ "psr-4": {
+ "Automattic\\Jetpack\\Autoloader\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0-or-later"
+ ],
+ "description": "Creates a custom autoloader for a plugin or theme.",
+ "support": {
+ "source": "https://github.com/Automattic/jetpack-autoloader/tree/v2.10.11"
+ },
+ "install-path": "../automattic/jetpack-autoloader"
+ },
+ {
+ "name": "automattic/jetpack-backup",
+ "version": "v1.2.0",
+ "version_normalized": "1.2.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Automattic/jetpack-backup.git",
+ "reference": "55054e3fe2c0450d4738b3dcce547d26ee82faa1"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Automattic/jetpack-backup/zipball/55054e3fe2c0450d4738b3dcce547d26ee82faa1",
+ "reference": "55054e3fe2c0450d4738b3dcce547d26ee82faa1",
+ "shasum": ""
+ },
+ "require": {
+ "automattic/jetpack-connection": "^1.34",
+ "automattic/jetpack-sync": "^1.28"
+ },
+ "require-dev": {
+ "automattic/jetpack-changelogger": "^3.0",
+ "automattic/wordbless": "@dev",
+ "yoast/phpunit-polyfills": "1.0.3"
+ },
+ "time": "2022-01-04T21:12:11+00:00",
+ "type": "jetpack-library",
+ "extra": {
+ "autotagger": true,
+ "mirror-repo": "Automattic/jetpack-backup",
+ "textdomain": "jetpack-backup-pkg",
+ "version-constants": {
+ "::PACKAGE_VERSION": "src/class-package-version.php"
+ },
+ "changelogger": {
+ "link-template": "https://github.com/Automattic/jetpack-backup/compare/v${old}...v${new}"
+ },
+ "branch-alias": {
+ "dev-master": "1.2.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "files": [
+ "actions.php"
+ ],
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0-or-later"
+ ],
+ "description": "Tools to assist with backing up Jetpack sites.",
+ "support": {
+ "source": "https://github.com/Automattic/jetpack-backup/tree/v1.2.0"
+ },
+ "install-path": "../../jetpack_vendor/automattic/jetpack-backup"
+ },
+ {
+ "name": "automattic/jetpack-blocks",
+ "version": "v1.4.9",
+ "version_normalized": "1.4.9.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Automattic/jetpack-blocks.git",
+ "reference": "ac699666f0bd01c4f74f9fa339a553e466a8b987"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Automattic/jetpack-blocks/zipball/ac699666f0bd01c4f74f9fa339a553e466a8b987",
+ "reference": "ac699666f0bd01c4f74f9fa339a553e466a8b987",
+ "shasum": ""
+ },
+ "require-dev": {
+ "automattic/jetpack-changelogger": "^3.0",
+ "automattic/wordbless": "dev-master",
+ "brain/monkey": "2.6.1",
+ "yoast/phpunit-polyfills": "1.0.3"
+ },
+ "time": "2022-01-04T21:11:28+00:00",
+ "type": "jetpack-library",
+ "extra": {
+ "autotagger": true,
+ "mirror-repo": "Automattic/jetpack-blocks",
+ "changelogger": {
+ "link-template": "https://github.com/Automattic/jetpack-blocks/compare/v${old}...v${new}"
+ },
+ "branch-alias": {
+ "dev-master": "1.4.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0-or-later"
+ ],
+ "description": "Register and manage blocks within a plugin. Used to manage block registration, enqueues, and more.",
+ "support": {
+ "source": "https://github.com/Automattic/jetpack-blocks/tree/v1.4.9"
+ },
+ "install-path": "../../jetpack_vendor/automattic/jetpack-blocks"
+ },
+ {
+ "name": "automattic/jetpack-compat",
+ "version": "v1.6.8",
+ "version_normalized": "1.6.8.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Automattic/jetpack-compat.git",
+ "reference": "38da6f2769a2438d192cde43343f3b9fdb517df1"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Automattic/jetpack-compat/zipball/38da6f2769a2438d192cde43343f3b9fdb517df1",
+ "reference": "38da6f2769a2438d192cde43343f3b9fdb517df1",
+ "shasum": ""
+ },
+ "require-dev": {
+ "automattic/jetpack-changelogger": "^3.0"
+ },
+ "time": "2021-12-14T17:53:46+00:00",
+ "type": "jetpack-library",
+ "extra": {
+ "autotagger": true,
+ "mirror-repo": "Automattic/jetpack-compat",
+ "changelogger": {
+ "link-template": "https://github.com/Automattic/jetpack-compat/compare/v${old}...v${new}"
+ },
+ "branch-alias": {
+ "dev-master": "1.6.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "files": [
+ "functions.php"
+ ],
+ "classmap": [
+ "legacy"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0-or-later"
+ ],
+ "description": "Compatibility layer with previous versions of Jetpack",
+ "support": {
+ "source": "https://github.com/Automattic/jetpack-compat/tree/v1.6.8"
+ },
+ "install-path": "../../jetpack_vendor/automattic/jetpack-compat"
+ },
+ {
+ "name": "automattic/jetpack-composer-plugin",
+ "version": "v1.0.1",
+ "version_normalized": "1.0.1.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Automattic/jetpack-composer-plugin.git",
+ "reference": "27c6980561d0c8c56ad3d9b9d0fb576b1ef9bd86"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Automattic/jetpack-composer-plugin/zipball/27c6980561d0c8c56ad3d9b9d0fb576b1ef9bd86",
+ "reference": "27c6980561d0c8c56ad3d9b9d0fb576b1ef9bd86",
+ "shasum": ""
+ },
+ "require": {
+ "composer-plugin-api": "^2.1.0"
+ },
+ "require-dev": {
+ "automattic/jetpack-changelogger": "^3.0",
+ "composer/composer": "2.2.3",
+ "yoast/phpunit-polyfills": "1.0.3"
+ },
+ "time": "2022-01-04T21:11:31+00:00",
+ "type": "composer-plugin",
+ "extra": {
+ "class": "Automattic\\Jetpack\\Composer\\Plugin",
+ "mirror-repo": "Automattic/jetpack-composer-plugin",
+ "changelogger": {
+ "link-template": "https://github.com/Automattic/jetpack-composer-plugin/compare/v${old}...v${new}"
+ },
+ "autotagger": true,
+ "branch-alias": {
+ "dev-master": "1.0.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0-or-later"
+ ],
+ "description": "A custom installer plugin for Composer to move Jetpack packages out of `vendor/` so WordPress's translation infrastructure will find their strings.",
+ "support": {
+ "source": "https://github.com/Automattic/jetpack-composer-plugin/tree/v1.0.1"
+ },
+ "install-path": "../automattic/jetpack-composer-plugin"
+ },
+ {
+ "name": "automattic/jetpack-config",
+ "version": "v1.6.0",
+ "version_normalized": "1.6.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Automattic/jetpack-config.git",
+ "reference": "1d46f87df9167a03960d708ce767d0efdfc855cf"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Automattic/jetpack-config/zipball/1d46f87df9167a03960d708ce767d0efdfc855cf",
+ "reference": "1d46f87df9167a03960d708ce767d0efdfc855cf",
+ "shasum": ""
+ },
+ "require-dev": {
+ "automattic/jetpack-changelogger": "^3.0"
+ },
+ "time": "2022-01-04T21:11:32+00:00",
+ "type": "jetpack-library",
+ "extra": {
+ "autotagger": true,
+ "mirror-repo": "Automattic/jetpack-config",
+ "textdomain": "jetpack-config",
+ "changelogger": {
+ "link-template": "https://github.com/Automattic/jetpack-config/compare/v${old}...v${new}"
+ },
+ "branch-alias": {
+ "dev-master": "1.6.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0-or-later"
+ ],
+ "description": "Jetpack configuration package that initializes other packages and configures Jetpack's functionality. Can be used as a base for all variants of Jetpack package usage.",
+ "support": {
+ "source": "https://github.com/Automattic/jetpack-config/tree/v1.6.0"
+ },
+ "install-path": "../../jetpack_vendor/automattic/jetpack-config"
+ },
+ {
+ "name": "automattic/jetpack-connection",
+ "version": "v1.34.0",
+ "version_normalized": "1.34.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Automattic/jetpack-connection.git",
+ "reference": "14545cff5de0384e8ced64bb161e814e657efebf"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Automattic/jetpack-connection/zipball/14545cff5de0384e8ced64bb161e814e657efebf",
+ "reference": "14545cff5de0384e8ced64bb161e814e657efebf",
+ "shasum": ""
+ },
+ "require": {
+ "automattic/jetpack-a8c-mc-stats": "^1.4",
+ "automattic/jetpack-constants": "^1.6",
+ "automattic/jetpack-heartbeat": "^1.4",
+ "automattic/jetpack-options": "^1.14",
+ "automattic/jetpack-redirect": "^1.7",
+ "automattic/jetpack-roles": "^1.4",
+ "automattic/jetpack-status": "^1.9",
+ "automattic/jetpack-terms-of-service": "^1.9",
+ "automattic/jetpack-tracking": "^1.14"
+ },
+ "require-dev": {
+ "automattic/jetpack-changelogger": "^3.0",
+ "automattic/wordbless": "@dev",
+ "brain/monkey": "2.6.1",
+ "yoast/phpunit-polyfills": "1.0.3"
+ },
+ "time": "2022-01-04T21:11:56+00:00",
+ "type": "jetpack-library",
+ "extra": {
+ "autotagger": true,
+ "mirror-repo": "Automattic/jetpack-connection",
+ "textdomain": "jetpack-connection",
+ "version-constants": {
+ "::PACKAGE_VERSION": "src/class-package-version.php"
+ },
+ "changelogger": {
+ "link-template": "https://github.com/Automattic/jetpack-connection/compare/v${old}...v${new}"
+ },
+ "branch-alias": {
+ "dev-master": "1.34.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "classmap": [
+ "legacy",
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0-or-later"
+ ],
+ "description": "Everything needed to connect to the Jetpack infrastructure",
+ "support": {
+ "source": "https://github.com/Automattic/jetpack-connection/tree/v1.34.0"
+ },
+ "install-path": "../../jetpack_vendor/automattic/jetpack-connection"
+ },
+ {
+ "name": "automattic/jetpack-connection-ui",
+ "version": "v2.3.0",
+ "version_normalized": "2.3.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Automattic/jetpack-connection-ui.git",
+ "reference": "375ea7b050b2dc98a06fc317dae8441dc1eacba8"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Automattic/jetpack-connection-ui/zipball/375ea7b050b2dc98a06fc317dae8441dc1eacba8",
+ "reference": "375ea7b050b2dc98a06fc317dae8441dc1eacba8",
+ "shasum": ""
+ },
+ "require": {
+ "automattic/jetpack-assets": "^1.16",
+ "automattic/jetpack-connection": "^1.34",
+ "automattic/jetpack-constants": "^1.6",
+ "automattic/jetpack-device-detection": "^1.4",
+ "automattic/jetpack-identity-crisis": "^0.6"
+ },
+ "require-dev": {
+ "automattic/jetpack-changelogger": "^3.0"
+ },
+ "time": "2022-01-04T21:12:08+00:00",
+ "type": "jetpack-library",
+ "extra": {
+ "autotagger": true,
+ "mirror-repo": "Automattic/jetpack-connection-ui",
+ "textdomain": "jetpack-connection-ui",
+ "changelogger": {
+ "link-template": "https://github.com/Automattic/jetpack-connection-ui/compare/v${old}...v${new}"
+ },
+ "branch-alias": {
+ "dev-master": "2.3.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0-or-later"
+ ],
+ "description": "Jetpack Connection UI",
+ "support": {
+ "source": "https://github.com/Automattic/jetpack-connection-ui/tree/v2.3.0"
+ },
+ "install-path": "../../jetpack_vendor/automattic/jetpack-connection-ui"
+ },
+ {
+ "name": "automattic/jetpack-constants",
+ "version": "v1.6.14",
+ "version_normalized": "1.6.14.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Automattic/jetpack-constants.git",
+ "reference": "93af2a61eceaabd16c432451cc33f7c9074efa81"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Automattic/jetpack-constants/zipball/93af2a61eceaabd16c432451cc33f7c9074efa81",
+ "reference": "93af2a61eceaabd16c432451cc33f7c9074efa81",
+ "shasum": ""
+ },
+ "require-dev": {
+ "automattic/jetpack-changelogger": "^3.0",
+ "brain/monkey": "2.6.1",
+ "yoast/phpunit-polyfills": "1.0.3"
+ },
+ "time": "2022-01-04T21:11:33+00:00",
+ "type": "jetpack-library",
+ "extra": {
+ "autotagger": true,
+ "mirror-repo": "Automattic/jetpack-constants",
+ "changelogger": {
+ "link-template": "https://github.com/Automattic/jetpack-constants/compare/v${old}...v${new}"
+ },
+ "branch-alias": {
+ "dev-master": "1.6.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0-or-later"
+ ],
+ "description": "A wrapper for defining constants in a more testable way.",
+ "support": {
+ "source": "https://github.com/Automattic/jetpack-constants/tree/v1.6.14"
+ },
+ "install-path": "../../jetpack_vendor/automattic/jetpack-constants"
+ },
+ {
+ "name": "automattic/jetpack-device-detection",
+ "version": "v1.4.11",
+ "version_normalized": "1.4.11.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Automattic/jetpack-device-detection.git",
+ "reference": "ab5ce7e487de9c9a13456d4aecdb7789f92f818d"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Automattic/jetpack-device-detection/zipball/ab5ce7e487de9c9a13456d4aecdb7789f92f818d",
+ "reference": "ab5ce7e487de9c9a13456d4aecdb7789f92f818d",
+ "shasum": ""
+ },
+ "require-dev": {
+ "automattic/jetpack-changelogger": "^3.0",
+ "yoast/phpunit-polyfills": "1.0.3"
+ },
+ "time": "2022-01-04T21:11:34+00:00",
+ "type": "jetpack-library",
+ "extra": {
+ "autotagger": true,
+ "mirror-repo": "Automattic/jetpack-device-detection",
+ "changelogger": {
+ "link-template": "https://github.com/Automattic/jetpack-device-detection/compare/v${old}...v${new}"
+ },
+ "branch-alias": {
+ "dev-master": "1.4.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0-or-later"
+ ],
+ "description": "A way to detect device types based on User-Agent header.",
+ "support": {
+ "source": "https://github.com/Automattic/jetpack-device-detection/tree/v1.4.11"
+ },
+ "install-path": "../../jetpack_vendor/automattic/jetpack-device-detection"
+ },
+ {
+ "name": "automattic/jetpack-error",
+ "version": "v1.3.12",
+ "version_normalized": "1.3.12.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Automattic/jetpack-error.git",
+ "reference": "005bf60c2d533b3d169d6688360aaf034e7fc456"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Automattic/jetpack-error/zipball/005bf60c2d533b3d169d6688360aaf034e7fc456",
+ "reference": "005bf60c2d533b3d169d6688360aaf034e7fc456",
+ "shasum": ""
+ },
+ "require-dev": {
+ "automattic/jetpack-changelogger": "^3.0",
+ "yoast/phpunit-polyfills": "1.0.3"
+ },
+ "time": "2022-01-04T21:11:35+00:00",
+ "type": "jetpack-library",
+ "extra": {
+ "autotagger": true,
+ "mirror-repo": "Automattic/jetpack-error",
+ "changelogger": {
+ "link-template": "https://github.com/Automattic/jetpack-error/compare/v${old}...v${new}"
+ },
+ "branch-alias": {
+ "dev-master": "1.3.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0-or-later"
+ ],
+ "description": "Jetpack Error - a wrapper around WP_Error.",
+ "support": {
+ "source": "https://github.com/Automattic/jetpack-error/tree/v1.3.12"
+ },
+ "install-path": "../../jetpack_vendor/automattic/jetpack-error"
+ },
+ {
+ "name": "automattic/jetpack-heartbeat",
+ "version": "v1.4.0",
+ "version_normalized": "1.4.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Automattic/jetpack-heartbeat.git",
+ "reference": "c35053475b1cb7363aee847e0d025f0a043dc3d5"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Automattic/jetpack-heartbeat/zipball/c35053475b1cb7363aee847e0d025f0a043dc3d5",
+ "reference": "c35053475b1cb7363aee847e0d025f0a043dc3d5",
+ "shasum": ""
+ },
+ "require": {
+ "automattic/jetpack-a8c-mc-stats": "^1.4",
+ "automattic/jetpack-options": "^1.14"
+ },
+ "require-dev": {
+ "automattic/jetpack-changelogger": "^3.0"
+ },
+ "time": "2022-01-04T21:11:47+00:00",
+ "type": "jetpack-library",
+ "extra": {
+ "autotagger": true,
+ "mirror-repo": "Automattic/jetpack-heartbeat",
+ "textdomain": "jetpack-heartbeat",
+ "changelogger": {
+ "link-template": "https://github.com/Automattic/jetpack-heartbeat/compare/v${old}...v${new}"
+ },
+ "branch-alias": {
+ "dev-master": "1.4.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0-or-later"
+ ],
+ "description": "This adds a cronjob that sends a batch of internal automattic stats to wp.com once a day",
+ "support": {
+ "source": "https://github.com/Automattic/jetpack-heartbeat/tree/v1.4.0"
+ },
+ "install-path": "../../jetpack_vendor/automattic/jetpack-heartbeat"
+ },
+ {
+ "name": "automattic/jetpack-identity-crisis",
+ "version": "v0.6.1",
+ "version_normalized": "0.6.1.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Automattic/jetpack-identity-crisis.git",
+ "reference": "62f19cd6b289f719ed0ae4fb366b0bf44c5f5be9"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Automattic/jetpack-identity-crisis/zipball/62f19cd6b289f719ed0ae4fb366b0bf44c5f5be9",
+ "reference": "62f19cd6b289f719ed0ae4fb366b0bf44c5f5be9",
+ "shasum": ""
+ },
+ "require": {
+ "automattic/jetpack-assets": "^1.16",
+ "automattic/jetpack-connection": "^1.34",
+ "automattic/jetpack-constants": "^1.6",
+ "automattic/jetpack-logo": "^1.5",
+ "automattic/jetpack-options": "^1.14",
+ "automattic/jetpack-status": "^1.9",
+ "automattic/jetpack-tracking": "^1.14"
+ },
+ "require-dev": {
+ "automattic/jetpack-changelogger": "^3.0",
+ "automattic/wordbless": "@dev",
+ "yoast/phpunit-polyfills": "1.0.3"
+ },
+ "time": "2022-01-11T16:37:39+00:00",
+ "type": "jetpack-library",
+ "extra": {
+ "autotagger": true,
+ "mirror-repo": "Automattic/jetpack-identity-crisis",
+ "textdomain": "jetpack-idc",
+ "version-constants": {
+ "::PACKAGE_VERSION": "src/class-identity-crisis.php"
+ },
+ "changelogger": {
+ "link-template": "https://github.com/Automattic/jetpack-identity-crisis/compare/v${old}...v${new}"
+ },
+ "branch-alias": {
+ "dev-master": "0.6.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0-or-later"
+ ],
+ "description": "Identity Crisis.",
+ "support": {
+ "source": "https://github.com/Automattic/jetpack-identity-crisis/tree/v0.6.1"
+ },
+ "install-path": "../../jetpack_vendor/automattic/jetpack-identity-crisis"
+ },
+ {
+ "name": "automattic/jetpack-jitm",
+ "version": "v2.2.0",
+ "version_normalized": "2.2.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Automattic/jetpack-jitm.git",
+ "reference": "7ac6dc5ffb274310ddc6d38fc1611af19245dc96"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Automattic/jetpack-jitm/zipball/7ac6dc5ffb274310ddc6d38fc1611af19245dc96",
+ "reference": "7ac6dc5ffb274310ddc6d38fc1611af19245dc96",
+ "shasum": ""
+ },
+ "require": {
+ "automattic/jetpack-a8c-mc-stats": "^1.4",
+ "automattic/jetpack-assets": "^1.16",
+ "automattic/jetpack-connection": "^1.34",
+ "automattic/jetpack-device-detection": "^1.4",
+ "automattic/jetpack-logo": "^1.5",
+ "automattic/jetpack-options": "^1.14",
+ "automattic/jetpack-partner": "^1.6",
+ "automattic/jetpack-redirect": "^1.7",
+ "automattic/jetpack-status": "^1.9",
+ "automattic/jetpack-tracking": "^1.14"
+ },
+ "require-dev": {
+ "automattic/jetpack-changelogger": "^3.0",
+ "brain/monkey": "2.6.1",
+ "yoast/phpunit-polyfills": "1.0.3"
+ },
+ "time": "2022-01-04T21:12:02+00:00",
+ "type": "jetpack-library",
+ "extra": {
+ "autotagger": true,
+ "mirror-repo": "Automattic/jetpack-jitm",
+ "textdomain": "jetpack-jitm",
+ "version-constants": {
+ "::PACKAGE_VERSION": "src/class-jitm.php"
+ },
+ "changelogger": {
+ "link-template": "https://github.com/Automattic/jetpack-jitm/compare/v${old}...v${new}"
+ },
+ "branch-alias": {
+ "dev-master": "2.2.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0-or-later"
+ ],
+ "description": "Just in time messages for Jetpack",
+ "support": {
+ "source": "https://github.com/Automattic/jetpack-jitm/tree/v2.2.0"
+ },
+ "install-path": "../../jetpack_vendor/automattic/jetpack-jitm"
+ },
+ {
+ "name": "automattic/jetpack-lazy-images",
+ "version": "v2.1.0",
+ "version_normalized": "2.1.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Automattic/jetpack-lazy-images.git",
+ "reference": "5aa6cfed2311fd3eb85d5c61dcf59854c5418380"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Automattic/jetpack-lazy-images/zipball/5aa6cfed2311fd3eb85d5c61dcf59854c5418380",
+ "reference": "5aa6cfed2311fd3eb85d5c61dcf59854c5418380",
+ "shasum": ""
+ },
+ "require": {
+ "automattic/jetpack-assets": "^1.16",
+ "automattic/jetpack-constants": "^1.6"
+ },
+ "require-dev": {
+ "automattic/jetpack-changelogger": "^3.0",
+ "automattic/wordbless": "dev-master",
+ "yoast/phpunit-polyfills": "1.0.3"
+ },
+ "time": "2022-01-04T21:11:48+00:00",
+ "type": "jetpack-library",
+ "extra": {
+ "autotagger": true,
+ "mirror-repo": "Automattic/jetpack-lazy-images",
+ "textdomain": "jetpack-lazy-images",
+ "changelogger": {
+ "link-template": "https://github.com/Automattic/jetpack-lazy-images/compare/v${old}...v${new}"
+ },
+ "branch-alias": {
+ "dev-master": "2.1.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0-or-later"
+ ],
+ "description": "Speed up your site and create a smoother viewing experience by loading images as visitors scroll down the screen, instead of all at once.",
+ "support": {
+ "source": "https://github.com/Automattic/jetpack-lazy-images/tree/v2.1.0"
+ },
+ "install-path": "../../jetpack_vendor/automattic/jetpack-lazy-images"
+ },
+ {
+ "name": "automattic/jetpack-licensing",
+ "version": "v1.6.0",
+ "version_normalized": "1.6.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Automattic/jetpack-licensing.git",
+ "reference": "cf6c5c97313fcfd2b5497cc3de945e49262f633e"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Automattic/jetpack-licensing/zipball/cf6c5c97313fcfd2b5497cc3de945e49262f633e",
+ "reference": "cf6c5c97313fcfd2b5497cc3de945e49262f633e",
+ "shasum": ""
+ },
+ "require": {
+ "automattic/jetpack-connection": "^1.34",
+ "automattic/jetpack-options": "^1.14"
+ },
+ "require-dev": {
+ "automattic/jetpack-changelogger": "^3.0",
+ "automattic/wordbless": "@dev",
+ "yoast/phpunit-polyfills": "1.0.3"
+ },
+ "time": "2022-01-04T21:12:03+00:00",
+ "type": "jetpack-library",
+ "extra": {
+ "autotagger": true,
+ "mirror-repo": "Automattic/jetpack-licensing",
+ "textdomain": "jetpack-licensing",
+ "changelogger": {
+ "link-template": "https://github.com/Automattic/jetpack-licensing/compare/v${old}...v${new}"
+ },
+ "branch-alias": {
+ "dev-master": "1.6.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0-or-later"
+ ],
+ "description": "Everything needed to manage Jetpack licenses client-side.",
+ "support": {
+ "source": "https://github.com/Automattic/jetpack-licensing/tree/v1.6.0"
+ },
+ "install-path": "../../jetpack_vendor/automattic/jetpack-licensing"
+ },
+ {
+ "name": "automattic/jetpack-logo",
+ "version": "v1.5.13",
+ "version_normalized": "1.5.13.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Automattic/jetpack-logo.git",
+ "reference": "0f0a80b3ac89d8d64756a8049903fcedf6f2e887"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Automattic/jetpack-logo/zipball/0f0a80b3ac89d8d64756a8049903fcedf6f2e887",
+ "reference": "0f0a80b3ac89d8d64756a8049903fcedf6f2e887",
+ "shasum": ""
+ },
+ "require-dev": {
+ "automattic/jetpack-changelogger": "^3.0",
+ "yoast/phpunit-polyfills": "1.0.3"
+ },
+ "time": "2022-01-04T21:11:37+00:00",
+ "type": "jetpack-library",
+ "extra": {
+ "autotagger": true,
+ "mirror-repo": "Automattic/jetpack-logo",
+ "changelogger": {
+ "link-template": "https://github.com/Automattic/jetpack-logo/compare/v${old}...v${new}"
+ },
+ "branch-alias": {
+ "dev-master": "1.5.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0-or-later"
+ ],
+ "description": "A logo for Jetpack",
+ "support": {
+ "source": "https://github.com/Automattic/jetpack-logo/tree/v1.5.13"
+ },
+ "install-path": "../../jetpack_vendor/automattic/jetpack-logo"
+ },
+ {
+ "name": "automattic/jetpack-my-jetpack",
+ "version": "v0.3.0",
+ "version_normalized": "0.3.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Automattic/jetpack-my-jetpack.git",
+ "reference": "74179288cb1c3193320618fbc00e35244278ae9f"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Automattic/jetpack-my-jetpack/zipball/74179288cb1c3193320618fbc00e35244278ae9f",
+ "reference": "74179288cb1c3193320618fbc00e35244278ae9f",
+ "shasum": ""
+ },
+ "require": {
+ "automattic/jetpack-admin-ui": "^0.2",
+ "automattic/jetpack-assets": "^1.16",
+ "automattic/jetpack-connection": "^1.34"
+ },
+ "require-dev": {
+ "automattic/jetpack-changelogger": "^3.0",
+ "yoast/phpunit-polyfills": "1.0.3"
+ },
+ "time": "2022-01-04T21:12:04+00:00",
+ "type": "jetpack-library",
+ "extra": {
+ "autotagger": true,
+ "mirror-repo": "Automattic/jetpack-my-jetpack",
+ "textdomain": "jetpack-my-jetpack",
+ "changelogger": {
+ "link-template": "https://github.com/Automattic/jetpack-my-jetpack/compare/${old}...${new}"
+ },
+ "branch-alias": {
+ "dev-master": "0.3.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0-or-later"
+ ],
+ "description": "WP Admin page with information and configuration shared among all Jetpack stand-alone plugins",
+ "support": {
+ "source": "https://github.com/Automattic/jetpack-my-jetpack/tree/v0.3.0"
+ },
+ "install-path": "../../jetpack_vendor/automattic/jetpack-my-jetpack"
+ },
+ {
+ "name": "automattic/jetpack-options",
+ "version": "v1.14.2",
+ "version_normalized": "1.14.2.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Automattic/jetpack-options.git",
+ "reference": "9cd0f27ae970097bf6a8bc5b3c80cf079e4bf3f2"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Automattic/jetpack-options/zipball/9cd0f27ae970097bf6a8bc5b3c80cf079e4bf3f2",
+ "reference": "9cd0f27ae970097bf6a8bc5b3c80cf079e4bf3f2",
+ "shasum": ""
+ },
+ "require": {
+ "automattic/jetpack-constants": "^1.6"
+ },
+ "require-dev": {
+ "automattic/jetpack-changelogger": "^3.0",
+ "yoast/phpunit-polyfills": "1.0.3"
+ },
+ "time": "2022-01-04T21:11:42+00:00",
+ "type": "jetpack-library",
+ "extra": {
+ "autotagger": true,
+ "mirror-repo": "Automattic/jetpack-options",
+ "changelogger": {
+ "link-template": "https://github.com/Automattic/jetpack-options/compare/v${old}...v${new}"
+ },
+ "branch-alias": {
+ "dev-master": "1.14.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "classmap": [
+ "legacy"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0-or-later"
+ ],
+ "description": "A wrapper for wp-options to manage specific Jetpack options.",
+ "support": {
+ "source": "https://github.com/Automattic/jetpack-options/tree/v1.14.2"
+ },
+ "install-path": "../../jetpack_vendor/automattic/jetpack-options"
+ },
+ {
+ "name": "automattic/jetpack-partner",
+ "version": "v1.6.2",
+ "version_normalized": "1.6.2.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Automattic/jetpack-partner.git",
+ "reference": "68ff674f5f1301e1016521b58a39d18fe6442407"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Automattic/jetpack-partner/zipball/68ff674f5f1301e1016521b58a39d18fe6442407",
+ "reference": "68ff674f5f1301e1016521b58a39d18fe6442407",
+ "shasum": ""
+ },
+ "require-dev": {
+ "automattic/jetpack-changelogger": "^3.0",
+ "automattic/jetpack-options": "^1.14",
+ "automattic/wordbless": "@dev",
+ "brain/monkey": "2.6.1",
+ "yoast/phpunit-polyfills": "1.0.3"
+ },
+ "time": "2022-01-04T21:11:49+00:00",
+ "type": "jetpack-library",
+ "extra": {
+ "autotagger": true,
+ "mirror-repo": "Automattic/jetpack-partner",
+ "changelogger": {
+ "link-template": "https://github.com/Automattic/jetpack-partner/compare/v${old}...v${new}"
+ },
+ "branch-alias": {
+ "dev-master": "1.6.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0-or-later"
+ ],
+ "description": "Support functions for Jetpack hosting partners.",
+ "support": {
+ "source": "https://github.com/Automattic/jetpack-partner/tree/v1.6.2"
+ },
+ "install-path": "../../jetpack_vendor/automattic/jetpack-partner"
+ },
+ {
+ "name": "automattic/jetpack-password-checker",
+ "version": "v0.2.0",
+ "version_normalized": "0.2.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Automattic/jetpack-password-checker.git",
+ "reference": "e07ea017e9d13fbb4104e40308dde8413ef6310f"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Automattic/jetpack-password-checker/zipball/e07ea017e9d13fbb4104e40308dde8413ef6310f",
+ "reference": "e07ea017e9d13fbb4104e40308dde8413ef6310f",
+ "shasum": ""
+ },
+ "require-dev": {
+ "automattic/jetpack-changelogger": "^3.0",
+ "automattic/wordbless": "@dev",
+ "yoast/phpunit-polyfills": "1.0.3"
+ },
+ "time": "2022-01-04T21:11:38+00:00",
+ "type": "jetpack-library",
+ "extra": {
+ "autotagger": true,
+ "mirror-repo": "Automattic/jetpack-password-checker",
+ "textdomain": "jetpack-password-checker",
+ "changelogger": {
+ "link-template": "https://github.com/Automattic/jetpack-password-checker/compare/v${old}...v${new}"
+ },
+ "branch-alias": {
+ "dev-master": "0.2.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0-or-later"
+ ],
+ "description": "Password Checker.",
+ "support": {
+ "source": "https://github.com/Automattic/jetpack-password-checker/tree/v0.2.0"
+ },
+ "install-path": "../../jetpack_vendor/automattic/jetpack-password-checker"
+ },
+ {
+ "name": "automattic/jetpack-redirect",
+ "version": "v1.7.9",
+ "version_normalized": "1.7.9.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Automattic/jetpack-redirect.git",
+ "reference": "7b7640108a704b6978814e0cfb2e5102d19c7d42"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Automattic/jetpack-redirect/zipball/7b7640108a704b6978814e0cfb2e5102d19c7d42",
+ "reference": "7b7640108a704b6978814e0cfb2e5102d19c7d42",
+ "shasum": ""
+ },
+ "require": {
+ "automattic/jetpack-status": "^1.9"
+ },
+ "require-dev": {
+ "automattic/jetpack-changelogger": "^3.0",
+ "brain/monkey": "2.6.1",
+ "yoast/phpunit-polyfills": "1.0.3"
+ },
+ "time": "2022-01-04T21:11:51+00:00",
+ "type": "jetpack-library",
+ "extra": {
+ "autotagger": true,
+ "mirror-repo": "Automattic/jetpack-redirect",
+ "changelogger": {
+ "link-template": "https://github.com/Automattic/jetpack-redirect/compare/v${old}...v${new}"
+ },
+ "branch-alias": {
+ "dev-master": "1.7.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0-or-later"
+ ],
+ "description": "Utilities to build URLs to the jetpack.com/redirect/ service",
+ "support": {
+ "source": "https://github.com/Automattic/jetpack-redirect/tree/v1.7.9"
+ },
+ "install-path": "../../jetpack_vendor/automattic/jetpack-redirect"
+ },
+ {
+ "name": "automattic/jetpack-roles",
+ "version": "v1.4.13",
+ "version_normalized": "1.4.13.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Automattic/jetpack-roles.git",
+ "reference": "5d0a94f52de1e44a4537bc736af940f6b178c107"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Automattic/jetpack-roles/zipball/5d0a94f52de1e44a4537bc736af940f6b178c107",
+ "reference": "5d0a94f52de1e44a4537bc736af940f6b178c107",
+ "shasum": ""
+ },
+ "require-dev": {
+ "automattic/jetpack-changelogger": "^3.0",
+ "brain/monkey": "2.6.1",
+ "yoast/phpunit-polyfills": "1.0.3"
+ },
+ "time": "2022-01-04T21:11:39+00:00",
+ "type": "jetpack-library",
+ "extra": {
+ "autotagger": true,
+ "mirror-repo": "Automattic/jetpack-roles",
+ "changelogger": {
+ "link-template": "https://github.com/Automattic/jetpack-roles/compare/v${old}...v${new}"
+ },
+ "branch-alias": {
+ "dev-master": "1.4.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0-or-later"
+ ],
+ "description": "Utilities, related with user roles and capabilities.",
+ "support": {
+ "source": "https://github.com/Automattic/jetpack-roles/tree/v1.4.13"
+ },
+ "install-path": "../../jetpack_vendor/automattic/jetpack-roles"
+ },
+ {
+ "name": "automattic/jetpack-search",
+ "version": "v0.4.0",
+ "version_normalized": "0.4.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Automattic/jetpack-search.git",
+ "reference": "dee991d060e09821b2b4c9927c987a4877c3648e"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Automattic/jetpack-search/zipball/dee991d060e09821b2b4c9927c987a4877c3648e",
+ "reference": "dee991d060e09821b2b4c9927c987a4877c3648e",
+ "shasum": ""
+ },
+ "require": {
+ "automattic/jetpack-connection": "^1.34"
+ },
+ "require-dev": {
+ "automattic/jetpack-changelogger": "^3.0",
+ "automattic/wordbless": "0.3.1",
+ "yoast/phpunit-polyfills": "1.0.3"
+ },
+ "time": "2022-01-04T21:12:05+00:00",
+ "type": "jetpack-library",
+ "extra": {
+ "autotagger": true,
+ "mirror-repo": "Automattic/jetpack-search",
+ "textdomain": "jetpack-search-pkg",
+ "changelogger": {
+ "link-template": "https://github.com/Automattic/jetpack-search/compare/v${old}...v${new}"
+ },
+ "branch-alias": {
+ "dev-master": "0.4.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0-or-later"
+ ],
+ "description": "Tools to assist with enabling cloud search for Jetpack sites.",
+ "support": {
+ "source": "https://github.com/Automattic/jetpack-search/tree/v0.4.0"
+ },
+ "install-path": "../../jetpack_vendor/automattic/jetpack-search"
+ },
+ {
+ "name": "automattic/jetpack-status",
+ "version": "v1.9.5",
+ "version_normalized": "1.9.5.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Automattic/jetpack-status.git",
+ "reference": "6300e03a808ef63dda558f0eb78e39a0e529a274"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Automattic/jetpack-status/zipball/6300e03a808ef63dda558f0eb78e39a0e529a274",
+ "reference": "6300e03a808ef63dda558f0eb78e39a0e529a274",
+ "shasum": ""
+ },
+ "require": {
+ "automattic/jetpack-constants": "^1.6"
+ },
+ "require-dev": {
+ "automattic/jetpack-changelogger": "^3.0",
+ "brain/monkey": "2.6.1",
+ "yoast/phpunit-polyfills": "1.0.3"
+ },
+ "time": "2022-01-04T21:11:43+00:00",
+ "type": "jetpack-library",
+ "extra": {
+ "autotagger": true,
+ "mirror-repo": "Automattic/jetpack-status",
+ "changelogger": {
+ "link-template": "https://github.com/Automattic/jetpack-status/compare/v${old}...v${new}"
+ },
+ "branch-alias": {
+ "dev-master": "1.9.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0-or-later"
+ ],
+ "description": "Used to retrieve information about the current status of Jetpack and the site overall.",
+ "support": {
+ "source": "https://github.com/Automattic/jetpack-status/tree/v1.9.5"
+ },
+ "install-path": "../../jetpack_vendor/automattic/jetpack-status"
+ },
+ {
+ "name": "automattic/jetpack-sync",
+ "version": "v1.28.0",
+ "version_normalized": "1.28.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Automattic/jetpack-sync.git",
+ "reference": "3c7ce980bde96feaf695f998d5eb9458c9c16732"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Automattic/jetpack-sync/zipball/3c7ce980bde96feaf695f998d5eb9458c9c16732",
+ "reference": "3c7ce980bde96feaf695f998d5eb9458c9c16732",
+ "shasum": ""
+ },
+ "require": {
+ "automattic/jetpack-connection": "^1.34",
+ "automattic/jetpack-constants": "^1.6",
+ "automattic/jetpack-heartbeat": "^1.4",
+ "automattic/jetpack-identity-crisis": "^0.6",
+ "automattic/jetpack-options": "^1.14",
+ "automattic/jetpack-password-checker": "^0.2",
+ "automattic/jetpack-roles": "^1.4",
+ "automattic/jetpack-status": "^1.9"
+ },
+ "require-dev": {
+ "automattic/jetpack-changelogger": "^3.0",
+ "automattic/wordbless": "@dev",
+ "yoast/phpunit-polyfills": "1.0.3"
+ },
+ "time": "2022-01-04T21:12:09+00:00",
+ "type": "jetpack-library",
+ "extra": {
+ "autotagger": true,
+ "mirror-repo": "Automattic/jetpack-sync",
+ "textdomain": "jetpack-sync",
+ "version-constants": {
+ "::PACKAGE_VERSION": "src/class-package-version.php"
+ },
+ "changelogger": {
+ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}"
+ },
+ "branch-alias": {
+ "dev-master": "1.28.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0-or-later"
+ ],
+ "description": "Everything needed to allow syncing to the WP.com infrastructure.",
+ "support": {
+ "source": "https://github.com/Automattic/jetpack-sync/tree/v1.28.0"
+ },
+ "install-path": "../../jetpack_vendor/automattic/jetpack-sync"
+ },
+ {
+ "name": "automattic/jetpack-terms-of-service",
+ "version": "v1.9.18",
+ "version_normalized": "1.9.18.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Automattic/jetpack-terms-of-service.git",
+ "reference": "46f3ac423d38219d719f0d0a33e7753b6e28d7ef"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Automattic/jetpack-terms-of-service/zipball/46f3ac423d38219d719f0d0a33e7753b6e28d7ef",
+ "reference": "46f3ac423d38219d719f0d0a33e7753b6e28d7ef",
+ "shasum": ""
+ },
+ "require": {
+ "automattic/jetpack-options": "^1.14",
+ "automattic/jetpack-status": "^1.9"
+ },
+ "require-dev": {
+ "automattic/jetpack-changelogger": "^3.0",
+ "brain/monkey": "2.6.1",
+ "yoast/phpunit-polyfills": "1.0.3"
+ },
+ "time": "2022-01-04T21:11:52+00:00",
+ "type": "jetpack-library",
+ "extra": {
+ "autotagger": true,
+ "mirror-repo": "Automattic/jetpack-terms-of-service",
+ "changelogger": {
+ "link-template": "https://github.com/Automattic/jetpack-terms-of-service/compare/v${old}...v${new}"
+ },
+ "branch-alias": {
+ "dev-master": "1.9.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0-or-later"
+ ],
+ "description": "Everything need to manage the terms of service state",
+ "support": {
+ "source": "https://github.com/Automattic/jetpack-terms-of-service/tree/v1.9.18"
+ },
+ "install-path": "../../jetpack_vendor/automattic/jetpack-terms-of-service"
+ },
+ {
+ "name": "automattic/jetpack-tracking",
+ "version": "v1.14.0",
+ "version_normalized": "1.14.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Automattic/jetpack-tracking.git",
+ "reference": "b2f869437c42fca557f3450fed0f61ae6162d0bf"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Automattic/jetpack-tracking/zipball/b2f869437c42fca557f3450fed0f61ae6162d0bf",
+ "reference": "b2f869437c42fca557f3450fed0f61ae6162d0bf",
+ "shasum": ""
+ },
+ "require": {
+ "automattic/jetpack-assets": "^1.16",
+ "automattic/jetpack-options": "^1.14",
+ "automattic/jetpack-status": "^1.9",
+ "automattic/jetpack-terms-of-service": "^1.9"
+ },
+ "require-dev": {
+ "automattic/jetpack-changelogger": "^3.0",
+ "brain/monkey": "2.6.1",
+ "yoast/phpunit-polyfills": "1.0.3"
+ },
+ "time": "2022-01-04T21:11:55+00:00",
+ "type": "jetpack-library",
+ "extra": {
+ "autotagger": true,
+ "mirror-repo": "Automattic/jetpack-tracking",
+ "textdomain": "jetpack-tracking",
+ "changelogger": {
+ "link-template": "https://github.com/Automattic/jetpack-tracking/compare/v${old}...v${new}"
+ },
+ "branch-alias": {
+ "dev-master": "1.14.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "classmap": [
+ "legacy",
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0-or-later"
+ ],
+ "description": "Tracking for Jetpack",
+ "support": {
+ "source": "https://github.com/Automattic/jetpack-tracking/tree/v1.14.0"
+ },
+ "install-path": "../../jetpack_vendor/automattic/jetpack-tracking"
+ },
+ {
+ "name": "nojimage/twitter-text-php",
+ "version": "v3.1.2",
+ "version_normalized": "3.1.2.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/nojimage/twitter-text-php.git",
+ "reference": "979bcf6a92d543b61588c7c0c0a87d0eb473d8f6"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/nojimage/twitter-text-php/zipball/979bcf6a92d543b61588c7c0c0a87d0eb473d8f6",
+ "reference": "979bcf6a92d543b61588c7c0c0a87d0eb473d8f6",
+ "shasum": ""
+ },
+ "require": {
+ "ext-intl": "*",
+ "ext-mbstring": "*",
+ "php": ">=5.3.3"
+ },
+ "require-dev": {
+ "ext-json": "*",
+ "phpunit/phpunit": "4.8.*|5.7.*|6.5.*",
+ "symfony/yaml": "^2.6.0|^3.4.0|^4.4.0|^5.0.0",
+ "twitter/twitter-text": "^3.0.0"
+ },
+ "time": "2021-03-18T11:38:53+00:00",
+ "type": "library",
+ "installation-source": "dist",
+ "autoload": {
+ "psr-0": {
+ "Twitter\\Text\\": "lib/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "Apache-2.0"
+ ],
+ "authors": [
+ {
+ "name": "Matt Sanford",
+ "email": "matt@mzsanford.com",
+ "homepage": "http://mzsanford.com"
+ },
+ {
+ "name": "Mike Cochrane",
+ "email": "mikec@mikenz.geek.nz",
+ "homepage": "http://mikenz.geek.nz"
+ },
+ {
+ "name": "Nick Pope",
+ "email": "git@nickpope.me.uk",
+ "homepage": "http://www.nickpope.me.uk"
+ },
+ {
+ "name": "Takashi Nojima",
+ "homepage": "http://php-tips.com"
+ }
+ ],
+ "description": "A library of PHP classes that provide auto-linking and extraction of usernames, lists, hashtags and URLs from tweets.",
+ "homepage": "https://github.com/nojimage/twitter-text-php",
+ "keywords": [
+ "autolink",
+ "extract",
+ "text",
+ "twitter"
+ ],
+ "support": {
+ "issues": "https://github.com/nojimage/twitter-text-php/issues",
+ "source": "https://github.com/nojimage/twitter-text-php/tree/v3.1.2"
+ },
+ "install-path": "../nojimage/twitter-text-php"
+ }
+ ],
+ "dev": false,
+ "dev-package-names": []
+}
diff --git a/plugins/jetpack/vendor/composer/installed.php b/plugins/jetpack/vendor/composer/installed.php
new file mode 100644
index 00000000..a7b11827
--- /dev/null
+++ b/plugins/jetpack/vendor/composer/installed.php
@@ -0,0 +1,320 @@
+<?php return array(
+ 'root' => array(
+ 'pretty_version' => 'dev-master',
+ 'version' => 'dev-master',
+ 'type' => 'wordpress-plugin',
+ 'install_path' => __DIR__ . '/../../',
+ 'aliases' => array(),
+ 'reference' => NULL,
+ 'name' => 'automattic/jetpack',
+ 'dev' => false,
+ ),
+ 'versions' => array(
+ 'automattic/jetpack' => array(
+ 'pretty_version' => 'dev-master',
+ 'version' => 'dev-master',
+ 'type' => 'wordpress-plugin',
+ 'install_path' => __DIR__ . '/../../',
+ 'aliases' => array(),
+ 'reference' => NULL,
+ 'dev_requirement' => false,
+ ),
+ 'automattic/jetpack-a8c-mc-stats' => array(
+ 'pretty_version' => 'v1.4.11',
+ 'version' => '1.4.11.0',
+ 'type' => 'jetpack-library',
+ 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-a8c-mc-stats',
+ 'aliases' => array(),
+ 'reference' => '6e7d7c8b9c996f04978b834e4c3484bd2d916998',
+ 'dev_requirement' => false,
+ ),
+ 'automattic/jetpack-abtest' => array(
+ 'pretty_version' => 'v1.9.18',
+ 'version' => '1.9.18.0',
+ 'type' => 'jetpack-library',
+ 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-abtest',
+ 'aliases' => array(),
+ 'reference' => '8ad2e2685a1370f080c403095bad009b2f87370e',
+ 'dev_requirement' => false,
+ ),
+ 'automattic/jetpack-admin-ui' => array(
+ 'pretty_version' => 'v0.2.1',
+ 'version' => '0.2.1.0',
+ 'type' => 'jetpack-library',
+ 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-admin-ui',
+ 'aliases' => array(),
+ 'reference' => 'ce6964700c9698f9ea8c0a00120f1fbbd755de57',
+ 'dev_requirement' => false,
+ ),
+ 'automattic/jetpack-assets' => array(
+ 'pretty_version' => 'v1.16.1',
+ 'version' => '1.16.1.0',
+ 'type' => 'jetpack-library',
+ 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-assets',
+ 'aliases' => array(),
+ 'reference' => '5a6959969bed4559e080269cafbd69d476249822',
+ 'dev_requirement' => false,
+ ),
+ 'automattic/jetpack-autoloader' => array(
+ 'pretty_version' => 'v2.10.11',
+ 'version' => '2.10.11.0',
+ 'type' => 'composer-plugin',
+ 'install_path' => __DIR__ . '/../automattic/jetpack-autoloader',
+ 'aliases' => array(),
+ 'reference' => '924226c0a9e2f9b0be022fc6bab2a90f5e610ef3',
+ 'dev_requirement' => false,
+ ),
+ 'automattic/jetpack-backup' => array(
+ 'pretty_version' => 'v1.2.0',
+ 'version' => '1.2.0.0',
+ 'type' => 'jetpack-library',
+ 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-backup',
+ 'aliases' => array(),
+ 'reference' => '55054e3fe2c0450d4738b3dcce547d26ee82faa1',
+ 'dev_requirement' => false,
+ ),
+ 'automattic/jetpack-blocks' => array(
+ 'pretty_version' => 'v1.4.9',
+ 'version' => '1.4.9.0',
+ 'type' => 'jetpack-library',
+ 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-blocks',
+ 'aliases' => array(),
+ 'reference' => 'ac699666f0bd01c4f74f9fa339a553e466a8b987',
+ 'dev_requirement' => false,
+ ),
+ 'automattic/jetpack-compat' => array(
+ 'pretty_version' => 'v1.6.8',
+ 'version' => '1.6.8.0',
+ 'type' => 'jetpack-library',
+ 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-compat',
+ 'aliases' => array(),
+ 'reference' => '38da6f2769a2438d192cde43343f3b9fdb517df1',
+ 'dev_requirement' => false,
+ ),
+ 'automattic/jetpack-composer-plugin' => array(
+ 'pretty_version' => 'v1.0.1',
+ 'version' => '1.0.1.0',
+ 'type' => 'composer-plugin',
+ 'install_path' => __DIR__ . '/../automattic/jetpack-composer-plugin',
+ 'aliases' => array(),
+ 'reference' => '27c6980561d0c8c56ad3d9b9d0fb576b1ef9bd86',
+ 'dev_requirement' => false,
+ ),
+ 'automattic/jetpack-config' => array(
+ 'pretty_version' => 'v1.6.0',
+ 'version' => '1.6.0.0',
+ 'type' => 'jetpack-library',
+ 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-config',
+ 'aliases' => array(),
+ 'reference' => '1d46f87df9167a03960d708ce767d0efdfc855cf',
+ 'dev_requirement' => false,
+ ),
+ 'automattic/jetpack-connection' => array(
+ 'pretty_version' => 'v1.34.0',
+ 'version' => '1.34.0.0',
+ 'type' => 'jetpack-library',
+ 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-connection',
+ 'aliases' => array(),
+ 'reference' => '14545cff5de0384e8ced64bb161e814e657efebf',
+ 'dev_requirement' => false,
+ ),
+ 'automattic/jetpack-connection-ui' => array(
+ 'pretty_version' => 'v2.3.0',
+ 'version' => '2.3.0.0',
+ 'type' => 'jetpack-library',
+ 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-connection-ui',
+ 'aliases' => array(),
+ 'reference' => '375ea7b050b2dc98a06fc317dae8441dc1eacba8',
+ 'dev_requirement' => false,
+ ),
+ 'automattic/jetpack-constants' => array(
+ 'pretty_version' => 'v1.6.14',
+ 'version' => '1.6.14.0',
+ 'type' => 'jetpack-library',
+ 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-constants',
+ 'aliases' => array(),
+ 'reference' => '93af2a61eceaabd16c432451cc33f7c9074efa81',
+ 'dev_requirement' => false,
+ ),
+ 'automattic/jetpack-device-detection' => array(
+ 'pretty_version' => 'v1.4.11',
+ 'version' => '1.4.11.0',
+ 'type' => 'jetpack-library',
+ 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-device-detection',
+ 'aliases' => array(),
+ 'reference' => 'ab5ce7e487de9c9a13456d4aecdb7789f92f818d',
+ 'dev_requirement' => false,
+ ),
+ 'automattic/jetpack-error' => array(
+ 'pretty_version' => 'v1.3.12',
+ 'version' => '1.3.12.0',
+ 'type' => 'jetpack-library',
+ 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-error',
+ 'aliases' => array(),
+ 'reference' => '005bf60c2d533b3d169d6688360aaf034e7fc456',
+ 'dev_requirement' => false,
+ ),
+ 'automattic/jetpack-heartbeat' => array(
+ 'pretty_version' => 'v1.4.0',
+ 'version' => '1.4.0.0',
+ 'type' => 'jetpack-library',
+ 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-heartbeat',
+ 'aliases' => array(),
+ 'reference' => 'c35053475b1cb7363aee847e0d025f0a043dc3d5',
+ 'dev_requirement' => false,
+ ),
+ 'automattic/jetpack-identity-crisis' => array(
+ 'pretty_version' => 'v0.6.1',
+ 'version' => '0.6.1.0',
+ 'type' => 'jetpack-library',
+ 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-identity-crisis',
+ 'aliases' => array(),
+ 'reference' => '62f19cd6b289f719ed0ae4fb366b0bf44c5f5be9',
+ 'dev_requirement' => false,
+ ),
+ 'automattic/jetpack-jitm' => array(
+ 'pretty_version' => 'v2.2.0',
+ 'version' => '2.2.0.0',
+ 'type' => 'jetpack-library',
+ 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-jitm',
+ 'aliases' => array(),
+ 'reference' => '7ac6dc5ffb274310ddc6d38fc1611af19245dc96',
+ 'dev_requirement' => false,
+ ),
+ 'automattic/jetpack-lazy-images' => array(
+ 'pretty_version' => 'v2.1.0',
+ 'version' => '2.1.0.0',
+ 'type' => 'jetpack-library',
+ 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-lazy-images',
+ 'aliases' => array(),
+ 'reference' => '5aa6cfed2311fd3eb85d5c61dcf59854c5418380',
+ 'dev_requirement' => false,
+ ),
+ 'automattic/jetpack-licensing' => array(
+ 'pretty_version' => 'v1.6.0',
+ 'version' => '1.6.0.0',
+ 'type' => 'jetpack-library',
+ 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-licensing',
+ 'aliases' => array(),
+ 'reference' => 'cf6c5c97313fcfd2b5497cc3de945e49262f633e',
+ 'dev_requirement' => false,
+ ),
+ 'automattic/jetpack-logo' => array(
+ 'pretty_version' => 'v1.5.13',
+ 'version' => '1.5.13.0',
+ 'type' => 'jetpack-library',
+ 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-logo',
+ 'aliases' => array(),
+ 'reference' => '0f0a80b3ac89d8d64756a8049903fcedf6f2e887',
+ 'dev_requirement' => false,
+ ),
+ 'automattic/jetpack-my-jetpack' => array(
+ 'pretty_version' => 'v0.3.0',
+ 'version' => '0.3.0.0',
+ 'type' => 'jetpack-library',
+ 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-my-jetpack',
+ 'aliases' => array(),
+ 'reference' => '74179288cb1c3193320618fbc00e35244278ae9f',
+ 'dev_requirement' => false,
+ ),
+ 'automattic/jetpack-options' => array(
+ 'pretty_version' => 'v1.14.2',
+ 'version' => '1.14.2.0',
+ 'type' => 'jetpack-library',
+ 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-options',
+ 'aliases' => array(),
+ 'reference' => '9cd0f27ae970097bf6a8bc5b3c80cf079e4bf3f2',
+ 'dev_requirement' => false,
+ ),
+ 'automattic/jetpack-partner' => array(
+ 'pretty_version' => 'v1.6.2',
+ 'version' => '1.6.2.0',
+ 'type' => 'jetpack-library',
+ 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-partner',
+ 'aliases' => array(),
+ 'reference' => '68ff674f5f1301e1016521b58a39d18fe6442407',
+ 'dev_requirement' => false,
+ ),
+ 'automattic/jetpack-password-checker' => array(
+ 'pretty_version' => 'v0.2.0',
+ 'version' => '0.2.0.0',
+ 'type' => 'jetpack-library',
+ 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-password-checker',
+ 'aliases' => array(),
+ 'reference' => 'e07ea017e9d13fbb4104e40308dde8413ef6310f',
+ 'dev_requirement' => false,
+ ),
+ 'automattic/jetpack-redirect' => array(
+ 'pretty_version' => 'v1.7.9',
+ 'version' => '1.7.9.0',
+ 'type' => 'jetpack-library',
+ 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-redirect',
+ 'aliases' => array(),
+ 'reference' => '7b7640108a704b6978814e0cfb2e5102d19c7d42',
+ 'dev_requirement' => false,
+ ),
+ 'automattic/jetpack-roles' => array(
+ 'pretty_version' => 'v1.4.13',
+ 'version' => '1.4.13.0',
+ 'type' => 'jetpack-library',
+ 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-roles',
+ 'aliases' => array(),
+ 'reference' => '5d0a94f52de1e44a4537bc736af940f6b178c107',
+ 'dev_requirement' => false,
+ ),
+ 'automattic/jetpack-search' => array(
+ 'pretty_version' => 'v0.4.0',
+ 'version' => '0.4.0.0',
+ 'type' => 'jetpack-library',
+ 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-search',
+ 'aliases' => array(),
+ 'reference' => 'dee991d060e09821b2b4c9927c987a4877c3648e',
+ 'dev_requirement' => false,
+ ),
+ 'automattic/jetpack-status' => array(
+ 'pretty_version' => 'v1.9.5',
+ 'version' => '1.9.5.0',
+ 'type' => 'jetpack-library',
+ 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-status',
+ 'aliases' => array(),
+ 'reference' => '6300e03a808ef63dda558f0eb78e39a0e529a274',
+ 'dev_requirement' => false,
+ ),
+ 'automattic/jetpack-sync' => array(
+ 'pretty_version' => 'v1.28.0',
+ 'version' => '1.28.0.0',
+ 'type' => 'jetpack-library',
+ 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-sync',
+ 'aliases' => array(),
+ 'reference' => '3c7ce980bde96feaf695f998d5eb9458c9c16732',
+ 'dev_requirement' => false,
+ ),
+ 'automattic/jetpack-terms-of-service' => array(
+ 'pretty_version' => 'v1.9.18',
+ 'version' => '1.9.18.0',
+ 'type' => 'jetpack-library',
+ 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-terms-of-service',
+ 'aliases' => array(),
+ 'reference' => '46f3ac423d38219d719f0d0a33e7753b6e28d7ef',
+ 'dev_requirement' => false,
+ ),
+ 'automattic/jetpack-tracking' => array(
+ 'pretty_version' => 'v1.14.0',
+ 'version' => '1.14.0.0',
+ 'type' => 'jetpack-library',
+ 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-tracking',
+ 'aliases' => array(),
+ 'reference' => 'b2f869437c42fca557f3450fed0f61ae6162d0bf',
+ 'dev_requirement' => false,
+ ),
+ 'nojimage/twitter-text-php' => array(
+ 'pretty_version' => 'v3.1.2',
+ 'version' => '3.1.2.0',
+ 'type' => 'library',
+ 'install_path' => __DIR__ . '/../nojimage/twitter-text-php',
+ 'aliases' => array(),
+ 'reference' => '979bcf6a92d543b61588c7c0c0a87d0eb473d8f6',
+ 'dev_requirement' => false,
+ ),
+ ),
+);
diff --git a/plugins/jetpack/vendor/composer/jetpack_autoload_classmap.php b/plugins/jetpack/vendor/composer/jetpack_autoload_classmap.php
new file mode 100644
index 00000000..3c098c3d
--- /dev/null
+++ b/plugins/jetpack/vendor/composer/jetpack_autoload_classmap.php
@@ -0,0 +1,593 @@
+<?php
+
+// This file `jetpack_autoload_classmap.php` was auto generated by automattic/jetpack-autoloader.
+
+$vendorDir = dirname(__DIR__);
+$baseDir = dirname($vendorDir);
+
+return array(
+ 'Automattic\\Jetpack\\Autoloader\\CustomAutoloaderPlugin' => array(
+ 'version' => '2.10.11.0',
+ 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/CustomAutoloaderPlugin.php'
+ ),
+ 'Automattic\\Jetpack\\Autoloader\\ManifestGenerator' => array(
+ 'version' => '2.10.11.0',
+ 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/ManifestGenerator.php'
+ ),
+ 'Automattic\\Jetpack\\Autoloader\\AutoloadGenerator' => array(
+ 'version' => '2.10.11.0',
+ 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/AutoloadGenerator.php'
+ ),
+ 'Automattic\\Jetpack\\Autoloader\\AutoloadFileWriter' => array(
+ 'version' => '2.10.11.0',
+ 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/AutoloadFileWriter.php'
+ ),
+ 'Automattic\\Jetpack\\Autoloader\\AutoloadProcessor' => array(
+ 'version' => '2.10.11.0',
+ 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/AutoloadProcessor.php'
+ ),
+ 'Twitter\\Text\\Configuration' => array(
+ 'version' => '3.1.2.0',
+ 'path' => $vendorDir . '/nojimage/twitter-text-php/lib/Twitter/Text/Configuration.php'
+ ),
+ 'Twitter\\Text\\Autolink' => array(
+ 'version' => '3.1.2.0',
+ 'path' => $vendorDir . '/nojimage/twitter-text-php/lib/Twitter/Text/Autolink.php'
+ ),
+ 'Twitter\\Text\\TldLists' => array(
+ 'version' => '3.1.2.0',
+ 'path' => $vendorDir . '/nojimage/twitter-text-php/lib/Twitter/Text/TldLists.php'
+ ),
+ 'Twitter\\Text\\Validator' => array(
+ 'version' => '3.1.2.0',
+ 'path' => $vendorDir . '/nojimage/twitter-text-php/lib/Twitter/Text/Validator.php'
+ ),
+ 'Twitter\\Text\\StringUtils' => array(
+ 'version' => '3.1.2.0',
+ 'path' => $vendorDir . '/nojimage/twitter-text-php/lib/Twitter/Text/StringUtils.php'
+ ),
+ 'Twitter\\Text\\ParseResults' => array(
+ 'version' => '3.1.2.0',
+ 'path' => $vendorDir . '/nojimage/twitter-text-php/lib/Twitter/Text/ParseResults.php'
+ ),
+ 'Twitter\\Text\\EmojiRegex' => array(
+ 'version' => '3.1.2.0',
+ 'path' => $vendorDir . '/nojimage/twitter-text-php/lib/Twitter/Text/EmojiRegex.php'
+ ),
+ 'Twitter\\Text\\Extractor' => array(
+ 'version' => '3.1.2.0',
+ 'path' => $vendorDir . '/nojimage/twitter-text-php/lib/Twitter/Text/Extractor.php'
+ ),
+ 'Twitter\\Text\\HitHighlighter' => array(
+ 'version' => '3.1.2.0',
+ 'path' => $vendorDir . '/nojimage/twitter-text-php/lib/Twitter/Text/HitHighlighter.php'
+ ),
+ 'Twitter\\Text\\Regex' => array(
+ 'version' => '3.1.2.0',
+ 'path' => $vendorDir . '/nojimage/twitter-text-php/lib/Twitter/Text/Regex.php'
+ ),
+ 'Twitter\\Text\\Parser' => array(
+ 'version' => '3.1.2.0',
+ 'path' => $vendorDir . '/nojimage/twitter-text-php/lib/Twitter/Text/Parser.php'
+ ),
+ 'Automattic\\Jetpack\\Plugin\\Tracking' => array(
+ 'version' => 'dev-master',
+ 'path' => $baseDir . '/src/class-tracking.php'
+ ),
+ 'Automattic\\Jetpack\\Search\\Settings' => array(
+ 'version' => '0.4.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/class-settings.php'
+ ),
+ 'Automattic\\Jetpack\\Search\\REST_Controller' => array(
+ 'version' => '0.4.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/class-rest-controller.php'
+ ),
+ 'Automattic\\Jetpack\\Search\\Template_Tags' => array(
+ 'version' => '0.4.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/class-template-tags.php'
+ ),
+ 'Automattic\\Jetpack\\Search\\WPES\\Query_Builder' => array(
+ 'version' => '0.4.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/wpes/class-query-builder.php'
+ ),
+ 'Automattic\\Jetpack\\Search\\WPES\\Query_Parser' => array(
+ 'version' => '0.4.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/wpes/class-query-parser.php'
+ ),
+ 'Automattic\\Jetpack\\Search\\Plan' => array(
+ 'version' => '0.4.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/class-plan.php'
+ ),
+ 'Automattic\\Jetpack\\Search\\Options' => array(
+ 'version' => '0.4.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/class-options.php'
+ ),
+ 'Automattic\\Jetpack\\Search\\Helper' => array(
+ 'version' => '0.4.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/class-helper.php'
+ ),
+ 'Automattic\\Jetpack\\Search\\Module_Control' => array(
+ 'version' => '0.4.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-search/src/class-module-control.php'
+ ),
+ 'Automattic\\Jetpack\\My_Jetpack\\Initializer' => array(
+ 'version' => '0.3.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php'
+ ),
+ 'Automattic\\Jetpack\\Licensing' => array(
+ 'version' => '1.6.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-licensing/src/class-licensing.php'
+ ),
+ 'Automattic\\Jetpack\\Jetpack_Lazy_Images' => array(
+ 'version' => '2.1.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-lazy-images/src/lazy-images.php'
+ ),
+ 'Automattic\\Jetpack\\JITMS\\Pre_Connection_JITM' => array(
+ 'version' => '2.2.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-jitm/src/class-pre-connection-jitm.php'
+ ),
+ 'Automattic\\Jetpack\\JITMS\\Post_Connection_JITM' => array(
+ 'version' => '2.2.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-jitm/src/class-post-connection-jitm.php'
+ ),
+ 'Automattic\\Jetpack\\JITMS\\Rest_Api_Endpoints' => array(
+ 'version' => '2.2.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-jitm/src/class-rest-api-endpoints.php'
+ ),
+ 'Automattic\\Jetpack\\JITMS\\JITM' => array(
+ 'version' => '2.2.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-jitm/src/class-jitm.php'
+ ),
+ 'Automattic\\Jetpack\\ConnectionUI\\Initial_State' => array(
+ 'version' => '2.3.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection-ui/src/class-initial-state.php'
+ ),
+ 'Automattic\\Jetpack\\ConnectionUI\\Admin' => array(
+ 'version' => '2.3.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection-ui/src/class-admin.php'
+ ),
+ 'Automattic\\Jetpack\\Config' => array(
+ 'version' => '1.6.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-config/src/class-config.php'
+ ),
+ 'Jetpack_Sync_Settings' => array(
+ 'version' => '1.6.8.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-compat/legacy/class-jetpack-sync-settings.php'
+ ),
+ 'JetpackTracking' => array(
+ 'version' => '1.6.8.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-compat/legacy/class-jetpacktracking.php'
+ ),
+ 'Jetpack_Sync_Actions' => array(
+ 'version' => '1.6.8.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-compat/legacy/class-jetpack-sync-actions.php'
+ ),
+ 'Jetpack_Client' => array(
+ 'version' => '1.6.8.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-compat/legacy/class-jetpack-client.php'
+ ),
+ 'Jetpack_Sync_Modules' => array(
+ 'version' => '1.6.8.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-compat/legacy/class-jetpack-sync-modules.php'
+ ),
+ 'Automattic\\Jetpack\\Blocks' => array(
+ 'version' => '1.4.9.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-blocks/src/class-blocks.php'
+ ),
+ 'Automattic\\Jetpack\\Backup\\REST_Controller' => array(
+ 'version' => '1.2.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-backup/src/class-rest-controller.php'
+ ),
+ 'Automattic\\Jetpack\\Backup\\Package_Version' => array(
+ 'version' => '1.2.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-backup/src/class-package-version.php'
+ ),
+ 'Automattic\\Jetpack\\Backup\\Helper_Script_Manager' => array(
+ 'version' => '1.2.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-backup/src/class-helper-script-manager.php'
+ ),
+ 'Automattic\\Jetpack\\Abtest' => array(
+ 'version' => '1.9.18.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-abtest/src/class-abtest.php'
+ ),
+ 'Automattic\\Jetpack\\Composer\\Plugin' => array(
+ 'version' => '1.0.1.0',
+ 'path' => $vendorDir . '/automattic/jetpack-composer-plugin/src/class-plugin.php'
+ ),
+ 'Automattic\\Jetpack\\Composer\\Manager' => array(
+ 'version' => '1.0.1.0',
+ 'path' => $vendorDir . '/automattic/jetpack-composer-plugin/src/class-manager.php'
+ ),
+ 'Automattic\\Jetpack\\Admin_UI\\Admin_Menu' => array(
+ 'version' => '0.2.1.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-admin-ui/src/class-admin-menu.php'
+ ),
+ 'Automattic\\Jetpack\\Partner_Coupon' => array(
+ 'version' => '1.6.2.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-partner/src/class-partner-coupon.php'
+ ),
+ 'Automattic\\Jetpack\\Partner' => array(
+ 'version' => '1.6.2.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-partner/src/class-partner.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Server' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-server.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Defaults' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-defaults.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Settings' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-settings.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Health' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-health.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Queue' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-queue.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\REST_Endpoints' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-rest-endpoints.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Lock' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-lock.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Actions' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-actions.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Main' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-main.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Package_Version' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-package-version.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Simple_Codec' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-simple-codec.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Sender' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-sender.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Modules' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-modules.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\JSON_Deflate_Array_Codec' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-json-deflate-array-codec.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Utils' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-utils.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Replicastore_Interface' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/interface-replicastore.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Replicastore\\Table_Checksum_Usermeta' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum-usermeta.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Replicastore\\Table_Checksum_Users' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum-users.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Replicastore\\Table_Checksum' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Codec_Interface' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/interface-codec.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Users' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-users.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\REST_Sender' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-rest-sender.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Modules\\Callables' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-callables.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Modules\\WP_Super_Cache' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-wp-super-cache.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Modules\\Stats' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-stats.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Modules\\Meta' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-meta.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Modules\\Plugins' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-plugins.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Modules\\Attachments' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-attachments.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Modules\\Protect' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-protect.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Modules\\Constants' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-constants.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Modules\\Posts' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-posts.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Modules\\Term_Relationships' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-term-relationships.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Modules\\Options' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-options.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Modules\\Themes' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-themes.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Modules\\Full_Sync_Immediately' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-full-sync-immediately.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Modules\\WooCommerce' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-woocommerce.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Modules\\Terms' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-terms.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Modules\\Network_Options' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-network-options.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Modules\\Module' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-module.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Modules\\Users' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-users.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Modules\\Menus' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-menus.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Modules\\Import' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-import.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Modules\\Comments' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-comments.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Modules\\Updates' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-updates.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Modules\\Full_Sync' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-full-sync.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Functions' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-functions.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Replicastore' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-replicastore.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Queue_Buffer' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-queue-buffer.php'
+ ),
+ 'Automattic\\Jetpack\\Sync\\Listener' => array(
+ 'version' => '1.28.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-listener.php'
+ ),
+ 'Automattic\\Jetpack\\Error' => array(
+ 'version' => '1.3.12.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-error/src/class-error.php'
+ ),
+ 'Automattic\\Jetpack\\Device_Detection\\User_Agent_Info' => array(
+ 'version' => '1.4.11.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-device-detection/src/class-user-agent-info.php'
+ ),
+ 'Automattic\\Jetpack\\Device_Detection' => array(
+ 'version' => '1.4.11.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-device-detection/src/class-device-detection.php'
+ ),
+ 'Automattic\\Jetpack\\Password_Checker' => array(
+ 'version' => '0.2.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-password-checker/src/class-password-checker.php'
+ ),
+ 'Automattic\\Jetpack\\IdentityCrisis\\UI' => array(
+ 'version' => '0.6.1.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-ui.php'
+ ),
+ 'Automattic\\Jetpack\\IdentityCrisis\\REST_Endpoints' => array(
+ 'version' => '0.6.1.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-rest-endpoints.php'
+ ),
+ 'Automattic\\Jetpack\\Identity_Crisis' => array(
+ 'version' => '0.6.1.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-identity-crisis.php'
+ ),
+ 'Automattic\\Jetpack\\Assets\\Logo' => array(
+ 'version' => '1.5.13.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-logo/src/class-logo.php'
+ ),
+ 'Jetpack_IXR_ClientMulticall' => array(
+ 'version' => '1.34.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-ixr-clientmulticall.php'
+ ),
+ 'Jetpack_Signature' => array(
+ 'version' => '1.34.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-signature.php'
+ ),
+ 'Jetpack_XMLRPC_Server' => array(
+ 'version' => '1.34.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-xmlrpc-server.php'
+ ),
+ 'Jetpack_IXR_Client' => array(
+ 'version' => '1.34.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-ixr-client.php'
+ ),
+ 'Automattic\\Jetpack\\Connection\\Plugin_Storage' => array(
+ 'version' => '1.34.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-plugin-storage.php'
+ ),
+ 'Automattic\\Jetpack\\Connection\\Nonce_Handler' => array(
+ 'version' => '1.34.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-nonce-handler.php'
+ ),
+ 'Automattic\\Jetpack\\Connection\\REST_Connector' => array(
+ 'version' => '1.34.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-rest-connector.php'
+ ),
+ 'Automattic\\Jetpack\\Connection\\XMLRPC_Connector' => array(
+ 'version' => '1.34.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-xmlrpc-connector.php'
+ ),
+ 'Automattic\\Jetpack\\Connection\\XMLRPC_Async_Call' => array(
+ 'version' => '1.34.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-xmlrpc-async-call.php'
+ ),
+ 'Automattic\\Jetpack\\Connection\\Initial_State' => array(
+ 'version' => '1.34.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-initial-state.php'
+ ),
+ 'Automattic\\Jetpack\\Connection\\Package_Version_Tracker' => array(
+ 'version' => '1.34.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-package-version-tracker.php'
+ ),
+ 'Automattic\\Jetpack\\Connection\\Package_Version' => array(
+ 'version' => '1.34.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-package-version.php'
+ ),
+ 'Automattic\\Jetpack\\Connection\\Urls' => array(
+ 'version' => '1.34.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-urls.php'
+ ),
+ 'Automattic\\Jetpack\\Connection\\Plugin' => array(
+ 'version' => '1.34.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-plugin.php'
+ ),
+ 'Automattic\\Jetpack\\Connection\\Client' => array(
+ 'version' => '1.34.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-client.php'
+ ),
+ 'Automattic\\Jetpack\\Connection\\Secrets' => array(
+ 'version' => '1.34.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-secrets.php'
+ ),
+ 'Automattic\\Jetpack\\Connection\\Rest_Authentication' => array(
+ 'version' => '1.34.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-rest-authentication.php'
+ ),
+ 'Automattic\\Jetpack\\Connection\\Error_Handler' => array(
+ 'version' => '1.34.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-error-handler.php'
+ ),
+ 'Automattic\\Jetpack\\Connection\\Utils' => array(
+ 'version' => '1.34.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-utils.php'
+ ),
+ 'Automattic\\Jetpack\\Connection\\Tokens' => array(
+ 'version' => '1.34.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-tokens.php'
+ ),
+ 'Automattic\\Jetpack\\Connection\\Manager_Interface' => array(
+ 'version' => '1.34.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/interface-manager.php'
+ ),
+ 'Automattic\\Jetpack\\Connection\\Manager' => array(
+ 'version' => '1.34.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-manager.php'
+ ),
+ 'Automattic\\Jetpack\\Connection\\Webhooks' => array(
+ 'version' => '1.34.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-webhooks.php'
+ ),
+ 'Automattic\\Jetpack\\Connection\\Server_Sandbox' => array(
+ 'version' => '1.34.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-server-sandbox.php'
+ ),
+ 'Automattic\\Jetpack\\Redirect' => array(
+ 'version' => '1.7.9.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-redirect/src/class-redirect.php'
+ ),
+ 'Automattic\\Jetpack\\Heartbeat' => array(
+ 'version' => '1.4.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-heartbeat/src/class-heartbeat.php'
+ ),
+ 'Automattic\\Jetpack\\Roles' => array(
+ 'version' => '1.4.13.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-roles/src/class-roles.php'
+ ),
+ 'Jetpack_Tracks_Client' => array(
+ 'version' => '1.14.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-tracking/legacy/class-jetpack-tracks-client.php'
+ ),
+ 'Jetpack_Tracks_Event' => array(
+ 'version' => '1.14.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-tracking/legacy/class-jetpack-tracks-event.php'
+ ),
+ 'Automattic\\Jetpack\\Tracking' => array(
+ 'version' => '1.14.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-tracking/src/class-tracking.php'
+ ),
+ 'Automattic\\Jetpack\\Assets' => array(
+ 'version' => '1.16.1.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-assets/src/class-assets.php'
+ ),
+ 'Automattic\\Jetpack\\Assets\\Semver' => array(
+ 'version' => '1.16.1.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-assets/src/class-semver.php'
+ ),
+ 'Automattic\\Jetpack\\A8c_Mc_Stats' => array(
+ 'version' => '1.4.11.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-a8c-mc-stats/src/class-a8c-mc-stats.php'
+ ),
+ 'Automattic\\Jetpack\\Terms_Of_Service' => array(
+ 'version' => '1.9.18.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-terms-of-service/src/class-terms-of-service.php'
+ ),
+ 'Automattic\\Jetpack\\Status' => array(
+ 'version' => '1.9.5.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-status.php'
+ ),
+ 'Automattic\\Jetpack\\Status\\Host' => array(
+ 'version' => '1.9.5.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-host.php'
+ ),
+ 'Jetpack_Options' => array(
+ 'version' => '1.14.2.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-options/legacy/class-jetpack-options.php'
+ ),
+ 'Automattic\\Jetpack\\Constants' => array(
+ 'version' => '1.6.14.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-constants/src/class-constants.php'
+ ),
+);
diff --git a/plugins/jetpack/vendor/composer/jetpack_autoload_filemap.php b/plugins/jetpack/vendor/composer/jetpack_autoload_filemap.php
new file mode 100644
index 00000000..861e16a0
--- /dev/null
+++ b/plugins/jetpack/vendor/composer/jetpack_autoload_filemap.php
@@ -0,0 +1,21 @@
+<?php
+
+// This file `jetpack_autoload_filemap.php` was auto generated by automattic/jetpack-autoloader.
+
+$vendorDir = dirname(__DIR__);
+$baseDir = dirname($vendorDir);
+
+return array(
+ '3773ef3f09c37da5478d578e32b03a4b' => array(
+ 'version' => '1.16.1.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-assets/actions.php'
+ ),
+ 'd4eb94df91a729802d18373ee8cdc79f' => array(
+ 'version' => '1.2.0.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-backup/actions.php'
+ ),
+ '009de6aaa0d497eacea41fab13fc05f1' => array(
+ 'version' => '1.6.8.0',
+ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-compat/functions.php'
+ ),
+);
diff --git a/plugins/jetpack/vendor/composer/platform_check.php b/plugins/jetpack/vendor/composer/platform_check.php
new file mode 100644
index 00000000..7f0d16c7
--- /dev/null
+++ b/plugins/jetpack/vendor/composer/platform_check.php
@@ -0,0 +1,26 @@
+<?php
+
+// platform_check.php @generated by Composer
+
+$issues = array();
+
+if (!(PHP_VERSION_ID >= 50303)) {
+ $issues[] = 'Your Composer dependencies require a PHP version ">= 5.3.3". You are running ' . PHP_VERSION . '.';
+}
+
+if ($issues) {
+ if (!headers_sent()) {
+ header('HTTP/1.1 500 Internal Server Error');
+ }
+ if (!ini_get('display_errors')) {
+ if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') {
+ fwrite(STDERR, 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . implode(PHP_EOL, $issues) . PHP_EOL.PHP_EOL);
+ } elseif (!headers_sent()) {
+ echo 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . str_replace('You are running '.PHP_VERSION.'.', '', implode(PHP_EOL, $issues)) . PHP_EOL.PHP_EOL;
+ }
+ }
+ trigger_error(
+ 'Composer detected issues in your platform: ' . implode(' ', $issues),
+ E_USER_ERROR
+ );
+}