Skip to content

PR standards, Pint enforcement, and README refresh

Choose a tag to compare

@lwwcas lwwcas released this 13 Jul 23:31
· 10 commits to master since this release

Overview

Version 4.13.2 focuses on contributor experience and CI quality. No new package features or breaking changes — this release standardizes how pull requests are validated, enforces code style with Laravel Pint, and refreshes the README landing page.


🔧 CI & Pull Request Standards

New GitHub workflows

  • ci.yml — runs on every PR and push to master:
    • Branch naming — enforces prefix folders (feature/, bug/, fix/, docs/, chore/, refactor/, test/, release/)
    • Pintcomposer pint:check validates code style
  • tests.yml — Pest test suite across Laravel 11, 12, and 13 on every PR

Contribution guidelines

Composer scripts

composer pint        # format code
composer pint:check  # verify formatting (CI)
composer check       # pint:check + test