Provide composer.json file so this can be managed via composer

Created on 24 July 2023, over 1 year ago
Updated 26 July 2023, over 1 year ago

Problem/Motivation

There are no current installation instructions. For modern Drupal builds we want to be using composer. Without a composer.json file there is no way to include this module other than manual download and installation.

Steps to reproduce

Try to install this module.

Proposed resolution

Provide a composer.json file so that developers can add this via composer.json and manage with composer going forward. i.e. add this to the "repositories" section of composer.json

        "drupal/config_ignore_uuid": {
            "type": "vcs",
            "url": "https://git.drupalcode.org/project/config_ignore_uuid.git"
        },

and then

composer require drupal/config_ignore_uuid
✨ Feature request
Status

Active

Component

Code

Created by

πŸ‡ΊπŸ‡ΈUnited States dan612 Portland, Maine

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

Comments & Activities

  • Issue created by @dan612
  • πŸ‡ΊπŸ‡ΈUnited States dan612 Portland, Maine

    While I think having a composer.json file in the project is still a good idea, you can add this to your composer.json in the repositories section to include this repo:

            "drupal/config_ignore_uuid": {
                "type": "package",
                "package": {
                    "name": "drupal/config_ignore_uuid",
                    "version": "1.0.0",
                    "type": "drupal-module",
                    "source": {
                        "type": "git",
                        "url": "https://git.drupalcode.org/project/config_ignore_uuid.git",
                        "reference": "1.0.x"
                    }
                }
            }
    
  • πŸ‡¬πŸ‡§United Kingdom jacobupal Leeds

    There does now appear to be installation instruction so fixed?

Production build 0.71.5 2024