aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/command
diff options
context:
space:
mode:
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 00000000..7dfac3d0
--- /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 00000000..50470a40
--- /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 00000000..3ea0d5e6
--- /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 00000000..2386c73d
--- /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 00000000..d0007044
--- /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 00000000..32e93a78
--- /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 00000000..7199d9db
--- /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 00000000..a4af7033
--- /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 00000000..e4354b4e
--- /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 00000000..d58acd1e
--- /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 00000000..2f371548
--- /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 00000000..735febe5
--- /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 00000000..ca24b47b
--- /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 00000000..2760da5e
--- /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 00000000..b5aac698
--- /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 00000000..f5e884f7
--- /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 00000000..a98f8b03
--- /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 00000000..54b1149a
--- /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 00000000..855f2120
--- /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 00000000..9e479883
--- /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 00000000..0888bf29
--- /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 00000000..dde2178d
--- /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 00000000..f1d01950
--- /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 00000000..85e8e2ab
--- /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 00000000..94a44740
--- /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 00000000..397fad4f
--- /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 00000000..aa3c689b
--- /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 00000000..aa6ee7fa
--- /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 00000000..3e9d4782
--- /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 00000000..27b77008
--- /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 00000000..52ee06b8
--- /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 00000000..6a4add80
--- /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 00000000..d0c4299f
--- /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 00000000..bc9096cb
--- /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 00000000..c0a7e82f
--- /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 00000000..a0adac62
--- /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 00000000..7b1f200d
--- /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 00000000..e674c491
--- /dev/null
+++ b/crates/shirabe/src/command/validate_command.rs
@@ -0,0 +1 @@
+//! ref: composer/src/Composer/Command/ValidateCommand.php