Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Contributing

Thank you for considering contributing!

Before submitting a pull request, ensure all tests pass.

The project uses:

- **Pest** for unit and feature tests.
- **PHPStan** for static analysis.
- **Pint** for code styling.

All three are automatically run on every pull request.

You can run them locally (recommended) with:

```bash
vendor/bin/pest
vendor/bin/phpstan analyse
vendor/bin/pint
```
Loading