Skip to content

Commit ff794ea

Browse files
committed
Adding repos of outdated modules to apply d9 patches
1 parent 71e7400 commit ff794ea

File tree

2 files changed

+21
-6
lines changed

2 files changed

+21
-6
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,11 @@ back:
6969
ifeq ($(INSTALL_DEV_DEPENDENCIES), TRUE)
7070
@echo "INSTALL_DEV_DEPENDENCIES=$(INSTALL_DEV_DEPENDENCIES)"
7171
@echo "Installing composer dependencies, including dev ones"
72-
$(call php, composer install --prefer-dist -o)
72+
$(call php, composer install -o)
7373
else
7474
@echo "INSTALL_DEV_DEPENDENCIES set to FALSE or missing from .env"
7575
@echo "Installing composer dependencies, without dev ones"
76-
$(call php, composer install --prefer-dist -o --no-dev)
76+
$(call php, composer install -o --no-dev)
7777
endif
7878
$(call php, composer create-required-files)
7979

composer.json

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,23 @@
1313
{
1414
"type": "composer",
1515
"url": "https://packages.drupal.org/8"
16+
},
17+
{
18+
"type": "package",
19+
"package": {
20+
"name": "drupal/lb_ux",
21+
"version": "dev-8.x-1.x",
22+
"type": "drupal-module",
23+
"source": {
24+
"url": "https://git.drupalcode.org/project/lb_ux.git",
25+
"type": "git",
26+
"reference": "8.x-1.x"
27+
}
28+
}
29+
},
30+
{
31+
"type": "vcs",
32+
"url": "https://git.drupalcode.org/project/panels_everywhere.git"
1633
}
1734
],
1835
"require": {
@@ -32,13 +49,13 @@
3249
"drupal/layout_builder_modal": "^1.1",
3350
"drupal/layout_builder_restrictions": "^2.7",
3451
"drupal/layout_library": "^1.0@beta",
35-
"drupal/lb_ux": "1.x-dev",
52+
"drupal/lb_ux": "dev-8.x-1.x",
3653
"drupal/manage_display": "^1.0@alpha",
3754
"drupal/menu_admin_per_menu": "^1.1",
3855
"drupal/menu_link_attributes": "1.x-dev",
3956
"drupal/page_manager": "^4.0.0-beta6",
4057
"drupal/panels": "^4.6",
41-
"drupal/panels_everywhere": "4.x-dev",
58+
"drupal/panels_everywhere": "dev-8.x-4.x",
4259
"drupal/paragraphs": "^1.11",
4360
"drupal/pathauto": "^1.8",
4461
"drupal/rabbit_hole": "^1.0.0-beta7",
@@ -72,8 +89,6 @@
7289
"config": {
7390
"sort-packages": true,
7491
"preferred-install": {
75-
"drupal/lb_ux": "source",
76-
"drupal/panels_everywhere": "source",
7792
"*": "dist"
7893
}
7994
},

0 commit comments

Comments
 (0)