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
fix: update php-cs-fixer version and use it in CI (#14)
* ci(codestyle): update php-cs-fixer
* fix: add composer.lock for having more stable CI
* ci: use php 8.3 in CI
* tests: fix tests with php-cs-fixer
* docs: update contributing instructions
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ You can open [a new issue](https://github.com/Strobotti/php-jwk/issues) once you
12
12
13
13
If you want to fix a bug or add a missing feature you can open a new pull-request.
14
14
15
-
Please note that you need a PHP 7.2 or later for using this library (including running the tests).
15
+
Please note that you need a PHP 7.3 or later for using this library (running the tests requires at least php 8.2).
16
16
17
17
Basic steps:
18
18
@@ -40,9 +40,10 @@ Some guidelines:
40
40
41
41
### Git Commit Messages
42
42
43
-
* Use the present tense ("Add feature" not "Added feature")
44
-
* Use the imperative mood ("Move cursor to..." not "Moves cursor to...")
45
-
* Limit the first line to 72 characters or less
43
+
* use [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/) to make the commit messages more readable and to allow for automatic semantic versioning and changelog generation
44
+
* Use the present tense ("add feature" not "added feature")
45
+
* Use the imperative mood ("move cursor to..." not "moves cursor to...")
0 commit comments