├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── composer.json └── src ├── AbstractUrl.php ├── Components ├── AbstractArray.php ├── AbstractComponent.php ├── AbstractSegment.php ├── ComponentArrayInterface.php ├── ComponentInterface.php ├── Fragment.php ├── Host.php ├── HostInterface.php ├── Pass.php ├── Path.php ├── PathInterface.php ├── Port.php ├── Query.php ├── QueryInterface.php ├── Scheme.php ├── SegmentInterface.php └── User.php ├── Url.php ├── UrlConstants.php ├── UrlImmutable.php └── UrlInterface.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/url/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/url/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/url/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/url/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/url/HEAD/composer.json -------------------------------------------------------------------------------- /src/AbstractUrl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/url/HEAD/src/AbstractUrl.php -------------------------------------------------------------------------------- /src/Components/AbstractArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/url/HEAD/src/Components/AbstractArray.php -------------------------------------------------------------------------------- /src/Components/AbstractComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/url/HEAD/src/Components/AbstractComponent.php -------------------------------------------------------------------------------- /src/Components/AbstractSegment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/url/HEAD/src/Components/AbstractSegment.php -------------------------------------------------------------------------------- /src/Components/ComponentArrayInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/url/HEAD/src/Components/ComponentArrayInterface.php -------------------------------------------------------------------------------- /src/Components/ComponentInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/url/HEAD/src/Components/ComponentInterface.php -------------------------------------------------------------------------------- /src/Components/Fragment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/url/HEAD/src/Components/Fragment.php -------------------------------------------------------------------------------- /src/Components/Host.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/url/HEAD/src/Components/Host.php -------------------------------------------------------------------------------- /src/Components/HostInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/url/HEAD/src/Components/HostInterface.php -------------------------------------------------------------------------------- /src/Components/Pass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/url/HEAD/src/Components/Pass.php -------------------------------------------------------------------------------- /src/Components/Path.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/url/HEAD/src/Components/Path.php -------------------------------------------------------------------------------- /src/Components/PathInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/url/HEAD/src/Components/PathInterface.php -------------------------------------------------------------------------------- /src/Components/Port.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/url/HEAD/src/Components/Port.php -------------------------------------------------------------------------------- /src/Components/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/url/HEAD/src/Components/Query.php -------------------------------------------------------------------------------- /src/Components/QueryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/url/HEAD/src/Components/QueryInterface.php -------------------------------------------------------------------------------- /src/Components/Scheme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/url/HEAD/src/Components/Scheme.php -------------------------------------------------------------------------------- /src/Components/SegmentInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/url/HEAD/src/Components/SegmentInterface.php -------------------------------------------------------------------------------- /src/Components/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/url/HEAD/src/Components/User.php -------------------------------------------------------------------------------- /src/Url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/url/HEAD/src/Url.php -------------------------------------------------------------------------------- /src/UrlConstants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/url/HEAD/src/UrlConstants.php -------------------------------------------------------------------------------- /src/UrlImmutable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/url/HEAD/src/UrlImmutable.php -------------------------------------------------------------------------------- /src/UrlInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/url/HEAD/src/UrlInterface.php --------------------------------------------------------------------------------