Code Owners allows you to parse code owners files and apply the outcome to all kinds of different result sets ranging from code coverage to static analysis results.
Code Owners files are supported by Github, Gitlab and Bitbucket.
Use Composer for installation:
composer require timoschinkel/codeowners
<?php
use CodeOwners\Parser;
use CodeOwners\PatternMatcher;
try {
$patterns = (new Parser())->parse($filename);
$pattern = (new PatternMatcher(...$patterns))->match($filename);
} catch (\CodeOwners\Exception\UnableToParseException $exception) {
// unable to read or parse file
} catch (\CodeOwners\Exception\NoMatchFoundException $exception) {
// no match found
}
Currently the library does not handle spaces in file paths.