- Issue created by @didierdidier
- First commit to issue fork.
Since Bartik is not supported in Drupal 11, you need to remove it and update your composer.json to ignore its dependency. Follow these steps:
Step 1: Remove Bartik theme
Run the following command to remove Bartik:
composer remove drupal/bartik
Step 2: Update composer.json
Add the following section to your composer.json to prevent Composer from requiring Bartik again:
json
"replace": {
"drupal/bartik": "*"
}
(Place this inside the root level of your composer.json file.)Step 3: Finally, update the Bricks module with all required dependencies:
composer update drupal/bricks --with-all-dependencies