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