Skip to content

Commit

Permalink
The project will also be maintained in 2018
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickschur committed Jan 19, 2018
1 parent a7222cf commit 1b1b165
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2016-2017 Patrick Schur
Copyright (c) 2016-2018 Patrick Schur

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# language-detection
| Build Status | Code Coverage | Version | Total Downloads | Maintenance | Minimum PHP Version | License |
| :---: | :---: | :---: | :---: | :---: | :---: | :---: |
| [![Build Status](https://travis-ci.org/patrickschur/language-detection.svg?branch=master)](https://travis-ci.org/patrickschur/language-detection) | [![codecov](https://codecov.io/gh/patrickschur/language-detection/branch/master/graph/badge.svg)](https://codecov.io/gh/patrickschur/language-detection) | [![Version](https://img.shields.io/packagist/v/patrickschur/language-detection.svg?style=flat-square)](https://packagist.org/packages/patrickschur/language-detection) | [![Total Downloads](https://img.shields.io/packagist/dt/patrickschur/language-detection.svg?style=flat-square)](https://packagist.org/packages/patrickschur/language-detection) | [![Maintenance](https://img.shields.io/maintenance/yes/2017.svg?style=flat-square)](https://github.com/patrickschur/language-detection) | [![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%207.0-4AC51C.svg?style=flat-square)](http://php.net/) | [![License](https://img.shields.io/packagist/l/patrickschur/language-detection.svg?style=flat-square)](https://opensource.org/licenses/MIT) |
| [![Build Status](https://travis-ci.org/patrickschur/language-detection.svg?branch=master)](https://travis-ci.org/patrickschur/language-detection) | [![codecov](https://codecov.io/gh/patrickschur/language-detection/branch/master/graph/badge.svg)](https://codecov.io/gh/patrickschur/language-detection) | [![Version](https://img.shields.io/packagist/v/patrickschur/language-detection.svg?style=flat-square)](https://packagist.org/packages/patrickschur/language-detection) | [![Total Downloads](https://img.shields.io/packagist/dt/patrickschur/language-detection.svg?style=flat-square)](https://packagist.org/packages/patrickschur/language-detection) | [![Maintenance](https://img.shields.io/maintenance/yes/2018.svg?style=flat-square)](https://github.com/patrickschur/language-detection) | [![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%207.0-4AC51C.svg?style=flat-square)](http://php.net/) | [![License](https://img.shields.io/packagist/l/patrickschur/language-detection.svg?style=flat-square)](https://opensource.org/licenses/MIT) |

This library can detect the language of a given text string.
It can parse given training text in many different idioms into a sequence of [N-grams](https://en.wikipedia.org/wiki/N-gram) and builds a database file in JSON format to be used in the detection phase.
Expand Down
2 changes: 1 addition & 1 deletion src/LanguageDetection/Language.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
/**
* Class Language
*
* @copyright 2016-2017 Patrick Schur
* @copyright 2016-2018 Patrick Schur
* @license https://opensource.org/licenses/mit-license.html MIT
* @author Patrick Schur <[email protected]>
* @package LanguageDetection
Expand Down
2 changes: 1 addition & 1 deletion src/LanguageDetection/LanguageResult.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
/**
* Class LanguageResult
*
* @copyright 2016-2017 Patrick Schur
* @copyright 2016-2018 Patrick Schur
* @license https://opensource.org/licenses/mit-license.html MIT
* @author Patrick Schur <[email protected]>
* @package LanguageDetection
Expand Down
2 changes: 1 addition & 1 deletion src/LanguageDetection/NgramParser.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
/**
* Class NgramParser
*
* @copyright 2016-2017 Patrick Schur
* @copyright 2016-2018 Patrick Schur
* @license https://opensource.org/licenses/mit-license.html MIT
* @author Patrick Schur <[email protected]>
* @package LanguageDetection
Expand Down
2 changes: 1 addition & 1 deletion src/LanguageDetection/Tokenizer/TokenizerInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
/**
* Interface TokenizerInterface
*
* @copyright 2016-2017 Patrick Schur
* @copyright 2016-2018 Patrick Schur
* @license https://opensource.org/licenses/mit-license.html MIT
* @author Patrick Schur <[email protected]>
* @package LanguageDetection
Expand Down
2 changes: 1 addition & 1 deletion src/LanguageDetection/Tokenizer/WhitespaceTokenizer.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
/**
* Class WhitespaceTokenizer
*
* @copyright 2016-2017 Patrick Schur
* @copyright 2016-2018 Patrick Schur
* @license https://opensource.org/licenses/mit-license.html MIT
* @author Patrick Schur <[email protected]>
* @package LanguageDetection
Expand Down
2 changes: 1 addition & 1 deletion src/LanguageDetection/Trainer.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
/**
* Class Trainer
*
* @copyright 2016-2017 Patrick Schur
* @copyright 2016-2018 Patrick Schur
* @license https://opensource.org/licenses/mit-license.html MIT
* @author Patrick Schur <[email protected]>
* @package LanguageDetection
Expand Down
2 changes: 1 addition & 1 deletion tests/LanguageResultTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
/**
* Class LanguageTest
*
* @copyright 2016-2017 Patrick Schur
* @copyright 2016-2018 Patrick Schur
* @license https://opensource.org/licenses/mit-license.html MIT
* @author Patrick Schur <[email protected]>
* @package LanguageDetection\Tests
Expand Down
2 changes: 1 addition & 1 deletion tests/LanguageTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/**
* Class LanguageTest
*
* @copyright 2016-2017 Patrick Schur
* @copyright 2016-2018 Patrick Schur
* @license https://opensource.org/licenses/mit-license.html MIT
* @author Patrick Schur <[email protected]>
* @package LanguageDetection\Tests
Expand Down
2 changes: 1 addition & 1 deletion tests/TrainerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
/**
* Class TrainerTest
*
* @copyright 2016-2017 Patrick Schur
* @copyright 2016-2018 Patrick Schur
* @license https://opensource.org/licenses/mit-license.html MIT
* @author Patrick Schur <[email protected]>
* @package LanguageDetection\Tests
Expand Down

0 comments on commit 1b1b165

Please sign in to comment.