├── .editorconfig ├── .github └── FUNDING.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src ├── IgnoreWords.php └── KeywordComparator.php └── tests ├── ArrayTest.php ├── ContainsWord.php ├── ExampleTest.php ├── InUrlPathTest.php ├── MatchesWordTest.php └── SimilarWordTest.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spekulatius/keyword-merge/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spekulatius/keyword-merge/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spekulatius/keyword-merge/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spekulatius/keyword-merge/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spekulatius/keyword-merge/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spekulatius/keyword-merge/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spekulatius/keyword-merge/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spekulatius/keyword-merge/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/IgnoreWords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spekulatius/keyword-merge/HEAD/src/IgnoreWords.php -------------------------------------------------------------------------------- /src/KeywordComparator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spekulatius/keyword-merge/HEAD/src/KeywordComparator.php -------------------------------------------------------------------------------- /tests/ArrayTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spekulatius/keyword-merge/HEAD/tests/ArrayTest.php -------------------------------------------------------------------------------- /tests/ContainsWord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spekulatius/keyword-merge/HEAD/tests/ContainsWord.php -------------------------------------------------------------------------------- /tests/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spekulatius/keyword-merge/HEAD/tests/ExampleTest.php -------------------------------------------------------------------------------- /tests/InUrlPathTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spekulatius/keyword-merge/HEAD/tests/InUrlPathTest.php -------------------------------------------------------------------------------- /tests/MatchesWordTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spekulatius/keyword-merge/HEAD/tests/MatchesWordTest.php -------------------------------------------------------------------------------- /tests/SimilarWordTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spekulatius/keyword-merge/HEAD/tests/SimilarWordTest.php --------------------------------------------------------------------------------