Skip to content

LeSuisse/babelfish

Repository files navigation

Babelfish Latest Stable Version Build Status Type Coverage

Babelfish is a file programming language detector based on github/linguist and src-d/enry.

Examples

$source_file = new ContentFile('Babelfish.php', \file_get_contents(__DIR__ . '/src/Babelfish/Babelfish.php'));
$language = Babelfish::getWithDefaultStrategies()->getLanguage($source_file);
if ($language !== null) {
    echo 'Language detected: ' . $language->getName();
}

How Babelfish works?

The language is determined by using an ordered set of strategies. Each strategy will either identify the precise language or reduce the number of likely languages for the next strategy. The default set of strategies is:

See also How Linguist works.

About

A file programming language detector

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages