Drupal Core Dependencies Version Flexibility

:::caution This document is no longer actively maintained. The information it contains may be outdated. :::

To update the version of Drupal being used on your site independently of YMCA Website Services, see the official Drupal documentation: Updating Drupal Core via Composer.

Important: The openy/composer.json file may set Drupal core version constraints. Always review these constraints before updating Drupal core. These constraints define the compatible Drupal core versions for the YMCA Website Services distribution.

Working with Drupal Core Versions (Example: Drupal 9)

In the February 2021 release, YMCA Website Services tagged Drupal core versions 9.0.x and 9.1.x as allowed dependencies.

Composer, by default, installs the latest stable version that satisfies the defined constraints. Therefore, executing the following command:

composer create-project YCloudYUSA/yusaopeny-project:dev-9.2.x-development OPENY --no-interaction

will typically install YMCA Website Services with the latest stable 9.1.x Drupal core version (subject to the constraints in composer.json).

Pinning to a Specific Drupal Core Version

If you need to stay on a specific Drupal 9.0.x stable core version (e.g., for compatibility reasons), use the following commands:

composer create-project YCloudYUSA/yusaopeny-project:dev-9.2.x-development OPENY --no-interaction
cd OPENY
composer require drupal/core:~9.0.7

In this example, 9.0.7 represents the specific Drupal core version you want to use for your YMCA Website Services instance. Replace this with your desired version number.

Module Version Constraints

Refer to Composer-version-constraints-for-Open-Y for information about module version constraints within the Open Y distribution. This document provides guidance on how module versions are managed and constrained within the YMCA Website Services ecosystem.

Last modified March 11, 2025: fix: markdown ai typo (7c7c61db)