Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. Runtime.php

function Runtime::getExtensionVersion

File

vendor/composer/composer/src/Composer/Platform/Runtime.php, line 84

Class

Runtime

Namespace

Composer\Platform

Code

public function getExtensionVersion(string $extension) : string {
    $version = phpversion($extension);
    if ($version === false) {
        $version = '0';
    }
    return $version;
}
RSS feed
Powered by Drupal