function ComposerValidateTest::provideComposerJson
File
- 
              core/
tests/ Drupal/ BuildTests/ Composer/ ComposerValidateTest.php, line 17  
Class
- ComposerValidateTest
 - @group Composer
 
Namespace
Drupal\BuildTests\ComposerCode
public static function provideComposerJson() {
  $data = [];
  $composer_json_finder = self::getComposerJsonFinder(self::getDrupalRootStatic());
  foreach ($composer_json_finder->getIterator() as $composer_json) {
    $data[] = [
      $composer_json->getPathname(),
    ];
  }
  return $data;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.