Skip to content

Commit

Permalink
Merge remote-tracking branch 'original/main' into feature/support-dru…
Browse files Browse the repository at this point in the history
…pal11
  • Loading branch information
omarlopesino committed Dec 10, 2024
2 parents 6bbefc3 + 35ecfe7 commit f1c9f66
Show file tree
Hide file tree
Showing 10 changed files with 25 additions and 185 deletions.
10 changes: 7 additions & 3 deletions aljibe-kickstart/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,11 @@
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"phpro/grumphp": true,
"metadrop/drupal-boilerplate-assistant": true,
"metadrop/backstopjs-addons": true,
"liborm85/composer-vendor-cleaner": true,
"metadrop/composer-comments": true,
"php-http/discovery": true,
"tbachert/spi": true,
"liborm85/composer-vendor-cleaner": true,
"metadrop/backstopjs-addons": true,
"mxr576/ddqg-composer-audit": true
}
},
Expand All @@ -75,6 +74,11 @@
"web/profiles/custom/{$name}": ["type:drupal-custom-profile"],
"web/themes/custom/{$name}": ["type:drupal-custom-theme"]
},
"dev-files": {
"bin": [
"composer"
]
},
"composer-exit-on-patch-failure": true,
"enable-patching": true
}
Expand Down
1 change: 1 addition & 0 deletions aljibe-kickstart/docroot
1 change: 1 addition & 0 deletions aljibe-kickstart/public_html
3 changes: 2 additions & 1 deletion aljibe-kickstart/tests/behat/local/behat.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
default:
autoload:
"": "%paths.base%/bootstrap/"
- '%paths.base%/bootstrap/'
- '%paths.base%/../common/boostrap/'
formatters:
pretty:
verbose: false
Expand Down
174 changes: 0 additions & 174 deletions aljibe-kickstart/web/sites/default/services.yml

This file was deleted.

4 changes: 3 additions & 1 deletion aljibe.yaml.example
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#####
#ddev-generated
##
## Aljibe config file
##
Expand Down Expand Up @@ -32,7 +33,8 @@ hooks:
pre_setup: []
post_setup: []
pre_site_install: []
post_site_install: []
post_site_install:
- drush @${SITE_ALIAS} uli
pre_site_install_config: []
post_site_install_config: []
pre_site_install_db: []
Expand Down
5 changes: 4 additions & 1 deletion commands/host/setup
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ handle_options() {
while [ $# -gt 0 ]; do
case $1 in
-a | --all)
mapfile -t SITES < <(drush site:alias --fields=name --format=list --filter=.local | sed 's/@//' | sed 's/.local//')
SITES=all
shift
;;
-h | --help)
Expand Down Expand Up @@ -128,6 +128,9 @@ fi

# Try to install sites if not --no-install is given
if [ "$NO_INSTALL" -eq 0 ]; then
if [ "$SITES" == "all" ]; then
mapfile -t SITES < <(ddev drush site:alias --fields=name --format=list --filter=.local | sed 's/@//' | sed 's/.local//')
fi
for SITE in "${SITES[@]}"; do
echo
echo -e "\033[32mInstalling site: ${SITE} \033[0m\n"
Expand Down
4 changes: 4 additions & 0 deletions config.aljibe.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#ddev-generated
# Custom config to alter composer executable in case Drupal is defining a custom version.
# See https://github.com/ddev/ddev/issues/6602 for more details.
hooks:
4 changes: 3 additions & 1 deletion install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ project_files:
- aljibe-kickstart
- aljibe.yaml.example
- site-profiles
- web-build
- config.aljibe.yaml

ddev_version_constraint: '>= v1.23.5'

post_install_actions:
- ./scripts/install-dependencies.sh
Expand Down
4 changes: 0 additions & 4 deletions web-build/Dockerfile

This file was deleted.

0 comments on commit f1c9f66

Please sign in to comment.