aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/util
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-05-12 02:02:45 +0900
committernsfisis <nsfisis@gmail.com>2026-05-12 02:02:45 +0900
commitddc4e1cddca78e99adbd823759382deed6c2d708 (patch)
treea963ae8fae678ca8a4b9190f4732c4fad9a00b74 /crates/shirabe/src/util
parent68180ee8bf9db0fa497d40ac68e0ca77d0edf213 (diff)
downloadphp-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')
-rw-r--r--crates/shirabe/src/util/auth_helper.rs1
-rw-r--r--crates/shirabe/src/util/bitbucket.rs1
-rw-r--r--crates/shirabe/src/util/composer_mirror.rs1
-rw-r--r--crates/shirabe/src/util/config_validator.rs1
-rw-r--r--crates/shirabe/src/util/error_handler.rs1
-rw-r--r--crates/shirabe/src/util/filesystem.rs1
-rw-r--r--crates/shirabe/src/util/forgejo.rs1
-rw-r--r--crates/shirabe/src/util/forgejo_repository_data.rs1
-rw-r--r--crates/shirabe/src/util/forgejo_url.rs1
-rw-r--r--crates/shirabe/src/util/git.rs1
-rw-r--r--crates/shirabe/src/util/github.rs1
-rw-r--r--crates/shirabe/src/util/gitlab.rs1
-rw-r--r--crates/shirabe/src/util/hg.rs1
-rw-r--r--crates/shirabe/src/util/http/curl_downloader.rs1
-rw-r--r--crates/shirabe/src/util/http/curl_response.rs1
-rw-r--r--crates/shirabe/src/util/http/proxy_item.rs1
-rw-r--r--crates/shirabe/src/util/http/proxy_manager.rs1
-rw-r--r--crates/shirabe/src/util/http/request_proxy.rs1
-rw-r--r--crates/shirabe/src/util/http/response.rs1
-rw-r--r--crates/shirabe/src/util/http_downloader.rs1
-rw-r--r--crates/shirabe/src/util/ini_helper.rs1
-rw-r--r--crates/shirabe/src/util/loop.rs1
-rw-r--r--crates/shirabe/src/util/metadata_minifier.rs1
-rw-r--r--crates/shirabe/src/util/no_proxy_pattern.rs1
-rw-r--r--crates/shirabe/src/util/package_info.rs1
-rw-r--r--crates/shirabe/src/util/package_sorter.rs1
-rw-r--r--crates/shirabe/src/util/perforce.rs1
-rw-r--r--crates/shirabe/src/util/platform.rs1
-rw-r--r--crates/shirabe/src/util/process_executor.rs1
-rw-r--r--crates/shirabe/src/util/remote_filesystem.rs1
-rw-r--r--crates/shirabe/src/util/silencer.rs1
-rw-r--r--crates/shirabe/src/util/stream_context_factory.rs1
-rw-r--r--crates/shirabe/src/util/svn.rs1
-rw-r--r--crates/shirabe/src/util/sync_helper.rs1
-rw-r--r--crates/shirabe/src/util/tar.rs1
-rw-r--r--crates/shirabe/src/util/tls_helper.rs1
-rw-r--r--crates/shirabe/src/util/url.rs1
-rw-r--r--crates/shirabe/src/util/zip.rs1
38 files changed, 38 insertions, 0 deletions
diff --git a/crates/shirabe/src/util/auth_helper.rs b/crates/shirabe/src/util/auth_helper.rs
new file mode 100644
index 00000000..c9035f3f
--- /dev/null
+++ b/crates/shirabe/src/util/auth_helper.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Util/AuthHelper.php
diff --git a/crates/shirabe/src/util/bitbucket.rs b/crates/shirabe/src/util/bitbucket.rs
new file mode 100644
index 00000000..29717e1b
--- /dev/null
+++ b/crates/shirabe/src/util/bitbucket.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Util/Bitbucket.php
diff --git a/crates/shirabe/src/util/composer_mirror.rs b/crates/shirabe/src/util/composer_mirror.rs
new file mode 100644
index 00000000..f241abb3
--- /dev/null
+++ b/crates/shirabe/src/util/composer_mirror.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Util/ComposerMirror.php
diff --git a/crates/shirabe/src/util/config_validator.rs b/crates/shirabe/src/util/config_validator.rs
new file mode 100644
index 00000000..12c5b865
--- /dev/null
+++ b/crates/shirabe/src/util/config_validator.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Util/ConfigValidator.php
diff --git a/crates/shirabe/src/util/error_handler.rs b/crates/shirabe/src/util/error_handler.rs
new file mode 100644
index 00000000..d853270f
--- /dev/null
+++ b/crates/shirabe/src/util/error_handler.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Util/ErrorHandler.php
diff --git a/crates/shirabe/src/util/filesystem.rs b/crates/shirabe/src/util/filesystem.rs
new file mode 100644
index 00000000..026ac6de
--- /dev/null
+++ b/crates/shirabe/src/util/filesystem.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Util/Filesystem.php
diff --git a/crates/shirabe/src/util/forgejo.rs b/crates/shirabe/src/util/forgejo.rs
new file mode 100644
index 00000000..e3de3ef0
--- /dev/null
+++ b/crates/shirabe/src/util/forgejo.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Util/Forgejo.php
diff --git a/crates/shirabe/src/util/forgejo_repository_data.rs b/crates/shirabe/src/util/forgejo_repository_data.rs
new file mode 100644
index 00000000..ddbe5858
--- /dev/null
+++ b/crates/shirabe/src/util/forgejo_repository_data.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Util/ForgejoRepositoryData.php
diff --git a/crates/shirabe/src/util/forgejo_url.rs b/crates/shirabe/src/util/forgejo_url.rs
new file mode 100644
index 00000000..3148fd11
--- /dev/null
+++ b/crates/shirabe/src/util/forgejo_url.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Util/ForgejoUrl.php
diff --git a/crates/shirabe/src/util/git.rs b/crates/shirabe/src/util/git.rs
new file mode 100644
index 00000000..76bdc285
--- /dev/null
+++ b/crates/shirabe/src/util/git.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Util/Git.php
diff --git a/crates/shirabe/src/util/github.rs b/crates/shirabe/src/util/github.rs
new file mode 100644
index 00000000..67de0752
--- /dev/null
+++ b/crates/shirabe/src/util/github.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Util/GitHub.php
diff --git a/crates/shirabe/src/util/gitlab.rs b/crates/shirabe/src/util/gitlab.rs
new file mode 100644
index 00000000..f2c3b040
--- /dev/null
+++ b/crates/shirabe/src/util/gitlab.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Util/GitLab.php
diff --git a/crates/shirabe/src/util/hg.rs b/crates/shirabe/src/util/hg.rs
new file mode 100644
index 00000000..18eeb3b8
--- /dev/null
+++ b/crates/shirabe/src/util/hg.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Util/Hg.php
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 00000000..518459cc
--- /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 00000000..81af5af9
--- /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 00000000..10b66c40
--- /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 00000000..33b08649
--- /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 00000000..826598fe
--- /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 00000000..61011cbb
--- /dev/null
+++ b/crates/shirabe/src/util/http/response.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Util/Http/Response.php
diff --git a/crates/shirabe/src/util/http_downloader.rs b/crates/shirabe/src/util/http_downloader.rs
new file mode 100644
index 00000000..48c9ac85
--- /dev/null
+++ b/crates/shirabe/src/util/http_downloader.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Util/HttpDownloader.php
diff --git a/crates/shirabe/src/util/ini_helper.rs b/crates/shirabe/src/util/ini_helper.rs
new file mode 100644
index 00000000..c0125d93
--- /dev/null
+++ b/crates/shirabe/src/util/ini_helper.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Util/IniHelper.php
diff --git a/crates/shirabe/src/util/loop.rs b/crates/shirabe/src/util/loop.rs
new file mode 100644
index 00000000..b9fe69b7
--- /dev/null
+++ b/crates/shirabe/src/util/loop.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Util/Loop.php
diff --git a/crates/shirabe/src/util/metadata_minifier.rs b/crates/shirabe/src/util/metadata_minifier.rs
new file mode 100644
index 00000000..ddad5473
--- /dev/null
+++ b/crates/shirabe/src/util/metadata_minifier.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Util/MetadataMinifier.php
diff --git a/crates/shirabe/src/util/no_proxy_pattern.rs b/crates/shirabe/src/util/no_proxy_pattern.rs
new file mode 100644
index 00000000..011bf310
--- /dev/null
+++ b/crates/shirabe/src/util/no_proxy_pattern.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Util/NoProxyPattern.php
diff --git a/crates/shirabe/src/util/package_info.rs b/crates/shirabe/src/util/package_info.rs
new file mode 100644
index 00000000..3db9b689
--- /dev/null
+++ b/crates/shirabe/src/util/package_info.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Util/PackageInfo.php
diff --git a/crates/shirabe/src/util/package_sorter.rs b/crates/shirabe/src/util/package_sorter.rs
new file mode 100644
index 00000000..45d299f5
--- /dev/null
+++ b/crates/shirabe/src/util/package_sorter.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Util/PackageSorter.php
diff --git a/crates/shirabe/src/util/perforce.rs b/crates/shirabe/src/util/perforce.rs
new file mode 100644
index 00000000..bb3a7b80
--- /dev/null
+++ b/crates/shirabe/src/util/perforce.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Util/Perforce.php
diff --git a/crates/shirabe/src/util/platform.rs b/crates/shirabe/src/util/platform.rs
new file mode 100644
index 00000000..7f83d7d8
--- /dev/null
+++ b/crates/shirabe/src/util/platform.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Util/Platform.php
diff --git a/crates/shirabe/src/util/process_executor.rs b/crates/shirabe/src/util/process_executor.rs
new file mode 100644
index 00000000..22cce5b8
--- /dev/null
+++ b/crates/shirabe/src/util/process_executor.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Util/ProcessExecutor.php
diff --git a/crates/shirabe/src/util/remote_filesystem.rs b/crates/shirabe/src/util/remote_filesystem.rs
new file mode 100644
index 00000000..c8e5f336
--- /dev/null
+++ b/crates/shirabe/src/util/remote_filesystem.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Util/RemoteFilesystem.php
diff --git a/crates/shirabe/src/util/silencer.rs b/crates/shirabe/src/util/silencer.rs
new file mode 100644
index 00000000..4c45f236
--- /dev/null
+++ b/crates/shirabe/src/util/silencer.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Util/Silencer.php
diff --git a/crates/shirabe/src/util/stream_context_factory.rs b/crates/shirabe/src/util/stream_context_factory.rs
new file mode 100644
index 00000000..414d403a
--- /dev/null
+++ b/crates/shirabe/src/util/stream_context_factory.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Util/StreamContextFactory.php
diff --git a/crates/shirabe/src/util/svn.rs b/crates/shirabe/src/util/svn.rs
new file mode 100644
index 00000000..072da15b
--- /dev/null
+++ b/crates/shirabe/src/util/svn.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Util/Svn.php
diff --git a/crates/shirabe/src/util/sync_helper.rs b/crates/shirabe/src/util/sync_helper.rs
new file mode 100644
index 00000000..b3e721b6
--- /dev/null
+++ b/crates/shirabe/src/util/sync_helper.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Util/SyncHelper.php
diff --git a/crates/shirabe/src/util/tar.rs b/crates/shirabe/src/util/tar.rs
new file mode 100644
index 00000000..4dc91cad
--- /dev/null
+++ b/crates/shirabe/src/util/tar.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Util/Tar.php
diff --git a/crates/shirabe/src/util/tls_helper.rs b/crates/shirabe/src/util/tls_helper.rs
new file mode 100644
index 00000000..908b85ab
--- /dev/null
+++ b/crates/shirabe/src/util/tls_helper.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Util/TlsHelper.php
diff --git a/crates/shirabe/src/util/url.rs b/crates/shirabe/src/util/url.rs
new file mode 100644
index 00000000..d52c2385
--- /dev/null
+++ b/crates/shirabe/src/util/url.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Util/Url.php
diff --git a/crates/shirabe/src/util/zip.rs b/crates/shirabe/src/util/zip.rs
new file mode 100644
index 00000000..583d3971
--- /dev/null
+++ b/crates/shirabe/src/util/zip.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Util/Zip.php