-
Notifications
You must be signed in to change notification settings - Fork 79
Modernize parser to PHP 8.1+ with phpstan/phpdoc-parser #247
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
johnbillion
wants to merge
11
commits into
master
Choose a base branch
from
modernize-parser-php8
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+2,935
−4,474
Conversation
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
Complete rewrite of the parser architecture from legacy phpdocumentor/reflection to modern PHP libraries while maintaining 100% backward compatibility. ## Major Changes ### Core Dependencies - PHP requirement: 5.4+ → 8.1+ - Replace phpdocumentor/reflection v3.0 with phpstan/phpdoc-parser v2.0 - Add nikic/php-parser v5.0 for AST-based parsing - Update PHPUnit: v7 → v9 for WordPress compatibility ### Parser Architecture - Rewrite File_Reflector to use PHPParser NodeVisitorAbstract - Implement modern AST traversal for improved accuracy - Add advanced PHPDoc parsing with type support - Maintain backward compatibility through runner.php bridge ### Features Added - Namespace detection and tracking - Property docblock parsing with visibility - File-level docblock detection - Advanced tag parsing (@param, @return with types) - Class name resolution (self, parent, $this) - Modern PHP syntax support ### Development Environment - Update to Node.js 20+ with .nvmrc and .npmrc - Modernize GitHub Actions for PHP 8.1-8.3 testing - Add comprehensive documentation and contribution guidelines - Add Dependabot for automated dependency updates ### Test Results - All 22 tests passing (100% success rate) - Full WordPress integration via wp-env - Complete API compatibility maintained
- Remove Posts-to-Posts from wp-env.json to eliminate plugin conflicts - Add function existence checks in Relationships class for graceful degradation - Keep P2P composer dependencies for full functionality when plugin is available - Add class existence checks in plugin activation hooks This allows tests to run without P2P while maintaining full functionality when the WordPress plugin is installed. Core parsing tests all pass.
- Remove scribu/lib-posts-to-posts and scribu/scb-framework from composer.json - Add class/function existence checks in Relationships class for graceful degradation - Add P2P class existence check in plugin activation hooks - Rely solely on WordPress Posts-to-Posts plugin (via wp-env) instead of conflicting Composer packages This resolves the "function redeclared" errors in development while maintaining full functionality when the WordPress plugin is available. Tests pass, development environment works without conflicts, and production compatibility is preserved.
- Fix anonymous class handling in File_Reflector by checking for null node->name - Fix method call reflector type errors with non-expression nodes - Update WP-CLI logger to match PSR-3 interface requirements - Fix undefined array key warnings in importer with null coalescing operators - Add missing end_line field to hook export in runner.php - Fix undefined namespace warnings in relationships - Add wp-cli.yml configuration for development environment connection - Update README.md with clarified wp-env usage instructions All PHP warnings eliminated during WordPress core parsing. Processed 3,338 files successfully: 4,826 functions, 2,112 classes, 14,169 methods, 2,815 hooks.
…atibility Allows CI environments to generate their own lock files based on the specific PHP version being tested.
- Tests parser import command using wp-env - Verifies functions, classes, methods, and hooks are imported correctly - Checks for PHP warnings and errors during parsing - Validates database integrity and WordPress admin functionality - Uses subset of WordPress core files for faster CI execution
- Fix npm run wp-env command syntax with proper -- -- usage - Remove admin area tests, focus on WP-CLI verification only - Test parser functionality without requiring authentication - Verify import counts, error detection, and database integrity
Prevents duplicate runs while ensuring tests run on pull requests and master branch pushes
- Add 10-minute timeout to prevent hanging jobs - Replace hanging 'npm run wp-env logs' with 'docker ps' in cleanup - Improves CI reliability and debugging capability
Prevents duplicate runs - now only runs on pull requests and master branch pushes
Check plugin status and available commands to diagnose why parser command is not found
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.
Summary
Complete modernization of the WordPress PHPDoc parser from PHP 5.4/legacy libraries to PHP 8.1+/modern parsing stack while maintaining 100% backward compatibility.
Key Achievements
Changes Made
🔧 Core Dependencies
>=5.4
→>=8.1
phpdocumentor/reflection v3.0
→phpstan/phpdoc-parser v2.0
+nikic/php-parser v5.0
v7
→v9
(WordPress compatible)🏗️ Architecture Rewrite
runner.php
bridge layer✨ New Features
self
,parent
,$this
→ actual class names)🛠️ Development Environment
.nvmrc
and.npmrc
CONTRIBUTING.md
and updatedREADME.md
📊 Testing Results
Test Plan
Breaking Changes
None - Complete backward compatibility maintained through the bridge layer in
runner.php
.Future Enhancements
This modernization enables future support for: