├── .gitignore ├── Dockerfile ├── LICENSE.md ├── README.md ├── Sendfile.php ├── composer.json └── test ├── dummy.pdf ├── index.php ├── japanese_char.php ├── send_pdf.php ├── send_text.php ├── slow_download.php ├── text_file.txt └── 二天一流.txt /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | composer.lock 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diversen/http-send-file/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diversen/http-send-file/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diversen/http-send-file/HEAD/README.md -------------------------------------------------------------------------------- /Sendfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diversen/http-send-file/HEAD/Sendfile.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diversen/http-send-file/HEAD/composer.json -------------------------------------------------------------------------------- /test/dummy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diversen/http-send-file/HEAD/test/dummy.pdf -------------------------------------------------------------------------------- /test/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diversen/http-send-file/HEAD/test/index.php -------------------------------------------------------------------------------- /test/japanese_char.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diversen/http-send-file/HEAD/test/japanese_char.php -------------------------------------------------------------------------------- /test/send_pdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diversen/http-send-file/HEAD/test/send_pdf.php -------------------------------------------------------------------------------- /test/send_text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diversen/http-send-file/HEAD/test/send_text.php -------------------------------------------------------------------------------- /test/slow_download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diversen/http-send-file/HEAD/test/slow_download.php -------------------------------------------------------------------------------- /test/text_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diversen/http-send-file/HEAD/test/text_file.txt -------------------------------------------------------------------------------- /test/二天一流.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diversen/http-send-file/HEAD/test/二天一流.txt --------------------------------------------------------------------------------