├── LICENSE.md ├── composer.json ├── config └── social-link-validator.php ├── phpunit.xml └── src ├── Facades └── SocialLinkValidator.php ├── Rules └── SocialLink.php ├── SocialLinkValidator.php ├── SocialLinkValidatorServiceProvider.php └── Validators ├── AbstractValidator.php ├── LinkType.php ├── Platforms ├── Facebook.php ├── Instagram.php ├── Line.php ├── Linkedin.php ├── Twitter.php ├── Whatsapp.php └── Youtube.php └── ValidatorInterface.php /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ageekdev/laravel-social-link-validator/HEAD/LICENSE.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ageekdev/laravel-social-link-validator/HEAD/composer.json -------------------------------------------------------------------------------- /config/social-link-validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ageekdev/laravel-social-link-validator/HEAD/config/social-link-validator.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ageekdev/laravel-social-link-validator/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Facades/SocialLinkValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ageekdev/laravel-social-link-validator/HEAD/src/Facades/SocialLinkValidator.php -------------------------------------------------------------------------------- /src/Rules/SocialLink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ageekdev/laravel-social-link-validator/HEAD/src/Rules/SocialLink.php -------------------------------------------------------------------------------- /src/SocialLinkValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ageekdev/laravel-social-link-validator/HEAD/src/SocialLinkValidator.php -------------------------------------------------------------------------------- /src/SocialLinkValidatorServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ageekdev/laravel-social-link-validator/HEAD/src/SocialLinkValidatorServiceProvider.php -------------------------------------------------------------------------------- /src/Validators/AbstractValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ageekdev/laravel-social-link-validator/HEAD/src/Validators/AbstractValidator.php -------------------------------------------------------------------------------- /src/Validators/LinkType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ageekdev/laravel-social-link-validator/HEAD/src/Validators/LinkType.php -------------------------------------------------------------------------------- /src/Validators/Platforms/Facebook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ageekdev/laravel-social-link-validator/HEAD/src/Validators/Platforms/Facebook.php -------------------------------------------------------------------------------- /src/Validators/Platforms/Instagram.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ageekdev/laravel-social-link-validator/HEAD/src/Validators/Platforms/Instagram.php -------------------------------------------------------------------------------- /src/Validators/Platforms/Line.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ageekdev/laravel-social-link-validator/HEAD/src/Validators/Platforms/Line.php -------------------------------------------------------------------------------- /src/Validators/Platforms/Linkedin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ageekdev/laravel-social-link-validator/HEAD/src/Validators/Platforms/Linkedin.php -------------------------------------------------------------------------------- /src/Validators/Platforms/Twitter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ageekdev/laravel-social-link-validator/HEAD/src/Validators/Platforms/Twitter.php -------------------------------------------------------------------------------- /src/Validators/Platforms/Whatsapp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ageekdev/laravel-social-link-validator/HEAD/src/Validators/Platforms/Whatsapp.php -------------------------------------------------------------------------------- /src/Validators/Platforms/Youtube.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ageekdev/laravel-social-link-validator/HEAD/src/Validators/Platforms/Youtube.php -------------------------------------------------------------------------------- /src/Validators/ValidatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ageekdev/laravel-social-link-validator/HEAD/src/Validators/ValidatorInterface.php --------------------------------------------------------------------------------