I upgraded from Drupal 8 to 9. After the update, on the status page, I got the following message.
Incompatible modules
The following modules are installed, but they are incompatible with Drupal 9.0.0:
- Devel
- Devel Generate
- Entity notification
- Honeypot
- Password Policy
- Password Character Types Policy
- Password Character Type Policy
- Password Policy History
- Password Character Length Policy
- ACL CKEditor Accordion
- Migrate Grants Webservice
- XML Grants Webservice
- Sitemap
- Slick
- Slick UI
- Slick Views
- Text Resize
- Toolbar Anti-flicker
- Views Accordion
Review the suggestions for resolving this incompatibility to repair your installation, and then re-run update.php.
How do I go about resolving them?
here is my composer.json file:
{
"name": "drupal/legacy-project",
"description": "Project template for Drupal 8 projects with composer following drupal/drupal layout",
"type": "project",
"license": "GPL-2.0-or-later",
"homepage": "https://www.drupal.org/project/drupal",
"support": {
"docs": "https://www.drupal.org/docs/user_guide/en/index.html",
"chat": "https://www.drupal.org/node/314178"
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"composer/installers": "^1.2",
"drupal/admin_toolbar": "^3.0",
"drupal/bootstrap": "^3.23",
"drupal/core-composer-scaffold": "9.0.0",
"drupal/core-project-message": "9.0.0",
"drupal/core-recommended": "9.0.0",
"drupal/core-vendor-hardening": "^8.8",
"drupal/devel": "^4.1",
"drupal/devel_generate": "^4.1",
"drupal/easy_social": "^3.0",
"drupal/entity_notification": "^1.0",
"drupal/honeypot": "^2.0",
"drupal/login_security": "2.0",
"drupal/password_policy": "3.0",
"drupal/upgrade_status": "^3.9",
"drupal/webform": "^6.0",
"kint-php/kint": "^3.3"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"platform-check": false
},
"extra": {
"drupal-scaffold": {
"locations": {
"web-root": "./"
}
},
"installer-paths": {
"core": [
"type:drupal-core"
],
"libraries/{$name}": [
"type:drupal-library"
],
"modules/contrib/{$name}": [
"type:drupal-module"
],
"profiles/contrib/{$name}": [
"type:drupal-profile"
],
"themes/contrib/{$name}": [
"type:drupal-theme"
],
"drush/Commands/contrib/{$name}": [
"type:drupal-drush"
],
"modules/custom/{$name}": [
"type:drupal-custom-module"
],
"themes/custom/{$name}": [
"type:drupal-custom-theme"
]
},
"drupal-core-project-message": {
"include-keys": [
"homepage",
"support"
],
"post-create-project-cmd-message": [
"<bg=blue;fg=white> </>",
"<bg=blue;fg=white> Congratulations, you’ve installed the Drupal codebase </>",
"<bg=blue;fg=white> from the drupal/legacy-project template! </>",
"<bg=blue;fg=white> </>",
"",
"<bg=yellow;fg=black>Next steps</>:",
" * Install the site: https://www.drupal.org/docs/8/install",
" * Read the user guide: https://www.drupal.org/docs/user_guide/en/index.html",
" * Get support: https://www.drupal.org/support",
" * Get involved with the Drupal community:",
" https://www.drupal.org/getting-involved",
" * Remove the plugin that prints this message:",
" composer remove drupal/core-project-message"
]
}
},
"require-dev": {
"drupal/core-dev": "9.0.0",
"drush/drush": "^10.6"
}
}