Version Description
- Updated: Support for AMP Plugin 2.0+
- Updated: No longer defer JavaScript on POST, AJAX, Cron requests and sitemaps.
Download this release
Release Info
| Developer | danwalmsley |
| Plugin | |
| Version | 1.0.3 |
| Comparing to | |
| See all releases | |
Code changes from version 1.0.2 to 1.0.3
- app/modules/render-blocking-js/class-render-blocking-js.php +24 -4
- jetpack-boost.php +3 -3
- readme.txt +8 -4
- vendor/autoload.php +1 -1
- vendor/autoload_packages.php +1 -1
- vendor/composer/InstalledVersions.php +4 -4
- vendor/composer/autoload_real.php +7 -7
- vendor/composer/autoload_static.php +5 -5
- vendor/composer/installed.php +4 -4
- vendor/composer/jetpack_autoload_classmap.php +6 -6
- vendor/jetpack-autoloader/class-autoloader-handler.php +1 -1
- vendor/jetpack-autoloader/class-autoloader-locator.php +1 -1
- vendor/jetpack-autoloader/class-autoloader.php +1 -1
- vendor/jetpack-autoloader/class-container.php +1 -1
- vendor/jetpack-autoloader/class-hook-manager.php +1 -1
- vendor/jetpack-autoloader/class-latest-autoloader-guard.php +1 -1
- vendor/jetpack-autoloader/class-manifest-reader.php +1 -1
- vendor/jetpack-autoloader/class-path-processor.php +1 -1
- vendor/jetpack-autoloader/class-php-autoloader.php +1 -1
- vendor/jetpack-autoloader/class-plugin-locator.php +1 -1
- vendor/jetpack-autoloader/class-plugins-handler.php +1 -1
- vendor/jetpack-autoloader/class-version-loader.php +1 -1
- vendor/jetpack-autoloader/class-version-selector.php +1 -1
app/modules/render-blocking-js/class-render-blocking-js.php
CHANGED
|
@@ -74,13 +74,32 @@ class Render_Blocking_JS extends Module {
|
|
| 74 |
* @return void
|
| 75 |
*/
|
| 76 |
public function start_output_filtering() {
|
| 77 |
-
|
| 78 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 79 |
return;
|
| 80 |
}
|
| 81 |
|
| 82 |
-
//
|
| 83 |
-
if (
|
| 84 |
return;
|
| 85 |
}
|
| 86 |
|
|
@@ -223,6 +242,7 @@ class Render_Blocking_JS extends Module {
|
|
| 223 |
if ( ! in_array( $handle, $exclude_handles, true ) ) {
|
| 224 |
return $tag;
|
| 225 |
}
|
|
|
|
| 226 |
return str_replace( '<script', sprintf( '<script %s="%s"', esc_html( $this->ignore_attribute ), esc_attr( $this->ignore_value ) ), $tag );
|
| 227 |
}
|
| 228 |
|
| 74 |
* @return void
|
| 75 |
*/
|
| 76 |
public function start_output_filtering() {
|
| 77 |
+
|
| 78 |
+
/**
|
| 79 |
+
* We're doing heavy output filtering in this module
|
| 80 |
+
* by using output buffering.
|
| 81 |
+
*
|
| 82 |
+
* Here are a few scenarios when we shouldn't do it:
|
| 83 |
+
*/
|
| 84 |
+
|
| 85 |
+
// Disable in all POST Requests.
|
| 86 |
+
// phpcs:disable WordPress.Security.NonceVerification.Missing
|
| 87 |
+
if ( ! empty( $_POST ) ) {
|
| 88 |
+
return;
|
| 89 |
+
}
|
| 90 |
+
|
| 91 |
+
// Disable in feeds, AJAX, Cron.
|
| 92 |
+
if ( is_feed() || wp_doing_ajax() || wp_doing_cron() ) {
|
| 93 |
+
return;
|
| 94 |
+
}
|
| 95 |
+
|
| 96 |
+
// Disable in sitemaps.
|
| 97 |
+
if ( ! empty( get_query_var( 'sitemap' ) ) ) {
|
| 98 |
return;
|
| 99 |
}
|
| 100 |
|
| 101 |
+
// Disable in AMP pages.
|
| 102 |
+
if ( function_exists( 'amp_is_request' ) && amp_is_request() ) {
|
| 103 |
return;
|
| 104 |
}
|
| 105 |
|
| 242 |
if ( ! in_array( $handle, $exclude_handles, true ) ) {
|
| 243 |
return $tag;
|
| 244 |
}
|
| 245 |
+
|
| 246 |
return str_replace( '<script', sprintf( '<script %s="%s"', esc_html( $this->ignore_attribute ), esc_attr( $this->ignore_value ) ), $tag );
|
| 247 |
}
|
| 248 |
|
jetpack-boost.php
CHANGED
|
@@ -9,8 +9,8 @@
|
|
| 9 |
* Plugin Name: Jetpack Boost
|
| 10 |
* Plugin URI: https://jetpack.com/boost
|
| 11 |
* Description: Boost your WordPress site's performance, from the creators of Jetpack
|
| 12 |
-
* Version: 1.0.
|
| 13 |
-
* Author: Automattic
|
| 14 |
* Author URI: https://automattic.com
|
| 15 |
* License: GPL-2.0+
|
| 16 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
|
|
@@ -27,7 +27,7 @@ if ( ! defined( 'WPINC' ) ) {
|
|
| 27 |
die;
|
| 28 |
}
|
| 29 |
|
| 30 |
-
define( 'JETPACK_BOOST_VERSION', '1.0.
|
| 31 |
define( 'JETPACK_BOOST_SLUG', 'jetpack-boost' );
|
| 32 |
|
| 33 |
if ( ! defined( 'JETPACK_BOOST_CLIENT_NAME' ) ) {
|
| 9 |
* Plugin Name: Jetpack Boost
|
| 10 |
* Plugin URI: https://jetpack.com/boost
|
| 11 |
* Description: Boost your WordPress site's performance, from the creators of Jetpack
|
| 12 |
+
* Version: 1.0.3
|
| 13 |
+
* Author: Automattic
|
| 14 |
* Author URI: https://automattic.com
|
| 15 |
* License: GPL-2.0+
|
| 16 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
|
| 27 |
die;
|
| 28 |
}
|
| 29 |
|
| 30 |
+
define( 'JETPACK_BOOST_VERSION', '1.0.3' );
|
| 31 |
define( 'JETPACK_BOOST_SLUG', 'jetpack-boost' );
|
| 32 |
|
| 33 |
if ( ! defined( 'JETPACK_BOOST_CLIENT_NAME' ) ) {
|
readme.txt
CHANGED
|
@@ -1,11 +1,11 @@
|
|
| 1 |
=== Jetpack Boost ===
|
| 2 |
-
Contributors: automattic, thingalon, pyronaur, davidlonjon, danwalmsley, luchad0res, ebinnion, jpolakovic, rheinardkorf, scruffian, exelero
|
| 3 |
Donate link: https://automattic.com
|
| 4 |
Tags: performance, speed, pagespeed, web vitals, critical css, optimize, defer
|
| 5 |
Requires at least: 5.5
|
| 6 |
Tested up to: 5.7
|
| 7 |
Requires PHP: 7.0
|
| 8 |
-
Stable tag: 1.0.
|
| 9 |
License: GPLv2 or later
|
| 10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 11 |
|
|
@@ -48,9 +48,9 @@ There's nothing to configure - the setup process is as easy as:
|
|
| 48 |
|
| 49 |
This is just the start!
|
| 50 |
|
| 51 |
-
We are working hard to bring more features and improvements to Jetpack Boost.
|
| 52 |
|
| 53 |
-
|
| 54 |
|
| 55 |
== Frequently Asked Questions ==
|
| 56 |
|
|
@@ -93,6 +93,10 @@ Jetpack Boost is a part of the Jetpack brand, but it doesn’t require Jetpack p
|
|
| 93 |
|
| 94 |
== Changelog ==
|
| 95 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 96 |
= 1.0.2 =
|
| 97 |
* Improved: HTML Media tag handling
|
| 98 |
* Fixed: Metrics timeout caused by caching in the REST API
|
| 1 |
=== Jetpack Boost ===
|
| 2 |
+
Contributors: automattic, xwp, thingalon, pyronaur, davidlonjon, danwalmsley, luchad0res, ebinnion, jpolakovic, rheinardkorf, scruffian, exelero
|
| 3 |
Donate link: https://automattic.com
|
| 4 |
Tags: performance, speed, pagespeed, web vitals, critical css, optimize, defer
|
| 5 |
Requires at least: 5.5
|
| 6 |
Tested up to: 5.7
|
| 7 |
Requires PHP: 7.0
|
| 8 |
+
Stable tag: 1.0.3
|
| 9 |
License: GPLv2 or later
|
| 10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 11 |
|
| 48 |
|
| 49 |
This is just the start!
|
| 50 |
|
| 51 |
+
We are working hard to bring more features and improvements to Jetpack Boost. Let us know your thoughts and ideas!
|
| 52 |
|
| 53 |
+
We'd also like to give a special THANK YOU to the XWP team who provided help with initial research and scoping of the plugin and were engaged with our team throughout the project.
|
| 54 |
|
| 55 |
== Frequently Asked Questions ==
|
| 56 |
|
| 93 |
|
| 94 |
== Changelog ==
|
| 95 |
|
| 96 |
+
= 1.0.3 =
|
| 97 |
+
* Updated: Support for AMP Plugin 2.0+
|
| 98 |
+
* Updated: No longer defer JavaScript on POST, AJAX, Cron requests and sitemaps.
|
| 99 |
+
|
| 100 |
= 1.0.2 =
|
| 101 |
* Improved: HTML Media tag handling
|
| 102 |
* Fixed: Metrics timeout caused by caching in the REST API
|
vendor/autoload.php
CHANGED
|
@@ -4,4 +4,4 @@
|
|
| 4 |
|
| 5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
| 6 |
|
| 7 |
-
return
|
| 4 |
|
| 5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
| 6 |
|
| 7 |
+
return ComposerAutoloaderInit4ee447debec28de6d1bfc1f9f8c9a8d1::getLoader();
|
vendor/autoload_packages.php
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
-
namespace Automattic\Jetpack\Autoloader\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jp4ee447debec28de6d1bfc1f9f8c9a8d1;
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
vendor/composer/InstalledVersions.php
CHANGED
|
@@ -25,8 +25,8 @@ class InstalledVersions
|
|
| 25 |
private static $installed = array (
|
| 26 |
'root' =>
|
| 27 |
array (
|
| 28 |
-
'pretty_version' => '1.0.
|
| 29 |
-
'version' => '1.0.
|
| 30 |
'aliases' =>
|
| 31 |
array (
|
| 32 |
),
|
|
@@ -65,8 +65,8 @@ private static $installed = array (
|
|
| 65 |
),
|
| 66 |
'automattic/jetpack-boost' =>
|
| 67 |
array (
|
| 68 |
-
'pretty_version' => '1.0.
|
| 69 |
-
'version' => '1.0.
|
| 70 |
'aliases' =>
|
| 71 |
array (
|
| 72 |
),
|
| 25 |
private static $installed = array (
|
| 26 |
'root' =>
|
| 27 |
array (
|
| 28 |
+
'pretty_version' => '1.0.3',
|
| 29 |
+
'version' => '1.0.3.0',
|
| 30 |
'aliases' =>
|
| 31 |
array (
|
| 32 |
),
|
| 65 |
),
|
| 66 |
'automattic/jetpack-boost' =>
|
| 67 |
array (
|
| 68 |
+
'pretty_version' => '1.0.3',
|
| 69 |
+
'version' => '1.0.3.0',
|
| 70 |
'aliases' =>
|
| 71 |
array (
|
| 72 |
),
|
vendor/composer/autoload_real.php
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
|
| 3 |
// autoload_real.php @generated by Composer
|
| 4 |
|
| 5 |
-
class
|
| 6 |
{
|
| 7 |
private static $loader;
|
| 8 |
|
|
@@ -24,15 +24,15 @@ class ComposerAutoloaderInitb2fa9163aac07a027bff444eac645364
|
|
| 24 |
|
| 25 |
require __DIR__ . '/platform_check.php';
|
| 26 |
|
| 27 |
-
spl_autoload_register(array('
|
| 28 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
|
| 29 |
-
spl_autoload_unregister(array('
|
| 30 |
|
| 31 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
| 32 |
if ($useStaticLoader) {
|
| 33 |
require __DIR__ . '/autoload_static.php';
|
| 34 |
|
| 35 |
-
call_user_func(\Composer\Autoload\
|
| 36 |
} else {
|
| 37 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
| 38 |
foreach ($map as $namespace => $path) {
|
|
@@ -53,19 +53,19 @@ class ComposerAutoloaderInitb2fa9163aac07a027bff444eac645364
|
|
| 53 |
$loader->register(true);
|
| 54 |
|
| 55 |
if ($useStaticLoader) {
|
| 56 |
-
$includeFiles = Composer\Autoload\
|
| 57 |
} else {
|
| 58 |
$includeFiles = require __DIR__ . '/autoload_files.php';
|
| 59 |
}
|
| 60 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
| 61 |
-
|
| 62 |
}
|
| 63 |
|
| 64 |
return $loader;
|
| 65 |
}
|
| 66 |
}
|
| 67 |
|
| 68 |
-
function
|
| 69 |
{
|
| 70 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
| 71 |
require $file;
|
| 2 |
|
| 3 |
// autoload_real.php @generated by Composer
|
| 4 |
|
| 5 |
+
class ComposerAutoloaderInit4ee447debec28de6d1bfc1f9f8c9a8d1
|
| 6 |
{
|
| 7 |
private static $loader;
|
| 8 |
|
| 24 |
|
| 25 |
require __DIR__ . '/platform_check.php';
|
| 26 |
|
| 27 |
+
spl_autoload_register(array('ComposerAutoloaderInit4ee447debec28de6d1bfc1f9f8c9a8d1', 'loadClassLoader'), true, true);
|
| 28 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
|
| 29 |
+
spl_autoload_unregister(array('ComposerAutoloaderInit4ee447debec28de6d1bfc1f9f8c9a8d1', 'loadClassLoader'));
|
| 30 |
|
| 31 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
| 32 |
if ($useStaticLoader) {
|
| 33 |
require __DIR__ . '/autoload_static.php';
|
| 34 |
|
| 35 |
+
call_user_func(\Composer\Autoload\ComposerStaticInit4ee447debec28de6d1bfc1f9f8c9a8d1::getInitializer($loader));
|
| 36 |
} else {
|
| 37 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
| 38 |
foreach ($map as $namespace => $path) {
|
| 53 |
$loader->register(true);
|
| 54 |
|
| 55 |
if ($useStaticLoader) {
|
| 56 |
+
$includeFiles = Composer\Autoload\ComposerStaticInit4ee447debec28de6d1bfc1f9f8c9a8d1::$files;
|
| 57 |
} else {
|
| 58 |
$includeFiles = require __DIR__ . '/autoload_files.php';
|
| 59 |
}
|
| 60 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
| 61 |
+
composerRequire4ee447debec28de6d1bfc1f9f8c9a8d1($fileIdentifier, $file);
|
| 62 |
}
|
| 63 |
|
| 64 |
return $loader;
|
| 65 |
}
|
| 66 |
}
|
| 67 |
|
| 68 |
+
function composerRequire4ee447debec28de6d1bfc1f9f8c9a8d1($fileIdentifier, $file)
|
| 69 |
{
|
| 70 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
| 71 |
require $file;
|
vendor/composer/autoload_static.php
CHANGED
|
@@ -4,7 +4,7 @@
|
|
| 4 |
|
| 5 |
namespace Composer\Autoload;
|
| 6 |
|
| 7 |
-
class
|
| 8 |
{
|
| 9 |
public static $files = array (
|
| 10 |
'bce4ecd6aabb2a2948e06d0e2c4ea9a6' => __DIR__ . '/..' . '/automattic/jetpack-connection/legacy/load-ixr.php',
|
|
@@ -81,10 +81,10 @@ class ComposerStaticInitb2fa9163aac07a027bff444eac645364
|
|
| 81 |
public static function getInitializer(ClassLoader $loader)
|
| 82 |
{
|
| 83 |
return \Closure::bind(function () use ($loader) {
|
| 84 |
-
$loader->prefixLengthsPsr4 =
|
| 85 |
-
$loader->prefixDirsPsr4 =
|
| 86 |
-
$loader->prefixesPsr0 =
|
| 87 |
-
$loader->classMap =
|
| 88 |
|
| 89 |
}, null, ClassLoader::class);
|
| 90 |
}
|
| 4 |
|
| 5 |
namespace Composer\Autoload;
|
| 6 |
|
| 7 |
+
class ComposerStaticInit4ee447debec28de6d1bfc1f9f8c9a8d1
|
| 8 |
{
|
| 9 |
public static $files = array (
|
| 10 |
'bce4ecd6aabb2a2948e06d0e2c4ea9a6' => __DIR__ . '/..' . '/automattic/jetpack-connection/legacy/load-ixr.php',
|
| 81 |
public static function getInitializer(ClassLoader $loader)
|
| 82 |
{
|
| 83 |
return \Closure::bind(function () use ($loader) {
|
| 84 |
+
$loader->prefixLengthsPsr4 = ComposerStaticInit4ee447debec28de6d1bfc1f9f8c9a8d1::$prefixLengthsPsr4;
|
| 85 |
+
$loader->prefixDirsPsr4 = ComposerStaticInit4ee447debec28de6d1bfc1f9f8c9a8d1::$prefixDirsPsr4;
|
| 86 |
+
$loader->prefixesPsr0 = ComposerStaticInit4ee447debec28de6d1bfc1f9f8c9a8d1::$prefixesPsr0;
|
| 87 |
+
$loader->classMap = ComposerStaticInit4ee447debec28de6d1bfc1f9f8c9a8d1::$classMap;
|
| 88 |
|
| 89 |
}, null, ClassLoader::class);
|
| 90 |
}
|
vendor/composer/installed.php
CHANGED
|
@@ -1,8 +1,8 @@
|
|
| 1 |
<?php return array (
|
| 2 |
'root' =>
|
| 3 |
array (
|
| 4 |
-
'pretty_version' => '1.0.
|
| 5 |
-
'version' => '1.0.
|
| 6 |
'aliases' =>
|
| 7 |
array (
|
| 8 |
),
|
|
@@ -41,8 +41,8 @@
|
|
| 41 |
),
|
| 42 |
'automattic/jetpack-boost' =>
|
| 43 |
array (
|
| 44 |
-
'pretty_version' => '1.0.
|
| 45 |
-
'version' => '1.0.
|
| 46 |
'aliases' =>
|
| 47 |
array (
|
| 48 |
),
|
| 1 |
<?php return array (
|
| 2 |
'root' =>
|
| 3 |
array (
|
| 4 |
+
'pretty_version' => '1.0.3',
|
| 5 |
+
'version' => '1.0.3.0',
|
| 6 |
'aliases' =>
|
| 7 |
array (
|
| 8 |
),
|
| 41 |
),
|
| 42 |
'automattic/jetpack-boost' =>
|
| 43 |
array (
|
| 44 |
+
'pretty_version' => '1.0.3',
|
| 45 |
+
'version' => '1.0.3.0',
|
| 46 |
'aliases' =>
|
| 47 |
array (
|
| 48 |
),
|
vendor/composer/jetpack_autoload_classmap.php
CHANGED
|
@@ -7,27 +7,27 @@ $baseDir = dirname($vendorDir);
|
|
| 7 |
|
| 8 |
return array(
|
| 9 |
'Automattic\\Jetpack_Boost\\Tests\\Base_Test_Case' => array(
|
| 10 |
-
'version' => '1.0.
|
| 11 |
'path' => $baseDir . '/tests/php/class-base-test-case.php'
|
| 12 |
),
|
| 13 |
'Automattic\\Jetpack_Boost\\Tests\\Lib\\WP_Test_Api_Connect' => array(
|
| 14 |
-
'version' => '1.0.
|
| 15 |
'path' => $baseDir . '/tests/php/lib/test-class-api-connect.php'
|
| 16 |
),
|
| 17 |
'Automattic\\Jetpack_Boost\\Tests\\Lib\\WP_Test_Viewport' => array(
|
| 18 |
-
'version' => '1.0.
|
| 19 |
'path' => $baseDir . '/tests/php/lib/test-class-viewport.php'
|
| 20 |
),
|
| 21 |
'Automattic\\Jetpack_Boost\\Tests\\Lib\\WP_Test_Minify' => array(
|
| 22 |
-
'version' => '1.0.
|
| 23 |
'path' => $baseDir . '/tests/php/lib/test-class-minify.php'
|
| 24 |
),
|
| 25 |
'Automattic\\Jetpack_Boost\\Tests\\Lib\\WP_Test_Url' => array(
|
| 26 |
-
'version' => '1.0.
|
| 27 |
'path' => $baseDir . '/tests/php/lib/test-class-url.php'
|
| 28 |
),
|
| 29 |
'Automattic\\Jetpack_Boost\\Tests\\Modules\\Critical_CSS\\WP_Test_Critical_Css' => array(
|
| 30 |
-
'version' => '1.0.
|
| 31 |
'path' => $baseDir . '/tests/php/modules/critical-css/test-class-critical-css.php'
|
| 32 |
),
|
| 33 |
'Automattic\\Jetpack\\Autoloader\\AutoloadGenerator' => array(
|
| 7 |
|
| 8 |
return array(
|
| 9 |
'Automattic\\Jetpack_Boost\\Tests\\Base_Test_Case' => array(
|
| 10 |
+
'version' => '1.0.3.0',
|
| 11 |
'path' => $baseDir . '/tests/php/class-base-test-case.php'
|
| 12 |
),
|
| 13 |
'Automattic\\Jetpack_Boost\\Tests\\Lib\\WP_Test_Api_Connect' => array(
|
| 14 |
+
'version' => '1.0.3.0',
|
| 15 |
'path' => $baseDir . '/tests/php/lib/test-class-api-connect.php'
|
| 16 |
),
|
| 17 |
'Automattic\\Jetpack_Boost\\Tests\\Lib\\WP_Test_Viewport' => array(
|
| 18 |
+
'version' => '1.0.3.0',
|
| 19 |
'path' => $baseDir . '/tests/php/lib/test-class-viewport.php'
|
| 20 |
),
|
| 21 |
'Automattic\\Jetpack_Boost\\Tests\\Lib\\WP_Test_Minify' => array(
|
| 22 |
+
'version' => '1.0.3.0',
|
| 23 |
'path' => $baseDir . '/tests/php/lib/test-class-minify.php'
|
| 24 |
),
|
| 25 |
'Automattic\\Jetpack_Boost\\Tests\\Lib\\WP_Test_Url' => array(
|
| 26 |
+
'version' => '1.0.3.0',
|
| 27 |
'path' => $baseDir . '/tests/php/lib/test-class-url.php'
|
| 28 |
),
|
| 29 |
'Automattic\\Jetpack_Boost\\Tests\\Modules\\Critical_CSS\\WP_Test_Critical_Css' => array(
|
| 30 |
+
'version' => '1.0.3.0',
|
| 31 |
'path' => $baseDir . '/tests/php/modules/critical-css/test-class-critical-css.php'
|
| 32 |
),
|
| 33 |
'Automattic\\Jetpack\\Autoloader\\AutoloadGenerator' => array(
|
vendor/jetpack-autoloader/class-autoloader-handler.php
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
-
namespace Automattic\Jetpack\Autoloader\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jp4ee447debec28de6d1bfc1f9f8c9a8d1;
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
vendor/jetpack-autoloader/class-autoloader-locator.php
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
-
namespace Automattic\Jetpack\Autoloader\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jp4ee447debec28de6d1bfc1f9f8c9a8d1;
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
vendor/jetpack-autoloader/class-autoloader.php
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
-
namespace Automattic\Jetpack\Autoloader\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jp4ee447debec28de6d1bfc1f9f8c9a8d1;
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
vendor/jetpack-autoloader/class-container.php
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
-
namespace Automattic\Jetpack\Autoloader\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jp4ee447debec28de6d1bfc1f9f8c9a8d1;
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
vendor/jetpack-autoloader/class-hook-manager.php
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
-
namespace Automattic\Jetpack\Autoloader\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jp4ee447debec28de6d1bfc1f9f8c9a8d1;
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
vendor/jetpack-autoloader/class-latest-autoloader-guard.php
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
-
namespace Automattic\Jetpack\Autoloader\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jp4ee447debec28de6d1bfc1f9f8c9a8d1;
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
vendor/jetpack-autoloader/class-manifest-reader.php
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
-
namespace Automattic\Jetpack\Autoloader\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jp4ee447debec28de6d1bfc1f9f8c9a8d1;
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
vendor/jetpack-autoloader/class-path-processor.php
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
-
namespace Automattic\Jetpack\Autoloader\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jp4ee447debec28de6d1bfc1f9f8c9a8d1;
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
vendor/jetpack-autoloader/class-php-autoloader.php
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
-
namespace Automattic\Jetpack\Autoloader\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jp4ee447debec28de6d1bfc1f9f8c9a8d1;
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
vendor/jetpack-autoloader/class-plugin-locator.php
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
-
namespace Automattic\Jetpack\Autoloader\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jp4ee447debec28de6d1bfc1f9f8c9a8d1;
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
vendor/jetpack-autoloader/class-plugins-handler.php
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
-
namespace Automattic\Jetpack\Autoloader\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jp4ee447debec28de6d1bfc1f9f8c9a8d1;
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
vendor/jetpack-autoloader/class-version-loader.php
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
-
namespace Automattic\Jetpack\Autoloader\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jp4ee447debec28de6d1bfc1f9f8c9a8d1;
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
vendor/jetpack-autoloader/class-version-selector.php
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
-
namespace Automattic\Jetpack\Autoloader\
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
| 5 |
* @package automattic/jetpack-autoloader
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
namespace Automattic\Jetpack\Autoloader\jp4ee447debec28de6d1bfc1f9f8c9a8d1;
|
| 9 |
|
| 10 |
// phpcs:ignore
|
| 11 |
|
