├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src └── Misd │ └── Linkify │ ├── Linkify.php │ └── LinkifyInterface.php └── tests ├── Misd └── Linkify │ └── Test │ ├── CallbackTest.php │ ├── LinkifyTest.php │ ├── ProcessEmailsTest.php │ ├── ProcessTest.php │ └── ProcessUrlsTest.php ├── bootstrap.php └── data ├── callback.json ├── email-options.json ├── email.json ├── ignore-options.json ├── ignore.json ├── url-options.json └── url.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misd-service-development/php-linkify/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misd-service-development/php-linkify/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misd-service-development/php-linkify/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misd-service-development/php-linkify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misd-service-development/php-linkify/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misd-service-development/php-linkify/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misd-service-development/php-linkify/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Misd/Linkify/Linkify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misd-service-development/php-linkify/HEAD/src/Misd/Linkify/Linkify.php -------------------------------------------------------------------------------- /src/Misd/Linkify/LinkifyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misd-service-development/php-linkify/HEAD/src/Misd/Linkify/LinkifyInterface.php -------------------------------------------------------------------------------- /tests/Misd/Linkify/Test/CallbackTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misd-service-development/php-linkify/HEAD/tests/Misd/Linkify/Test/CallbackTest.php -------------------------------------------------------------------------------- /tests/Misd/Linkify/Test/LinkifyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misd-service-development/php-linkify/HEAD/tests/Misd/Linkify/Test/LinkifyTest.php -------------------------------------------------------------------------------- /tests/Misd/Linkify/Test/ProcessEmailsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misd-service-development/php-linkify/HEAD/tests/Misd/Linkify/Test/ProcessEmailsTest.php -------------------------------------------------------------------------------- /tests/Misd/Linkify/Test/ProcessTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misd-service-development/php-linkify/HEAD/tests/Misd/Linkify/Test/ProcessTest.php -------------------------------------------------------------------------------- /tests/Misd/Linkify/Test/ProcessUrlsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misd-service-development/php-linkify/HEAD/tests/Misd/Linkify/Test/ProcessUrlsTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misd-service-development/php-linkify/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/data/callback.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misd-service-development/php-linkify/HEAD/tests/data/callback.json -------------------------------------------------------------------------------- /tests/data/email-options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misd-service-development/php-linkify/HEAD/tests/data/email-options.json -------------------------------------------------------------------------------- /tests/data/email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misd-service-development/php-linkify/HEAD/tests/data/email.json -------------------------------------------------------------------------------- /tests/data/ignore-options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misd-service-development/php-linkify/HEAD/tests/data/ignore-options.json -------------------------------------------------------------------------------- /tests/data/ignore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misd-service-development/php-linkify/HEAD/tests/data/ignore.json -------------------------------------------------------------------------------- /tests/data/url-options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misd-service-development/php-linkify/HEAD/tests/data/url-options.json -------------------------------------------------------------------------------- /tests/data/url.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misd-service-development/php-linkify/HEAD/tests/data/url.json --------------------------------------------------------------------------------