Showing
- automatic_updates_extensions/tests/src/Build/ModuleUpdateTest.php 32 additions, 13 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 2 additions, 2 deletions...es_extensions/tests/src/Functional/DisplayUpdatesTest.php
- automatic_updates_extensions/tests/src/Functional/PreUpdateTest.php 2 additions, 2 deletions...updates_extensions/tests/src/Functional/PreUpdateTest.php
- automatic_updates_extensions/tests/src/Functional/StatusCheckerRunAfterUpdateTest.php 11 additions, 16 deletions.../tests/src/Functional/StatusCheckerRunAfterUpdateTest.php
- automatic_updates_extensions/tests/src/Functional/SuccessfulUpdateTest.php 12 additions, 9 deletions..._extensions/tests/src/Functional/SuccessfulUpdateTest.php
- automatic_updates_extensions/tests/src/Functional/UnsuccessfulUpdateTest.php 6 additions, 4 deletions...xtensions/tests/src/Functional/UnsuccessfulUpdateTest.php
- automatic_updates_extensions/tests/src/Functional/UpdateErrorTest.php 6 additions, 6 deletions...dates_extensions/tests/src/Functional/UpdateErrorTest.php
- automatic_updates_extensions/tests/src/Functional/UpdaterFormTestBase.php 32 additions, 5 deletions...s_extensions/tests/src/Functional/UpdaterFormTestBase.php
- automatic_updates_extensions/tests/src/Kernel/AutomaticUpdatesExtensionsKernelTestBase.php 8 additions, 4 deletions...s/src/Kernel/AutomaticUpdatesExtensionsKernelTestBase.php
- automatic_updates_extensions/tests/src/Kernel/ExtensionUpdateStageTest.php 6 additions, 3 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 4 additions, 1 deletion...tests/src/Kernel/Validator/UpdateReleaseValidatorTest.php
- automatic_updates_extensions/tests/src/Traits/FormTestTrait.php 7 additions, 2 deletions...tic_updates_extensions/tests/src/Traits/FormTestTrait.php
- composer.json 10 additions, 8 deletionscomposer.json
- config/install/automatic_updates.settings.yml 3 additions, 1 deletionconfig/install/automatic_updates.settings.yml
- config/schema/automatic_updates.schema.yml 17 additions, 4 deletionsconfig/schema/automatic_updates.schema.yml
- dictionary.txt 4 additions, 1 deletiondictionary.txt
- drupalci.yml 0 additions, 48 deletionsdrupalci.yml
... | ... | @@ -14,12 +14,13 @@ |
}, | ||
"require": { | ||
"ext-json": "*", | ||
"drupal/core": "^9.7 || ^10", | ||
"php-tuf/composer-stager": "2.0-alpha1", | ||
"composer-runtime-api": "^2.1" | ||
"php-tuf/composer-stager": "2.0-beta3", | ||
"composer-runtime-api": "^2.1", | ||
"symfony/console": "^6.2" | ||
}, | ||
"require-dev": { | ||
"colinodell/psr-testlogger": "^1.2" | ||
"colinodell/psr-testlogger": "^1.2", | ||
"symfony/config": "^6.2" | ||
}, | ||
"scripts": { | ||
"phpcbf": "scripts/phpcbf.sh", | ||
... | ... | @@ -28,19 +29,20 @@ |
"Composer\\Config::disableProcessTimeout", | ||
"scripts/phpunit.sh" | ||
], | ||
"core-convert": "Drupal\\automatic_updates\\Development\\Converter::doConvert", | ||
"core-commit": "Drupal\\automatic_updates\\Development\\Converter::makeCommit" | ||
"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. Excepts 2 arguments. 1) The core clone directory. 2) The core merge request branch.", | ||
"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"] | ||
} |
drupalci.yml
deleted
100644 → 0