File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ For smaller contributions just use this workflow:
10
10
11
11
- Fork the project.
12
12
- Add your features and or bug fixes.
13
- - Add tests. Tests are important for us .
13
+ - Add tests to ensure your changes work and will continue working .
14
14
- Check your changes using ` composer check ` .
15
15
- Add an entry to the [ Changelog's Unreleased section] ( CHANGELOG.md#unreleased ) .
16
16
- Send a pull request.
@@ -134,6 +134,9 @@ composer bench
134
134
135
135
We document this library by rendering the Markdown files in [ docs] ( docs ) with [ MkDocs] ( https://www.mkdocs.org ) .
136
136
137
+ > You may propose changes to the docs via merge requests against the ` master ` branch.
138
+ > Do not edit the generated HTML files in the ` gh-pages ` branch directly, they are automatically generated.
139
+
137
140
Generate the class reference docs:
138
141
139
142
``` sh
Original file line number Diff line number Diff line change @@ -5,6 +5,9 @@ it: fix stan test docs ## Run the commonly used targets
5
5
help : # # Displays this list of targets with descriptions
6
6
@grep -E ' ^[a-zA-Z0-9_-]+:.*?## .*$$' $(firstword $(MAKEFILE_LIST ) ) | sort | awk ' BEGIN {FS = ":.*?## "}; {printf "\033[32m%-30s\033[0m %s\n", $$1, $$2}'
7
7
8
+ .PHONY : setup
9
+ setup : vendor # # Set up the project
10
+
8
11
.PHONY : fix
9
12
fix : rector php-cs-fixer # # Automatic code fixes
10
13
You can’t perform that action at this time.
0 commit comments