Skip to content

Commit 5a0ec04

Browse files
Merge pull request #783 from Codeinwp/development
[Fix] Compatibility with Composer 2.0
2 parents 1f9f95b + cb86471 commit 5a0ec04

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

classes/Visualizer/Plugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
class Visualizer_Plugin {
2929

3030
const NAME = 'visualizer';
31-
const VERSION = '3.4.9';
31+
const VERSION = '3.4.10';
3232

3333
// custom post types
3434
const CPT_VISUALIZER = 'visualizer';

composer.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@
2020
"issues": "https://github.com/Codeinwp/visualizer/issues",
2121
"source": "https://github.com/Codeinwp/visualizer"
2222
},
23+
"config": {
24+
"platform": {
25+
"php": "5.6"
26+
}
27+
},
2328
"require": {
2429
"codeinwp/themeisle-sdk": "master",
2530
"phpoffice/phpspreadsheet": "1.8.2",

css/media.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Version: 3.4.9
2+
Version: 3.4.10
33
*/
44
#visualizer-library-view {
55
padding: 30px 10px 10px 30px;

index.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Plugin Name: Visualizer: Tables and Charts for WordPress
55
Plugin URI: https://themeisle.com/plugins/visualizer-charts-and-graphs-lite/
66
Description: A simple, easy to use and quite powerful tool to create, manage and embed interactive charts into your WordPress posts and pages. The plugin uses Google Visualization API to render charts, which supports cross-browser compatibility (adopting VML for older IE versions) and cross-platform portability to iOS and new Android releases.
7-
Version: 3.4.9
7+
Version: 3.4.10
88
Author: Themeisle
99
Author URI: http://themeisle.com
1010
License: GPL v2.0 or later
@@ -125,7 +125,7 @@ function visualizer_launch() {
125125

126126
$plugin->setModule( Visualizer_Module_AMP::NAME );
127127

128-
$vendor_file = VISUALIZER_ABSPATH . '/vendor/autoload_52.php';
128+
$vendor_file = VISUALIZER_ABSPATH . '/vendor/autoload.php';
129129
if ( is_readable( $vendor_file ) ) {
130130
include_once( $vendor_file );
131131
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "visualizer",
3-
"version": "3.4.9",
3+
"version": "3.4.10",
44
"description": "Visualizer Lite",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)