PluginProbe
Yoast SEO – Advanced SEO with real-time guidance and built-in AI / 28.5
Yoast SEO – Advanced SEO with real-time guidance and built-in AI v28.5
28.5 28.4 28.3 28.2 28.1 28.0 27.9 27.8 27.7 27.6 27.5 trunk 18.0 18.1 18.2 18.3 18.4 18.4.1 18.5 18.5.1 18.6 18.7 18.8 18.9 19.0 All 129 releases
← All changes | vendor/autoload.php +16 -1 18.428.5 View file →
@@ -1,7 +1,22 @@
1 1 <?php
2 2
3 3 // autoload.php @generated by Composer
4 4
5 +if (PHP_VERSION_ID < 50600) {
6 + if (!headers_sent()) {
7 + header('HTTP/1.1 500 Internal Server Error');
8 + }
9 + $err = 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL;
10 + if (!ini_get('display_errors')) {
11 + if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') {
12 + fwrite(STDERR, $err);
13 + } elseif (!headers_sent()) {
14 + echo $err;
15 + }
16 + }
17 + throw new RuntimeException($err);
18 +}
19 +
5 20 require_once __DIR__ . '/composer/autoload_real.php';
6 21
7 -return ComposerAutoloaderInit843c8c5fdc8c8ab375430edfeff9d2c3::getLoader();
22 +return ComposerAutoloaderInit1909a4bec07ec13f0c8b7ca0ef808bd3::getLoader();