Modernize project with tooling and PHP 8.2+ refactor - #18
Open
philippedev101 wants to merge 3 commits into
Open
Conversation
This overhauls the entire library to bring it up to modern PHP standards.
- The project now follows the PSR-4 standard, with all code moved to a top-level `src/` directory and tests in `tests/`.
- All dependencies were updated. The library now requires PHP 8.2+, Doctrine Lexer 3.0, Doctrine Collections 2.3, and Symfony String 7.3.
- The core parser and generator logic was rewritten to use strict types, match expressions, and other modern PHP features. The code is simpler and easier to follow now.
- A full set of development tools was added:
- A GitHub Actions workflow for continuous integration.
- PHPStan for static analysis.
- PHP-CS-Fixer for a consistent code style.
- The random number generators were simplified, removing the old and insecure ones in favor of a clear `MersenneRandom` class.
- The project is now set to version 1.0.0 to mark this as the first stable, modern release.
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.
This overhauls the entire library to bring it up to modern PHP standards.
src/directory and tests intests/.MersenneRandomclass.