function ComposerTest::testEnsurePhpConfiguredVersion

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Composer/ComposerTest.php \Drupal\Tests\Composer\ComposerTest::testEnsurePhpConfiguredVersion()
  2. 10 core/tests/Drupal/Tests/Composer/ComposerTest.php \Drupal\Tests\Composer\ComposerTest::testEnsurePhpConfiguredVersion()

Ensure that the configured php version matches the minimum php version.

Also ensure that the minimum php version in the root-level composer.json file exactly matches \Drupal::MINIMUM_PHP.

File

core/tests/Drupal/Tests/Composer/ComposerTest.php, line 36

Class

ComposerTest
@coversDefaultClass <a href="/api/drupal/composer%21Composer.php/class/Composer/11.x" title="Provides static functions for composer script events." class="local">\Drupal\Composer\Composer</a> @group Composer

Namespace

Drupal\Tests\Composer

Code

public function testEnsurePhpConfiguredVersion() : void {
    $composer_json = json_decode(file_get_contents($this->root . '/composer.json'), TRUE);
    $composer_core_json = json_decode(file_get_contents($this->root . '/core/composer.json'), TRUE);
    $this->assertEquals(\Drupal::MINIMUM_PHP, $composer_json['config']['platform']['php'], 'The \\Drupal::MINIMUM_PHP constant should always be exactly the same as the config.platform.php in the root composer.json.');
    $this->assertEquals($composer_core_json['require']['php'], '>=' . $composer_json['config']['platform']['php'], 'The config.platform.php configured version in the root composer.json file should always be exactly the same as the minimum php version configured in core/composer.json.');
}

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