├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── resources └── lang │ └── en │ └── messages.php └── src ├── EmailCheckerManager.php ├── EmailCheckerServiceProvider.php ├── Facades └── EmailChecker.php └── Rules └── EmailExist.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintnaingwin/email-checker/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintnaingwin/email-checker/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintnaingwin/email-checker/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintnaingwin/email-checker/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintnaingwin/email-checker/HEAD/composer.json -------------------------------------------------------------------------------- /resources/lang/en/messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintnaingwin/email-checker/HEAD/resources/lang/en/messages.php -------------------------------------------------------------------------------- /src/EmailCheckerManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintnaingwin/email-checker/HEAD/src/EmailCheckerManager.php -------------------------------------------------------------------------------- /src/EmailCheckerServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintnaingwin/email-checker/HEAD/src/EmailCheckerServiceProvider.php -------------------------------------------------------------------------------- /src/Facades/EmailChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintnaingwin/email-checker/HEAD/src/Facades/EmailChecker.php -------------------------------------------------------------------------------- /src/Rules/EmailExist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tintnaingwin/email-checker/HEAD/src/Rules/EmailExist.php --------------------------------------------------------------------------------