├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── src └── URL │ └── Normalizer.php ├── test-client.php └── tests └── URL └── NormalizerTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | composer.phar 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenscott/url-normalizer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenscott/url-normalizer/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenscott/url-normalizer/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenscott/url-normalizer/HEAD/composer.lock -------------------------------------------------------------------------------- /src/URL/Normalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenscott/url-normalizer/HEAD/src/URL/Normalizer.php -------------------------------------------------------------------------------- /test-client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenscott/url-normalizer/HEAD/test-client.php -------------------------------------------------------------------------------- /tests/URL/NormalizerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenscott/url-normalizer/HEAD/tests/URL/NormalizerTest.php --------------------------------------------------------------------------------