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
This pull request introduces several enhancements and new features to the
alphaolomi/mrz
PHP library. It notably includes the addition of GitHub funding information, an extensive testing setup via GitHub Actions for PHP versions 8.1 and 8.2 across various platforms, and a revision of the.gitignore
file to align with best practices. The changes aim to streamline the development process, enhance code quality, and improve community engagement.Changes
GitHub Funding: A new
FUNDING.yml
file has been added to the.github
directory, enabling the GitHub Sponsors button for the repository. This change opens up opportunities for community sponsorship, supporting the ongoing development and maintenance of the project.Testing Setup: The project now includes a comprehensive testing setup, implemented via GitHub Actions. The workflow, defined in
run-phpunit-tests.yml
, executes tests across a matrix of operating systems (Ubuntu and Windows) and PHP versions (8.1, 8.2), ensuring compatibility and robustness across different environments..gitignore Revision: The
.gitignore
file has been updated to exclude additional files and directories such as.php_cs
,.phpunit.result.cache
, andcomposer.lock
, among others. This update prevents unnecessary files from being tracked by Git, keeping the repository clean and focused on source code.Miscellaneous: Minor adjustments and improvements have been made to the documentation and codebase to enhance clarity and maintainability.
Impact
These changes are expected to positively impact the project by:
.gitignore
file.Next Steps