Skip to content
Snippets Groups Projects
Commit a427796b authored by Ted Bowman's avatar Ted Bowman
Browse files

Contrib: for core version spacing -...

Contrib: for core version spacing - project/automatic_updates@f6b7ba06
parent 6f303049
No related branches found
No related tags found
No related merge requests found
......@@ -67,6 +67,7 @@ final class ComposerPluginsValidator implements EventSubscriberInterface {
'cweagans/composer-patches' => '^1.7.3',
// @see \Drupal\package_manager\PathExcluder\VendorHardeningExcluder
'drupal/core-vendor-hardening' => '*',
'php-http/discovery' => '*',
// cSpell:enable
];
......
......@@ -316,7 +316,6 @@ protected function createTestProject(string $template): void {
// of Drupal core.
$info_files = [
'core/modules/package_manager/package_manager.info.yml',
'core/modules/auto_updates/auto_updates.info.yml',
];
foreach ($info_files as $path) {
$path = $this->getWebRoot() . $path;
......@@ -417,6 +416,7 @@ protected function createVendorRepository(): array {
'reference' => $reference,
],
'autoload' => $package_info['autoload'] ?? [],
'provide' => $package_info['provide'] ?? [],
];
// These polyfills are dependencies of some packages, but for reasons we
// don't understand, they are not installed in code bases built on PHP
......@@ -684,4 +684,15 @@ protected function getPackageManagerTestApiResponse(string $url, array $query_da
return json_decode($file_contents, TRUE, flags: JSON_THROW_ON_ERROR);
}
/**
* {@inheritdoc}
*/
public function copyCodebase(\Iterator $iterator = NULL, $working_dir = NULL) {
parent::copyCodebase($iterator, $working_dir);
// Ensure that we will install Drupal 9.8.0 (a fake version that should
// never exist in real life) initially.
$this->setUpstreamCoreVersion('9.8.0');
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment