@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.
- package/files/plugin-root.php +3 -3
- package/package.json +1 -1
package/files/plugin-root.php
CHANGED
|
@@ -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
|
-
|
|
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