Skip to content

Commit 838b3b5

Browse files
committed
docs: add new additional_composer_arguments setting to README
Signed-off-by: Maximilian Bösing <[email protected]>
1 parent 9a61721 commit 838b3b5

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,10 @@ The "job" element will have the following elements, but is not restricted to the
9494
"dependencies": "(optional) dependencies to test against; one of lowest, locked, latest. default: locked",
9595
"command": "(required) command to run to perform the check",
9696
"ignore_platform_reqs_8": "(optional; deprecated) boolean; whether to add `--ignore-platform-req=php` to composer for PHP 8.0. default: true",
97-
"ignore_php_platform_requirement": "(optional) boolean; whether to add `--ignore-platform-req=php` to composer for this job."
97+
"ignore_php_platform_requirement": "(optional) boolean; whether to add `--ignore-platform-req=php` to composer for this job.",
98+
"additional_composer_arguments": [
99+
"(optional) list of arguments to be passed to `composer install` and `composer update`"
100+
]
98101
}
99102
```
100103

@@ -125,7 +128,9 @@ The package can include a configuration file in its root, `.laminas-ci.json`, wh
125128
"ignore_php_platform_requirements": {
126129
"8.0": true
127130
},
128-
"stablePHP": "7.4"
131+
"stablePHP": "7.4",
132+
"additional_composer_arguments": [
133+
]
129134
}
130135
```
131136

0 commit comments

Comments
 (0)