Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

Fixes #1173: Update Drupal VM to 4.3.0 or later. #1174

Merged
merged 1 commit into from
Mar 10, 2017
Merged
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
2 changes: 1 addition & 1 deletion phing/tasks/vm.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
<copy file="${blt.root}/scripts/drupal-vm/Vagrantfile" todir="${repo.root}" verbose="true"/>

<echo>Adding geerlingguy/drupal-vm to composer dev dependencies.</echo>
<exec dir="${repo.root}" command="composer require --dev geerlingguy/drupal-vm:~4.2" logoutput="true" checkreturn="true" level="${blt.exec_level}" passthru="true"/>
<exec dir="${repo.root}" command="composer require --dev geerlingguy/drupal-vm:~4.3" logoutput="true" checkreturn="true" level="${blt.exec_level}" passthru="true"/>

<echo></echo>
<echo>BLT has created default configuration for your Drupal VM.</echo>
Expand Down
6 changes: 3 additions & 3 deletions scripts/drupal-vm/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ vagrant_synced_folders:
destination: /var/www/${project.machine_name}
type: nfs

build_composer_project: false
drupal_build_composer_project: false
# Toggling this to `true` would invoke `composer install` with the
# projects own `composer.json` successfully.
build_composer: false
drupal_build_composer: false
drupal_composer_path: false
drupal_composer_install_dir: "/var/www/${project.machine_name}"
drupal_core_path: "{{ drupal_composer_install_dir }}/docroot"
Expand All @@ -33,7 +33,7 @@ drupal_db_name: drupal

# Set this to 'false' if you don't need to install drupal (using the drupal_*
# settings below), but instead copy down a database (e.g. using drush sql-sync).
install_site: false
drupal_install_site: false

# Drupal VM automatically creates a drush alias file in your ~/.drush folder if
# this variable is 'true'.
Expand Down