Drupal Composer packaging ignores core version constraints for profiles

Created on 28 April 2020, almost 5 years ago
Updated 3 April 2023, about 2 years ago

I'm trying to make a simple Drupal installation profile compatible with D9. The project is https://www.drupal.org/project/mandatory β†’ .
In the first step I've just added core_version_requirement to the *.info.yml file, in release 8.x-1.3:

name: Mandatory
type: profile
description: 'Build a custom site without any optional components (modules/themes)'
core: 8.x
core_version_requirement: ^8 || ^9

Then I've tried to test this by installing a D9 core:

composer create-project drupal/recommended-project:9.0.0-beta2 .
composer require drupal/mandatory

Result: while create-project worked, requiring the profile failed with multiple composer errors:

...
Using version ^1.3 for drupal/mandatory
./composer.json has been updated
Loading composer repositories with package information
Updating dependencies (including require-dev)
Your requirements could not be resolved to an installable set of packages.

  Problem 1
    - Conclusion: remove drupal/core-recommended 9.0.0-beta2
    - Conclusion: don't install drupal/core-recommended 9.0.0-beta2
    - Conclusion: don't install drupal/mandatory 1.3.0
    - Conclusion: remove doctrine/annotations v1.8.0
    - Conclusion: don't install drupal/mandatory 1.3.0|remove drupal/core 9.0.0-beta2|install drupal/core 8.0.0|install drupal/core 8.0.0-beta10|install drupal/core 8.0.0-beta11|install drupal/core 8.0.0-beta12|...

Next thing I tried was restricting core version requirements to >= 8.7.7, in the current dev release:

name: Mandatory
type: profile
description: 'Build a custom site without any optional components (modules/themes)'
core_version_requirement: '^8.7.7 || ^9'

The result was similar:

Your requirements could not be resolved to an installable set of packages.

  Problem 1
    - Conclusion: remove doctrine/annotations v1.8.0
    - Conclusion: don't install doctrine/annotations v1.8.0
    - drupal/core 8.0.0 requires doctrine/annotations 1.2.* -> satisfiable by doctrine/annotations[v1.2.0, v1.2.1, v1.2.2, v1.2.3, v1.2.4, v1.2.5, v1.2.6, v1.2.7].
    - drupal/core 8.0.0-beta10 requires doctrine/annotations 1.2.* -> satisfiable by doctrine/annotations[v1.2.0, v1.2.1, v1.2.2, v1.2.3, v1.2.4, v1.2.5, v1.2.6, v1.2.7].
    - drupal/core 8.0.0-beta11 requires doctrine/annotations 1.2.* -> satisfiable by doctrine/annotations[v1.2.0, v1.2.1, v1.2.2, v1.2.3, v1.2.4, v1.2.5, v1.2.6, v1.2.7].
...

Finally I've added a composer.json file to the project:

{
  "name": "drupal/mandatory",
  "type": "drupal-profile",
  "description": "Build a custom site without any optional components (modules/themes)",
  "license": "GPL-2.0-or-later",
  "homepage": "https://www.drupal.org/project/mandatory",
  "support": {
    "issues": "https://www.drupal.org/project/issues/mandatory",
    "source": "https://cgit.drupalcode.org/mandatory"
  },
  "require": {
    "drupal/core": "^8.7.7 || ^9"
  }
}

Result: same problem.

I've tried the dev version of Drupal 9 core, too. No success.

Now I'm stuck a bit. I have no problems installing ported modules like e.g. Pathauto or Metatag, only this installation profile. Why does Composer try to check old Drupal releases like 8.0.0 given a version constraint of "^8.7.7 || ^9"? And is the Composer template drupal/core-recommended already compatible with Drupal 9? Or did I add a stupid typo? Help appreciated, thanks a lot!

πŸ› Bug report
Status

Postponed: needs info

Version

1.0

Component

Code

Created by

πŸ‡©πŸ‡ͺGermany drubb Sindelfingen

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • πŸ‡¦πŸ‡ΊAustralia mstrelan

    Moving this to the packages.drupal.org project. Not sure if this is still an issue or not, but according to this documentation β†’ profiles are not supported on packages.drupal.org.

  • Status changed to Postponed: needs info about 2 years ago
  • πŸ‡ΊπŸ‡ΈUnited States drumm NY, US

    I’m not sure how the previous output was arrived at:

    $ composer show -a drupal/mandatory
    
    In ShowCommand.php line 300:
    
      Package "drupal/mandatory" not found, try using --available (-a) to show all available packages.

    Regardless - the above comments are generally correct, profile & distribution support is not done through packages.drupal.org. We can convert this from a distribution to a general project. When general projects have a composer.json file, that is published to packagist.org (not packages.drupal.org). composer.json should have the complete dependencies, no Drupal-specific processing of .info.yml files is done. (And since it is on Packagist.org, you can set it up as a template for composer create-project, if that is a good fit for your project.

    Please follow up with any questions and if you would like us to go ahead with converting mandatory to a general project.

Production build 0.71.5 2024