summaryrefslogtreecommitdiff
path: root/plugins/af_readability/vendor/composer
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/af_readability/vendor/composer')
-rw-r--r--plugins/af_readability/vendor/composer/InstalledVersions.php76
-rw-r--r--plugins/af_readability/vendor/composer/autoload_psr4.php5
-rw-r--r--plugins/af_readability/vendor/composer/autoload_static.php29
-rw-r--r--plugins/af_readability/vendor/composer/installed.json403
-rw-r--r--plugins/af_readability/vendor/composer/installed.php57
-rw-r--r--plugins/af_readability/vendor/composer/platform_check.php4
6 files changed, 528 insertions, 46 deletions
diff --git a/plugins/af_readability/vendor/composer/InstalledVersions.php b/plugins/af_readability/vendor/composer/InstalledVersions.php
index eb57e7a7e..8b617d5ba 100644
--- a/plugins/af_readability/vendor/composer/InstalledVersions.php
+++ b/plugins/af_readability/vendor/composer/InstalledVersions.php
@@ -23,41 +23,88 @@ use Composer\Semver\VersionParser;
class InstalledVersions
{
private static $installed = array (
- 'root' =>
+ 'root' =>
array (
'pretty_version' => 'dev-master',
'version' => 'dev-master',
- 'aliases' =>
+ 'aliases' =>
array (
),
- 'reference' => 'a73e3bec45c5523910c711cf882976b71781ac9e',
+ 'reference' => 'a8b0bce008e23f9c47bf1f4de4d8e6886435071e',
'name' => '__root__',
),
- 'versions' =>
+ 'versions' =>
array (
- '__root__' =>
+ '__root__' =>
array (
'pretty_version' => 'dev-master',
'version' => 'dev-master',
- 'aliases' =>
+ 'aliases' =>
array (
),
- 'reference' => 'a73e3bec45c5523910c711cf882976b71781ac9e',
+ 'reference' => 'a8b0bce008e23f9c47bf1f4de4d8e6886435071e',
),
- 'fivefilters/readability.php' =>
+ 'fivefilters/readability.php' =>
array (
- 'pretty_version' => 'v2.1.0',
- 'version' => '2.1.0.0',
- 'aliases' =>
+ 'pretty_version' => 'dev-master',
+ 'version' => 'dev-master',
+ 'aliases' =>
+ array (
+ 0 => '9999999-dev',
+ ),
+ 'reference' => '8ac5abdd497b37d2be4833bcf18d6819bba4d9c9',
+ ),
+ 'league/uri' =>
+ array (
+ 'pretty_version' => '6.7.1',
+ 'version' => '6.7.1.0',
+ 'aliases' =>
+ array (
+ ),
+ 'reference' => '2d7c87a0860f3126a39f44a8a9bf2fed402dcfea',
+ ),
+ 'league/uri-interfaces' =>
+ array (
+ 'pretty_version' => '2.3.0',
+ 'version' => '2.3.0.0',
+ 'aliases' =>
+ array (
+ ),
+ 'reference' => '00e7e2943f76d8cb50c7dfdc2f6dee356e15e383',
+ ),
+ 'masterminds/html5' =>
+ array (
+ 'pretty_version' => 'dev-master',
+ 'version' => 'dev-master',
+ 'aliases' =>
+ array (
+ 0 => '2.7.x-dev',
+ ),
+ 'reference' => '1e0033a694ce576deba7c59c1da56c76e9e42109',
+ ),
+ 'psr/http-factory' =>
+ array (
+ 'pretty_version' => '1.0.1',
+ 'version' => '1.0.1.0',
+ 'aliases' =>
+ array (
+ ),
+ 'reference' => '12ac7fcd07e5b077433f5f2bee95b3a771bf61be',
+ ),
+ 'psr/http-message' =>
+ array (
+ 'pretty_version' => '1.0.1',
+ 'version' => '1.0.1.0',
+ 'aliases' =>
array (
),
- 'reference' => '7617a912b6c527909168f5d41d263792f171c42a',
+ 'reference' => 'f6561bf28d520154e4b0ec72be95418abe6d9363',
),
- 'psr/log' =>
+ 'psr/log' =>
array (
'pretty_version' => '1.1.4',
'version' => '1.1.4.0',
- 'aliases' =>
+ 'aliases' =>
array (
),
'reference' => 'd49695b909c3b7628b6289db5479a1c204601f11',
@@ -285,6 +332,7 @@ class InstalledVersions
$installed = array();
if (self::$canGetVendors) {
+ // @phpstan-ignore-next-line
foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) {
if (isset(self::$installedByVendor[$vendorDir])) {
$installed[] = self::$installedByVendor[$vendorDir];
diff --git a/plugins/af_readability/vendor/composer/autoload_psr4.php b/plugins/af_readability/vendor/composer/autoload_psr4.php
index 3efe88013..bda58c36e 100644
--- a/plugins/af_readability/vendor/composer/autoload_psr4.php
+++ b/plugins/af_readability/vendor/composer/autoload_psr4.php
@@ -6,6 +6,9 @@ $vendorDir = dirname(dirname(__FILE__));
$baseDir = dirname($vendorDir);
return array(
- 'andreskrey\\Readability\\' => array($vendorDir . '/fivefilters/readability.php/src'),
+ 'fivefilters\\Readability\\' => array($vendorDir . '/fivefilters/readability.php/src'),
'Psr\\Log\\' => array($vendorDir . '/psr/log/Psr/Log'),
+ 'Psr\\Http\\Message\\' => array($vendorDir . '/psr/http-factory/src', $vendorDir . '/psr/http-message/src'),
+ 'Masterminds\\' => array($vendorDir . '/masterminds/html5/src'),
+ 'League\\Uri\\' => array($vendorDir . '/league/uri/src', $vendorDir . '/league/uri-interfaces/src'),
);
diff --git a/plugins/af_readability/vendor/composer/autoload_static.php b/plugins/af_readability/vendor/composer/autoload_static.php
index 0f4e7a4b9..a21b92886 100644
--- a/plugins/af_readability/vendor/composer/autoload_static.php
+++ b/plugins/af_readability/vendor/composer/autoload_static.php
@@ -7,18 +7,27 @@ namespace Composer\Autoload;
class ComposerStaticInitb44cc79a0eaef9cd9c2f2ac697cbe9c0
{
public static $prefixLengthsPsr4 = array (
- 'a' =>
+ 'f' =>
array (
- 'andreskrey\\Readability\\' => 23,
+ 'fivefilters\\Readability\\' => 24,
),
'P' =>
array (
'Psr\\Log\\' => 8,
+ 'Psr\\Http\\Message\\' => 17,
+ ),
+ 'M' =>
+ array (
+ 'Masterminds\\' => 12,
+ ),
+ 'L' =>
+ array (
+ 'League\\Uri\\' => 11,
),
);
public static $prefixDirsPsr4 = array (
- 'andreskrey\\Readability\\' =>
+ 'fivefilters\\Readability\\' =>
array (
0 => __DIR__ . '/..' . '/fivefilters/readability.php/src',
),
@@ -26,6 +35,20 @@ class ComposerStaticInitb44cc79a0eaef9cd9c2f2ac697cbe9c0
array (
0 => __DIR__ . '/..' . '/psr/log/Psr/Log',
),
+ 'Psr\\Http\\Message\\' =>
+ array (
+ 0 => __DIR__ . '/..' . '/psr/http-factory/src',
+ 1 => __DIR__ . '/..' . '/psr/http-message/src',
+ ),
+ 'Masterminds\\' =>
+ array (
+ 0 => __DIR__ . '/..' . '/masterminds/html5/src',
+ ),
+ 'League\\Uri\\' =>
+ array (
+ 0 => __DIR__ . '/..' . '/league/uri/src',
+ 1 => __DIR__ . '/..' . '/league/uri-interfaces/src',
+ ),
);
public static $classMap = array (
diff --git a/plugins/af_readability/vendor/composer/installed.json b/plugins/af_readability/vendor/composer/installed.json
index 916a0b1d9..9ce492622 100644
--- a/plugins/af_readability/vendor/composer/installed.json
+++ b/plugins/af_readability/vendor/composer/installed.json
@@ -2,42 +2,43 @@
"packages": [
{
"name": "fivefilters/readability.php",
- "version": "v2.1.0",
- "version_normalized": "2.1.0.0",
+ "version": "dev-master",
+ "version_normalized": "dev-master",
"source": {
"type": "git",
- "url": "https://github.com/fivefilters/readability.php.git",
- "reference": "7617a912b6c527909168f5d41d263792f171c42a"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/fivefilters/readability.php/zipball/7617a912b6c527909168f5d41d263792f171c42a",
- "reference": "7617a912b6c527909168f5d41d263792f171c42a",
- "shasum": ""
+ "url": "https://dev.tt-rss.org/fox/readability-php.git",
+ "reference": "8ac5abdd497b37d2be4833bcf18d6819bba4d9c9"
},
"require": {
"ext-dom": "*",
"ext-mbstring": "*",
"ext-xml": "*",
- "php": ">=7.0.0",
+ "league/uri": "^6.4",
+ "masterminds/html5": "2.7.x-dev@dev",
+ "php": ">=7.3.0",
"psr/log": "^1.0"
},
"require-dev": {
- "monolog/monolog": "^1.24",
- "phpunit/phpunit": "^6.5"
+ "monolog/monolog": "^2.3",
+ "phpunit/phpunit": "^9"
},
"suggest": {
"monolog/monolog": "Allow logging debug information"
},
- "time": "2019-07-22T21:42:25+00:00",
+ "time": "2022-07-31T06:02:47+00:00",
+ "default-branch": true,
"type": "library",
- "installation-source": "dist",
+ "installation-source": "source",
"autoload": {
"psr-4": {
- "andreskrey\\Readability\\": "src/"
+ "fivefilters\\Readability\\": "src/"
+ }
+ },
+ "autoload-dev": {
+ "psr-4": {
+ "fivefilters\\Readability\\Test\\": "test"
}
},
- "notification-url": "https://packagist.org/downloads/",
"license": [
"Apache-2.0"
],
@@ -45,19 +46,379 @@
{
"name": "Andres Rey",
"email": "[email protected]",
- "role": "Lead Developer"
+ "role": "Original Developer"
+ },
+ {
+ "name": "Keyvan Minoukadeh",
+ "email": "[email protected]",
+ "homepage": "https://www.fivefilters.org",
+ "role": "Developer/Maintainer"
}
],
"description": "A PHP port of Readability.js",
- "homepage": "https://github.com/andreskrey/readability",
+ "homepage": "https://github.com/fivefilters/readability.php",
"keywords": [
"html",
"readability"
],
+ "install-path": "../fivefilters/readability.php"
+ },
+ {
+ "name": "league/uri",
+ "version": "6.7.1",
+ "version_normalized": "6.7.1.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/thephpleague/uri.git",
+ "reference": "2d7c87a0860f3126a39f44a8a9bf2fed402dcfea"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/thephpleague/uri/zipball/2d7c87a0860f3126a39f44a8a9bf2fed402dcfea",
+ "reference": "2d7c87a0860f3126a39f44a8a9bf2fed402dcfea",
+ "shasum": ""
+ },
+ "require": {
+ "ext-json": "*",
+ "league/uri-interfaces": "^2.3",
+ "php": "^7.4 || ^8.0",
+ "psr/http-message": "^1.0"
+ },
+ "conflict": {
+ "league/uri-schemes": "^1.0"
+ },
+ "require-dev": {
+ "friendsofphp/php-cs-fixer": "^v3.3.2",
+ "nyholm/psr7": "^1.5",
+ "php-http/psr7-integration-tests": "^1.1",
+ "phpstan/phpstan": "^1.2.0",
+ "phpstan/phpstan-deprecation-rules": "^1.0",
+ "phpstan/phpstan-phpunit": "^1.0.0",
+ "phpstan/phpstan-strict-rules": "^1.1.0",
+ "phpunit/phpunit": "^9.5.10",
+ "psr/http-factory": "^1.0"
+ },
+ "suggest": {
+ "ext-fileinfo": "Needed to create Data URI from a filepath",
+ "ext-intl": "Needed to improve host validation",
+ "league/uri-components": "Needed to easily manipulate URI objects",
+ "psr/http-factory": "Needed to use the URI factory"
+ },
+ "time": "2022-06-29T09:48:18+00:00",
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "6.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "psr-4": {
+ "League\\Uri\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Ignace Nyamagana Butera",
+ "email": "[email protected]",
+ "homepage": "https://nyamsprod.com"
+ }
+ ],
+ "description": "URI manipulation library",
+ "homepage": "https://uri.thephpleague.com",
+ "keywords": [
+ "data-uri",
+ "file-uri",
+ "ftp",
+ "hostname",
+ "http",
+ "https",
+ "middleware",
+ "parse_str",
+ "parse_url",
+ "psr-7",
+ "query-string",
+ "querystring",
+ "rfc3986",
+ "rfc3987",
+ "rfc6570",
+ "uri",
+ "uri-template",
+ "url",
+ "ws"
+ ],
"support": {
- "source": "https://github.com/fivefilters/readability.php/tree/v2.1.0"
+ "docs": "https://uri.thephpleague.com",
+ "forum": "https://thephpleague.slack.com",
+ "issues": "https://github.com/thephpleague/uri/issues",
+ "source": "https://github.com/thephpleague/uri/tree/6.7.1"
},
- "install-path": "../fivefilters/readability.php"
+ "funding": [
+ {
+ "url": "https://github.com/sponsors/nyamsprod",
+ "type": "github"
+ }
+ ],
+ "install-path": "../league/uri"
+ },
+ {
+ "name": "league/uri-interfaces",
+ "version": "2.3.0",
+ "version_normalized": "2.3.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/thephpleague/uri-interfaces.git",
+ "reference": "00e7e2943f76d8cb50c7dfdc2f6dee356e15e383"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/00e7e2943f76d8cb50c7dfdc2f6dee356e15e383",
+ "reference": "00e7e2943f76d8cb50c7dfdc2f6dee356e15e383",
+ "shasum": ""
+ },
+ "require": {
+ "ext-json": "*",
+ "php": "^7.2 || ^8.0"
+ },
+ "require-dev": {
+ "friendsofphp/php-cs-fixer": "^2.19",
+ "phpstan/phpstan": "^0.12.90",
+ "phpstan/phpstan-phpunit": "^0.12.19",
+ "phpstan/phpstan-strict-rules": "^0.12.9",
+ "phpunit/phpunit": "^8.5.15 || ^9.5"
+ },
+ "suggest": {
+ "ext-intl": "to use the IDNA feature",
+ "symfony/intl": "to use the IDNA feature via Symfony Polyfill"
+ },
+ "time": "2021-06-28T04:27:21+00:00",
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "psr-4": {
+ "League\\Uri\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Ignace Nyamagana Butera",
+ "email": "[email protected]",
+ "homepage": "https://nyamsprod.com"
+ }
+ ],
+ "description": "Common interface for URI representation",
+ "homepage": "http://github.com/thephpleague/uri-interfaces",
+ "keywords": [
+ "rfc3986",
+ "rfc3987",
+ "uri",
+ "url"
+ ],
+ "support": {
+ "issues": "https://github.com/thephpleague/uri-interfaces/issues",
+ "source": "https://github.com/thephpleague/uri-interfaces/tree/2.3.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sponsors/nyamsprod",
+ "type": "github"
+ }
+ ],
+ "install-path": "../league/uri-interfaces"
+ },
+ {
+ "name": "masterminds/html5",
+ "version": "dev-master",
+ "version_normalized": "dev-master",
+ "source": {
+ "type": "git",
+ "url": "https://dev.tt-rss.org/fox/html5-php.git",
+ "reference": "1e0033a694ce576deba7c59c1da56c76e9e42109"
+ },
+ "require": {
+ "ext-ctype": "*",
+ "ext-dom": "*",
+ "ext-libxml": "*",
+ "php": ">=5.3.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7"
+ },
+ "time": "2022-07-31T06:41:22+00:00",
+ "default-branch": true,
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.7-dev"
+ }
+ },
+ "installation-source": "source",
+ "autoload": {
+ "psr-4": {
+ "Masterminds\\": "src"
+ }
+ },
+ "autoload-dev": {
+ "psr-4": {
+ "Masterminds\\HTML5\\Tests\\": "test/HTML5"
+ }
+ },
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Matt Butcher",
+ "email": "[email protected]"
+ },
+ {
+ "name": "Matt Farina",
+ "email": "[email protected]"
+ },
+ {
+ "name": "Asmir Mustafic",
+ "email": "[email protected]"
+ }
+ ],
+ "description": "An HTML5 parser and serializer.",
+ "homepage": "http://masterminds.github.io/html5-php",
+ "keywords": [
+ "dom",
+ "html",
+ "html5",
+ "parser",
+ "querypath",
+ "serializer",
+ "xml"
+ ],
+ "install-path": "../masterminds/html5"
+ },
+ {
+ "name": "psr/http-factory",
+ "version": "1.0.1",
+ "version_normalized": "1.0.1.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/http-factory.git",
+ "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
+ "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.0.0",
+ "psr/http-message": "^1.0"
+ },
+ "time": "2019-04-30T12:38:16+00:00",
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "psr-4": {
+ "Psr\\Http\\Message\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "http://www.php-fig.org/"
+ }
+ ],
+ "description": "Common interfaces for PSR-7 HTTP message factories",
+ "keywords": [
+ "factory",
+ "http",
+ "message",
+ "psr",
+ "psr-17",
+ "psr-7",
+ "request",
+ "response"
+ ],
+ "support": {
+ "source": "https://github.com/php-fig/http-factory/tree/master"
+ },
+ "install-path": "../psr/http-factory"
+ },
+ {
+ "name": "psr/http-message",
+ "version": "1.0.1",
+ "version_normalized": "1.0.1.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/http-message.git",
+ "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
+ "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.3.0"
+ },
+ "time": "2016-08-06T14:39:51+00:00",
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "psr-4": {
+ "Psr\\Http\\Message\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "http://www.php-fig.org/"
+ }
+ ],
+ "description": "Common interface for HTTP messages",
+ "homepage": "https://github.com/php-fig/http-message",
+ "keywords": [
+ "http",
+ "http-message",
+ "psr",
+ "psr-7",
+ "request",
+ "response"
+ ],
+ "support": {
+ "source": "https://github.com/php-fig/http-message/tree/master"
+ },
+ "install-path": "../psr/http-message"
},
{
"name": "psr/log",
diff --git a/plugins/af_readability/vendor/composer/installed.php b/plugins/af_readability/vendor/composer/installed.php
index 64d46147e..48ffae0d7 100644
--- a/plugins/af_readability/vendor/composer/installed.php
+++ b/plugins/af_readability/vendor/composer/installed.php
@@ -6,7 +6,7 @@
'aliases' =>
array (
),
- 'reference' => 'a73e3bec45c5523910c711cf882976b71781ac9e',
+ 'reference' => 'a8b0bce008e23f9c47bf1f4de4d8e6886435071e',
'name' => '__root__',
),
'versions' =>
@@ -18,16 +18,63 @@
'aliases' =>
array (
),
- 'reference' => 'a73e3bec45c5523910c711cf882976b71781ac9e',
+ 'reference' => 'a8b0bce008e23f9c47bf1f4de4d8e6886435071e',
),
'fivefilters/readability.php' =>
array (
- 'pretty_version' => 'v2.1.0',
- 'version' => '2.1.0.0',
+ 'pretty_version' => 'dev-master',
+ 'version' => 'dev-master',
+ 'aliases' =>
+ array (
+ 0 => '9999999-dev',
+ ),
+ 'reference' => '8ac5abdd497b37d2be4833bcf18d6819bba4d9c9',
+ ),
+ 'league/uri' =>
+ array (
+ 'pretty_version' => '6.7.1',
+ 'version' => '6.7.1.0',
+ 'aliases' =>
+ array (
+ ),
+ 'reference' => '2d7c87a0860f3126a39f44a8a9bf2fed402dcfea',
+ ),
+ 'league/uri-interfaces' =>
+ array (
+ 'pretty_version' => '2.3.0',
+ 'version' => '2.3.0.0',
+ 'aliases' =>
+ array (
+ ),
+ 'reference' => '00e7e2943f76d8cb50c7dfdc2f6dee356e15e383',
+ ),
+ 'masterminds/html5' =>
+ array (
+ 'pretty_version' => 'dev-master',
+ 'version' => 'dev-master',
+ 'aliases' =>
+ array (
+ 0 => '2.7.x-dev',
+ ),
+ 'reference' => '1e0033a694ce576deba7c59c1da56c76e9e42109',
+ ),
+ 'psr/http-factory' =>
+ array (
+ 'pretty_version' => '1.0.1',
+ 'version' => '1.0.1.0',
+ 'aliases' =>
+ array (
+ ),
+ 'reference' => '12ac7fcd07e5b077433f5f2bee95b3a771bf61be',
+ ),
+ 'psr/http-message' =>
+ array (
+ 'pretty_version' => '1.0.1',
+ 'version' => '1.0.1.0',
'aliases' =>
array (
),
- 'reference' => '7617a912b6c527909168f5d41d263792f171c42a',
+ 'reference' => 'f6561bf28d520154e4b0ec72be95418abe6d9363',
),
'psr/log' =>
array (
diff --git a/plugins/af_readability/vendor/composer/platform_check.php b/plugins/af_readability/vendor/composer/platform_check.php
index f79e574be..580fa9609 100644
--- a/plugins/af_readability/vendor/composer/platform_check.php
+++ b/plugins/af_readability/vendor/composer/platform_check.php
@@ -4,8 +4,8 @@
$issues = array();
-if (!(PHP_VERSION_ID >= 70000)) {
- $issues[] = 'Your Composer dependencies require a PHP version ">= 7.0.0". You are running ' . PHP_VERSION . '.';
+if (!(PHP_VERSION_ID >= 70400)) {
+ $issues[] = 'Your Composer dependencies require a PHP version ">= 7.4.0". You are running ' . PHP_VERSION . '.';
}
if ($issues) {