function DependencyVersionTestHooks::systemInfoAlter

Implements hook_system_info_alter().

File

core/modules/system/tests/modules/dependency_version_test/src/Hook/DependencyVersionTestHooks.php, line 18

Class

DependencyVersionTestHooks
Hook implementations for dependency_version_test.

Namespace

Drupal\dependency_version_test\Hook

Code

public function systemInfoAlter(&$info, Extension $file, $type) {
    // Simulate that the core version for Views module contains the string '8.x'.
    if ($file->getName() == 'views') {
        $info['version'] = '9.8.x-dev';
    }
    // Make the test_module require Views 9.2, which should be compatible with
    // core version 9.8.x-dev from above.
    if ($file->getName() == 'test_module') {
        $info['dependencies'] = [
            'drupal:views (>=9.2)',
        ];
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.