@@ -61,10 +61,10 @@ It spits out a single output, "matrix", which is a JSON string in the following
61
61
" name " : " (string) Name of the check being run" ,
62
62
" operatingSystem " : " (string) Name of the OS the job should be run on (generally ubuntu-latest)" ,
63
63
" action " : " (string) GHA to run the step on; currently ignored, as GHA does not support dynamic action selection" ,
64
- " job " : " (string) JSON object detailing the job (more on this later)" ,
65
- },
64
+ " job " : " (string) JSON object detailing the job (more on this later)"
65
+ }
66
66
],
67
- " exclude: [
67
+ " exclude " : [
68
68
{
69
69
}
70
70
]
@@ -88,7 +88,7 @@ It will have the following elements, but is not restricted to them:
88
88
" php.ini directives, one per element; e.g. 'memory_limit=-1'" ,
89
89
],
90
90
"dependencies" : " dependencies to test against; one of lowest, locked, latest" ,
91
- "command": "command to run to perform the check",
91
+ "command" : " command to run to perform the check"
92
92
}
93
93
```
94
94
@@ -99,19 +99,19 @@ The package can include a configuration file in its root, `.laminas-ci.json`, wh
99
99
``` json
100
100
{
101
101
"extensions" : [
102
- "extension names to install",
102
+ " extension names to install"
103
103
],
104
104
"ini" : [
105
- "php.ini directives",
105
+ " php.ini directives"
106
106
],
107
107
"checks" : [
108
108
{
109
- },
109
+ }
110
110
],
111
111
"additional_checks" : [
112
112
{
113
- },
114
- ]
113
+ }
114
+ ],
115
115
"exclude" : [
116
116
{
117
117
}
@@ -142,15 +142,15 @@ In each case, it MUST have the structure as noted above:
142
142
"extensions" : [
143
143
" OPTIONAL array of strings" ,
144
144
" Each element represents an extension to install" ,
145
- "Names are from the Sury PHP repository, minus the php{VERSION}- prefix",
145
+ " Names are from the Sury PHP repository, minus the php{VERSION}- prefix"
146
146
],
147
147
"ini" : [
148
148
" OPTIONAL array of strings" ,
149
149
" Each element respresents one php.ini directive" ,
150
- "e.g. 'memory_limit=-1'",
150
+ " e.g. 'memory_limit=-1'"
151
151
],
152
152
"dependencies" : " dependencies to test against; one of lowest, locked, latest" ,
153
- "command": "command to run to perform the check",
153
+ "command" : " command to run to perform the check"
154
154
}
155
155
```
156
156
0 commit comments