├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── src ├── ContentTypes.php ├── CurlDownloader.php └── HeaderHandler.php └── tests └── DownloadTest.php /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlon1600/php-curl-file-downloader/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlon1600/php-curl-file-downloader/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlon1600/php-curl-file-downloader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlon1600/php-curl-file-downloader/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlon1600/php-curl-file-downloader/HEAD/composer.json -------------------------------------------------------------------------------- /src/ContentTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlon1600/php-curl-file-downloader/HEAD/src/ContentTypes.php -------------------------------------------------------------------------------- /src/CurlDownloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlon1600/php-curl-file-downloader/HEAD/src/CurlDownloader.php -------------------------------------------------------------------------------- /src/HeaderHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlon1600/php-curl-file-downloader/HEAD/src/HeaderHandler.php -------------------------------------------------------------------------------- /tests/DownloadTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Athlon1600/php-curl-file-downloader/HEAD/tests/DownloadTest.php --------------------------------------------------------------------------------