Skip to content
Snippets Groups Projects

library update. PHPCS ruleset from wpdesk

Closed Krzysztof Dyszczyk requested to merge feature/wpdesk-cs into master
1 file
+ 7
8
Compare changes
  • Side-by-side
  • Inline
+ 7
8
@@ -33,9 +33,8 @@ if ( ! defined( 'ABSPATH' ) ) {
exit;
} // Exit if accessed directly
/* THESE TWO VARIABLES CAN BE CHANGED AUTOMATICALLY */
/* THESE VARIABLES CAN BE CHANGED AUTOMATICALLY */
$plugin_version = '1.0.0';
$plugin_release_timestamp = '2020-05-20 10:19';
$plugin_name = 'WP Desk Plugin Template';
$plugin_class_name = '\WPDesk\PluginTemplate\Plugin';
@@ -44,16 +43,16 @@ $product_id = 'plugin-template';
$plugin_file = __FILE__;
$plugin_dir = dirname( __FILE__ );
$requirements = [
$requirements = array(
'php' => '5.6',
'wp' => '4.5',
'plugins' => [
[
'plugins' => array(
array(
'name' => 'woocommerce/woocommerce.php',
'nice_name' => 'WooCommerce',
'version' => '3.0',
],
],
];
),
),
);
require __DIR__ . '/vendor_prefixed/wpdesk/wp-plugin-flow/src/plugin-init-php52.php';
Loading