diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-08-09 11:17:08 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-08-09 11:17:08 +0900 |
| commit | e3e8806aec771e482899ed3470e920f7b291fa95 (patch) | |
| tree | 786fac56e96978220131ffeaff807b732a377bfe /crates/shirabe/src/command | |
| parent | 64e02ef08f0f479937fc194f79eac997327a79dd (diff) | |
| download | php-shirabe-e3e8806aec771e482899ed3470e920f7b291fa95.tar.gz php-shirabe-e3e8806aec771e482899ed3470e920f7b291fa95.tar.zst php-shirabe-e3e8806aec771e482899ed3470e920f7b291fa95.zip | |
refactor(symfony-finder): extract symfony/finder into the shirabe-symfony-finder crate
Move `Symfony\Component\Finder` out of shirabe-external-packages and into
its own crate, so the path is `shirabe_symfony_finder::Finder` instead of
`shirabe_external_packages::symfony::finder::Finder`.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Diffstat (limited to 'crates/shirabe/src/command')
| -rw-r--r-- | crates/shirabe/src/command/create_project_command.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/shirabe/src/command/create_project_command.rs b/crates/shirabe/src/command/create_project_command.rs index 4d2f259b..7a11e44e 100644 --- a/crates/shirabe/src/command/create_project_command.rs +++ b/crates/shirabe/src/command/create_project_command.rs @@ -40,7 +40,6 @@ use shirabe_external_packages::seld::signal::SignalHandler; use shirabe_external_packages::symfony::console::command::command::Command; use shirabe_external_packages::symfony::console::input::InputInterface; use shirabe_external_packages::symfony::console::output::OutputInterface; -use shirabe_external_packages::symfony::finder::Finder; use shirabe_pcre::{CaptureKey, Preg}; use shirabe_php_shim::Catch as _; use shirabe_php_shim::{ @@ -48,6 +47,7 @@ use shirabe_php_shim::{ chdir, explode_with_limit, file_exists, getcwd, impl_php_class, implode, is_dir, is_file, mkdir, realpath, rtrim, strtolower, unlink, }; +use shirabe_symfony_finder::Finder; use std::path::PathBuf; /// Install a package as new project into new directory. |
