Skip to content
Open
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [1.4.0]

- Drupal 11 compatibility

## [1.3.0]

- Handled webform categories now being an array.
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
],
"require": {
"drupal/webform": "^6",
"drush/drush": "^11 || ^12",
"drush/drush": "^11 || ^12 || ^13",
"symfony/options-resolver": "^5.4 || ^6.0"
},
"require-dev": {
Expand Down
2 changes: 1 addition & 1 deletion os2forms_sync.info.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: OS2Forms sync
package: OS2Forms

type: module
core_version_requirement: ^9 || ^10
core_version_requirement: ^10 || ^11

dependencies:
- drupal:os2forms
Expand Down
2 changes: 1 addition & 1 deletion src/Form/SettingsForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ final class SettingsForm extends FormBase {
*
* @var \Drupal\os2forms_sync\Helper\Settings
*/
private Settings $settings;
protected Settings $settings;

/**
* Constructor.
Expand Down
Loading