├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── bin ├── linux │ └── curl-impersonate └── windows │ ├── brotli.exe │ ├── bssl.exe │ ├── curl-config │ ├── curl.exe │ ├── libcurl.dll │ ├── wcurl │ ├── zlib.dll │ └── zstd.exe ├── composer.json ├── deploy.sh └── src ├── Browser ├── Browser.php ├── BrowserConfig.php └── BrowserInterface.php ├── ClientInterface.php ├── Config └── Configuration.php ├── Exception ├── PlatformNotSupportedException.php └── RequestException.php ├── PHPImpersonate.php ├── PHPImpersonateFactory.php ├── Platform ├── CommandBuilder.php └── PlatformDetector.php ├── Request.php ├── Response.php └── utils.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaadraza/php-impersonate/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaadraza/php-impersonate/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaadraza/php-impersonate/HEAD/README.md -------------------------------------------------------------------------------- /bin/linux/curl-impersonate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaadraza/php-impersonate/HEAD/bin/linux/curl-impersonate -------------------------------------------------------------------------------- /bin/windows/brotli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaadraza/php-impersonate/HEAD/bin/windows/brotli.exe -------------------------------------------------------------------------------- /bin/windows/bssl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaadraza/php-impersonate/HEAD/bin/windows/bssl.exe -------------------------------------------------------------------------------- /bin/windows/curl-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaadraza/php-impersonate/HEAD/bin/windows/curl-config -------------------------------------------------------------------------------- /bin/windows/curl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaadraza/php-impersonate/HEAD/bin/windows/curl.exe -------------------------------------------------------------------------------- /bin/windows/libcurl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaadraza/php-impersonate/HEAD/bin/windows/libcurl.dll -------------------------------------------------------------------------------- /bin/windows/wcurl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaadraza/php-impersonate/HEAD/bin/windows/wcurl -------------------------------------------------------------------------------- /bin/windows/zlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaadraza/php-impersonate/HEAD/bin/windows/zlib.dll -------------------------------------------------------------------------------- /bin/windows/zstd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaadraza/php-impersonate/HEAD/bin/windows/zstd.exe -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaadraza/php-impersonate/HEAD/composer.json -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaadraza/php-impersonate/HEAD/deploy.sh -------------------------------------------------------------------------------- /src/Browser/Browser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaadraza/php-impersonate/HEAD/src/Browser/Browser.php -------------------------------------------------------------------------------- /src/Browser/BrowserConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaadraza/php-impersonate/HEAD/src/Browser/BrowserConfig.php -------------------------------------------------------------------------------- /src/Browser/BrowserInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaadraza/php-impersonate/HEAD/src/Browser/BrowserInterface.php -------------------------------------------------------------------------------- /src/ClientInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaadraza/php-impersonate/HEAD/src/ClientInterface.php -------------------------------------------------------------------------------- /src/Config/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaadraza/php-impersonate/HEAD/src/Config/Configuration.php -------------------------------------------------------------------------------- /src/Exception/PlatformNotSupportedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaadraza/php-impersonate/HEAD/src/Exception/PlatformNotSupportedException.php -------------------------------------------------------------------------------- /src/Exception/RequestException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaadraza/php-impersonate/HEAD/src/Exception/RequestException.php -------------------------------------------------------------------------------- /src/PHPImpersonate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaadraza/php-impersonate/HEAD/src/PHPImpersonate.php -------------------------------------------------------------------------------- /src/PHPImpersonateFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaadraza/php-impersonate/HEAD/src/PHPImpersonateFactory.php -------------------------------------------------------------------------------- /src/Platform/CommandBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaadraza/php-impersonate/HEAD/src/Platform/CommandBuilder.php -------------------------------------------------------------------------------- /src/Platform/PlatformDetector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaadraza/php-impersonate/HEAD/src/Platform/PlatformDetector.php -------------------------------------------------------------------------------- /src/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaadraza/php-impersonate/HEAD/src/Request.php -------------------------------------------------------------------------------- /src/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaadraza/php-impersonate/HEAD/src/Response.php -------------------------------------------------------------------------------- /src/utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaadraza/php-impersonate/HEAD/src/utils.php --------------------------------------------------------------------------------