-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Drupal 11 #159
base: develop
Are you sure you want to change the base?
Drupal 11 #159
Changes from 5 commits
04bf524
53df6d9
1d44a84
1122b86
41d4441
21d194d
b6d1ed9
b68d912
0b19529
db04ad0
6030316
94217af
7518d5d
d34a546
2887615
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,22 +18,21 @@ | |
"require": { | ||
"composer/installers": "^2.0", | ||
"drupal/admin_toolbar": "^3", | ||
"drupal/config_ignore": "2.x-dev", | ||
"drupal/config_split": "^1", | ||
"drupal/core-composer-scaffold": "^10", | ||
"drupal/core-recommended": "^10", | ||
"drupal/config_ignore": "^3", | ||
"drupal/config_split": "^2", | ||
"drupal/core-composer-scaffold": "^11", | ||
"drupal/core-recommended": "^11", | ||
"drupal/devel": "^5", | ||
"drupal/workbench": "^1", | ||
"drupal/workbench_tabs": "^1", | ||
"drush/drush": ">=11" | ||
"drupal/workbench": "^1.5", | ||
"drupal/workbench_tabs": "^1.8", | ||
"drush/drush": "^13" | ||
}, | ||
"require-dev": { | ||
"behat/behat": "^3.12", | ||
"behat/mink-goutte-driver": "^2.0", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It sounds like we don't need this anymore. Is this correct? Drupal already has https://packagist.org/packages/behat/mink-browserkit-driver as a requirement. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hmm. Maybe there's more to do here:
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fixed by updating palantirnet/the-build@02cd8ee |
||
"dmore/behat-chrome-extension": "^1.4", | ||
"drupal/core-dev": "^10", | ||
"drupal/drupal-extension": "^5@alpha", | ||
"palantirnet/the-build": "^4@beta" | ||
"drupal/core-dev": "^11", | ||
"drupal/drupal-extension": "^5", | ||
"palantirnet/the-build": "^4" | ||
}, | ||
"suggest": { | ||
"acquia/memcache-settings": "If your acquia project uses Cloud Platform (and not Cloud Next), add this package and update acquia settings file based on: https://docs.acquia.com/cloud-platform/performance/memcached/enable/#configuration-for-drupal-9-or-later .", | ||
|
@@ -47,7 +46,7 @@ | |
"conflict": { | ||
"drupal/drupal": "*" | ||
}, | ||
"minimum-stability": "stable", | ||
"minimum-stability": "dev", | ||
"prefer-stable": true, | ||
"config": { | ||
"allow-plugins": { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@byrond The only question I have is how this is set. In another project I ran
ddev debug migrate-database mysql:8.0
and I got the database setup likeThis as is worked and I build a D11 site so I guess this is fine. Just wanted to note the difference I saw.