├── .editorconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ └── config.yml └── workflows │ ├── php-cs-fixer.yml │ ├── run-tests.yml │ └── update-changelog.yml ├── .php-cs-fixer.dist.php ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── referer.php └── src ├── CaptureReferer.php ├── Exceptions └── InvalidConfiguration.php ├── Helpers └── Url.php ├── Referer.php ├── RefererServiceProvider.php ├── Source.php └── Sources ├── RequestHeader.php └── UtmSource.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-referer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-referer/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-referer/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/workflows/php-cs-fixer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-referer/HEAD/.github/workflows/php-cs-fixer.yml -------------------------------------------------------------------------------- /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-referer/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /.github/workflows/update-changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-referer/HEAD/.github/workflows/update-changelog.yml -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-referer/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-referer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-referer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-referer/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-referer/HEAD/composer.json -------------------------------------------------------------------------------- /config/referer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-referer/HEAD/config/referer.php -------------------------------------------------------------------------------- /src/CaptureReferer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-referer/HEAD/src/CaptureReferer.php -------------------------------------------------------------------------------- /src/Exceptions/InvalidConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-referer/HEAD/src/Exceptions/InvalidConfiguration.php -------------------------------------------------------------------------------- /src/Helpers/Url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-referer/HEAD/src/Helpers/Url.php -------------------------------------------------------------------------------- /src/Referer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-referer/HEAD/src/Referer.php -------------------------------------------------------------------------------- /src/RefererServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-referer/HEAD/src/RefererServiceProvider.php -------------------------------------------------------------------------------- /src/Source.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-referer/HEAD/src/Source.php -------------------------------------------------------------------------------- /src/Sources/RequestHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-referer/HEAD/src/Sources/RequestHeader.php -------------------------------------------------------------------------------- /src/Sources/UtmSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-referer/HEAD/src/Sources/UtmSource.php --------------------------------------------------------------------------------