You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/pages/contributing.mdx
+26Lines changed: 26 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,6 +49,32 @@ This leads to more readable messages that are easy to follow when looking throug
49
49
-**chore** — Other changes that don't modify src or test files
50
50
-**security** — A code change that fixes a security issue
51
51
52
+
## 🧪 Running Tests
53
+
54
+
### → PHPUnit Tests
55
+
56
+
To run phpunit (pest) tests, run the following command:
57
+
58
+
```bash
59
+
$ make test
60
+
```
61
+
62
+
### → Static Analysis
63
+
64
+
Run Code quality checks using [PHPStan](https://phpstan.org):
65
+
66
+
```bash
67
+
$ make lint-stan
68
+
```
69
+
70
+
### → Coding Standards Fixing
71
+
72
+
Fix code using [The PHP Coding Standards Fixer](https://github.com/wayofdev/php-cs-fixer-config) to follow our standards:
73
+
74
+
```bash
75
+
$ make lint-php
76
+
```
77
+
52
78
## 🔓 Security Vulnerabilities
53
79
54
80
If you discover a security vulnerability within this package, please send an e-mail to WayOfDev via the@wayof.dev. All security vulnerabilities will be promptly addressed.
0 commit comments