diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-12 02:02:45 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-12 02:02:45 +0900 |
| commit | ddc4e1cddca78e99adbd823759382deed6c2d708 (patch) | |
| tree | a963ae8fae678ca8a4b9190f4732c4fad9a00b74 /crates/shirabe/src/util/http | |
| parent | 68180ee8bf9db0fa497d40ac68e0ca77d0edf213 (diff) | |
| download | php-shirabe-ddc4e1cddca78e99adbd823759382deed6c2d708.tar.gz php-shirabe-ddc4e1cddca78e99adbd823759382deed6c2d708.tar.zst php-shirabe-ddc4e1cddca78e99adbd823759382deed6c2d708.zip | |
feat(init): add scaffold files
Diffstat (limited to 'crates/shirabe/src/util/http')
| -rw-r--r-- | crates/shirabe/src/util/http/curl_downloader.rs | 1 | ||||
| -rw-r--r-- | crates/shirabe/src/util/http/curl_response.rs | 1 | ||||
| -rw-r--r-- | crates/shirabe/src/util/http/proxy_item.rs | 1 | ||||
| -rw-r--r-- | crates/shirabe/src/util/http/proxy_manager.rs | 1 | ||||
| -rw-r--r-- | crates/shirabe/src/util/http/request_proxy.rs | 1 | ||||
| -rw-r--r-- | crates/shirabe/src/util/http/response.rs | 1 |
6 files changed, 6 insertions, 0 deletions
diff --git a/crates/shirabe/src/util/http/curl_downloader.rs b/crates/shirabe/src/util/http/curl_downloader.rs new file mode 100644 index 0000000..518459c --- /dev/null +++ b/crates/shirabe/src/util/http/curl_downloader.rs @@ -0,0 +1 @@ +//! ref: composer/src/Composer/Util/Http/CurlDownloader.php diff --git a/crates/shirabe/src/util/http/curl_response.rs b/crates/shirabe/src/util/http/curl_response.rs new file mode 100644 index 0000000..81af5af --- /dev/null +++ b/crates/shirabe/src/util/http/curl_response.rs @@ -0,0 +1 @@ +//! ref: composer/src/Composer/Util/Http/CurlResponse.php diff --git a/crates/shirabe/src/util/http/proxy_item.rs b/crates/shirabe/src/util/http/proxy_item.rs new file mode 100644 index 0000000..10b66c4 --- /dev/null +++ b/crates/shirabe/src/util/http/proxy_item.rs @@ -0,0 +1 @@ +//! ref: composer/src/Composer/Util/Http/ProxyItem.php diff --git a/crates/shirabe/src/util/http/proxy_manager.rs b/crates/shirabe/src/util/http/proxy_manager.rs new file mode 100644 index 0000000..33b0864 --- /dev/null +++ b/crates/shirabe/src/util/http/proxy_manager.rs @@ -0,0 +1 @@ +//! ref: composer/src/Composer/Util/Http/ProxyManager.php diff --git a/crates/shirabe/src/util/http/request_proxy.rs b/crates/shirabe/src/util/http/request_proxy.rs new file mode 100644 index 0000000..826598f --- /dev/null +++ b/crates/shirabe/src/util/http/request_proxy.rs @@ -0,0 +1 @@ +//! ref: composer/src/Composer/Util/Http/RequestProxy.php diff --git a/crates/shirabe/src/util/http/response.rs b/crates/shirabe/src/util/http/response.rs new file mode 100644 index 0000000..61011cb --- /dev/null +++ b/crates/shirabe/src/util/http/response.rs @@ -0,0 +1 @@ +//! ref: composer/src/Composer/Util/Http/Response.php |
