@enjoys/context-engine 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/data/commands/adb.json +322 -0
- package/data/commands/alembic.json +301 -0
- package/data/commands/artisan.json +277 -0
- package/data/commands/atlas.json +426 -0
- package/data/commands/auth0.json +648 -0
- package/data/commands/bat.json +84 -0
- package/data/commands/btop.json +59 -0
- package/data/commands/bundle.json +321 -0
- package/data/commands/composer.json +507 -0
- package/data/commands/dart.json +216 -0
- package/data/commands/dbmate.json +257 -0
- package/data/commands/docker-compose.json +384 -0
- package/data/commands/drizzle-kit.json +217 -0
- package/data/commands/expo.json +65 -0
- package/data/commands/fastlane.json +243 -0
- package/data/commands/fd.json +86 -0
- package/data/commands/flutter.json +298 -0
- package/data/commands/flyway.json +261 -0
- package/data/commands/fzf.json +103 -0
- package/data/commands/gem.json +267 -0
- package/data/commands/htop.json +56 -0
- package/data/commands/jq.json +100 -0
- package/data/commands/k9s.json +62 -0
- package/data/commands/linux.json +3007 -0
- package/data/commands/liquibase.json +399 -0
- package/data/commands/manifest.json +619 -0
- package/data/commands/minikube.json +60 -0
- package/data/commands/ng.json +64 -0
- package/data/commands/nuxt.json +60 -0
- package/data/commands/nvim.json +91 -0
- package/data/commands/php.json +157 -0
- package/data/commands/pm2.json +259 -0
- package/data/commands/pod.json +175 -0
- package/data/commands/prisma.json +257 -0
- package/data/commands/rails.json +372 -0
- package/data/commands/rake.json +360 -0
- package/data/commands/react-native.json +57 -0
- package/data/commands/rg.json +103 -0
- package/data/commands/rspec.json +257 -0
- package/data/commands/ruby.json +108 -0
- package/data/commands/screen.json +101 -0
- package/data/commands/sequelize.json +342 -0
- package/data/commands/snyk.json +442 -0
- package/data/commands/sonar-scanner.json +219 -0
- package/data/commands/stripe.json +314 -0
- package/data/commands/symfony.json +449 -0
- package/data/commands/tmux.json +197 -0
- package/data/commands/top.json +61 -0
- package/data/commands/trivy.json +367 -0
- package/data/commands/twilio.json +382 -0
- package/data/commands/typeorm.json +262 -0
- package/data/commands/vim.json +85 -0
- package/data/commands/vue.json +60 -0
- package/data/commands/wp.json +857 -0
- package/data/commands/xcodebuild.json +141 -0
- package/data/commands/yq.json +57 -0
- package/data/completion/bash.json +1184 -0
- package/data/completion/c.json +1067 -0
- package/data/completion/cpp.json +824 -0
- package/data/completion/csharp.json +860 -0
- package/data/completion/dockerfile.json +536 -0
- package/data/completion/go.json +1346 -0
- package/data/completion/html.json +806 -0
- package/data/completion/java.json +1112 -0
- package/data/completion/javascript.json +914 -0
- package/data/completion/lua.json +968 -0
- package/data/completion/php.json +1535 -0
- package/data/completion/python.json +1427 -0
- package/data/completion/ruby.json +1531 -0
- package/data/completion/rust.json +698 -0
- package/data/completion/sql.json +887 -0
- package/data/completion/toml.json +428 -0
- package/data/completion/typescript.json +338 -0
- package/data/completion/yaml.json +563 -0
- package/data/defination/bash.json +565 -0
- package/data/defination/c.json +865 -0
- package/data/defination/cpp.json +348 -0
- package/data/defination/csharp.json +144 -0
- package/data/defination/dockerfile.json +113 -0
- package/data/defination/go.json +561 -0
- package/data/defination/html.json +559 -0
- package/data/defination/java.json +184 -0
- package/data/defination/javascript.json +265 -0
- package/data/defination/lua.json +181 -0
- package/data/defination/php.json +726 -0
- package/data/defination/python.json +717 -0
- package/data/defination/ruby.json +670 -0
- package/data/defination/rust.json +207 -0
- package/data/defination/sql.json +473 -0
- package/data/defination/toml.json +251 -0
- package/data/defination/typescript.json +29 -0
- package/data/defination/yaml.json +197 -0
- package/data/hover/bash.json +245 -0
- package/data/hover/c.json +265 -0
- package/data/hover/cpp.json +210 -0
- package/data/hover/csharp.json +290 -0
- package/data/hover/dockerfile.json +145 -0
- package/data/hover/go.json +580 -0
- package/data/hover/html.json +250 -0
- package/data/hover/java.json +395 -0
- package/data/hover/javascript.json +330 -0
- package/data/hover/lua.json +265 -0
- package/data/hover/php.json +300 -0
- package/data/hover/python.json +380 -0
- package/data/hover/ruby.json +265 -0
- package/data/hover/rust.json +275 -0
- package/data/hover/sql.json +230 -0
- package/data/hover/toml.json +145 -0
- package/data/hover/typescript.json +120 -0
- package/data/hover/yaml.json +165 -0
- package/data/manifest.json +242 -0
- package/package.json +1 -1
|
@@ -0,0 +1,507 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "composer",
|
|
3
|
+
"description": "Dependency Manager for PHP",
|
|
4
|
+
"category": "package-manager",
|
|
5
|
+
"platforms": [
|
|
6
|
+
"linux",
|
|
7
|
+
"macos",
|
|
8
|
+
"windows"
|
|
9
|
+
],
|
|
10
|
+
"shells": [
|
|
11
|
+
"bash",
|
|
12
|
+
"zsh",
|
|
13
|
+
"fish",
|
|
14
|
+
"powershell"
|
|
15
|
+
],
|
|
16
|
+
"subcommands": [
|
|
17
|
+
{
|
|
18
|
+
"name": "install",
|
|
19
|
+
"description": "Installs the project dependencies from the composer.lock file if present, or falls back on the composer.json.",
|
|
20
|
+
"args": [],
|
|
21
|
+
"options": [
|
|
22
|
+
{
|
|
23
|
+
"name": "--no-dev",
|
|
24
|
+
"description": "Disables installation of require-dev packages."
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"name": "--dry-run",
|
|
28
|
+
"description": "Outputs the operations but will not execute anything (implicitly enables --verbose)."
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "--no-autoloader",
|
|
32
|
+
"description": "Skips autoloader generation."
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"name": "--no-scripts",
|
|
36
|
+
"description": "Skips the execution of all scripts defined in composer.json."
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "--no-progress",
|
|
40
|
+
"description": "Removes the progress display that can mess with some terminals or scripts which don't handle backspace characters."
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"name": "--optimize-autoloader",
|
|
44
|
+
"short": "-o",
|
|
45
|
+
"description": "Optimize autoloader during autoloader dump."
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"name": "--classmap-authoritative",
|
|
49
|
+
"short": "-a",
|
|
50
|
+
"description": "Autoload classes from the classmap only. Implicitly enables `--optimize-autoloader`."
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"name": "--apcu-autoloader",
|
|
54
|
+
"description": "Use APCu to cache found/not-found classes."
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"name": "--apcu-autoloader-prefix",
|
|
58
|
+
"description": "Use a custom prefix for the APCu autoloader cache. Implicitly enables --apcu-autoloader",
|
|
59
|
+
"type": "string"
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"name": "--ignore-platform-req",
|
|
63
|
+
"description": "Ignore a specific platform requirement (php & ext- packages).",
|
|
64
|
+
"type": "string"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"name": "--ignore-platform-reqs",
|
|
68
|
+
"description": "Ignore all platform requirements (php & ext- packages)."
|
|
69
|
+
}
|
|
70
|
+
],
|
|
71
|
+
"examples": [
|
|
72
|
+
"composer install",
|
|
73
|
+
"composer install --no-dev",
|
|
74
|
+
"composer install --optimize-autoloader --no-dev"
|
|
75
|
+
]
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"name": "require",
|
|
79
|
+
"description": "Adds required packages to your composer.json and installs them.",
|
|
80
|
+
"args": [
|
|
81
|
+
{
|
|
82
|
+
"name": "<package>",
|
|
83
|
+
"type": "string",
|
|
84
|
+
"required": true,
|
|
85
|
+
"description": "Package name to require (e.g. vendor/package:version)"
|
|
86
|
+
}
|
|
87
|
+
],
|
|
88
|
+
"options": [
|
|
89
|
+
{
|
|
90
|
+
"name": "--dev",
|
|
91
|
+
"description": "Add packages to require-dev."
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"name": "--dry-run",
|
|
95
|
+
"description": "Outputs the operations but will not execute anything (implicitly enables --verbose)."
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"name": "--no-progress",
|
|
99
|
+
"description": "Removes the progress display that can mess with some terminals or scripts which don't handle backspace characters."
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"name": "--optimize-autoloader",
|
|
103
|
+
"short": "-o",
|
|
104
|
+
"description": "Optimize autoloader during autoloader dump."
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"name": "--no-update",
|
|
108
|
+
"description": "Disables the automatic update of the dependencies (implies --no-install)."
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"name": "--no-install",
|
|
112
|
+
"description": "Skip the install step after updating the composer.json file."
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"name": "--update-with-dependencies",
|
|
116
|
+
"short": "-w",
|
|
117
|
+
"description": "Allows inherited dependencies to be updated, except those that are root requirements."
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"name": "--update-with-all-dependencies",
|
|
121
|
+
"short": "-W",
|
|
122
|
+
"description": "Allows all inherited dependencies to be updated, including those that are root requirements."
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"name": "--with-all-dependencies",
|
|
126
|
+
"description": "Alias for --update-with-all-dependencies"
|
|
127
|
+
}
|
|
128
|
+
],
|
|
129
|
+
"examples": [
|
|
130
|
+
"composer require monolog/monolog",
|
|
131
|
+
"composer require phpunit/phpunit --dev"
|
|
132
|
+
]
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"name": "update",
|
|
136
|
+
"description": "Updates your dependencies to the latest version according to composer.json, and updates the composer.lock file.",
|
|
137
|
+
"args": [
|
|
138
|
+
{
|
|
139
|
+
"name": "<packages>",
|
|
140
|
+
"type": "string",
|
|
141
|
+
"required": false,
|
|
142
|
+
"description": "Specific packages to update"
|
|
143
|
+
}
|
|
144
|
+
],
|
|
145
|
+
"options": [
|
|
146
|
+
{
|
|
147
|
+
"name": "--no-dev",
|
|
148
|
+
"description": "Run the dependency update with the --no-dev option."
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"name": "--dry-run",
|
|
152
|
+
"description": "Outputs the operations but will not execute anything (implicitly enables --verbose)."
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"name": "--no-autoloader",
|
|
156
|
+
"description": "Skips autoloader generation."
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"name": "--no-scripts",
|
|
160
|
+
"description": "Skips the execution of all scripts defined in composer.json."
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"name": "--optimize-autoloader",
|
|
164
|
+
"short": "-o",
|
|
165
|
+
"description": "Optimize autoloader during autoloader dump."
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"name": "--info",
|
|
169
|
+
"short": "-i",
|
|
170
|
+
"description": "Show information about packages."
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"name": "--with-dependencies",
|
|
174
|
+
"short": "-w",
|
|
175
|
+
"description": "Update also dependencies of packages in the command argument."
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"name": "--with-all-dependencies",
|
|
179
|
+
"short": "-W",
|
|
180
|
+
"description": "Update also dependencies of packages in the command argument, including those which are root requirements."
|
|
181
|
+
}
|
|
182
|
+
],
|
|
183
|
+
"examples": [
|
|
184
|
+
"composer update",
|
|
185
|
+
"composer update vendor/package vendor/package2",
|
|
186
|
+
"composer update --with-all-dependencies"
|
|
187
|
+
]
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
"name": "remove",
|
|
191
|
+
"description": "Removes a package from the require or require-dev.",
|
|
192
|
+
"args": [
|
|
193
|
+
{
|
|
194
|
+
"name": "<packages>",
|
|
195
|
+
"type": "string",
|
|
196
|
+
"required": true,
|
|
197
|
+
"description": "Packages that should be removed."
|
|
198
|
+
}
|
|
199
|
+
],
|
|
200
|
+
"options": [
|
|
201
|
+
{
|
|
202
|
+
"name": "--dev",
|
|
203
|
+
"description": "Remove packages from require-dev."
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"name": "--dry-run",
|
|
207
|
+
"description": "Outputs the operations but will not execute anything (implicitly enables --verbose)."
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"name": "--no-progress",
|
|
211
|
+
"description": "Removes the progress display that can mess with some terminals or scripts which don't handle backspace characters."
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"name": "--no-update",
|
|
215
|
+
"description": "Disables the automatic update of the dependencies (implies --no-install)."
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"name": "--no-install",
|
|
219
|
+
"description": "Skip the install step after updating the composer.json file."
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"name": "--update-with-dependencies",
|
|
223
|
+
"short": "-w",
|
|
224
|
+
"description": "Allows inherited dependencies to be updated with explicit dependencies."
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"name": "--update-with-all-dependencies",
|
|
228
|
+
"short": "-W",
|
|
229
|
+
"description": "Allows all inherited dependencies to be updated, including those that are root requirements."
|
|
230
|
+
}
|
|
231
|
+
],
|
|
232
|
+
"examples": [
|
|
233
|
+
"composer remove vendor/package"
|
|
234
|
+
]
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"name": "dump-autoload",
|
|
238
|
+
"description": "Dumps the autoloader.",
|
|
239
|
+
"args": [],
|
|
240
|
+
"options": [
|
|
241
|
+
{
|
|
242
|
+
"name": "--optimize",
|
|
243
|
+
"short": "-o",
|
|
244
|
+
"description": "Optimize autoloader during autoloader dump."
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"name": "--classmap-authoritative",
|
|
248
|
+
"short": "-a",
|
|
249
|
+
"description": "Autoload classes from the classmap only. Implicitly enables `--optimize`."
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"name": "--apcu",
|
|
253
|
+
"description": "Use APCu to cache found/not-found classes."
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"name": "--apcu-prefix",
|
|
257
|
+
"description": "Use a custom prefix for the APCu autoloader cache. Implicitly enables --apcu",
|
|
258
|
+
"type": "string"
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"name": "--no-dev",
|
|
262
|
+
"description": "Disables autoload-dev rules."
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"name": "--dry-run",
|
|
266
|
+
"description": "Outputs the operations but will not execute anything."
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"name": "--strict-psr",
|
|
270
|
+
"description": "Return a failed status code if a PSR-4 or PSR-0 mapping error is found."
|
|
271
|
+
}
|
|
272
|
+
],
|
|
273
|
+
"examples": [
|
|
274
|
+
"composer dump-autoload",
|
|
275
|
+
"composer dump-autoload -o"
|
|
276
|
+
]
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
"name": "init",
|
|
280
|
+
"description": "Creates a basic composer.json file in current directory.",
|
|
281
|
+
"args": [],
|
|
282
|
+
"options": [
|
|
283
|
+
{
|
|
284
|
+
"name": "--name",
|
|
285
|
+
"description": "Name of the package",
|
|
286
|
+
"type": "string"
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"name": "--description",
|
|
290
|
+
"description": "Description of package",
|
|
291
|
+
"type": "string"
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"name": "--author",
|
|
295
|
+
"description": "Author name of package",
|
|
296
|
+
"type": "string"
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
"name": "--type",
|
|
300
|
+
"description": "Type of package (e.g. library, project, metapackage, composer-plugin)",
|
|
301
|
+
"type": "string"
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"name": "--homepage",
|
|
305
|
+
"description": "Homepage of package",
|
|
306
|
+
"type": "string"
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
"name": "--require",
|
|
310
|
+
"description": "Package to require with a version constraint, e.g. foo/bar:1.0.0 or foo/bar=1.0.0 or \"foo/bar 1.0.0\"",
|
|
311
|
+
"type": "string"
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
"name": "--require-dev",
|
|
315
|
+
"description": "Package to require for development with a version constraint, e.g. foo/bar:1.0.0 or foo/bar=1.0.0 or \"foo/bar 1.0.0\"",
|
|
316
|
+
"type": "string"
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
"name": "--stability",
|
|
320
|
+
"short": "-s",
|
|
321
|
+
"description": "Minimum stability (empty or one of: stable, RC, beta, alpha, dev)",
|
|
322
|
+
"type": "string"
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"name": "--license",
|
|
326
|
+
"short": "-l",
|
|
327
|
+
"description": "License of package",
|
|
328
|
+
"type": "string"
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
"name": "--repository",
|
|
332
|
+
"description": "Add custom repositories, either by URL or using JSON arrays",
|
|
333
|
+
"type": "string"
|
|
334
|
+
}
|
|
335
|
+
],
|
|
336
|
+
"examples": [
|
|
337
|
+
"composer init"
|
|
338
|
+
]
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"name": "show",
|
|
342
|
+
"description": "Shows information about packages.",
|
|
343
|
+
"args": [
|
|
344
|
+
{
|
|
345
|
+
"name": "<package>",
|
|
346
|
+
"type": "string",
|
|
347
|
+
"required": false,
|
|
348
|
+
"description": "Package name"
|
|
349
|
+
}
|
|
350
|
+
],
|
|
351
|
+
"options": [
|
|
352
|
+
{
|
|
353
|
+
"name": "--all",
|
|
354
|
+
"description": "List all packages"
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
"name": "--installed",
|
|
358
|
+
"short": "-i",
|
|
359
|
+
"description": "List installed packages only (default)"
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"name": "--platform",
|
|
363
|
+
"short": "-p",
|
|
364
|
+
"description": "List platform packages only"
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
"name": "--available",
|
|
368
|
+
"short": "-a",
|
|
369
|
+
"description": "List available packages only"
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"name": "--self",
|
|
373
|
+
"short": "-s",
|
|
374
|
+
"description": "Show the root package information"
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
"name": "--name-only",
|
|
378
|
+
"short": "-N",
|
|
379
|
+
"description": "List package names only"
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"name": "--path",
|
|
383
|
+
"short": "-P",
|
|
384
|
+
"description": "Show package paths"
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
"name": "--tree",
|
|
388
|
+
"short": "-t",
|
|
389
|
+
"description": "Show the dependencies as a tree"
|
|
390
|
+
}
|
|
391
|
+
],
|
|
392
|
+
"examples": [
|
|
393
|
+
"composer show",
|
|
394
|
+
"composer show vendor/package",
|
|
395
|
+
"composer show -t"
|
|
396
|
+
]
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
"name": "outdated",
|
|
400
|
+
"description": "Shows a list of installed packages that have updates available, including their current and latest versions.",
|
|
401
|
+
"args": [],
|
|
402
|
+
"options": [
|
|
403
|
+
{
|
|
404
|
+
"name": "--all",
|
|
405
|
+
"short": "-a",
|
|
406
|
+
"description": "Show all installed packages with their latest versions"
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
"name": "--direct",
|
|
410
|
+
"short": "-D",
|
|
411
|
+
"description": "Restricts the list of packages to your direct dependencies."
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
"name": "--strict",
|
|
415
|
+
"description": "Return a non-zero exit code when there are outdated packages."
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
"name": "--minor-only",
|
|
419
|
+
"short": "-m",
|
|
420
|
+
"description": "Show only packages that have minor SemVer-compatible updates."
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"name": "--format",
|
|
424
|
+
"short": "-f",
|
|
425
|
+
"description": "Format of the output: text or json",
|
|
426
|
+
"type": "string"
|
|
427
|
+
}
|
|
428
|
+
],
|
|
429
|
+
"examples": [
|
|
430
|
+
"composer outdated",
|
|
431
|
+
"composer outdated -D"
|
|
432
|
+
]
|
|
433
|
+
}
|
|
434
|
+
],
|
|
435
|
+
"globalOptions": [
|
|
436
|
+
{
|
|
437
|
+
"name": "--verbose",
|
|
438
|
+
"short": "-v|-vv|-vvv",
|
|
439
|
+
"description": "Increase the verbosity of messages"
|
|
440
|
+
},
|
|
441
|
+
{
|
|
442
|
+
"name": "--help",
|
|
443
|
+
"short": "-h",
|
|
444
|
+
"description": "Display this help message"
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
"name": "--quiet",
|
|
448
|
+
"short": "-q",
|
|
449
|
+
"description": "Do not output any message"
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
"name": "--no-interaction",
|
|
453
|
+
"short": "-n",
|
|
454
|
+
"description": "Do not ask any interactive question"
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
"name": "--working-dir",
|
|
458
|
+
"short": "-d",
|
|
459
|
+
"description": "If specified, use the given directory as working directory.",
|
|
460
|
+
"type": "path"
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
"name": "--profile",
|
|
464
|
+
"description": "Display timing and memory usage information"
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
"name": "--version",
|
|
468
|
+
"short": "-V",
|
|
469
|
+
"description": "Display this application version"
|
|
470
|
+
}
|
|
471
|
+
],
|
|
472
|
+
"examples": [
|
|
473
|
+
"composer install",
|
|
474
|
+
"composer update",
|
|
475
|
+
"composer require vendor/package",
|
|
476
|
+
"composer dump-autoload -o"
|
|
477
|
+
],
|
|
478
|
+
"relatedCommands": [
|
|
479
|
+
"php",
|
|
480
|
+
"artisan"
|
|
481
|
+
],
|
|
482
|
+
"contextEngine": {
|
|
483
|
+
"detectors": [
|
|
484
|
+
{
|
|
485
|
+
"name": "composer_json",
|
|
486
|
+
"description": "Composer dependencies",
|
|
487
|
+
"command": "cat composer.json 2>/dev/null | jq '.require' 2>/dev/null || cat composer.json 2>/dev/null | grep 'require' -A 10 | head -15",
|
|
488
|
+
"parser": "text",
|
|
489
|
+
"cacheFor": 60
|
|
490
|
+
},
|
|
491
|
+
{
|
|
492
|
+
"name": "scripts",
|
|
493
|
+
"description": "Composer Scripts",
|
|
494
|
+
"command": "cat composer.json 2>/dev/null | jq '.scripts | keys' -r 2>/dev/null",
|
|
495
|
+
"parser": "lines",
|
|
496
|
+
"cacheFor": 60
|
|
497
|
+
},
|
|
498
|
+
{
|
|
499
|
+
"name": "namespaces",
|
|
500
|
+
"description": "Autoload Namespaces",
|
|
501
|
+
"command": "cat composer.json 2>/dev/null | jq '.autoload.\"psr-4\"' 2>/dev/null",
|
|
502
|
+
"parser": "text",
|
|
503
|
+
"cacheFor": 60
|
|
504
|
+
}
|
|
505
|
+
]
|
|
506
|
+
}
|
|
507
|
+
}
|