diff --git a/composer.lock b/composer.lock
index 6fe36bcbc83275a04b635d594a80275b0147317a..98de0ee7b85383c3d53e0463e77eff4f04a3c67a 100644
--- a/composer.lock
+++ b/composer.lock
@@ -456,7 +456,7 @@
             "dist": {
                 "type": "path",
                 "url": "core",
-                "reference": "fb43f60ee811f200a5db702bcfcab309b2e684f4"
+                "reference": "b092a4793dbb192acafca8b27ce6ab418214fb01"
             },
             "require": {
                 "asm89/stack-cors": "^1.1",
@@ -482,7 +482,7 @@
                 "laminas/laminas-feed": "^2.12",
                 "masterminds/html5": "^2.1",
                 "pear/archive_tar": "^1.4.9",
-                "php": ">=7.2.3",
+                "php": ">=7.3",
                 "psr/log": "^1.0",
                 "stack/builder": "^1.0",
                 "symfony-cmf/routing": "^2.1",
@@ -717,11 +717,11 @@
             "dist": {
                 "type": "path",
                 "url": "composer/Plugin/VendorHardening",
-                "reference": "d6a4c49651f381791d9667354205c8ecd331ca2d"
+                "reference": "0b015340af38f90df46923a934d0b22026134f18"
             },
             "require": {
                 "composer-plugin-api": "^1.1",
-                "php": ">=7.2.3"
+                "php": ">=7.3.0"
             },
             "type": "composer-plugin",
             "extra": {
@@ -4041,6 +4041,9 @@
                 "ext-zip": "Enabling the zip extension allows you to unzip archives",
                 "ext-zlib": "Allow gzip compression of HTTP requests"
             },
+            "bin": [
+                "bin/composer"
+            ],
             "type": "library",
             "extra": {
                 "branch-alias": {
diff --git a/composer/Plugin/Scaffold/composer.json b/composer/Plugin/Scaffold/composer.json
index 4916c73650a2e95eec6a2e02022f3d1d4a69fc37..5cbb4ad79b993ece20167d3650e64b97cab3e61f 100644
--- a/composer/Plugin/Scaffold/composer.json
+++ b/composer/Plugin/Scaffold/composer.json
@@ -7,7 +7,7 @@
   "license": "GPL-2.0-or-later",
   "require": {
     "composer-plugin-api": "^1.0.0",
-    "php": ">=7.2.3"
+    "php": ">=7.3.0"
   },
   "conflict": {
     "drupal-composer/drupal-scaffold": "*"
diff --git a/composer/Plugin/VendorHardening/composer.json b/composer/Plugin/VendorHardening/composer.json
index c6aea39869daa8a8e7a57ea85d0d02f05e7b52e2..4ed1adedd0d6cce654d049f700da01ac8a396e9e 100644
--- a/composer/Plugin/VendorHardening/composer.json
+++ b/composer/Plugin/VendorHardening/composer.json
@@ -14,7 +14,7 @@
     "class": "Drupal\\Composer\\Plugin\\VendorHardening\\VendorHardeningPlugin"
   },
   "require": {
-    "php": ">=7.2.3",
+    "php": ">=7.3.0",
     "composer-plugin-api": "^1.1"
   }
 }
diff --git a/core/INSTALL.txt b/core/INSTALL.txt
index 3cb23dd4b894eab86fd10d3f4537a77e19745ca2..8c399305b75a7ca37bc33b6651ad302d934103df 100644
--- a/core/INSTALL.txt
+++ b/core/INSTALL.txt
@@ -15,7 +15,7 @@ QUICKSTART
 ----------------------
 
 Prerequisites:
-- PHP 7.2.3 (or greater) (https://php.net).
+- PHP 7.3.0 (or greater) (https://php.net).
 
 In the instructions below, replace the version x.y.z with the specific version
 you wish to download. Example: 8.6.0.zip. You can find the latest stable version
@@ -48,8 +48,8 @@ Drupal requires:
 - A web server with PHP support, for example:
   - Apache 2.0 (or greater) (http://httpd.apache.org/).
   - Nginx 1.1 (or greater) (http://nginx.com/).
-- PHP 7.0.8 (or greater) (http://php.net/). For better security support it is
-  recommended to update to at least 7.2.17.
+- PHP 7.3.0 (or greater) (http://php.net/). For better security support it is
+  recommended to update to at least 7.3.13.
 - One of the following databases:
   - MySQL 5.5.3 (or greater) (http://www.mysql.com/).
   - MariaDB 5.5.20 (or greater) (https://mariadb.org/). MariaDB is a fully
diff --git a/core/composer.json b/core/composer.json
index 9e39dad2a3afd6211e61fe014adda8d737c0cb1b..948685415dcb56287c8cb956c1bf40f8ae57148a 100644
--- a/core/composer.json
+++ b/core/composer.json
@@ -17,7 +17,7 @@
         "ext-SPL": "*",
         "ext-tokenizer": "*",
         "ext-xml": "*",
-        "php": ">=7.2.3",
+        "php": ">=7.3",
         "symfony/class-loader": "~3.4.0",
         "symfony/console": "^4.4",
         "symfony/dependency-injection": "^4.4",
diff --git a/core/includes/bootstrap.inc b/core/includes/bootstrap.inc
index ab04ebd55c300f9b799b70fcf4046cbd2cb410af..08bee278bdb795b9024efc2dcea0919c96ca18c0 100644
--- a/core/includes/bootstrap.inc
+++ b/core/includes/bootstrap.inc
@@ -27,7 +27,7 @@
  * @todo Move this to an appropriate autoloadable class. See
  *   https://www.drupal.org/project/drupal/issues/2908079
  */
-const DRUPAL_MINIMUM_PHP = '7.2.3';
+const DRUPAL_MINIMUM_PHP = '7.3.0';
 
 /**
  * Minimum supported version of PHP.
@@ -41,7 +41,7 @@
  * @todo Move this to an appropriate autoloadable class. See
  *   https://www.drupal.org/project/drupal/issues/2908079
  */
-const DRUPAL_MINIMUM_SUPPORTED_PHP = '7.2.3';
+const DRUPAL_MINIMUM_SUPPORTED_PHP = '7.3.0';
 
 /**
  * Minimum recommended version of PHP.
diff --git a/core/install.php b/core/install.php
index 0a7ffb1a1fcd67bf6fc84defa445427434f75e74..8fae042ed9e5c145d0acec87349ece64a6022140 100644
--- a/core/install.php
+++ b/core/install.php
@@ -25,8 +25,8 @@
 // The minimum version is specified explicitly, as DRUPAL_MINIMUM_PHP is not
 // yet available. It is defined in bootstrap.inc, but it is not possible to
 // load that file yet as it would cause a fatal error on older versions of PHP.
-if (version_compare(PHP_VERSION, '7.2.3') < 0) {
-  print 'Your PHP installation is too old. Drupal requires at least PHP 7.2.3. See the <a href="https://www.drupal.org/requirements">system requirements</a> page for more information.';
+if (version_compare(PHP_VERSION, '7.3.0') < 0) {
+  print 'Your PHP installation is too old. Drupal requires at least PHP 7.3.0. See the <a href="https://www.drupal.org/requirements">system requirements</a> page for more information.';
   exit;
 }
 
diff --git a/core/lib/Drupal/Component/Annotation/composer.json b/core/lib/Drupal/Component/Annotation/composer.json
index f29ac2a7ef5ecaf3f9b7c2c0a223b24d3e40fe11..c252a2f971482fdaa686d4feda311eb847d6907a 100644
--- a/core/lib/Drupal/Component/Annotation/composer.json
+++ b/core/lib/Drupal/Component/Annotation/composer.json
@@ -5,7 +5,7 @@
   "homepage": "https://www.drupal.org/project/drupal",
   "license": "GPL-2.0-or-later",
   "require": {
-    "php": ">=7.2.3",
+    "php": ">=7.3.0",
     "doctrine/annotations": "^1.4",
     "drupal/core-file-cache": "^8.8",
     "drupal/core-plugin": "^8.8",
diff --git a/core/lib/Drupal/Component/Assertion/composer.json b/core/lib/Drupal/Component/Assertion/composer.json
index 9b7bda88117cee7effd2b336f42d06afd92618cb..661654b133620debb5e542ea2ea3855640fed024 100644
--- a/core/lib/Drupal/Component/Assertion/composer.json
+++ b/core/lib/Drupal/Component/Assertion/composer.json
@@ -5,7 +5,7 @@
   "homepage": "https://www.drupal.org/project/drupal",
   "license": "GPL-2.0-or-later",
   "require": {
-    "php": ">=7.2.3"
+    "php": ">=7.3.0"
   },
   "autoload": {
     "psr-4": {
diff --git a/core/lib/Drupal/Component/Bridge/composer.json b/core/lib/Drupal/Component/Bridge/composer.json
index 043dd0e436e3ce012a204872676cc4a83eae2895..5429b4c4cf9169c0e46ad87a984777720bad581e 100644
--- a/core/lib/Drupal/Component/Bridge/composer.json
+++ b/core/lib/Drupal/Component/Bridge/composer.json
@@ -5,7 +5,7 @@
   "homepage": "https://www.drupal.org/project/drupal",
   "license": "GPL-2.0-or-later",
   "require": {
-    "php": ">=7.2.3",
+    "php": ">=7.3.0",
     "laminas/laminas-feed": "^2.12"
   },
   "autoload": {
diff --git a/core/lib/Drupal/Component/ClassFinder/composer.json b/core/lib/Drupal/Component/ClassFinder/composer.json
index 7edefc072de97c651a34c280d5390ad333baa2e2..ac17b5f999b0e4c164102e07fa1c0e113ce9b341 100644
--- a/core/lib/Drupal/Component/ClassFinder/composer.json
+++ b/core/lib/Drupal/Component/ClassFinder/composer.json
@@ -5,7 +5,7 @@
   "homepage": "https://www.drupal.org/project/drupal",
   "license": "GPL-2.0-or-later",
   "require": {
-    "php": ">=7.2.3",
+    "php": ">=7.3.0",
     "doctrine/reflection": "^1.1"
   },
   "autoload": {
diff --git a/core/lib/Drupal/Component/Datetime/composer.json b/core/lib/Drupal/Component/Datetime/composer.json
index e05806276232743734b2b99bf885aeb7d5e65d36..b06d7433a3081c8e8be482daf6d064368cbeb148 100644
--- a/core/lib/Drupal/Component/Datetime/composer.json
+++ b/core/lib/Drupal/Component/Datetime/composer.json
@@ -5,7 +5,7 @@
   "homepage": "https://www.drupal.org/project/drupal",
   "license": "GPL-2.0-or-later",
   "require": {
-    "php": ">=7.2.3",
+    "php": ">=7.3.0",
     "drupal/core-utility": "^8.8"
   },
   "autoload": {
diff --git a/core/lib/Drupal/Component/DependencyInjection/composer.json b/core/lib/Drupal/Component/DependencyInjection/composer.json
index f0bc03e856a1d657e6bac8fc4914283fe7bd4f1a..771c5cc9ff0a575ad263ea7e09ddfc208834dddc 100644
--- a/core/lib/Drupal/Component/DependencyInjection/composer.json
+++ b/core/lib/Drupal/Component/DependencyInjection/composer.json
@@ -11,7 +11,7 @@
     "source": "https://www.drupal.org/project/drupal/git-instructions"
   },
   "require": {
-    "php": ">=7.2.3",
+    "php": ">=7.3.0",
     "symfony/dependency-injection": "^4.4"
   },
   "suggest": {
diff --git a/core/lib/Drupal/Component/Diff/composer.json b/core/lib/Drupal/Component/Diff/composer.json
index 9963231acb1a2bafd526f0037ebd1f4337d882f8..7af1986afd43010022a9e794826b7c9b43c7be36 100644
--- a/core/lib/Drupal/Component/Diff/composer.json
+++ b/core/lib/Drupal/Component/Diff/composer.json
@@ -5,7 +5,7 @@
   "homepage": "https://www.drupal.org/project/drupal",
   "license": "GPL-2.0-or-later",
   "require": {
-    "php": ">=7.2.3"
+    "php": ">=7.3.0"
   },
   "autoload": {
     "psr-4": {
diff --git a/core/lib/Drupal/Component/Discovery/composer.json b/core/lib/Drupal/Component/Discovery/composer.json
index a445df9e96385817c69c851807903405e9fa6ae7..59fe78eeceee58a8d3dd6cd9263cfa5183c52232 100644
--- a/core/lib/Drupal/Component/Discovery/composer.json
+++ b/core/lib/Drupal/Component/Discovery/composer.json
@@ -5,7 +5,7 @@
   "homepage": "https://www.drupal.org/project/drupal",
   "license": "GPL-2.0-or-later",
   "require": {
-    "php": ">=7.2.3",
+    "php": ">=7.3.0",
     "drupal/core-file-cache": "^8.8",
     "drupal/core-serialization": "^8.8"
   },
diff --git a/core/lib/Drupal/Component/EventDispatcher/composer.json b/core/lib/Drupal/Component/EventDispatcher/composer.json
index 00acc39811546c40364e4b24705d40c5ffc7a4ff..c75d3f1014571f9186e44e294cde25cfe09e8901 100644
--- a/core/lib/Drupal/Component/EventDispatcher/composer.json
+++ b/core/lib/Drupal/Component/EventDispatcher/composer.json
@@ -5,7 +5,7 @@
   "homepage": "https://www.drupal.org/project/drupal",
   "license": "GPL-2.0-or-later",
   "require": {
-    "php": ">=7.2.3",
+    "php": ">=7.3.0",
     "symfony/dependency-injection": "^4.4",
     "symfony/event-dispatcher": "^4.4"
   },
diff --git a/core/lib/Drupal/Component/FileCache/composer.json b/core/lib/Drupal/Component/FileCache/composer.json
index 77cff4b95c999ebb0c89abdb767ba6cc2825e742..68f202b57a4d0cfeffe275b8260ab73fe9bed395 100644
--- a/core/lib/Drupal/Component/FileCache/composer.json
+++ b/core/lib/Drupal/Component/FileCache/composer.json
@@ -5,7 +5,7 @@
   "homepage": "https://www.drupal.org/project/drupal",
   "license": "GPL-2.0-or-later",
   "require": {
-    "php": ">=7.2.3"
+    "php": ">=7.3.0"
   },
   "autoload": {
     "psr-4": {
diff --git a/core/lib/Drupal/Component/FileSecurity/composer.json b/core/lib/Drupal/Component/FileSecurity/composer.json
index 5f0883b8c99fcb85148dadd70d2b0012693d4bce..33a11ae6ef2ff22d0b95140bc073a98c241526cf 100644
--- a/core/lib/Drupal/Component/FileSecurity/composer.json
+++ b/core/lib/Drupal/Component/FileSecurity/composer.json
@@ -5,7 +5,7 @@
   "homepage": "https://www.drupal.org/project/drupal",
   "license": "GPL-2.0-or-later",
   "require": {
-    "php": ">=7.2.3"
+    "php": ">=7.3.0"
   },
   "autoload": {
     "psr-4": {
diff --git a/core/lib/Drupal/Component/FileSystem/composer.json b/core/lib/Drupal/Component/FileSystem/composer.json
index 7410bb68c26f7f906034db43ff75336602e969d5..41fa2050949543dc1d8540b9a15f36891fe7b4d1 100644
--- a/core/lib/Drupal/Component/FileSystem/composer.json
+++ b/core/lib/Drupal/Component/FileSystem/composer.json
@@ -5,7 +5,7 @@
   "homepage": "https://www.drupal.org/project/drupal",
   "license": "GPL-2.0-or-later",
   "require": {
-    "php": ">=7.2.3"
+    "php": ">=7.3.0"
   },
   "autoload": {
     "psr-4": {
diff --git a/core/lib/Drupal/Component/Gettext/composer.json b/core/lib/Drupal/Component/Gettext/composer.json
index c7bef47a2c3a17204dc4242f56dd31f9fe6cef5e..4c931f4fdcf22faf7d414151ef87342a43d8dbea 100644
--- a/core/lib/Drupal/Component/Gettext/composer.json
+++ b/core/lib/Drupal/Component/Gettext/composer.json
@@ -9,7 +9,7 @@
     "source": "https://www.drupal.org/project/drupal/git-instructions"
   },
   "require": {
-    "php": ">=7.2.3",
+    "php": ">=7.3.0",
     "drupal/core-utility": "^8.8"
   },
   "autoload": {
diff --git a/core/lib/Drupal/Component/Graph/composer.json b/core/lib/Drupal/Component/Graph/composer.json
index d0723692dc59a6066957100e39380a3b8b863f04..dbcc0eebb15a39d52094f8e035765d784b1631e7 100644
--- a/core/lib/Drupal/Component/Graph/composer.json
+++ b/core/lib/Drupal/Component/Graph/composer.json
@@ -5,7 +5,7 @@
   "homepage": "https://www.drupal.org/project/drupal",
   "license": "GPL-2.0-or-later",
   "require": {
-    "php": ">=7.2.3"
+    "php": ">=7.3.0"
   },
   "autoload": {
     "psr-4": {
diff --git a/core/lib/Drupal/Component/HttpFoundation/composer.json b/core/lib/Drupal/Component/HttpFoundation/composer.json
index de3768779cbb5c973bc7c74c33ae0f8ce3e25f21..0c481d6011fe3fa9ed4ca8bbe444dafb9f280cfc 100644
--- a/core/lib/Drupal/Component/HttpFoundation/composer.json
+++ b/core/lib/Drupal/Component/HttpFoundation/composer.json
@@ -5,7 +5,7 @@
   "homepage": "https://www.drupal.org/project/drupal",
   "license": "GPL-2.0-or-later",
   "require": {
-    "php": ">=7.2.3",
+    "php": ">=7.3.0",
     "symfony/http-foundation": "^4.4"
   },
   "autoload": {
diff --git a/core/lib/Drupal/Component/PhpStorage/composer.json b/core/lib/Drupal/Component/PhpStorage/composer.json
index 0e3e57830558f5f3a4983c2d377c46e1fa714686..776426ba35b68bb1849f60b7dad6a1f517ee3cdd 100644
--- a/core/lib/Drupal/Component/PhpStorage/composer.json
+++ b/core/lib/Drupal/Component/PhpStorage/composer.json
@@ -5,7 +5,7 @@
   "homepage": "https://www.drupal.org/project/drupal",
   "license": "GPL-2.0-or-later",
   "require": {
-    "php": ">=7.2.3",
+    "php": ">=7.3.0",
     "drupal/core-file-security": "^8.8"
   },
   "autoload": {
diff --git a/core/lib/Drupal/Component/Plugin/composer.json b/core/lib/Drupal/Component/Plugin/composer.json
index 407e0fbb80bdf341f42cd18deb52a214ee858951..8814a8ef3a9d0af87945c995e701b61f5eb34b10 100644
--- a/core/lib/Drupal/Component/Plugin/composer.json
+++ b/core/lib/Drupal/Component/Plugin/composer.json
@@ -5,7 +5,7 @@
   "homepage": "https://www.drupal.org/project/drupal",
   "license": "GPL-2.0-or-later",
   "require": {
-    "php": ">=7.2.3",
+    "php": ">=7.3.0",
     "symfony/validator": "^4.4"
   },
   "autoload": {
diff --git a/core/lib/Drupal/Component/ProxyBuilder/composer.json b/core/lib/Drupal/Component/ProxyBuilder/composer.json
index 8cff0ff40940dc6f3c08a6cd40af076e541918cd..9b798e9265d15cde849139fdb9d8c021342504f7 100644
--- a/core/lib/Drupal/Component/ProxyBuilder/composer.json
+++ b/core/lib/Drupal/Component/ProxyBuilder/composer.json
@@ -5,7 +5,7 @@
   "homepage": "https://www.drupal.org/project/drupal",
   "license": "GPL-2.0-or-later",
   "require": {
-    "php": ">=7.2.3"
+    "php": ">=7.3.0"
   },
   "autoload": {
     "psr-4": {
diff --git a/core/lib/Drupal/Component/Render/composer.json b/core/lib/Drupal/Component/Render/composer.json
index 4187a2f111285cdead234a9be9a9f4c00ca6bcc4..5b35fcb2a3fd4346b0a6f9460779e68951c5b153 100644
--- a/core/lib/Drupal/Component/Render/composer.json
+++ b/core/lib/Drupal/Component/Render/composer.json
@@ -5,7 +5,7 @@
   "homepage": "https://www.drupal.org/project/drupal",
   "license": "GPL-2.0-or-later",
   "require": {
-    "php": ">=7.2.3",
+    "php": ">=7.3.0",
     "drupal/core-utility": "^8.8"
   },
   "autoload": {
diff --git a/core/lib/Drupal/Component/Serialization/composer.json b/core/lib/Drupal/Component/Serialization/composer.json
index 3f5eb09eebb420268117310f68b835abc7c7a119..7b40c55ddc31d63f3405ccc4fe0a846c2f7900dd 100644
--- a/core/lib/Drupal/Component/Serialization/composer.json
+++ b/core/lib/Drupal/Component/Serialization/composer.json
@@ -5,7 +5,7 @@
   "homepage": "https://www.drupal.org/project/drupal",
   "license": "GPL-2.0-or-later",
   "require": {
-    "php": ">=7.2.3",
+    "php": ">=7.3.0",
     "symfony/yaml": "^4.4"
   },
   "autoload": {
diff --git a/core/lib/Drupal/Component/Utility/composer.json b/core/lib/Drupal/Component/Utility/composer.json
index b1e2afbe76c100971fff56b5bfcec4f11c601562..763133c4c4e2e56efc851f5ae262daa3f8446938 100644
--- a/core/lib/Drupal/Component/Utility/composer.json
+++ b/core/lib/Drupal/Component/Utility/composer.json
@@ -5,7 +5,7 @@
   "homepage": "https://www.drupal.org/project/drupal",
   "license": "GPL-2.0-or-later",
   "require": {
-    "php": ">=7.2.3",
+    "php": ">=7.3.0",
     "drupal/core-render": "^8.8"
   },
   "autoload": {
diff --git a/core/lib/Drupal/Component/Uuid/composer.json b/core/lib/Drupal/Component/Uuid/composer.json
index e8a85b95669277543bf3da38f3710cbf492101f4..0a4681e0eeba352328c31bb9ec86ca4fd0921f3c 100644
--- a/core/lib/Drupal/Component/Uuid/composer.json
+++ b/core/lib/Drupal/Component/Uuid/composer.json
@@ -9,7 +9,7 @@
     "source": "https://www.drupal.org/project/drupal/git-instructions"
   },
   "require": {
-    "php": ">=7.2.3"
+    "php": ">=7.3.0"
   },
   "autoload": {
     "psr-4": {
diff --git a/core/lib/Drupal/Component/Version/composer.json b/core/lib/Drupal/Component/Version/composer.json
index 51975e150aca0a4e8db8e35f9910a8dc9f8d0ba4..02e2814dda427e4f1824cc50c902afe9c0fe3c59 100644
--- a/core/lib/Drupal/Component/Version/composer.json
+++ b/core/lib/Drupal/Component/Version/composer.json
@@ -5,7 +5,7 @@
   "homepage": "https://www.drupal.org/project/drupal",
   "license": "GPL-2.0-or-later",
   "require": {
-    "php": ">=7.2.3"
+    "php": ">=7.3.0"
   },
   "autoload": {
     "psr-4": {
diff --git a/core/tests/Drupal/Tests/Core/Extension/ThemeExtensionListTest.php b/core/tests/Drupal/Tests/Core/Extension/ThemeExtensionListTest.php
index 5573121df70e9dabac2d0d335743f70664da3734..a4085b0f8ea74b44188f06d1baf97da1239d8f5c 100644
--- a/core/tests/Drupal/Tests/Core/Extension/ThemeExtensionListTest.php
+++ b/core/tests/Drupal/Tests/Core/Extension/ThemeExtensionListTest.php
@@ -261,5 +261,5 @@ class TestThemeEngineExtensionList extends ThemeEngineExtensionList {
 }
 
 if (!defined('DRUPAL_MINIMUM_PHP')) {
-  define('DRUPAL_MINIMUM_PHP', '7.2.3');
+  define('DRUPAL_MINIMUM_PHP', '7.3.0');
 }
diff --git a/core/tests/Drupal/Tests/Core/Extension/ThemeHandlerTest.php b/core/tests/Drupal/Tests/Core/Extension/ThemeHandlerTest.php
index 375b035345ab68559046a0964bfe8bdeb95788f2..5c65f64a9c8fffca197a87292674aa0d24b0c09b 100644
--- a/core/tests/Drupal/Tests/Core/Extension/ThemeHandlerTest.php
+++ b/core/tests/Drupal/Tests/Core/Extension/ThemeHandlerTest.php
@@ -147,5 +147,5 @@ protected function themeRegistryRebuild() {
 }
 
 if (!defined('DRUPAL_MINIMUM_PHP')) {
-  define('DRUPAL_MINIMUM_PHP', '7.2.3');
+  define('DRUPAL_MINIMUM_PHP', '7.3.0');
 }