diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-06-12 01:01:35 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-06-12 01:01:43 +0900 |
| commit | 1e44f5723e4c0e0903d00a61f254901e612fe5e1 (patch) | |
| tree | 9c2e1eec364bbf6418a4072ee7767b04c3df0297 /crates/shirabe-external-packages/src/symfony/console/mod.rs | |
| parent | ddf0a624145b618c05c2ee47414545b99b685f37 (diff) | |
| download | php-shirabe-1e44f5723e4c0e0903d00a61f254901e612fe5e1.tar.gz php-shirabe-1e44f5723e4c0e0903d00a61f254901e612fe5e1.tar.zst php-shirabe-1e44f5723e4c0e0903d00a61f254901e612fe5e1.zip | |
feat(symfony-console): port Symfony Console and make the workspace compile
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Diffstat (limited to 'crates/shirabe-external-packages/src/symfony/console/mod.rs')
| -rw-r--r-- | crates/shirabe-external-packages/src/symfony/console/mod.rs | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/crates/shirabe-external-packages/src/symfony/console/mod.rs b/crates/shirabe-external-packages/src/symfony/console/mod.rs index b5b557d..688d21f 100644 --- a/crates/shirabe-external-packages/src/symfony/console/mod.rs +++ b/crates/shirabe-external-packages/src/symfony/console/mod.rs @@ -1,25 +1,39 @@ pub mod application; +pub mod attribute; +pub mod color; pub mod command; +pub mod command_loader; pub mod completion; +pub mod console_events; +pub mod cursor; +pub mod descriptor; +pub mod event; pub mod exception; pub mod formatter; pub mod helper; pub mod input; pub mod output; pub mod question; -pub mod single_command_application; +pub mod signal_registry; pub mod style; pub mod terminal; pub use application::*; +pub use attribute::*; +pub use color::*; pub use command::*; +pub use command_loader::*; pub use completion::*; +pub use console_events::*; +pub use cursor::*; +pub use descriptor::*; +pub use event::*; pub use exception::*; pub use formatter::*; pub use helper::*; pub use input::*; pub use output::*; pub use question::*; -pub use single_command_application::*; +pub use signal_registry::*; pub use style::*; pub use terminal::*; |
