@iservice-dev/is-wp-plugin-kit 1.7.9 → 1.7.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -27,7 +27,7 @@ function plugin_slug_placeholder_bootstrap() {
27
27
  if (file_exists(__DIR__ . '/vendor/autoload.php')) {
28
28
  require __DIR__ . '/vendor/autoload.php';
29
29
  }
30
- require_once plugin_dir_path(__FILE__) . 'includes/autoloader.php';
30
+
31
31
  new \IS\Autoloader(
32
32
  '[NamespacePlaceholder]',
33
33
  plugin_dir_path(__FILE__) . 'includes/lib'
@@ -66,9 +66,9 @@ add_action('plugins_loaded', function () {
66
66
 
67
67
  if(!IS\Base\Core\Plugin_Requirements::check(
68
68
  '[Plugin Name Placeholder]',
69
+ __FILE__,
69
70
  REQUIRED_WP_VERSION,
70
- REQUIRED_PHP_VERSION,
71
- __FILE__
71
+ REQUIRED_PHP_VERSION
72
72
  )) {
73
73
  return;
74
74
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iservice-dev/is-wp-plugin-kit",
3
- "version": "1.7.9",
3
+ "version": "1.7.11",
4
4
  "description": "A toolkit for WordPress plugin development with Vite, TypeScript, and modern build tools",
5
5
  "type": "module",
6
6
  "main": "vite/index.js",