mixed[]|null
public function getComposerInformation(string $identifier) : ?array { $composerFileContent = $this->getFileContent('composer.json', $identifier); if (!$composerFileContent) { return null; } return json_decode($composerFileContent, true); }