├── LICENSE.md ├── README.md ├── composer.json └── src ├── BaseValidator.php ├── Contracts └── Validator.php ├── Exceptions └── InvalidArgument.php ├── QueryParameterBag.php ├── Scheme.php ├── SchemeValidator.php └── Url.php /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/url/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/url/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/url/HEAD/composer.json -------------------------------------------------------------------------------- /src/BaseValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/url/HEAD/src/BaseValidator.php -------------------------------------------------------------------------------- /src/Contracts/Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/url/HEAD/src/Contracts/Validator.php -------------------------------------------------------------------------------- /src/Exceptions/InvalidArgument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/url/HEAD/src/Exceptions/InvalidArgument.php -------------------------------------------------------------------------------- /src/QueryParameterBag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/url/HEAD/src/QueryParameterBag.php -------------------------------------------------------------------------------- /src/Scheme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/url/HEAD/src/Scheme.php -------------------------------------------------------------------------------- /src/SchemeValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/url/HEAD/src/SchemeValidator.php -------------------------------------------------------------------------------- /src/Url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/url/HEAD/src/Url.php --------------------------------------------------------------------------------