You are here

public function Fixtures::projectRoot in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Composer/Plugin/Scaffold/Fixtures.php \Drupal\Tests\Composer\Plugin\Scaffold\Fixtures::projectRoot()
  2. 10 core/tests/Drupal/Tests/Composer/Plugin/Scaffold/Fixtures.php \Drupal\Tests\Composer\Plugin\Scaffold\Fixtures::projectRoot()

Gets the path to Scaffold component.

Used to inject the component into composer.json files.

Return value

string Path to the root of this project.

File

core/tests/Drupal/Tests/Composer/Plugin/Scaffold/Fixtures.php, line 95

Class

Fixtures
Convenience class for creating fixtures.

Namespace

Drupal\Tests\Composer\Plugin\Scaffold

Code

public function projectRoot() {
  return realpath(__DIR__) . '/../../../../../../../composer/Plugin/Scaffold';
}