# Suggested Commands ## Testing ```bash # Full test suite (recommended, PowerShell) ./test.ps1 # Specific test file ./test.ps1 tests/Unit/Domain/Product/ProductRepositoryTest.php # Specific test method ./test.ps1 --filter testGetQuantityReturnsCorrectValue # Via composer composer test ``` ## System Utilities (Windows with Git Bash) ```bash # Use Unix-style commands (Git Bash shell) ls # list directory grep -r # search content (prefer Serena tools instead) git status # git operations git log --oneline -10 git diff git add git commit -m "message" git push ``` ## Development ```bash # No build step — PHP is interpreted # No linting/formatting tool configured # Entry points are served via web server (XAMPP) ``` ## PHP binary ``` C:\xampp\php\php.exe ```