aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/command
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/command
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/command')
-rw-r--r--crates/shirabe/src/command/about_command.rs1
-rw-r--r--crates/shirabe/src/command/archive_command.rs1
-rw-r--r--crates/shirabe/src/command/audit_command.rs1
-rw-r--r--crates/shirabe/src/command/base_command.rs1
-rw-r--r--crates/shirabe/src/command/base_config_command.rs1
-rw-r--r--crates/shirabe/src/command/base_dependency_command.rs1
-rw-r--r--crates/shirabe/src/command/bump_command.rs1
-rw-r--r--crates/shirabe/src/command/check_platform_reqs_command.rs1
-rw-r--r--crates/shirabe/src/command/clear_cache_command.rs1
-rw-r--r--crates/shirabe/src/command/completion_trait.rs1
-rw-r--r--crates/shirabe/src/command/config_command.rs1
-rw-r--r--crates/shirabe/src/command/create_project_command.rs1
-rw-r--r--crates/shirabe/src/command/depends_command.rs1
-rw-r--r--crates/shirabe/src/command/diagnose_command.rs1
-rw-r--r--crates/shirabe/src/command/dump_autoload_command.rs1
-rw-r--r--crates/shirabe/src/command/exec_command.rs1
-rw-r--r--crates/shirabe/src/command/fund_command.rs1
-rw-r--r--crates/shirabe/src/command/global_command.rs1
-rw-r--r--crates/shirabe/src/command/home_command.rs1
-rw-r--r--crates/shirabe/src/command/init_command.rs1
-rw-r--r--crates/shirabe/src/command/install_command.rs1
-rw-r--r--crates/shirabe/src/command/licenses_command.rs1
-rw-r--r--crates/shirabe/src/command/outdated_command.rs1
-rw-r--r--crates/shirabe/src/command/package_discovery_trait.rs1
-rw-r--r--crates/shirabe/src/command/prohibits_command.rs1
-rw-r--r--crates/shirabe/src/command/reinstall_command.rs1
-rw-r--r--crates/shirabe/src/command/remove_command.rs1
-rw-r--r--crates/shirabe/src/command/repository_command.rs1
-rw-r--r--crates/shirabe/src/command/require_command.rs1
-rw-r--r--crates/shirabe/src/command/run_script_command.rs1
-rw-r--r--crates/shirabe/src/command/script_alias_command.rs1
-rw-r--r--crates/shirabe/src/command/search_command.rs1
-rw-r--r--crates/shirabe/src/command/self_update_command.rs1
-rw-r--r--crates/shirabe/src/command/show_command.rs1
-rw-r--r--crates/shirabe/src/command/status_command.rs1
-rw-r--r--crates/shirabe/src/command/suggests_command.rs1
-rw-r--r--crates/shirabe/src/command/update_command.rs1
-rw-r--r--crates/shirabe/src/command/validate_command.rs1
38 files changed, 38 insertions, 0 deletions
diff --git a/crates/shirabe/src/command/about_command.rs b/crates/shirabe/src/command/about_command.rs
new file mode 100644
index 0000000..7dfac3d
--- /dev/null
+++ b/crates/shirabe/src/command/about_command.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Command/AboutCommand.php
diff --git a/crates/shirabe/src/command/archive_command.rs b/crates/shirabe/src/command/archive_command.rs
new file mode 100644
index 0000000..50470a4
--- /dev/null
+++ b/crates/shirabe/src/command/archive_command.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Command/ArchiveCommand.php
diff --git a/crates/shirabe/src/command/audit_command.rs b/crates/shirabe/src/command/audit_command.rs
new file mode 100644
index 0000000..3ea0d5e
--- /dev/null
+++ b/crates/shirabe/src/command/audit_command.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Command/AuditCommand.php
diff --git a/crates/shirabe/src/command/base_command.rs b/crates/shirabe/src/command/base_command.rs
new file mode 100644
index 0000000..2386c73
--- /dev/null
+++ b/crates/shirabe/src/command/base_command.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Command/BaseCommand.php
diff --git a/crates/shirabe/src/command/base_config_command.rs b/crates/shirabe/src/command/base_config_command.rs
new file mode 100644
index 0000000..d000704
--- /dev/null
+++ b/crates/shirabe/src/command/base_config_command.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Command/BaseConfigCommand.php
diff --git a/crates/shirabe/src/command/base_dependency_command.rs b/crates/shirabe/src/command/base_dependency_command.rs
new file mode 100644
index 0000000..32e93a7
--- /dev/null
+++ b/crates/shirabe/src/command/base_dependency_command.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Command/BaseDependencyCommand.php
diff --git a/crates/shirabe/src/command/bump_command.rs b/crates/shirabe/src/command/bump_command.rs
new file mode 100644
index 0000000..7199d9d
--- /dev/null
+++ b/crates/shirabe/src/command/bump_command.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Command/BumpCommand.php
diff --git a/crates/shirabe/src/command/check_platform_reqs_command.rs b/crates/shirabe/src/command/check_platform_reqs_command.rs
new file mode 100644
index 0000000..a4af703
--- /dev/null
+++ b/crates/shirabe/src/command/check_platform_reqs_command.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Command/CheckPlatformReqsCommand.php
diff --git a/crates/shirabe/src/command/clear_cache_command.rs b/crates/shirabe/src/command/clear_cache_command.rs
new file mode 100644
index 0000000..e4354b4
--- /dev/null
+++ b/crates/shirabe/src/command/clear_cache_command.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Command/ClearCacheCommand.php
diff --git a/crates/shirabe/src/command/completion_trait.rs b/crates/shirabe/src/command/completion_trait.rs
new file mode 100644
index 0000000..d58acd1
--- /dev/null
+++ b/crates/shirabe/src/command/completion_trait.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Command/CompletionTrait.php
diff --git a/crates/shirabe/src/command/config_command.rs b/crates/shirabe/src/command/config_command.rs
new file mode 100644
index 0000000..2f37154
--- /dev/null
+++ b/crates/shirabe/src/command/config_command.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Command/ConfigCommand.php
diff --git a/crates/shirabe/src/command/create_project_command.rs b/crates/shirabe/src/command/create_project_command.rs
new file mode 100644
index 0000000..735febe
--- /dev/null
+++ b/crates/shirabe/src/command/create_project_command.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Command/CreateProjectCommand.php
diff --git a/crates/shirabe/src/command/depends_command.rs b/crates/shirabe/src/command/depends_command.rs
new file mode 100644
index 0000000..ca24b47
--- /dev/null
+++ b/crates/shirabe/src/command/depends_command.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Command/DependsCommand.php
diff --git a/crates/shirabe/src/command/diagnose_command.rs b/crates/shirabe/src/command/diagnose_command.rs
new file mode 100644
index 0000000..2760da5
--- /dev/null
+++ b/crates/shirabe/src/command/diagnose_command.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Command/DiagnoseCommand.php
diff --git a/crates/shirabe/src/command/dump_autoload_command.rs b/crates/shirabe/src/command/dump_autoload_command.rs
new file mode 100644
index 0000000..b5aac69
--- /dev/null
+++ b/crates/shirabe/src/command/dump_autoload_command.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Command/DumpAutoloadCommand.php
diff --git a/crates/shirabe/src/command/exec_command.rs b/crates/shirabe/src/command/exec_command.rs
new file mode 100644
index 0000000..f5e884f
--- /dev/null
+++ b/crates/shirabe/src/command/exec_command.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Command/ExecCommand.php
diff --git a/crates/shirabe/src/command/fund_command.rs b/crates/shirabe/src/command/fund_command.rs
new file mode 100644
index 0000000..a98f8b0
--- /dev/null
+++ b/crates/shirabe/src/command/fund_command.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Command/FundCommand.php
diff --git a/crates/shirabe/src/command/global_command.rs b/crates/shirabe/src/command/global_command.rs
new file mode 100644
index 0000000..54b1149
--- /dev/null
+++ b/crates/shirabe/src/command/global_command.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Command/GlobalCommand.php
diff --git a/crates/shirabe/src/command/home_command.rs b/crates/shirabe/src/command/home_command.rs
new file mode 100644
index 0000000..855f212
--- /dev/null
+++ b/crates/shirabe/src/command/home_command.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Command/HomeCommand.php
diff --git a/crates/shirabe/src/command/init_command.rs b/crates/shirabe/src/command/init_command.rs
new file mode 100644
index 0000000..9e47988
--- /dev/null
+++ b/crates/shirabe/src/command/init_command.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Command/InitCommand.php
diff --git a/crates/shirabe/src/command/install_command.rs b/crates/shirabe/src/command/install_command.rs
new file mode 100644
index 0000000..0888bf2
--- /dev/null
+++ b/crates/shirabe/src/command/install_command.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Command/InstallCommand.php
diff --git a/crates/shirabe/src/command/licenses_command.rs b/crates/shirabe/src/command/licenses_command.rs
new file mode 100644
index 0000000..dde2178
--- /dev/null
+++ b/crates/shirabe/src/command/licenses_command.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Command/LicensesCommand.php
diff --git a/crates/shirabe/src/command/outdated_command.rs b/crates/shirabe/src/command/outdated_command.rs
new file mode 100644
index 0000000..f1d0195
--- /dev/null
+++ b/crates/shirabe/src/command/outdated_command.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Command/OutdatedCommand.php
diff --git a/crates/shirabe/src/command/package_discovery_trait.rs b/crates/shirabe/src/command/package_discovery_trait.rs
new file mode 100644
index 0000000..85e8e2a
--- /dev/null
+++ b/crates/shirabe/src/command/package_discovery_trait.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Command/PackageDiscoveryTrait.php
diff --git a/crates/shirabe/src/command/prohibits_command.rs b/crates/shirabe/src/command/prohibits_command.rs
new file mode 100644
index 0000000..94a4474
--- /dev/null
+++ b/crates/shirabe/src/command/prohibits_command.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Command/ProhibitsCommand.php
diff --git a/crates/shirabe/src/command/reinstall_command.rs b/crates/shirabe/src/command/reinstall_command.rs
new file mode 100644
index 0000000..397fad4
--- /dev/null
+++ b/crates/shirabe/src/command/reinstall_command.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Command/ReinstallCommand.php
diff --git a/crates/shirabe/src/command/remove_command.rs b/crates/shirabe/src/command/remove_command.rs
new file mode 100644
index 0000000..aa3c689
--- /dev/null
+++ b/crates/shirabe/src/command/remove_command.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Command/RemoveCommand.php
diff --git a/crates/shirabe/src/command/repository_command.rs b/crates/shirabe/src/command/repository_command.rs
new file mode 100644
index 0000000..aa6ee7f
--- /dev/null
+++ b/crates/shirabe/src/command/repository_command.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Command/RepositoryCommand.php
diff --git a/crates/shirabe/src/command/require_command.rs b/crates/shirabe/src/command/require_command.rs
new file mode 100644
index 0000000..3e9d478
--- /dev/null
+++ b/crates/shirabe/src/command/require_command.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Command/RequireCommand.php
diff --git a/crates/shirabe/src/command/run_script_command.rs b/crates/shirabe/src/command/run_script_command.rs
new file mode 100644
index 0000000..27b7700
--- /dev/null
+++ b/crates/shirabe/src/command/run_script_command.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Command/RunScriptCommand.php
diff --git a/crates/shirabe/src/command/script_alias_command.rs b/crates/shirabe/src/command/script_alias_command.rs
new file mode 100644
index 0000000..52ee06b
--- /dev/null
+++ b/crates/shirabe/src/command/script_alias_command.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Command/ScriptAliasCommand.php
diff --git a/crates/shirabe/src/command/search_command.rs b/crates/shirabe/src/command/search_command.rs
new file mode 100644
index 0000000..6a4add8
--- /dev/null
+++ b/crates/shirabe/src/command/search_command.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Command/SearchCommand.php
diff --git a/crates/shirabe/src/command/self_update_command.rs b/crates/shirabe/src/command/self_update_command.rs
new file mode 100644
index 0000000..d0c4299
--- /dev/null
+++ b/crates/shirabe/src/command/self_update_command.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Command/SelfUpdateCommand.php
diff --git a/crates/shirabe/src/command/show_command.rs b/crates/shirabe/src/command/show_command.rs
new file mode 100644
index 0000000..bc9096c
--- /dev/null
+++ b/crates/shirabe/src/command/show_command.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Command/ShowCommand.php
diff --git a/crates/shirabe/src/command/status_command.rs b/crates/shirabe/src/command/status_command.rs
new file mode 100644
index 0000000..c0a7e82
--- /dev/null
+++ b/crates/shirabe/src/command/status_command.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Command/StatusCommand.php
diff --git a/crates/shirabe/src/command/suggests_command.rs b/crates/shirabe/src/command/suggests_command.rs
new file mode 100644
index 0000000..a0adac6
--- /dev/null
+++ b/crates/shirabe/src/command/suggests_command.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Command/SuggestsCommand.php
diff --git a/crates/shirabe/src/command/update_command.rs b/crates/shirabe/src/command/update_command.rs
new file mode 100644
index 0000000..7b1f200
--- /dev/null
+++ b/crates/shirabe/src/command/update_command.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Command/UpdateCommand.php
diff --git a/crates/shirabe/src/command/validate_command.rs b/crates/shirabe/src/command/validate_command.rs
new file mode 100644
index 0000000..e674c49
--- /dev/null
+++ b/crates/shirabe/src/command/validate_command.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Command/ValidateCommand.php