Skip to content
Snippets Groups Projects
Forked from project / automatic_updates
121 commits behind the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
This project manages its dependencies using Composer. Learn more
composer.json 1.83 KiB
{
    "name": "drupal/automatic_updates",
    "type": "drupal-module",
    "description": "Drupal Automatic Updates",
    "keywords": [
        "Drupal"
    ],
    "license": "GPL-2.0-or-later",
    "homepage": "https://www.drupal.org/project/automatic_updates",
    "minimum-stability": "dev",
    "support": {
        "issues": "https://www.drupal.org/project/issues/automatic_updates",
        "source": "http://cgit.drupalcode.org/automatic_updates"
    },
    "require": {
        "ext-json": "*",
        "drupal/core": "^9.7 || ^10",
        "php-tuf/composer-stager": "2.0-alpha1",
        "composer-runtime-api": "^2.1"
    },
    "require-dev": {
        "colinodell/psr-testlogger": "^1.2",
        "drush/drush": "^11"
    },
    "scripts": {
        "phpcbf": "scripts/phpcbf.sh",
        "phpcs": "scripts/phpcs.sh",
        "test": [
            "Composer\\Config::disableProcessTimeout",
            "scripts/phpunit.sh"
        ],
        "core-convert": "Drupal\\automatic_updates\\Development\\Converter::doConvert",
        "core-commit": "Drupal\\automatic_updates\\Development\\Converter::makeCommit"
    },
    "scripts-descriptions": {
        "phpcbf": "Automatically fixes standards violations where possible.",
        "phpcs": "Checks code for standards compliance.",
        "test": "Runs PHPUnit tests.",
        "core-convert": "Converts this module to a core merge request. Excepts 2 arguments. 1) The core clone directory. 2) The core merge request branch.",
        "core-commit": "Converts this module to a core merge request. Excepts 1 arguments. The core clone directory."
    },
    "autoload": {
        "psr-4": {
            "Drupal\\automatic_updates\\Development\\": "scripts/src"
        }
    },
    "extra": {
        "drush": {
            "services": {
                "drush.services.yml": "^11"
            }
        }
    }
}