Showing
- automatic_updates_extensions/tests/src/Build/ModuleUpdateTest.php 188 additions, 0 deletions...c_updates_extensions/tests/src/Build/ModuleUpdateTest.php
- automatic_updates_extensions/tests/src/Functional/ComposerStagerOperationFailureTest.php 98 additions, 0 deletions...sts/src/Functional/ComposerStagerOperationFailureTest.php
- automatic_updates_extensions/tests/src/Functional/DisplayUpdatesTest.php 89 additions, 0 deletions...es_extensions/tests/src/Functional/DisplayUpdatesTest.php
- automatic_updates_extensions/tests/src/Functional/PreUpdateTest.php 95 additions, 0 deletions...updates_extensions/tests/src/Functional/PreUpdateTest.php
- automatic_updates_extensions/tests/src/Functional/StatusCheckerRunAfterUpdateTest.php 96 additions, 0 deletions.../tests/src/Functional/StatusCheckerRunAfterUpdateTest.php
- automatic_updates_extensions/tests/src/Functional/SuccessfulUpdateTest.php 123 additions, 0 deletions..._extensions/tests/src/Functional/SuccessfulUpdateTest.php
- automatic_updates_extensions/tests/src/Functional/UnsuccessfulUpdateTest.php 76 additions, 0 deletions...xtensions/tests/src/Functional/UnsuccessfulUpdateTest.php
- automatic_updates_extensions/tests/src/Functional/UpdateErrorTest.php 121 additions, 0 deletions...dates_extensions/tests/src/Functional/UpdateErrorTest.php
- automatic_updates_extensions/tests/src/Functional/UpdaterFormTestBase.php 154 additions, 0 deletions...s_extensions/tests/src/Functional/UpdaterFormTestBase.php
- automatic_updates_extensions/tests/src/Kernel/AutomaticUpdatesExtensionsKernelTestBase.php 109 additions, 0 deletions...s/src/Kernel/AutomaticUpdatesExtensionsKernelTestBase.php
- automatic_updates_extensions/tests/src/Kernel/ExtensionUpdateStageTest.php 152 additions, 0 deletions..._extensions/tests/src/Kernel/ExtensionUpdateStageTest.php
- automatic_updates_extensions/tests/src/Kernel/Validator/ForbidCoreChangesValidatorTest.php 133 additions, 0 deletions...s/src/Kernel/Validator/ForbidCoreChangesValidatorTest.php
- automatic_updates_extensions/tests/src/Kernel/Validator/RequestedUpdateValidatorTest.php 114 additions, 0 deletions...sts/src/Kernel/Validator/RequestedUpdateValidatorTest.php
- automatic_updates_extensions/tests/src/Kernel/Validator/UpdateReleaseValidatorTest.php 91 additions, 0 deletions...tests/src/Kernel/Validator/UpdateReleaseValidatorTest.php
- automatic_updates_extensions/tests/src/Traits/FormTestTrait.php 54 additions, 0 deletions...tic_updates_extensions/tests/src/Traits/FormTestTrait.php
- automatic_updates_extensions/tests/themes/automatic_updates_extensions_test_theme/automatic_updates_extensions_test_theme.info.yml 11 additions, 0 deletions...st_theme/automatic_updates_extensions_test_theme.info.yml
- composer.json 46 additions, 26 deletionscomposer.json
- config/install/automatic_updates.settings.yml 5 additions, 0 deletionsconfig/install/automatic_updates.settings.yml
- config/schema/automatic_updates.schema.yml 29 additions, 0 deletionsconfig/schema/automatic_updates.schema.yml
- css/update-status.css 8 additions, 0 deletionscss/update-status.css
{ | ||
"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": "*", | ||
"php-tuf/composer-stager": "0.2.1" | ||
}, | ||
"config": { | ||
"platform": { | ||
"php": "7.3.0" | ||
} | ||
}, | ||
"repositories": [ | ||
{ | ||
"type": "vcs", | ||
"url": "https://github.com/php-tuf/composer-stager" | ||
} | ||
] | ||
"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": "*", | ||
"php-tuf/composer-stager": "2.0-beta3", | ||
"composer-runtime-api": "^2.1", | ||
"symfony/console": "^6.2" | ||
}, | ||
"require-dev": { | ||
"colinodell/psr-testlogger": "^1.2", | ||
"symfony/config": "^6.2" | ||
}, | ||
"scripts": { | ||
"phpcbf": "scripts/phpcbf.sh", | ||
"phpcs": "scripts/phpcs.sh", | ||
"test": [ | ||
"Composer\\Config::disableProcessTimeout", | ||
"scripts/phpunit.sh" | ||
], | ||
"core-convert": "Drupal\\automatic_updates\\Development\\ConverterCommand", | ||
"core-commit": "Drupal\\automatic_updates\\Development\\ConverterCommand::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. For arguments and options see \\Drupal\\automatic_updates\\Development\\ConverterCommand::configure().", | ||
"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" | ||
} | ||
}, | ||
"bin": ["auto-update"] | ||
} |
config/schema/automatic_updates.schema.yml
0 → 100644
This diff is collapsed.
css/update-status.css
0 → 100644