@enjoys/context-engine 1.0.0 → 1.0.1
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/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/jq.json +100 -0
- package/data/commands/k9s.json +62 -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/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/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/trivy.json +367 -0
- package/data/commands/twilio.json +382 -0
- package/data/commands/typeorm.json +262 -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,449 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "symfony",
|
|
3
|
+
"description": "Symfony Console CLI provides commands for creating projects, managing servers, generating code, handling database migrations, clearing caches, debugging routes, and more within the Symfony PHP framework.",
|
|
4
|
+
"category": "php-ecosystem",
|
|
5
|
+
"platforms": ["linux", "macos", "windows"],
|
|
6
|
+
"shells": ["bash", "zsh", "fish", "powershell"],
|
|
7
|
+
"subcommands": [
|
|
8
|
+
{
|
|
9
|
+
"name": "new",
|
|
10
|
+
"description": "Create a new Symfony project in a specified directory",
|
|
11
|
+
"args": [{"name": "name", "type": "string", "required": true, "description": "Project directory name"}],
|
|
12
|
+
"options": [
|
|
13
|
+
{"name": "--version", "description": "Symfony version to install (e.g. 7.0, lts, stable, next)", "type": "string"},
|
|
14
|
+
{"name": "--full", "description": "Create a full Symfony application (webapp)"},
|
|
15
|
+
{"name": "--demo", "description": "Create a Symfony Demo application"},
|
|
16
|
+
{"name": "--webapp", "description": "Create a web application skeleton"},
|
|
17
|
+
{"name": "--api", "description": "Create an API-oriented project"},
|
|
18
|
+
{"name": "--no-git", "description": "Skip Git repository initialization"},
|
|
19
|
+
{"name": "--cloud", "description": "Initialize Platform.sh configuration"},
|
|
20
|
+
{"name": "--docker", "description": "Enable Docker configuration"},
|
|
21
|
+
{"name": "--php", "description": "PHP version to use", "type": "string"}
|
|
22
|
+
],
|
|
23
|
+
"examples": [
|
|
24
|
+
"symfony new my_project",
|
|
25
|
+
"symfony new my_api --webapp",
|
|
26
|
+
"symfony new blog --demo",
|
|
27
|
+
"symfony new myapp --version=lts --docker"
|
|
28
|
+
]
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "server:start",
|
|
32
|
+
"description": "Start the local Symfony development web server in the background",
|
|
33
|
+
"args": [],
|
|
34
|
+
"options": [
|
|
35
|
+
{"name": "--port", "short": "-p", "description": "Preferred port for the server", "type": "integer"},
|
|
36
|
+
{"name": "--daemon", "short": "-d", "description": "Run server in the background"},
|
|
37
|
+
{"name": "--no-tls", "description": "Disable TLS and use plain HTTP"},
|
|
38
|
+
{"name": "--document-root", "description": "Document root directory", "type": "string"},
|
|
39
|
+
{"name": "--passthru", "description": "Front controller script path", "type": "string"},
|
|
40
|
+
{"name": "--allow-http", "description": "Allow HTTP connections even when TLS is available"}
|
|
41
|
+
],
|
|
42
|
+
"examples": [
|
|
43
|
+
"symfony server:start",
|
|
44
|
+
"symfony server:start -d",
|
|
45
|
+
"symfony server:start --port=9000 --no-tls",
|
|
46
|
+
"symfony server:start -d --port=8443"
|
|
47
|
+
]
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"name": "server:stop",
|
|
51
|
+
"description": "Stop the local Symfony development web server",
|
|
52
|
+
"args": [],
|
|
53
|
+
"options": [],
|
|
54
|
+
"examples": [
|
|
55
|
+
"symfony server:stop"
|
|
56
|
+
]
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"name": "make:controller",
|
|
60
|
+
"description": "Create a new controller class with optional route annotations",
|
|
61
|
+
"args": [{"name": "name", "type": "string", "required": true, "description": "Controller class name (e.g. ProductController)"}],
|
|
62
|
+
"options": [
|
|
63
|
+
{"name": "--no-template", "description": "Skip generating a Twig template"},
|
|
64
|
+
{"name": "--invokable", "description": "Create an invokable controller with __invoke method"}
|
|
65
|
+
],
|
|
66
|
+
"examples": [
|
|
67
|
+
"php bin/console make:controller ProductController",
|
|
68
|
+
"php bin/console make:controller Admin/DashboardController",
|
|
69
|
+
"php bin/console make:controller ApiController --no-template",
|
|
70
|
+
"php bin/console make:controller HomeController --invokable"
|
|
71
|
+
]
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"name": "make:entity",
|
|
75
|
+
"description": "Create or update a Doctrine entity class with properties and repository",
|
|
76
|
+
"args": [{"name": "name", "type": "string", "required": false, "description": "Entity class name"}],
|
|
77
|
+
"options": [
|
|
78
|
+
{"name": "--api-resource", "description": "Add API Platform #[ApiResource] attribute"},
|
|
79
|
+
{"name": "--regenerate", "description": "Regenerate an existing entity class based on annotations"},
|
|
80
|
+
{"name": "--overwrite", "description": "Overwrite existing getter/setter methods"},
|
|
81
|
+
{"name": "--with-uuid", "description": "Use UUID as the entity identifier"}
|
|
82
|
+
],
|
|
83
|
+
"examples": [
|
|
84
|
+
"php bin/console make:entity Product",
|
|
85
|
+
"php bin/console make:entity User --api-resource",
|
|
86
|
+
"php bin/console make:entity --regenerate App/Entity/Product",
|
|
87
|
+
"php bin/console make:entity BlogPost --with-uuid"
|
|
88
|
+
]
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"name": "make:form",
|
|
92
|
+
"description": "Create a new form class, optionally bound to an entity",
|
|
93
|
+
"args": [{"name": "name", "type": "string", "required": false, "description": "Form class name"}],
|
|
94
|
+
"options": [],
|
|
95
|
+
"examples": [
|
|
96
|
+
"php bin/console make:form ProductType",
|
|
97
|
+
"php bin/console make:form RegistrationType"
|
|
98
|
+
]
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"name": "make:migration",
|
|
102
|
+
"description": "Generate a new database migration by comparing current mapping to database schema",
|
|
103
|
+
"args": [],
|
|
104
|
+
"options": [
|
|
105
|
+
{"name": "--formatted", "description": "Format the generated SQL"}
|
|
106
|
+
],
|
|
107
|
+
"examples": [
|
|
108
|
+
"php bin/console make:migration",
|
|
109
|
+
"php bin/console make:migration --formatted"
|
|
110
|
+
]
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"name": "make:command",
|
|
114
|
+
"description": "Create a new Symfony console command class",
|
|
115
|
+
"args": [{"name": "name", "type": "string", "required": false, "description": "Command class name"}],
|
|
116
|
+
"options": [],
|
|
117
|
+
"examples": [
|
|
118
|
+
"php bin/console make:command AppSyncUsersCommand",
|
|
119
|
+
"php bin/console make:command ImportDataCommand"
|
|
120
|
+
]
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"name": "make:subscriber",
|
|
124
|
+
"description": "Create a new event subscriber class",
|
|
125
|
+
"args": [{"name": "name", "type": "string", "required": false, "description": "Subscriber class name"}],
|
|
126
|
+
"options": [],
|
|
127
|
+
"examples": [
|
|
128
|
+
"php bin/console make:subscriber UserActivitySubscriber",
|
|
129
|
+
"php bin/console make:subscriber RequestLogSubscriber"
|
|
130
|
+
]
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"name": "make:test",
|
|
134
|
+
"description": "Create a new test class (unit, functional, or integration)",
|
|
135
|
+
"args": [{"name": "name", "type": "string", "required": false, "description": "Test class name"}],
|
|
136
|
+
"options": [
|
|
137
|
+
{"name": "--type", "description": "Type of test: Unit, Functional, or Integration", "type": "string"}
|
|
138
|
+
],
|
|
139
|
+
"examples": [
|
|
140
|
+
"php bin/console make:test",
|
|
141
|
+
"php bin/console make:test ProductServiceTest",
|
|
142
|
+
"php bin/console make:test --type=Functional ApiControllerTest"
|
|
143
|
+
]
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"name": "make:voter",
|
|
147
|
+
"description": "Create a new security voter class",
|
|
148
|
+
"args": [{"name": "name", "type": "string", "required": false, "description": "Voter class name"}],
|
|
149
|
+
"options": [],
|
|
150
|
+
"examples": [
|
|
151
|
+
"php bin/console make:voter PostVoter",
|
|
152
|
+
"php bin/console make:voter ProjectAccessVoter"
|
|
153
|
+
]
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"name": "make:fixture",
|
|
157
|
+
"description": "Create a new data fixture class for populating the database with sample data",
|
|
158
|
+
"args": [{"name": "name", "type": "string", "required": false, "description": "Fixture class name"}],
|
|
159
|
+
"options": [],
|
|
160
|
+
"examples": [
|
|
161
|
+
"php bin/console make:fixture AppFixtures",
|
|
162
|
+
"php bin/console make:fixture UserFixtures"
|
|
163
|
+
]
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"name": "doctrine:migrations:migrate",
|
|
167
|
+
"description": "Execute database migrations up to the latest available version",
|
|
168
|
+
"args": [{"name": "version", "type": "string", "required": false, "description": "Target version to migrate to (default: latest)"}],
|
|
169
|
+
"options": [
|
|
170
|
+
{"name": "--dry-run", "description": "Execute migration as a dry run without applying changes"},
|
|
171
|
+
{"name": "--no-interaction", "short": "-n", "description": "Do not ask any interactive question"},
|
|
172
|
+
{"name": "--query-time", "description": "Show query execution time"},
|
|
173
|
+
{"name": "--all-or-nothing", "description": "Wrap migration in a transaction"},
|
|
174
|
+
{"name": "--allow-no-migration", "description": "Do not throw an exception when no migration is available"}
|
|
175
|
+
],
|
|
176
|
+
"examples": [
|
|
177
|
+
"php bin/console doctrine:migrations:migrate",
|
|
178
|
+
"php bin/console doctrine:migrations:migrate --dry-run",
|
|
179
|
+
"php bin/console doctrine:migrations:migrate prev",
|
|
180
|
+
"php bin/console doctrine:migrations:migrate --no-interaction --all-or-nothing"
|
|
181
|
+
]
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"name": "doctrine:schema:update",
|
|
185
|
+
"description": "Execute or dump SQL to update the database schema to match current mapping information",
|
|
186
|
+
"args": [],
|
|
187
|
+
"options": [
|
|
188
|
+
{"name": "--force", "description": "Execute schema updates directly on the database"},
|
|
189
|
+
{"name": "--dump-sql", "description": "Display the SQL statements without executing them"},
|
|
190
|
+
{"name": "--complete", "description": "Drop tables and columns not defined in mapping"},
|
|
191
|
+
{"name": "--em", "description": "Name of the entity manager to use", "type": "string"}
|
|
192
|
+
],
|
|
193
|
+
"examples": [
|
|
194
|
+
"php bin/console doctrine:schema:update --dump-sql",
|
|
195
|
+
"php bin/console doctrine:schema:update --force",
|
|
196
|
+
"php bin/console doctrine:schema:update --force --complete"
|
|
197
|
+
]
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"name": "doctrine:schema:validate",
|
|
201
|
+
"description": "Validate the Doctrine mapping files and check sync with the database schema",
|
|
202
|
+
"args": [],
|
|
203
|
+
"options": [
|
|
204
|
+
{"name": "--skip-mapping", "description": "Skip mapping validation"},
|
|
205
|
+
{"name": "--skip-sync", "description": "Skip schema synchronization check"},
|
|
206
|
+
{"name": "--em", "description": "Name of the entity manager", "type": "string"}
|
|
207
|
+
],
|
|
208
|
+
"examples": [
|
|
209
|
+
"php bin/console doctrine:schema:validate",
|
|
210
|
+
"php bin/console doctrine:schema:validate --skip-sync"
|
|
211
|
+
]
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"name": "doctrine:fixtures:load",
|
|
215
|
+
"description": "Load data fixtures into the database",
|
|
216
|
+
"args": [],
|
|
217
|
+
"options": [
|
|
218
|
+
{"name": "--append", "description": "Append data to existing data, instead of purging"},
|
|
219
|
+
{"name": "--group", "description": "Only load fixtures from specific group(s)", "type": "string"},
|
|
220
|
+
{"name": "--purge-with-truncate", "description": "Use TRUNCATE to purge data instead of DELETE"},
|
|
221
|
+
{"name": "--em", "description": "Name of the entity manager to use", "type": "string"}
|
|
222
|
+
],
|
|
223
|
+
"examples": [
|
|
224
|
+
"php bin/console doctrine:fixtures:load",
|
|
225
|
+
"php bin/console doctrine:fixtures:load --append",
|
|
226
|
+
"php bin/console doctrine:fixtures:load --group=test --purge-with-truncate"
|
|
227
|
+
]
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"name": "cache:clear",
|
|
231
|
+
"description": "Clear the Symfony application cache",
|
|
232
|
+
"args": [],
|
|
233
|
+
"options": [
|
|
234
|
+
{"name": "--no-warmup", "description": "Do not warm up the cache after clearing"},
|
|
235
|
+
{"name": "--no-optional-warmers", "description": "Skip optional cache warmers"},
|
|
236
|
+
{"name": "--env", "short": "-e", "description": "The environment to clear cache for", "type": "string"}
|
|
237
|
+
],
|
|
238
|
+
"examples": [
|
|
239
|
+
"php bin/console cache:clear",
|
|
240
|
+
"php bin/console cache:clear --env=prod",
|
|
241
|
+
"php bin/console cache:clear --no-warmup"
|
|
242
|
+
]
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"name": "cache:warmup",
|
|
246
|
+
"description": "Warm up an empty cache directory",
|
|
247
|
+
"args": [],
|
|
248
|
+
"options": [
|
|
249
|
+
{"name": "--no-optional-warmers", "description": "Skip optional cache warmers"},
|
|
250
|
+
{"name": "--env", "short": "-e", "description": "The environment to warm up cache for", "type": "string"}
|
|
251
|
+
],
|
|
252
|
+
"examples": [
|
|
253
|
+
"php bin/console cache:warmup",
|
|
254
|
+
"php bin/console cache:warmup --env=prod"
|
|
255
|
+
]
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"name": "debug:router",
|
|
259
|
+
"description": "Display all configured routes in the application",
|
|
260
|
+
"args": [{"name": "name", "type": "string", "required": false, "description": "A route name to show details for"}],
|
|
261
|
+
"options": [
|
|
262
|
+
{"name": "--show-controllers", "description": "Show controller action for each route"},
|
|
263
|
+
{"name": "--format", "description": "Output format (txt, xml, json, md)", "type": "string"},
|
|
264
|
+
{"name": "--raw", "description": "Show raw route information"}
|
|
265
|
+
],
|
|
266
|
+
"examples": [
|
|
267
|
+
"php bin/console debug:router",
|
|
268
|
+
"php bin/console debug:router --format=json",
|
|
269
|
+
"php bin/console debug:router app_product_show",
|
|
270
|
+
"php bin/console debug:router --show-controllers"
|
|
271
|
+
]
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"name": "debug:container",
|
|
275
|
+
"description": "Display current services for an application",
|
|
276
|
+
"args": [{"name": "name", "type": "string", "required": false, "description": "A service name or search pattern"}],
|
|
277
|
+
"options": [
|
|
278
|
+
{"name": "--show-arguments", "description": "Show service arguments"},
|
|
279
|
+
{"name": "--show-hidden", "description": "Show hidden (internal) services"},
|
|
280
|
+
{"name": "--tag", "description": "Show services with a specific tag", "type": "string"},
|
|
281
|
+
{"name": "--tags", "description": "Display tagged services for an application"},
|
|
282
|
+
{"name": "--parameter", "description": "Display a specific parameter", "type": "string"},
|
|
283
|
+
{"name": "--parameters", "description": "Display all parameters"},
|
|
284
|
+
{"name": "--types", "description": "Display types for services"},
|
|
285
|
+
{"name": "--env-var", "description": "Display a specific env var", "type": "string"},
|
|
286
|
+
{"name": "--env-vars", "description": "Display all environment variables"},
|
|
287
|
+
{"name": "--format", "description": "Output format (txt, xml, json, md)", "type": "string"},
|
|
288
|
+
{"name": "--deprecations", "description": "Display deprecations"}
|
|
289
|
+
],
|
|
290
|
+
"examples": [
|
|
291
|
+
"php bin/console debug:container",
|
|
292
|
+
"php bin/console debug:container --tag=controller.service_arguments",
|
|
293
|
+
"php bin/console debug:container App\\Service\\MyService",
|
|
294
|
+
"php bin/console debug:container --parameters",
|
|
295
|
+
"php bin/console debug:container --env-vars --format=json"
|
|
296
|
+
]
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
"name": "debug:autowiring",
|
|
300
|
+
"description": "List all autowirable types and their aliases",
|
|
301
|
+
"args": [{"name": "search", "type": "string", "required": false, "description": "Search term to filter services"}],
|
|
302
|
+
"options": [
|
|
303
|
+
{"name": "--all", "description": "Show also services that are not aliased"}
|
|
304
|
+
],
|
|
305
|
+
"examples": [
|
|
306
|
+
"php bin/console debug:autowiring",
|
|
307
|
+
"php bin/console debug:autowiring log",
|
|
308
|
+
"php bin/console debug:autowiring Doctrine --all"
|
|
309
|
+
]
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"name": "debug:config",
|
|
313
|
+
"description": "Dump the current configuration for an extension",
|
|
314
|
+
"args": [
|
|
315
|
+
{"name": "name", "type": "string", "required": false, "description": "Bundle name or extension alias"},
|
|
316
|
+
{"name": "path", "type": "string", "required": false, "description": "Configuration path (dot-separated)"}
|
|
317
|
+
],
|
|
318
|
+
"options": [
|
|
319
|
+
{"name": "--format", "description": "Output format (txt, xml, json, yaml)", "type": "string"},
|
|
320
|
+
{"name": "--resolve-env", "description": "Resolve environment variable values"}
|
|
321
|
+
],
|
|
322
|
+
"examples": [
|
|
323
|
+
"php bin/console debug:config",
|
|
324
|
+
"php bin/console debug:config framework",
|
|
325
|
+
"php bin/console debug:config framework router",
|
|
326
|
+
"php bin/console debug:config twig --format=json"
|
|
327
|
+
]
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
"name": "assets:install",
|
|
331
|
+
"description": "Install bundle web assets under the public directory",
|
|
332
|
+
"args": [{"name": "target", "type": "string", "required": false, "description": "Target directory (default: public)"}],
|
|
333
|
+
"options": [
|
|
334
|
+
{"name": "--symlink", "description": "Install assets as symlinks"},
|
|
335
|
+
{"name": "--relative", "description": "Make relative symlinks"}
|
|
336
|
+
],
|
|
337
|
+
"examples": [
|
|
338
|
+
"php bin/console assets:install",
|
|
339
|
+
"php bin/console assets:install --symlink",
|
|
340
|
+
"php bin/console assets:install --symlink --relative"
|
|
341
|
+
]
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"name": "messenger:consume",
|
|
345
|
+
"description": "Consume messages from one or more transports",
|
|
346
|
+
"args": [{"name": "receivers", "type": "string", "required": false, "description": "Name(s) of the transport(s) to consume"}],
|
|
347
|
+
"options": [
|
|
348
|
+
{"name": "--limit", "short": "-l", "description": "Limit the number of received messages", "type": "integer"},
|
|
349
|
+
{"name": "--failure-limit", "description": "Stop after N failed messages", "type": "integer"},
|
|
350
|
+
{"name": "--memory-limit", "short": "-m", "description": "Memory limit in bytes", "type": "string"},
|
|
351
|
+
{"name": "--time-limit", "short": "-t", "description": "Time limit in seconds", "type": "integer"},
|
|
352
|
+
{"name": "--sleep", "description": "Seconds to sleep when no messages (default: 1)", "type": "integer"},
|
|
353
|
+
{"name": "--bus", "short": "-b", "description": "Name of the message bus to use", "type": "string"},
|
|
354
|
+
{"name": "--queues", "description": "Restrict consuming to specific queues", "type": "string"},
|
|
355
|
+
{"name": "--no-reset", "description": "Do not reset services after each message"}
|
|
356
|
+
],
|
|
357
|
+
"examples": [
|
|
358
|
+
"php bin/console messenger:consume async",
|
|
359
|
+
"php bin/console messenger:consume async --limit=100",
|
|
360
|
+
"php bin/console messenger:consume async --time-limit=3600 --memory-limit=256M",
|
|
361
|
+
"php bin/console messenger:consume async failed --limit=10"
|
|
362
|
+
]
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
"name": "security:hash-password",
|
|
366
|
+
"description": "Hash a user password using the configured password hasher",
|
|
367
|
+
"args": [{"name": "password", "type": "string", "required": false, "description": "The plaintext password to hash"}],
|
|
368
|
+
"options": [
|
|
369
|
+
{"name": "--user-class", "description": "Security user class to use for hashing", "type": "string"}
|
|
370
|
+
],
|
|
371
|
+
"examples": [
|
|
372
|
+
"php bin/console security:hash-password mySecretPassword",
|
|
373
|
+
"php bin/console security:hash-password --user-class=App\\Entity\\Admin"
|
|
374
|
+
]
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
"name": "lint:yaml",
|
|
378
|
+
"description": "Lint YAML files for syntax errors",
|
|
379
|
+
"args": [{"name": "filename", "type": "string", "required": false, "description": "File or directory to lint"}],
|
|
380
|
+
"options": [
|
|
381
|
+
{"name": "--format", "description": "Output format (txt, json, github)", "type": "string"},
|
|
382
|
+
{"name": "--parse-tags", "description": "Parse custom Symfony YAML tags"},
|
|
383
|
+
{"name": "--exclude", "description": "Paths to exclude", "type": "string"}
|
|
384
|
+
],
|
|
385
|
+
"examples": [
|
|
386
|
+
"php bin/console lint:yaml config/",
|
|
387
|
+
"php bin/console lint:yaml config/services.yaml",
|
|
388
|
+
"php bin/console lint:yaml config/ --format=json"
|
|
389
|
+
]
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
"name": "lint:container",
|
|
393
|
+
"description": "Check that arguments injected into services match their type declarations",
|
|
394
|
+
"args": [],
|
|
395
|
+
"options": [],
|
|
396
|
+
"examples": [
|
|
397
|
+
"php bin/console lint:container"
|
|
398
|
+
]
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
"name": "lint:twig",
|
|
402
|
+
"description": "Lint Twig templates for syntax errors",
|
|
403
|
+
"args": [{"name": "filename", "type": "string", "required": false, "description": "File or directory to lint"}],
|
|
404
|
+
"options": [
|
|
405
|
+
{"name": "--format", "description": "Output format (txt, json, github)", "type": "string"},
|
|
406
|
+
{"name": "--show-deprecations", "description": "Show deprecation warnings"}
|
|
407
|
+
],
|
|
408
|
+
"examples": [
|
|
409
|
+
"php bin/console lint:twig templates/",
|
|
410
|
+
"php bin/console lint:twig templates/base.html.twig",
|
|
411
|
+
"php bin/console lint:twig templates/ --show-deprecations"
|
|
412
|
+
]
|
|
413
|
+
}
|
|
414
|
+
],
|
|
415
|
+
"globalOptions": [
|
|
416
|
+
{"name": "--env", "short": "-e", "description": "The application environment (dev, prod, test)", "type": "string"},
|
|
417
|
+
{"name": "--no-debug", "description": "Disable debug mode"},
|
|
418
|
+
{"name": "--quiet", "short": "-q", "description": "Do not output any message"},
|
|
419
|
+
{"name": "--verbose", "short": "-v", "description": "Increase verbosity (-v, -vv, -vvv)"},
|
|
420
|
+
{"name": "--version", "short": "-V", "description": "Display application version"},
|
|
421
|
+
{"name": "--ansi", "description": "Force ANSI output"},
|
|
422
|
+
{"name": "--no-ansi", "description": "Disable ANSI output"},
|
|
423
|
+
{"name": "--no-interaction", "short": "-n", "description": "Do not ask any interactive question"},
|
|
424
|
+
{"name": "--format", "description": "Output format where applicable (txt, json, xml)", "type": "string"},
|
|
425
|
+
{"name": "--help", "short": "-h", "description": "Display help for the given command"}
|
|
426
|
+
],
|
|
427
|
+
"examples": [
|
|
428
|
+
"symfony new my_project --webapp",
|
|
429
|
+
"symfony server:start -d --port=8080",
|
|
430
|
+
"php bin/console make:entity Product",
|
|
431
|
+
"php bin/console make:migration && php bin/console doctrine:migrations:migrate",
|
|
432
|
+
"php bin/console cache:clear --env=prod",
|
|
433
|
+
"php bin/console debug:router --format=json",
|
|
434
|
+
"php bin/console debug:container --parameters",
|
|
435
|
+
"php bin/console messenger:consume async --limit=100 --memory-limit=128M",
|
|
436
|
+
"php bin/console doctrine:fixtures:load --append",
|
|
437
|
+
"php bin/console lint:yaml config/ && php bin/console lint:twig templates/"
|
|
438
|
+
],
|
|
439
|
+
"relatedCommands": ["php", "composer", "artisan"],
|
|
440
|
+
"contextEngine": {
|
|
441
|
+
"detectors": [
|
|
442
|
+
{"name": "symfony_lock_exists", "description": "Detect symfony.lock file indicating a Symfony project", "command": "test -f symfony.lock && echo 'found' || echo 'not_found'", "parser": "lines", "cacheFor": 60},
|
|
443
|
+
{"name": "bundles_php_exists", "description": "Detect config/bundles.php for Symfony bundle registration", "command": "test -f config/bundles.php && echo 'found' || echo 'not_found'", "parser": "lines", "cacheFor": 60},
|
|
444
|
+
{"name": "symfony_version", "description": "Detect installed Symfony version from composer.lock", "command": "grep -A2 '\"symfony/framework-bundle\"' composer.lock 2>/dev/null | grep '\"version\"' | head -1 | sed 's/.*: \"\\(.*\\)\".*/\\1/'", "parser": "lines", "cacheFor": 300},
|
|
445
|
+
{"name": "symfony_env", "description": "Get current Symfony environment from .env", "command": "grep '^APP_ENV=' .env 2>/dev/null | cut -d= -f2", "parser": "lines", "cacheFor": 30},
|
|
446
|
+
{"name": "symfony_bin_console", "description": "Check if Symfony console is available", "command": "test -f bin/console && echo 'found' || echo 'not_found'", "parser": "lines", "cacheFor": 60}
|
|
447
|
+
]
|
|
448
|
+
}
|
|
449
|
+
}
|
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "tmux",
|
|
3
|
+
"description": "terminal multiplexer",
|
|
4
|
+
"category": "utilities",
|
|
5
|
+
"platforms": [
|
|
6
|
+
"linux",
|
|
7
|
+
"macos"
|
|
8
|
+
],
|
|
9
|
+
"shells": [
|
|
10
|
+
"bash",
|
|
11
|
+
"zsh",
|
|
12
|
+
"fish"
|
|
13
|
+
],
|
|
14
|
+
"subcommands": [
|
|
15
|
+
{
|
|
16
|
+
"name": "attach-session",
|
|
17
|
+
"description": "Attach to an existing session",
|
|
18
|
+
"args": [],
|
|
19
|
+
"options": [
|
|
20
|
+
{
|
|
21
|
+
"name": "-t",
|
|
22
|
+
"description": "Target session",
|
|
23
|
+
"type": "string"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"name": "-d",
|
|
27
|
+
"description": "Detach other clients attached to the session"
|
|
28
|
+
}
|
|
29
|
+
],
|
|
30
|
+
"examples": [
|
|
31
|
+
"tmux attach-session -t my_session",
|
|
32
|
+
"tmux attach -t 0"
|
|
33
|
+
]
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"name": "new-session",
|
|
37
|
+
"description": "Create a new session",
|
|
38
|
+
"args": [],
|
|
39
|
+
"options": [
|
|
40
|
+
{
|
|
41
|
+
"name": "-s",
|
|
42
|
+
"description": "Session name",
|
|
43
|
+
"type": "string"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"name": "-n",
|
|
47
|
+
"description": "Window name",
|
|
48
|
+
"type": "string"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"name": "-d",
|
|
52
|
+
"description": "Start the session in the background (detached)"
|
|
53
|
+
}
|
|
54
|
+
],
|
|
55
|
+
"examples": [
|
|
56
|
+
"tmux new-session -s coding",
|
|
57
|
+
"tmux new -s dev -n editor"
|
|
58
|
+
]
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"name": "list-sessions",
|
|
62
|
+
"description": "List existing sessions",
|
|
63
|
+
"args": [],
|
|
64
|
+
"options": [
|
|
65
|
+
{
|
|
66
|
+
"name": "-F",
|
|
67
|
+
"description": "Format output",
|
|
68
|
+
"type": "string"
|
|
69
|
+
}
|
|
70
|
+
],
|
|
71
|
+
"examples": [
|
|
72
|
+
"tmux list-sessions",
|
|
73
|
+
"tmux ls"
|
|
74
|
+
]
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"name": "kill-session",
|
|
78
|
+
"description": "Kill an existing session",
|
|
79
|
+
"args": [],
|
|
80
|
+
"options": [
|
|
81
|
+
{
|
|
82
|
+
"name": "-t",
|
|
83
|
+
"description": "Target session to kill",
|
|
84
|
+
"type": "string"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"name": "-a",
|
|
88
|
+
"description": "Kill all sessions"
|
|
89
|
+
}
|
|
90
|
+
],
|
|
91
|
+
"examples": [
|
|
92
|
+
"tmux kill-session -t my_session",
|
|
93
|
+
"tmux kill-session -a"
|
|
94
|
+
]
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"name": "split-window",
|
|
98
|
+
"description": "Split the current window",
|
|
99
|
+
"args": [
|
|
100
|
+
{
|
|
101
|
+
"name": "[command]",
|
|
102
|
+
"type": "string",
|
|
103
|
+
"required": false,
|
|
104
|
+
"description": "Command to run in the new pane"
|
|
105
|
+
}
|
|
106
|
+
],
|
|
107
|
+
"options": [
|
|
108
|
+
{
|
|
109
|
+
"name": "-h",
|
|
110
|
+
"description": "Split horizontally"
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"name": "-v",
|
|
114
|
+
"description": "Split vertically"
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"name": "-p",
|
|
118
|
+
"description": "Set the pane size in percentage",
|
|
119
|
+
"type": "number"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"name": "-c",
|
|
123
|
+
"description": "Set the starting directory",
|
|
124
|
+
"type": "path"
|
|
125
|
+
}
|
|
126
|
+
],
|
|
127
|
+
"examples": [
|
|
128
|
+
"tmux split-window -h",
|
|
129
|
+
"tmux split-window -v -p 30 top"
|
|
130
|
+
]
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"name": "send-keys",
|
|
134
|
+
"description": "Send keys to a window or pane",
|
|
135
|
+
"args": [
|
|
136
|
+
{
|
|
137
|
+
"name": "keys...",
|
|
138
|
+
"type": "string",
|
|
139
|
+
"required": true,
|
|
140
|
+
"description": "Keys to send"
|
|
141
|
+
}
|
|
142
|
+
],
|
|
143
|
+
"options": [
|
|
144
|
+
{
|
|
145
|
+
"name": "-t",
|
|
146
|
+
"description": "Target pane",
|
|
147
|
+
"type": "string"
|
|
148
|
+
}
|
|
149
|
+
],
|
|
150
|
+
"examples": [
|
|
151
|
+
"tmux send-keys -t my_session:0.1 'ls -l' C-m"
|
|
152
|
+
]
|
|
153
|
+
}
|
|
154
|
+
],
|
|
155
|
+
"globalOptions": [
|
|
156
|
+
{
|
|
157
|
+
"name": "-2",
|
|
158
|
+
"description": "Force tmux to assume the terminal supports 256 colours"
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"name": "-V",
|
|
162
|
+
"description": "Report the tmux version"
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"name": "-f",
|
|
166
|
+
"description": "Specify an alternative configuration file",
|
|
167
|
+
"type": "path"
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"name": "-L",
|
|
171
|
+
"description": "Specify the socket name",
|
|
172
|
+
"type": "string"
|
|
173
|
+
}
|
|
174
|
+
],
|
|
175
|
+
"examples": [
|
|
176
|
+
"tmux new -s myname",
|
|
177
|
+
"tmux attach -t myname",
|
|
178
|
+
"tmux ls"
|
|
179
|
+
],
|
|
180
|
+
"relatedCommands": [
|
|
181
|
+
"sh",
|
|
182
|
+
"bash",
|
|
183
|
+
"zsh"
|
|
184
|
+
],
|
|
185
|
+
"contextEngine": {
|
|
186
|
+
"detectors": [
|
|
187
|
+
{
|
|
188
|
+
"name": "sessions",
|
|
189
|
+
"description": "Active tmux sessions",
|
|
190
|
+
"command": "tmux ls 2>/dev/null",
|
|
191
|
+
"parser": "lines",
|
|
192
|
+
"cacheFor": 10,
|
|
193
|
+
"requiresCmd": "tmux"
|
|
194
|
+
}
|
|
195
|
+
]
|
|
196
|
+
}
|
|
197
|
+
}
|