Skip to content
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

feat: config split-configuration and export its configs #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
1 change: 1 addition & 0 deletions .lando/env
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ DB_DB=drupal9
DB_USER=drupal9
DB_PASS=drupal9
DB_HOST=database
NODE_ENV=prod
25 changes: 24 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,33 @@
],
"require": {
"composer/installers": "^1.9",
"cweagans/composer-patches": "^1.7",
"drupal/admin_toolbar": "^3.0.0",
"drupal/config_split": "^2.0.0",
"drupal/blocktabs": "^1.0@beta",
"drupal/config_split": "^1.7.0",
"drupal/content_moderation_notifications": "^3.3",
"drupal/core-composer-scaffold": "^9.2",
"drupal/core-project-message": "^9.2",
"drupal/core-recommended": "^9.2",
"drupal/devel": "^4.1",
"drupal/dynamic_layouts": "^1.5",
"drupal/environment_indicator": "^4.0.0",
"drupal/imageapi_optimize": "^4.0.0",
"drupal/imageapi_optimize_binaries": "^1.0@alpha",
"drupal/fivestar": "^1.0@alpha",
"drupal/mailsystem": "^4.3",
"drupal/media_library_media_modify": "^1.0@beta",
"drupal/paragraphs": "^1.12",
"drupal/pathauto": "^1.8",
"drupal/search_api": "^1.20",
"drupal/search_api_solr": "^4.2",
"drupal/slick": "^2.4",
"drupal/slick_views": "^2.5",
"drupal/swiftmailer": "^2.0",
"drupal/tvi": "^1.0@RC",
"drupal/views_infinite_scroll": "^1.9",
"drupal/views_slideshow": "^4.8",
"drupal/webform": "^6.0",
"drush/drush": "^10.0.0"
},
"conflict": {
Expand All @@ -37,6 +54,12 @@
"sort-packages": true
},
"extra": {
"enable-patching": true,
"patches": {
"drupal/core": {
"Allow field types extending entity_reference to use field widgets extending media_library": "https://www.drupal.org/files/issues/2021-10-26/3173770-14.patch"
}
},
"drupal-scaffold": {
"locations": {
"web-root": "web/"
Expand Down
Loading