diff --git a/composer.json b/composer.json index fda74349c..69765cf0c 100644 --- a/composer.json +++ b/composer.json @@ -205,7 +205,8 @@ "php-http/discovery": true, "dealerdirect/phpcodesniffer-composer-installer": true, "phpstan/extension-installer": true, - "tbachert/spi": true + "tbachert/spi": true, + "symfony/runtime": true }, "sort-packages": true, "optimize-autoloader": true @@ -247,10 +248,7 @@ "drupal/ace_editor": { "Fix profile detection for recipe-based installations ": "patches/ace_editor_no_profile.patch" }, - "drupal/layout_builder_component_attributes": { - "Fix PHP 8.4 implicit nullable deprecation in ManageComponentAttributesForm::buildForm()": "patches/layout_builder_component_attributes--implicit-nullable.patch" - }, - "drupal/tmgmt": { +"drupal/tmgmt": { "Same Job processed/checkout twice by the JobCheckoutManager": "patches/tmgmt--issue-3198609.patch" }, "neilime/php-css-lint": { diff --git a/recipes/dxpr_cms_content_type_base/composer.json b/recipes/dxpr_cms_content_type_base/composer.json index 8c7c0e7ed..7a646134d 100644 --- a/recipes/dxpr_cms_content_type_base/composer.json +++ b/recipes/dxpr_cms_content_type_base/composer.json @@ -4,7 +4,7 @@ "type": "drupal-recipe", "license": ["GPL-2.0-or-later"], "require": { - "drupal/autosave_form": "^1.10", + "drupal/autosave_form": "^1.11", "drupal/bpmn_io": "^3.0", "drupal/block_classes": "^1.0", "drupal/core": "^10.4 || ^11", diff --git a/web/profiles/dxpr_cms_installer/src/Form/ConfigureAPIKeysForm.php b/web/profiles/dxpr_cms_installer/src/Form/ConfigureAPIKeysForm.php index c4bb9455d..2ba270181 100644 --- a/web/profiles/dxpr_cms_installer/src/Form/ConfigureAPIKeysForm.php +++ b/web/profiles/dxpr_cms_installer/src/Form/ConfigureAPIKeysForm.php @@ -221,7 +221,7 @@ public function submitForm(array &$form, FormStateInterface $form_state) { * Submit handler for the skip button. */ public function skipForm(array &$form, FormStateInterface $form_state): void { - // Do nothing -- just advance to the next install task. + // Intentionally empty: advancing to the next install task. } /**