├── .gitignore ├── .gitmodules ├── LICENSE ├── README.ja.md ├── README.md ├── apigen.neon ├── composer.json ├── composer.lock ├── phpunit.xml ├── src ├── URL.php ├── URLSearchParams.php └── lib │ ├── HostProcessing.php │ ├── Infrastructure.php │ ├── PercentEncoding.php │ ├── Terminology.php │ ├── URL.php │ ├── URLSearchParamsIterator.php │ ├── URLencoding.php │ └── Utility.php └── tests ├── URLSearchParamsTest.php ├── URLTest.php └── lib ├── HostProcessingTest.php ├── InfrastructureTest.php ├── URLTest.php └── URLencodingTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esperecyan/url/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esperecyan/url/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esperecyan/url/HEAD/LICENSE -------------------------------------------------------------------------------- /README.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esperecyan/url/HEAD/README.ja.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esperecyan/url/HEAD/README.md -------------------------------------------------------------------------------- /apigen.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esperecyan/url/HEAD/apigen.neon -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esperecyan/url/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esperecyan/url/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esperecyan/url/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/URL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esperecyan/url/HEAD/src/URL.php -------------------------------------------------------------------------------- /src/URLSearchParams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esperecyan/url/HEAD/src/URLSearchParams.php -------------------------------------------------------------------------------- /src/lib/HostProcessing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esperecyan/url/HEAD/src/lib/HostProcessing.php -------------------------------------------------------------------------------- /src/lib/Infrastructure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esperecyan/url/HEAD/src/lib/Infrastructure.php -------------------------------------------------------------------------------- /src/lib/PercentEncoding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esperecyan/url/HEAD/src/lib/PercentEncoding.php -------------------------------------------------------------------------------- /src/lib/Terminology.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esperecyan/url/HEAD/src/lib/Terminology.php -------------------------------------------------------------------------------- /src/lib/URL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esperecyan/url/HEAD/src/lib/URL.php -------------------------------------------------------------------------------- /src/lib/URLSearchParamsIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esperecyan/url/HEAD/src/lib/URLSearchParamsIterator.php -------------------------------------------------------------------------------- /src/lib/URLencoding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esperecyan/url/HEAD/src/lib/URLencoding.php -------------------------------------------------------------------------------- /src/lib/Utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esperecyan/url/HEAD/src/lib/Utility.php -------------------------------------------------------------------------------- /tests/URLSearchParamsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esperecyan/url/HEAD/tests/URLSearchParamsTest.php -------------------------------------------------------------------------------- /tests/URLTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esperecyan/url/HEAD/tests/URLTest.php -------------------------------------------------------------------------------- /tests/lib/HostProcessingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esperecyan/url/HEAD/tests/lib/HostProcessingTest.php -------------------------------------------------------------------------------- /tests/lib/InfrastructureTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esperecyan/url/HEAD/tests/lib/InfrastructureTest.php -------------------------------------------------------------------------------- /tests/lib/URLTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esperecyan/url/HEAD/tests/lib/URLTest.php -------------------------------------------------------------------------------- /tests/lib/URLencodingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esperecyan/url/HEAD/tests/lib/URLencodingTest.php --------------------------------------------------------------------------------