Open
Conversation
Add suite of developer productivity commands for IDE integration, documentation generation, file watching, and module exploration. Key features: - generate:ide-helper command for PHPStorm meta file generation - docs:generate command for automatic module documentation - dev:watch command for file watching with auto-reload - explore command for interactive module inspection - IdeHelperGenerator for IDE autocomplete support - DocumentationGenerator for automated docs - FileWatcher for development workflow - Enhanced .phpstorm.meta.php for better IDE support These commands improve developer experience through better IDE integration, automated documentation, and interactive exploration.
- Add file watcher methods (initializeFileWatcher, detectFileChanges) - Add IDE helper generation (generateIdeHelperMeta) - Add documentation generation (generateModuleDocumentation) - Add development cache clearing (clearDevelopmentCaches) - Modify commands to work without dependency analyzer (will be added in future PR) - Fix PHPStan errors in FileWatcher and DocumentationGenerator - Regenerate Psalm baseline
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
TL;DR
Adds developer productivity commands for IDE integration, automated documentation generation, file watching, and interactive module exploration to improve development workflow.
Summary
generate:ide-helpercommand for PHPStorm meta file generation with autocomplete supportdocs:generatecommand for automatic module documentation generationdev:watchcommand for file watching during development with auto-reload capabilityexplorecommand for interactive module inspection and navigationKey Features
IDE Integration:
.phpstorm.meta.phpfor better PHPStorm autocompleteDocumentation Generation:
Development Workflow:
Interactive Exploration:
Commands