From 066b7b179008aa1a8516c6784322220b24eae37a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 29 Jan 2026 05:12:18 +0000 Subject: [PATCH] Add code style documentation to README Co-authored-by: nomadjimbob <26953208+nomadjimbob@users.noreply.github.com> --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md index 1a4c26b..efdd378 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,24 @@ We would like to extend our thanks to the following sponsors for funding Laravel - **[byte5](https://byte5.de)** - **[OP.GG](https://op.gg)** +## Code Style + +This project uses [Laravel Pint](https://laravel.com/docs/pint) for code styling. Pint is an opinionated PHP code style fixer for minimalists, built on top of PHP-CS-Fixer. + +To automatically fix code style issues, run: + +```bash +composer pint +``` + +To check for code style issues without fixing them: + +```bash +composer pint-test +``` + +The code style configuration can be found in `pint.json`. + ## Contributing Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions).