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 0000000..c9035f3
--- /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 0000000..29717e1
--- /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 0000000..f241abb
--- /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 0000000..12c5b86
--- /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 0000000..d853270
--- /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 0000000..026ac6d
--- /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 0000000..e3de3ef
--- /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 0000000..ddbe585
--- /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 0000000..3148fd1
--- /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 0000000..76bdc28
--- /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 0000000..67de075
--- /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 0000000..f2c3b04
--- /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 0000000..18eeb3b
--- /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 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
diff --git a/crates/shirabe/src/util/http_downloader.rs b/crates/shirabe/src/util/http_downloader.rs
new file mode 100644
index 0000000..48c9ac8
--- /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 0000000..c0125d9
--- /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 0000000..b9fe69b
--- /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 0000000..ddad547
--- /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 0000000..011bf31
--- /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 0000000..3db9b68
--- /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 0000000..45d299f
--- /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 0000000..bb3a7b8
--- /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 0000000..7f83d7d
--- /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 0000000..22cce5b
--- /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 0000000..c8e5f33
--- /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 0000000..4c45f23
--- /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 0000000..414d403
--- /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 0000000..072da15
--- /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 0000000..b3e721b
--- /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 0000000..4dc91ca
--- /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 0000000..908b85a
--- /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 0000000..d52c238
--- /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 0000000..583d397
--- /dev/null
+++ b/crates/shirabe/src/util/zip.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Util/Zip.php