Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion recipes/dxpr_cms_content_type_base/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
}

/**
Expand Down