├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── src └── link_finder.php └── test ├── README.md ├── initialize.php ├── tc_base.php └── tc_link_finder.php /.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | vendor/* 3 | test/build/* 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yarri/LinkFinder/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yarri/LinkFinder/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yarri/LinkFinder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yarri/LinkFinder/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yarri/LinkFinder/HEAD/composer.json -------------------------------------------------------------------------------- /src/link_finder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yarri/LinkFinder/HEAD/src/link_finder.php -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yarri/LinkFinder/HEAD/test/README.md -------------------------------------------------------------------------------- /test/initialize.php: -------------------------------------------------------------------------------- 1 |