Conversation
- Create release workflow for automated versioning and artifact uploads - Add tests workflow for PHPUnit integration - Introduce book order file for documentation structure - Configure PHPStan for static analysis - Set up PHPUnit configuration file - Add release notes template and initial release note for v2.5.0 - Implement HTML templates for cover and back pages of the documentation - Develop PDF building script with support for Mermaid diagrams - Generate release notes script to automate release documentation - Add Puppeteer configuration for HTML to PDF rendering - Implement unit tests for the Ways routing engine - Create bootstrap file for test environment setup
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 pull request introduces a comprehensive set of improvements to project infrastructure, documentation, and release automation for Div PHP Ways. The most significant changes include adding project-specific CI workflows, improving and restructuring documentation, and establishing a robust release process with automated PDF documentation and release note requirements.
Continuous Integration and Quality Assurance:
.github/workflows/tests.yml), static analysis with PHPStan (.github/workflows/phpstan.yml), and automated release builds with PDF documentation and artifact uploads (.github/workflows/release.yml). [1] [2] [3]phpstan.neon) and a PHPUnit configuration file (phpunit.xml) tailored to the project. [1] [2]Documentation Improvements:
README.mdto clarify the "ways" concept, provide concise usage examples, and document installation, rules, CLI usage, and license.docs/book-order.txt) and improved navigation in the Markdown docs. [1] [2]scripts/back.html).Release Process Automation:
releases/README.md, requiring a Markdown file per release and providing a script for generating drafts.releases/v2.5.0.md)..gitattributesto exclude development and CI files from release archives.Grouped summary of the most important changes:
1. CI/CD and Quality Automation
.github/workflows/tests.yml,.github/workflows/phpstan.yml,.github/workflows/release.yml) [1] [2] [3]phpstan.neon,phpunit.xml) [1] [2]2. Documentation Overhaul
README.mdfor clarity, concise examples, and improved onboarding.docs/book-order.txt,docs/Div PHP Ways.md) [1] [2]scripts/back.html)3. Release Management
releases/README.md)releases/v2.5.0.md).gitattributesto exclude development and CI files from release archives.