Version Description
- FIX Fatal error "seopress_amp_compatibility_wp" with older versions of SEOPress PRO (< 5.4 - December 2021)
Download this release
Release Info
Developer | rainbowgeek |
Plugin | SEOPress |
Version | 5.9.0.2 |
Comparing to | |
See all releases |
Code changes from version 5.9.0.1 to 5.9.0.2
- inc/functions/options-instant-indexing.php +2 -2
- languages/wp-seopress.pot +2 -2
- readme.txt +3 -1
- seopress.php +2 -2
- src/Thirds/AMP/amp.php +32 -27
- src/Thirds/MainWP/MainWPFunctions.php +103 -95
- vendor/composer/installed.json +7 -7
- vendor/composer/installed.php +5 -5
inc/functions/options-instant-indexing.php
CHANGED
@@ -134,13 +134,13 @@ function seopress_instant_indexing_fn($is_manual_submission = true, $permalink =
|
|
134 |
//Prepare the URLS
|
135 |
if ($is_manual_submission === true) {
|
136 |
$urls = preg_split('/\r\n|\r|\n/', $urls);
|
137 |
-
$x_source_info = 'https://www.seopress.org/5.9.0.
|
138 |
|
139 |
$urls = array_slice($urls, 0, 100);
|
140 |
} elseif ($is_manual_submission === false && !empty($permalink)) {
|
141 |
$urls = null;
|
142 |
$urls[] = $permalink;
|
143 |
-
$x_source_info = 'https://www.seopress.org/5.9.0.
|
144 |
}
|
145 |
|
146 |
//Bing API
|
134 |
//Prepare the URLS
|
135 |
if ($is_manual_submission === true) {
|
136 |
$urls = preg_split('/\r\n|\r|\n/', $urls);
|
137 |
+
$x_source_info = 'https://www.seopress.org/5.9.0.2/true';
|
138 |
|
139 |
$urls = array_slice($urls, 0, 100);
|
140 |
} elseif ($is_manual_submission === false && !empty($permalink)) {
|
141 |
$urls = null;
|
142 |
$urls[] = $permalink;
|
143 |
+
$x_source_info = 'https://www.seopress.org/5.9.0.2/false';
|
144 |
}
|
145 |
|
146 |
//Bing API
|
languages/wp-seopress.pot
CHANGED
@@ -2,14 +2,14 @@
|
|
2 |
# This file is distributed under the GPLv2.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: SEOPress 5.9.0.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-seopress\n"
|
7 |
"Last-Translator: SEOPress Team <contact@seopress.org>\n"
|
8 |
"Language-Team: SEOPress Team <contact@seopress.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"POT-Creation-Date: 2022-08-
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
"X-Generator: WP-CLI 2.6.0\n"
|
15 |
"X-Domain: wp-seopress\n"
|
2 |
# This file is distributed under the GPLv2.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: SEOPress 5.9.0.2\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-seopress\n"
|
7 |
"Last-Translator: SEOPress Team <contact@seopress.org>\n"
|
8 |
"Language-Team: SEOPress Team <contact@seopress.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"POT-Creation-Date: 2022-08-22T08:47:36+00:00\n"
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
"X-Generator: WP-CLI 2.6.0\n"
|
15 |
"X-Domain: wp-seopress\n"
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ Tags: SEO, schema, xml sitemap, redirection, meta title, open graph, content ana
|
|
6 |
Requires at least: 4.7+
|
7 |
Tested up to: 6.0
|
8 |
Requires PHP: 7.2
|
9 |
-
Stable tag: 5.9.0.
|
10 |
License: GPLv2 or later
|
11 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
@@ -363,6 +363,8 @@ You're theme is probably using a deprecated function to handle the title. <a hre
|
|
363 |
12. Schema metabox
|
364 |
|
365 |
== Changelog ==
|
|
|
|
|
366 |
= 5.9.0.1 =
|
367 |
* INFO Update GA4 docs link
|
368 |
* FIX Cookie bar error
|
6 |
Requires at least: 4.7+
|
7 |
Tested up to: 6.0
|
8 |
Requires PHP: 7.2
|
9 |
+
Stable tag: 5.9.0.2
|
10 |
License: GPLv2 or later
|
11 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
363 |
12. Schema metabox
|
364 |
|
365 |
== Changelog ==
|
366 |
+
= 5.9.0.2 =
|
367 |
+
* FIX Fatal error "seopress_amp_compatibility_wp" with older versions of SEOPress PRO (< 5.4 - December 2021)
|
368 |
= 5.9.0.1 =
|
369 |
* INFO Update GA4 docs link
|
370 |
* FIX Cookie bar error
|
seopress.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: SEOPress
|
|
4 |
Plugin URI: https://www.seopress.org/
|
5 |
Description: One of the best SEO plugins for WordPress.
|
6 |
Author: SEOPress
|
7 |
-
Version: 5.9.0.
|
8 |
Author URI: https://www.seopress.org/
|
9 |
License: GPLv2
|
10 |
Text Domain: wp-seopress
|
@@ -70,7 +70,7 @@ register_deactivation_hook(__FILE__, 'seopress_deactivation');
|
|
70 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
71 |
//Define
|
72 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
73 |
-
define('SEOPRESS_VERSION', '5.9.0.
|
74 |
define('SEOPRESS_AUTHOR', 'Benjamin Denis');
|
75 |
define('SEOPRESS_PLUGIN_DIR_PATH', plugin_dir_path(__FILE__));
|
76 |
define('SEOPRESS_PLUGIN_DIR_URL', plugin_dir_url(__FILE__));
|
4 |
Plugin URI: https://www.seopress.org/
|
5 |
Description: One of the best SEO plugins for WordPress.
|
6 |
Author: SEOPress
|
7 |
+
Version: 5.9.0.2
|
8 |
Author URI: https://www.seopress.org/
|
9 |
License: GPLv2
|
10 |
Text Domain: wp-seopress
|
70 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
71 |
//Define
|
72 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
73 |
+
define('SEOPRESS_VERSION', '5.9.0.2');
|
74 |
define('SEOPRESS_AUTHOR', 'Benjamin Denis');
|
75 |
define('SEOPRESS_PLUGIN_DIR_PATH', plugin_dir_path(__FILE__));
|
76 |
define('SEOPRESS_PLUGIN_DIR_URL', plugin_dir_url(__FILE__));
|
src/Thirds/AMP/amp.php
CHANGED
@@ -3,38 +3,43 @@
|
|
3 |
if ( ! defined('ABSPATH')) {
|
4 |
exit;
|
5 |
}
|
6 |
-
/**
|
7 |
-
* AMP Compatibility - wp action hook
|
8 |
-
*
|
9 |
-
* @since 5.9.0
|
10 |
-
*
|
11 |
-
* @return void
|
12 |
-
*/
|
13 |
-
add_action('wp', 'seopress_amp_compatibility_wp', 0);
|
14 |
-
function seopress_amp_compatibility_wp() {
|
15 |
-
if ( function_exists( 'amp_is_request' ) && amp_is_request() ) {
|
16 |
-
wp_dequeue_script( 'seopress-accordion' );
|
17 |
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
|
20 |
-
|
21 |
|
22 |
-
|
23 |
|
24 |
-
|
|
|
|
|
|
|
25 |
}
|
26 |
-
}
|
27 |
|
28 |
-
/**
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
add_action('wp_head', 'seopress_amp_compatibility_wp_head', 0);
|
36 |
-
function seopress_amp_compatibility_wp_head() {
|
37 |
-
|
38 |
-
|
|
|
39 |
}
|
40 |
}
|
3 |
if ( ! defined('ABSPATH')) {
|
4 |
exit;
|
5 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
|
7 |
+
if (is_plugin_active('wp-seopress-pro/seopress-pro.php') && version_compare(SEOPRESS_PRO_VERSION, '5.4') < 0) { //Quick fix to prevent fatal error for SEOPress < 5.4
|
8 |
+
//do nothing
|
9 |
+
} else {
|
10 |
+
/**
|
11 |
+
* AMP Compatibility - wp action hook
|
12 |
+
*
|
13 |
+
* @since 5.9.0
|
14 |
+
*
|
15 |
+
* @return void
|
16 |
+
*/
|
17 |
+
add_action('wp', 'seopress_amp_compatibility_wp', 0);
|
18 |
+
function seopress_amp_compatibility_wp() {
|
19 |
+
if ( function_exists( 'amp_is_request' ) && amp_is_request() ) {
|
20 |
+
wp_dequeue_script( 'seopress-accordion' );
|
21 |
|
22 |
+
remove_filter( 'seopress_google_analytics_html', 'seopress_google_analytics_js', 10);
|
23 |
|
24 |
+
remove_action('wp_enqueue_scripts', 'seopress_google_analytics_ecommerce_js', 20, 1);
|
25 |
|
26 |
+
remove_action('wp_enqueue_scripts', 'seopress_google_analytics_cookies_js', 20, 1);
|
27 |
+
|
28 |
+
remove_action( 'wp_head', 'seopress_load_google_analytics_options', 0 );
|
29 |
+
}
|
30 |
}
|
|
|
31 |
|
32 |
+
/**
|
33 |
+
* AMP Compatibility - wp_head action hook
|
34 |
+
*
|
35 |
+
* @since 5.9.0
|
36 |
+
*
|
37 |
+
* @return void
|
38 |
+
*/
|
39 |
+
add_action('wp_head', 'seopress_amp_compatibility_wp_head', 0);
|
40 |
+
function seopress_amp_compatibility_wp_head() {
|
41 |
+
if ( function_exists( 'amp_is_request' ) && amp_is_request() ) {
|
42 |
+
wp_dequeue_script( 'seopress-accordion' );
|
43 |
+
}
|
44 |
}
|
45 |
}
|
src/Thirds/MainWP/MainWPFunctions.php
CHANGED
@@ -1,104 +1,112 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
* @return array
|
6 |
-
*/
|
7 |
-
function seopress_return_settings() {
|
8 |
-
$settings = array();
|
9 |
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
$settings['seopress_pro_license_status'] = get_option('seopress_pro_license_status');
|
21 |
-
$settings['seopress_bot_option_name'] = get_option('seopress_bot_option_name');
|
22 |
-
$settings['seopress_toggle'] = get_option('seopress_toggle');
|
23 |
-
$settings['seopress_google_analytics_lock_option_name'] = get_option('seopress_google_analytics_lock_option_name');
|
24 |
-
$settings['seopress_tools_option_name'] = get_option('seopress_tools_option_name');
|
25 |
-
$settings['seopress_dashboard_option_name'] = get_option('seopress_dashboard_option_name');
|
26 |
|
27 |
-
|
28 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
|
30 |
-
|
31 |
-
* Seopress do import settings
|
32 |
-
*
|
33 |
-
* @param array $settings
|
34 |
-
*
|
35 |
-
* @return void
|
36 |
-
*/
|
37 |
-
function seopress_do_import_settings( $settings ) {
|
38 |
-
if (false !== $settings['seopress_activated']) {
|
39 |
-
update_option('seopress_activated', $settings['seopress_activated'], false);
|
40 |
-
}
|
41 |
-
if (false !== $settings['seopress_titles_option_name']) {
|
42 |
-
update_option('seopress_titles_option_name', $settings['seopress_titles_option_name'], false);
|
43 |
-
}
|
44 |
-
if (false !== $settings['seopress_social_option_name']) {
|
45 |
-
update_option('seopress_social_option_name', $settings['seopress_social_option_name'], false);
|
46 |
-
}
|
47 |
-
if (false !== $settings['seopress_google_analytics_option_name']) {
|
48 |
-
update_option('seopress_google_analytics_option_name', $settings['seopress_google_analytics_option_name'], false);
|
49 |
-
}
|
50 |
-
if (false !== $settings['seopress_advanced_option_name']) {
|
51 |
-
update_option('seopress_advanced_option_name', $settings['seopress_advanced_option_name'], false);
|
52 |
-
}
|
53 |
-
if (false !== $settings['seopress_xml_sitemap_option_name']) {
|
54 |
-
update_option('seopress_xml_sitemap_option_name', $settings['seopress_xml_sitemap_option_name'], false);
|
55 |
-
}
|
56 |
-
if (false !== $settings['seopress_pro_option_name']) {
|
57 |
-
update_option('seopress_pro_option_name', $settings['seopress_pro_option_name'], false);
|
58 |
-
}
|
59 |
-
if (false !== $settings['seopress_pro_mu_option_name']) {
|
60 |
-
update_option('seopress_pro_mu_option_name', $settings['seopress_pro_mu_option_name'], false);
|
61 |
-
}
|
62 |
-
if (false !== $settings['seopress_pro_license_key']) {
|
63 |
-
update_option('seopress_pro_license_key', $settings['seopress_pro_license_key'], false);
|
64 |
}
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
82 |
}
|
83 |
-
}
|
84 |
|
85 |
-
/**
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
function seopress_mainwp_save_settings( $settings, $option ) {
|
94 |
-
|
95 |
-
}
|
96 |
|
97 |
-
/**
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
function seopress_flush_rewrite_rules() {
|
103 |
-
|
|
|
104 |
}
|
1 |
<?php
|
2 |
+
if ( ! defined('ABSPATH')) {
|
3 |
+
exit;
|
4 |
+
}
|
|
|
|
|
|
|
|
|
5 |
|
6 |
+
if (is_plugin_active('wp-seopress-pro/seopress-pro.php') && version_compare(SEOPRESS_PRO_VERSION, '5.4') < 0) { //Quick fix to prevent fatal error for SEOPress < 5.4
|
7 |
+
//do nothing
|
8 |
+
} else {
|
9 |
+
/**
|
10 |
+
* Return settings
|
11 |
+
*
|
12 |
+
* @return array
|
13 |
+
*/
|
14 |
+
function seopress_return_settings() {
|
15 |
+
$settings = array();
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
|
17 |
+
$settings['seopress_activated'] = get_option('seopress_activated');
|
18 |
+
$settings['seopress_titles_option_name'] = get_option('seopress_titles_option_name');
|
19 |
+
$settings['seopress_social_option_name'] = get_option('seopress_social_option_name');
|
20 |
+
$settings['seopress_google_analytics_option_name'] = get_option('seopress_google_analytics_option_name');
|
21 |
+
$settings['seopress_instant_indexing_option_name'] = get_option('seopress_instant_indexing_option_name');
|
22 |
+
$settings['seopress_advanced_option_name'] = get_option('seopress_advanced_option_name');
|
23 |
+
$settings['seopress_xml_sitemap_option_name'] = get_option('seopress_xml_sitemap_option_name');
|
24 |
+
$settings['seopress_pro_option_name'] = get_option('seopress_pro_option_name');
|
25 |
+
$settings['seopress_pro_mu_option_name'] = get_option('seopress_pro_mu_option_name');
|
26 |
+
$settings['seopress_pro_license_key'] = get_option('seopress_pro_license_key');
|
27 |
+
$settings['seopress_pro_license_status'] = get_option('seopress_pro_license_status');
|
28 |
+
$settings['seopress_bot_option_name'] = get_option('seopress_bot_option_name');
|
29 |
+
$settings['seopress_toggle'] = get_option('seopress_toggle');
|
30 |
+
$settings['seopress_google_analytics_lock_option_name'] = get_option('seopress_google_analytics_lock_option_name');
|
31 |
+
$settings['seopress_tools_option_name'] = get_option('seopress_tools_option_name');
|
32 |
+
$settings['seopress_dashboard_option_name'] = get_option('seopress_dashboard_option_name');
|
33 |
|
34 |
+
return $settings;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
}
|
36 |
+
|
37 |
+
/**
|
38 |
+
* Seopress do import settings
|
39 |
+
*
|
40 |
+
* @param array $settings
|
41 |
+
*
|
42 |
+
* @return void
|
43 |
+
*/
|
44 |
+
function seopress_do_import_settings( $settings ) {
|
45 |
+
if (false !== $settings['seopress_activated']) {
|
46 |
+
update_option('seopress_activated', $settings['seopress_activated'], false);
|
47 |
+
}
|
48 |
+
if (false !== $settings['seopress_titles_option_name']) {
|
49 |
+
update_option('seopress_titles_option_name', $settings['seopress_titles_option_name'], false);
|
50 |
+
}
|
51 |
+
if (false !== $settings['seopress_social_option_name']) {
|
52 |
+
update_option('seopress_social_option_name', $settings['seopress_social_option_name'], false);
|
53 |
+
}
|
54 |
+
if (false !== $settings['seopress_google_analytics_option_name']) {
|
55 |
+
update_option('seopress_google_analytics_option_name', $settings['seopress_google_analytics_option_name'], false);
|
56 |
+
}
|
57 |
+
if (false !== $settings['seopress_advanced_option_name']) {
|
58 |
+
update_option('seopress_advanced_option_name', $settings['seopress_advanced_option_name'], false);
|
59 |
+
}
|
60 |
+
if (false !== $settings['seopress_xml_sitemap_option_name']) {
|
61 |
+
update_option('seopress_xml_sitemap_option_name', $settings['seopress_xml_sitemap_option_name'], false);
|
62 |
+
}
|
63 |
+
if (false !== $settings['seopress_pro_option_name']) {
|
64 |
+
update_option('seopress_pro_option_name', $settings['seopress_pro_option_name'], false);
|
65 |
+
}
|
66 |
+
if (false !== $settings['seopress_pro_mu_option_name']) {
|
67 |
+
update_option('seopress_pro_mu_option_name', $settings['seopress_pro_mu_option_name'], false);
|
68 |
+
}
|
69 |
+
if (false !== $settings['seopress_pro_license_key']) {
|
70 |
+
update_option('seopress_pro_license_key', $settings['seopress_pro_license_key'], false);
|
71 |
+
}
|
72 |
+
if (false !== $settings['seopress_pro_license_status']) {
|
73 |
+
update_option('seopress_pro_license_status', $settings['seopress_pro_license_status'], false);
|
74 |
+
}
|
75 |
+
if (false !== $settings['seopress_bot_option_name']) {
|
76 |
+
update_option('seopress_bot_option_name', $settings['seopress_bot_option_name'], false);
|
77 |
+
}
|
78 |
+
if (false !== $settings['seopress_toggle']) {
|
79 |
+
update_option('seopress_toggle', $settings['seopress_toggle'], false);
|
80 |
+
}
|
81 |
+
if (false !== $settings['seopress_google_analytics_lock_option_name']) {
|
82 |
+
update_option('seopress_google_analytics_lock_option_name', $settings['seopress_google_analytics_lock_option_name'], false);
|
83 |
+
}
|
84 |
+
if (false !== $settings['seopress_tools_option_name']) {
|
85 |
+
update_option('seopress_tools_option_name', $settings['seopress_tools_option_name'], false);
|
86 |
+
}
|
87 |
+
if (false !== $settings['seopress_instant_indexing_option_name']) {
|
88 |
+
update_option('seopress_instant_indexing_option_name', $settings['seopress_instant_indexing_option_name'], false);
|
89 |
+
}
|
90 |
}
|
|
|
91 |
|
92 |
+
/**
|
93 |
+
* Save settings for given option
|
94 |
+
*
|
95 |
+
* @param array $settings The settings to be saved.
|
96 |
+
* @param string $option The option name.
|
97 |
+
*
|
98 |
+
* @return void
|
99 |
+
*/
|
100 |
+
function seopress_mainwp_save_settings( $settings, $option ) {
|
101 |
+
update_option( $option, $settings );
|
102 |
+
}
|
103 |
|
104 |
+
/**
|
105 |
+
* Flush rewrite rules.
|
106 |
+
*
|
107 |
+
* @return void
|
108 |
+
*/
|
109 |
+
function seopress_flush_rewrite_rules() {
|
110 |
+
flush_rewrite_rules( false );
|
111 |
+
}
|
112 |
}
|
vendor/composer/installed.json
CHANGED
@@ -135,17 +135,17 @@
|
|
135 |
},
|
136 |
{
|
137 |
"name": "google/apiclient-services",
|
138 |
-
"version": "v0.
|
139 |
-
"version_normalized": "0.
|
140 |
"source": {
|
141 |
"type": "git",
|
142 |
"url": "https://github.com/googleapis/google-api-php-client-services.git",
|
143 |
-
"reference": "
|
144 |
},
|
145 |
"dist": {
|
146 |
"type": "zip",
|
147 |
-
"url": "https://api.github.com/repos/googleapis/google-api-php-client-services/zipball/
|
148 |
-
"reference": "
|
149 |
"shasum": ""
|
150 |
},
|
151 |
"require": {
|
@@ -154,7 +154,7 @@
|
|
154 |
"require-dev": {
|
155 |
"phpunit/phpunit": "^5.7||^8.5.13"
|
156 |
},
|
157 |
-
"time": "2022-08-
|
158 |
"type": "library",
|
159 |
"installation-source": "dist",
|
160 |
"autoload": {
|
@@ -176,7 +176,7 @@
|
|
176 |
],
|
177 |
"support": {
|
178 |
"issues": "https://github.com/googleapis/google-api-php-client-services/issues",
|
179 |
-
"source": "https://github.com/googleapis/google-api-php-client-services/tree/v0.
|
180 |
},
|
181 |
"install-path": "../google/apiclient-services"
|
182 |
},
|
135 |
},
|
136 |
{
|
137 |
"name": "google/apiclient-services",
|
138 |
+
"version": "v0.263.0",
|
139 |
+
"version_normalized": "0.263.0.0",
|
140 |
"source": {
|
141 |
"type": "git",
|
142 |
"url": "https://github.com/googleapis/google-api-php-client-services.git",
|
143 |
+
"reference": "9264fe481e87d9f203ebb97933a71e09e66d93ed"
|
144 |
},
|
145 |
"dist": {
|
146 |
"type": "zip",
|
147 |
+
"url": "https://api.github.com/repos/googleapis/google-api-php-client-services/zipball/9264fe481e87d9f203ebb97933a71e09e66d93ed",
|
148 |
+
"reference": "9264fe481e87d9f203ebb97933a71e09e66d93ed",
|
149 |
"shasum": ""
|
150 |
},
|
151 |
"require": {
|
154 |
"require-dev": {
|
155 |
"phpunit/phpunit": "^5.7||^8.5.13"
|
156 |
},
|
157 |
+
"time": "2022-08-21T01:28:13+00:00",
|
158 |
"type": "library",
|
159 |
"installation-source": "dist",
|
160 |
"autoload": {
|
176 |
],
|
177 |
"support": {
|
178 |
"issues": "https://github.com/googleapis/google-api-php-client-services/issues",
|
179 |
+
"source": "https://github.com/googleapis/google-api-php-client-services/tree/v0.263.0"
|
180 |
},
|
181 |
"install-path": "../google/apiclient-services"
|
182 |
},
|
vendor/composer/installed.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
'type' => 'wordpress-plugin',
|
6 |
'install_path' => __DIR__ . '/../../',
|
7 |
'aliases' => array(),
|
8 |
-
'reference' => '
|
9 |
'name' => 'wp-seopress/wp-seopress',
|
10 |
'dev' => false,
|
11 |
),
|
@@ -29,12 +29,12 @@
|
|
29 |
'dev_requirement' => false,
|
30 |
),
|
31 |
'google/apiclient-services' => array(
|
32 |
-
'pretty_version' => 'v0.
|
33 |
-
'version' => '0.
|
34 |
'type' => 'library',
|
35 |
'install_path' => __DIR__ . '/../google/apiclient-services',
|
36 |
'aliases' => array(),
|
37 |
-
'reference' => '
|
38 |
'dev_requirement' => false,
|
39 |
),
|
40 |
'google/auth' => array(
|
@@ -202,7 +202,7 @@
|
|
202 |
'type' => 'wordpress-plugin',
|
203 |
'install_path' => __DIR__ . '/../../',
|
204 |
'aliases' => array(),
|
205 |
-
'reference' => '
|
206 |
'dev_requirement' => false,
|
207 |
),
|
208 |
),
|
5 |
'type' => 'wordpress-plugin',
|
6 |
'install_path' => __DIR__ . '/../../',
|
7 |
'aliases' => array(),
|
8 |
+
'reference' => '2aa065b89fb54474523eea270a73064941553053',
|
9 |
'name' => 'wp-seopress/wp-seopress',
|
10 |
'dev' => false,
|
11 |
),
|
29 |
'dev_requirement' => false,
|
30 |
),
|
31 |
'google/apiclient-services' => array(
|
32 |
+
'pretty_version' => 'v0.263.0',
|
33 |
+
'version' => '0.263.0.0',
|
34 |
'type' => 'library',
|
35 |
'install_path' => __DIR__ . '/../google/apiclient-services',
|
36 |
'aliases' => array(),
|
37 |
+
'reference' => '9264fe481e87d9f203ebb97933a71e09e66d93ed',
|
38 |
'dev_requirement' => false,
|
39 |
),
|
40 |
'google/auth' => array(
|
202 |
'type' => 'wordpress-plugin',
|
203 |
'install_path' => __DIR__ . '/../../',
|
204 |
'aliases' => array(),
|
205 |
+
'reference' => '2aa065b89fb54474523eea270a73064941553053',
|
206 |
'dev_requirement' => false,
|
207 |
),
|
208 |
),
|