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
* drop PHP versions below 8.1
* update dependencies
* merge fix for When using json() failing command has output on stdout and not stderr #90
* add symfony process 7 Adding support of symfony/process ^7.0 #94
* add docker env for develeopment
* update phpunit, fix tests to work with v11
analyze: ## Start analysis with phpstan, pass the parameter "c=" to add options to phpstan. Default config ist always used, example: make analyze c="--group e2e"
codestyle: ## Start codestyle analysis with phpcs, pass the parameter "c=" to add options to phpcs. Default config ist always used. Example: make codestyle c="--parallel=2"
codestyle-fix: ## Start codestyle analysis with phpcbf, pass the parameter "c=" to add options to phpcbf. Default config ist always used. Example: make codestyle c="--parallel=2"
psalm: ## Start code analysis with psalm, pass the parameter "c=" to add options to psalm. Default config ist always used. Example: make codestyle c="--level=2"
Copy file name to clipboardExpand all lines: README.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -162,7 +162,12 @@ $ansible
162
162
…
163
163
```
164
164
165
+
## Development
165
166
167
+
You can use the provided docker image with ```make build``` which uses a default php-cli docker image and ansible 2.x. See the ```Dockerfile``` for more info.
168
+
Start the container with ```make up```.
169
+
Composer install: ```make vendor```
170
+
You can run code or the tests within the container: ```make test c="--testdox"```
166
171
167
172
## Thank you for your contributions!
168
173
@@ -178,7 +183,6 @@ The Next steps for implementation are:
178
183
- improve type handling and structure, due to overall complexity of the playbook at the moment
179
184
- scalar typehints all over the place
180
185
- provide docker support for development
181
-
- move to php8.0 exclusively for the next major release
0 commit comments