This repository was archived by the owner on Jul 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathScriptConfiguration.php
More file actions
305 lines (284 loc) · 8.98 KB
/
ScriptConfiguration.php
File metadata and controls
305 lines (284 loc) · 8.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
<?php
namespace Eloquent\Composer\Configuration\Element;
/**
* Represents the hook scripts for a package.
*/
class ScriptConfiguration
{
/**
* Construct a new script configuration.
*
* @param array<integer,string>|null $preInstallCmd The pre-install commands.
* @param array<integer,string>|null $postInstallCmd The post-install commands.
* @param array<integer,string>|null $preUpdateCmd The pre-update commands.
* @param array<integer,string>|null $postUpdateCmd The post-update commands.
* @param array<integer,string>|null $preStatusCmd The pre-status commands.
* @param array<integer,string>|null $postStatusCmd The post-status commands.
* @param array<integer,string>|null $prePackageInstall The pre-package-install commands.
* @param array<integer,string>|null $postPackageInstall The post-package-install commands.
* @param array<integer,string>|null $prePackageUpdate The pre-package-update commands.
* @param array<integer,string>|null $postPackageUpdate The post-package-update commands.
* @param array<integer,string>|null $prePackageUninstall The pre-package-uninstall commands.
* @param array<integer,string>|null $postPackageUninstall The post-package-uninstall commands.
* @param array<integer,string>|null $preAutoloadDump The pre-autoload-dump commands.
* @param array<integer,string>|null $postAutoloadDump The post-autoload-dump commands.
* @param array<integer,string>|null $postRootPackageInstall The post-root-package-install commands.
* @param array<integer,string>|null $postCreateProjectCmd The post-create-project commands.
* @param mixed $rawData The raw data describing the script configuration.
*/
public function __construct(
array $preInstallCmd = null,
array $postInstallCmd = null,
array $preUpdateCmd = null,
array $postUpdateCmd = null,
array $preStatusCmd = null,
array $postStatusCmd = null,
array $prePackageInstall = null,
array $postPackageInstall = null,
array $prePackageUpdate = null,
array $postPackageUpdate = null,
array $prePackageUninstall = null,
array $postPackageUninstall = null,
array $preAutoloadDump = null,
array $postAutoloadDump = null,
array $postRootPackageInstall = null,
array $postCreateProjectCmd = null,
$rawData = null
) {
if (null === $preInstallCmd) {
$preInstallCmd = [];
}
if (null === $postInstallCmd) {
$postInstallCmd = [];
}
if (null === $preUpdateCmd) {
$preUpdateCmd = [];
}
if (null === $postUpdateCmd) {
$postUpdateCmd = [];
}
if (null === $preStatusCmd) {
$preStatusCmd = [];
}
if (null === $postStatusCmd) {
$postStatusCmd = [];
}
if (null === $prePackageInstall) {
$prePackageInstall = [];
}
if (null === $postPackageInstall) {
$postPackageInstall = [];
}
if (null === $prePackageUpdate) {
$prePackageUpdate = [];
}
if (null === $postPackageUpdate) {
$postPackageUpdate = [];
}
if (null === $prePackageUninstall) {
$prePackageUninstall = [];
}
if (null === $postPackageUninstall) {
$postPackageUninstall = [];
}
if (null === $preAutoloadDump) {
$preAutoloadDump = [];
}
if (null === $postAutoloadDump) {
$postAutoloadDump = [];
}
if (null === $postRootPackageInstall) {
$postRootPackageInstall = [];
}
if (null === $postCreateProjectCmd) {
$postCreateProjectCmd = [];
}
$this->preInstallCmd = $preInstallCmd;
$this->postInstallCmd = $postInstallCmd;
$this->preUpdateCmd = $preUpdateCmd;
$this->postUpdateCmd = $postUpdateCmd;
$this->preStatusCmd = $preStatusCmd;
$this->postStatusCmd = $postStatusCmd;
$this->prePackageInstall = $prePackageInstall;
$this->postPackageInstall = $postPackageInstall;
$this->prePackageUpdate = $prePackageUpdate;
$this->postPackageUpdate = $postPackageUpdate;
$this->prePackageUninstall = $prePackageUninstall;
$this->postPackageUninstall = $postPackageUninstall;
$this->preAutoloadDump = $preAutoloadDump;
$this->postAutoloadDump = $postAutoloadDump;
$this->postRootPackageInstall = $postRootPackageInstall;
$this->postCreateProjectCmd = $postCreateProjectCmd;
$this->rawData = $rawData;
}
/**
* Get the pre-install commands.
*
* @return array<integer,string> The pre-install commands.
*/
public function preInstallCmd()
{
return $this->preInstallCmd;
}
/**
* Get the post-install commands.
*
* @return array<integer,string> The post-install commands.
*/
public function postInstallCmd()
{
return $this->postInstallCmd;
}
/**
* Get the pre-update commands.
*
* @return array<integer,string> The pre-update commands.
*/
public function preUpdateCmd()
{
return $this->preUpdateCmd;
}
/**
* Get the post-update commands.
*
* @return array<integer,string> The post-update commands.
*/
public function postUpdateCmd()
{
return $this->postUpdateCmd;
}
/**
* Get the pre-status commands.
*
* @return array<integer,string> The pre-status commands.
*/
public function preStatusCmd()
{
return $this->preStatusCmd;
}
/**
* Get the post-status commands.
*
* @return array<integer,string> The post-status commands.
*/
public function postStatusCmd()
{
return $this->postStatusCmd;
}
/**
* Get the pre-package-install commands.
*
* @return array<integer,string> The pre-package-install commands.
*/
public function prePackageInstall()
{
return $this->prePackageInstall;
}
/**
* Get the post-package-install commands.
*
* @return array<integer,string> The post-package-install commands.
*/
public function postPackageInstall()
{
return $this->postPackageInstall;
}
/**
* Get the pre-package-update commands.
*
* @return array<integer,string> The pre-package-update commands.
*/
public function prePackageUpdate()
{
return $this->prePackageUpdate;
}
/**
* Get the post-package-update commands.
*
* @return array<integer,string> The post-package-update commands.
*/
public function postPackageUpdate()
{
return $this->postPackageUpdate;
}
/**
* Get the pre-package-uninstall commands.
*
* @return array<integer,string> The pre-package-uninstall commands.
*/
public function prePackageUninstall()
{
return $this->prePackageUninstall;
}
/**
* Get the post-package-uninstall commands.
*
* @return array<integer,string> The post-package-uninstall commands.
*/
public function postPackageUninstall()
{
return $this->postPackageUninstall;
}
/**
* Get the pre-autoload-dump commands.
*
* @return array<integer,string> The pre-autoload-dump commands.
*/
public function preAutoloadDump()
{
return $this->preAutoloadDump;
}
/**
* Get the post-autoload-dump commands.
*
* @return array<integer,string> The post-autoload-dump commands.
*/
public function postAutoloadDump()
{
return $this->postAutoloadDump;
}
/**
* Get the post-root-package-install commands.
*
* @return array<integer,string> The post-root-package-install commands.
*/
public function postRootPackageInstall()
{
return $this->postRootPackageInstall;
}
/**
* Get the post-create-project commands.
*
* @return array<integer,string> The post-create-project commands.
*/
public function postCreateProjectCmd()
{
return $this->postCreateProjectCmd;
}
/**
* Get the raw configuration data.
*
* @return mixed The raw configuration data.
*/
public function rawData()
{
return $this->rawData;
}
private $preInstallCmd;
private $postInstallCmd;
private $preUpdateCmd;
private $postUpdateCmd;
private $preStatusCmd;
private $postStatusCmd;
private $prePackageInstall;
private $postPackageInstall;
private $prePackageUpdate;
private $postPackageUpdate;
private $prePackageUninstall;
private $postPackageUninstall;
private $preAutoloadDump;
private $postAutoloadDump;
private $postRootPackageInstall;
private $postCreateProjectCmd;
private $rawData;
}