You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A lightweight WordPress plugin designed to optimize your website by removing unnecessary scripts, styles, and header elements that can slow down your site.
9
9
@@ -67,7 +67,7 @@ Yes, hiding the WordPress version can provide a minor security benefit by making
67
67
### Requirements
68
68
69
69
- PHP 7.4 or higher
70
-
- WordPress 5.6 or higher
70
+
- WordPress 6.0 or higher
71
71
- Composer (for development and testing)
72
72
73
73
### Setting up the development environment
@@ -79,13 +79,13 @@ Yes, hiding the WordPress version can provide a minor security benefit by making
79
79
80
80
### PHP 8.x Compatibility
81
81
82
-
This plugin is fully compatible with PHP versions 7.4 through 8.2. For testing with PHP 8.x, we provide a custom PHPUnit runner script that helps avoid common compatibility issues between PHPUnit and newer PHP versions:
82
+
This plugin is fully compatible with PHP versions 7.4 through 8.4. For testing with PHP 8.x, we provide a custom PHPUnit runner script that helps avoid common compatibility issues between PHPUnit and newer PHP versions:
83
83
84
84
```bash
85
85
# For PHP 7.4 (standard testing)
86
86
composer test
87
87
88
-
# For PHP 8.0, 8.1, and 8.2 (using the custom runner)
88
+
# For PHP 8.0, 8.1, 8.2, 8.3, and 8.4 (using the custom runner)
89
89
composer test:php8
90
90
```
91
91
@@ -107,8 +107,8 @@ This ensures our plugin stays up-to-date with the latest WordPress versions with
107
107
108
108
The plugin includes a comprehensive PHPUnit test suite that runs automatically on GitHub Actions. Our testing matrix includes:
109
109
110
-
- PHP versions: 7.4, 8.0, 8.1, 8.2
111
-
-Latest WordPress version
110
+
- PHP versions: 7.4, 8.0, 8.1, 8.2, 8.3, 8.4
111
+
- WordPress versions: 6.0, latest, nightly
112
112
- Both single site and multisite installations
113
113
114
114
This ensures code quality and compatibility across different PHP versions and WordPress configurations.
0 commit comments