├── .github ├── ISSUE_TEMPLATE │ └── laravel-9-updates.md └── workflows │ └── tests.yml ├── LICENSE.md ├── composer.json ├── config └── trustedproxy.php └── src ├── TrustProxies.php └── TrustedProxyServiceProvider.php /.github/ISSUE_TEMPLATE/laravel-9-updates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fideloper/TrustedProxy/HEAD/.github/ISSUE_TEMPLATE/laravel-9-updates.md -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fideloper/TrustedProxy/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fideloper/TrustedProxy/HEAD/LICENSE.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fideloper/TrustedProxy/HEAD/composer.json -------------------------------------------------------------------------------- /config/trustedproxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fideloper/TrustedProxy/HEAD/config/trustedproxy.php -------------------------------------------------------------------------------- /src/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fideloper/TrustedProxy/HEAD/src/TrustProxies.php -------------------------------------------------------------------------------- /src/TrustedProxyServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fideloper/TrustedProxy/HEAD/src/TrustedProxyServiceProvider.php --------------------------------------------------------------------------------