diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-08-09 11:21:45 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-08-09 11:21:45 +0900 |
| commit | 548ec1ffb232da4411ae8890080bcfd63300cda0 (patch) | |
| tree | 2860e71a0fe1b72a959f90d15ab543c9a72bae1d /crates/shirabe/src/command/require_command.rs | |
| parent | a8a4b54b90e6433cf4a25a88a4765243f831ebef (diff) | |
| download | php-shirabe-548ec1ffb232da4411ae8890080bcfd63300cda0.tar.gz php-shirabe-548ec1ffb232da4411ae8890080bcfd63300cda0.tar.zst php-shirabe-548ec1ffb232da4411ae8890080bcfd63300cda0.zip | |
refactor(seld-signal): extract seld/signal into the shirabe-seld-signal crate
Move `Seld\Signal` out of shirabe-external-packages and into its own
crate, so the path is `shirabe_seld_signal::SignalHandler` instead of
`shirabe_external_packages::seld::signal::SignalHandler`.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Diffstat (limited to 'crates/shirabe/src/command/require_command.rs')
| -rw-r--r-- | crates/shirabe/src/command/require_command.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/shirabe/src/command/require_command.rs b/crates/shirabe/src/command/require_command.rs index 44ebc54c..30e727d4 100644 --- a/crates/shirabe/src/command/require_command.rs +++ b/crates/shirabe/src/command/require_command.rs @@ -32,12 +32,12 @@ use crate::util::Filesystem; use crate::util::PackageSorter; use crate::util::Silencer; use indexmap::IndexMap; -use shirabe_external_packages::seld::signal::SignalHandler; use shirabe_php_shim::{ PhpMixed, RuntimeException, array_fill_keys, array_intersect, array_keys, array_map, array_merge, array_unique, empty, file_exists, file_get_contents, file_put_contents, filesize, impl_php_class, implode, is_writable, strtolower, unlink, }; +use shirabe_seld_signal::SignalHandler; use shirabe_symfony_console::command::command::Command; use shirabe_symfony_console::input::InputInterface; use shirabe_symfony_console::output::OutputInterface; |
