Commit 95de33c
feat: migrate to Symfony Console architecture
Complete migration from legacy switch-based system to modern Symfony Console:
- Add Symfony Console 6.4/7.0 as dependency
- Create 17 individual command classes for all operations
- Implement base command infrastructure with shared functionality
- Update Utils.php to support Symfony OutputInterface
- Rewrite bin/fsmaker bootstrap to use Symfony Application
- Remove legacy fsmaker.php and shell scripts (fsmaker.bat, fsmaker.sh)
- Update all tests to work without legacy dependencies
- Update README with new usage examples and architecture benefits
All commands now support:
- Built-in help system (--help)
- Shell autocompletion
- Colored/formatted output
- Verbosity control (-v, -vv, -vvv)
Breaking changes: None - all functionality preserved
Tests: 18/18 passing (161 assertions)
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>1 parent ec59453 commit 95de33c
File tree
30 files changed
+1526
-985
lines changed- bin
- src
- Command
- Api
- Controller
- Cron
- Extension
- Generator
- Init
- Model
- Plugin
- Test
- Worker
- Console
- tests
30 files changed
+1526
-985
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
22 | | - | |
| 22 | + | |
23 | 23 | | |
24 | 24 | | |
25 | | - | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
26 | 33 | | |
27 | 34 | | |
28 | 35 | | |
| |||
35 | 42 | | |
36 | 43 | | |
37 | 44 | | |
38 | | - | |
| 45 | + | |
39 | 46 | | |
40 | 47 | | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
41 | 59 | | |
42 | 60 | | |
43 | 61 | | |
| |||
163 | 181 | | |
164 | 182 | | |
165 | 183 | | |
| 184 | + | |
| 185 | + | |
| 186 | + | |
| 187 | + | |
| 188 | + | |
| 189 | + | |
| 190 | + | |
| 191 | + | |
| 192 | + | |
| 193 | + | |
| 194 | + | |
166 | 195 | | |
167 | 196 | | |
168 | 197 | | |
| |||
176 | 205 | | |
177 | 206 | | |
178 | 207 | | |
179 | | - | |
180 | | - | |
181 | | - | |
| 208 | + | |
| 209 | + | |
| 210 | + | |
182 | 211 | | |
183 | 212 | | |
184 | 213 | | |
| |||
194 | 223 | | |
195 | 224 | | |
196 | 225 | | |
| 226 | + | |
| 227 | + | |
| 228 | + | |
| 229 | + | |
| 230 | + | |
| 231 | + | |
| 232 | + | |
197 | 233 | | |
198 | 234 | | |
199 | 235 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | 3 | | |
4 | | - | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
20 | 20 | | |
21 | 21 | | |
22 | 22 | | |
23 | | - | |
| 23 | + | |
| 24 | + | |
24 | 25 | | |
25 | 26 | | |
26 | 27 | | |
| |||
This file was deleted.
0 commit comments