├── .gitignore ├── .scrutinizer.yml ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src └── Finder.php └── test └── FinderTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rap2hpoutre/similar-text-finder/HEAD/.gitignore -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rap2hpoutre/similar-text-finder/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rap2hpoutre/similar-text-finder/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rap2hpoutre/similar-text-finder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rap2hpoutre/similar-text-finder/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rap2hpoutre/similar-text-finder/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rap2hpoutre/similar-text-finder/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Finder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rap2hpoutre/similar-text-finder/HEAD/src/Finder.php -------------------------------------------------------------------------------- /test/FinderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rap2hpoutre/similar-text-finder/HEAD/test/FinderTest.php --------------------------------------------------------------------------------