@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,277 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "artisan",
|
|
3
|
+
"description": "Laravel framework command-line interface",
|
|
4
|
+
"category": "framework",
|
|
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": "serve",
|
|
19
|
+
"description": "Serve the application on the PHP development server",
|
|
20
|
+
"args": [],
|
|
21
|
+
"options": [
|
|
22
|
+
{
|
|
23
|
+
"name": "--host",
|
|
24
|
+
"description": "The host address to serve the application on",
|
|
25
|
+
"type": "string",
|
|
26
|
+
"default": "127.0.0.1"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"name": "--port",
|
|
30
|
+
"description": "The port to serve the application on",
|
|
31
|
+
"type": "number",
|
|
32
|
+
"default": 8000
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"name": "--tries",
|
|
36
|
+
"description": "The max number of ports to attempt to serve from",
|
|
37
|
+
"type": "number"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"name": "--no-reload",
|
|
41
|
+
"description": "Do not reload the development server on .env file changes"
|
|
42
|
+
}
|
|
43
|
+
],
|
|
44
|
+
"examples": [
|
|
45
|
+
"php artisan serve",
|
|
46
|
+
"php artisan serve --port=8080",
|
|
47
|
+
"php artisan serve --host=0.0.0.0"
|
|
48
|
+
]
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"name": "migrate",
|
|
52
|
+
"description": "Run the database migrations",
|
|
53
|
+
"args": [],
|
|
54
|
+
"options": [
|
|
55
|
+
{
|
|
56
|
+
"name": "--database",
|
|
57
|
+
"description": "The database connection to use",
|
|
58
|
+
"type": "string"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"name": "--force",
|
|
62
|
+
"description": "Force the operation to run when in production"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"name": "--path",
|
|
66
|
+
"description": "The path(s) to the migrations files to be executed",
|
|
67
|
+
"type": "path"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"name": "--realpath",
|
|
71
|
+
"description": "Indicate any provided migration file paths are pre-resolved absolute paths"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"name": "--schema-path",
|
|
75
|
+
"description": "The path to a schema dump file",
|
|
76
|
+
"type": "path"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"name": "--pretend",
|
|
80
|
+
"description": "Dump the SQL queries that would be run"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"name": "--seed",
|
|
84
|
+
"description": "Indicates if the seed task should be re-run"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"name": "--seeder",
|
|
88
|
+
"description": "The class name of the root seeder",
|
|
89
|
+
"type": "string"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"name": "--step",
|
|
93
|
+
"description": "Force the migrations to be run so they can be rolled back individually"
|
|
94
|
+
}
|
|
95
|
+
],
|
|
96
|
+
"examples": [
|
|
97
|
+
"php artisan migrate",
|
|
98
|
+
"php artisan migrate --force",
|
|
99
|
+
"php artisan migrate --seed"
|
|
100
|
+
]
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"name": "make:model",
|
|
104
|
+
"description": "Create a new Eloquent model class",
|
|
105
|
+
"args": [
|
|
106
|
+
{
|
|
107
|
+
"name": "<name>",
|
|
108
|
+
"type": "string",
|
|
109
|
+
"required": true,
|
|
110
|
+
"description": "The name of the model"
|
|
111
|
+
}
|
|
112
|
+
],
|
|
113
|
+
"options": [
|
|
114
|
+
{
|
|
115
|
+
"name": "--all",
|
|
116
|
+
"short": "-a",
|
|
117
|
+
"description": "Generate a migration, seeder, factory, policy, resource controller, and form request classes for the model"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"name": "--controller",
|
|
121
|
+
"short": "-c",
|
|
122
|
+
"description": "Create a new controller for the model"
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"name": "--factory",
|
|
126
|
+
"short": "-f",
|
|
127
|
+
"description": "Create a new factory for the model"
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"name": "--force",
|
|
131
|
+
"description": "Create the class even if the model already exists"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"name": "--migration",
|
|
135
|
+
"short": "-m",
|
|
136
|
+
"description": "Create a new migration file for the model"
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"name": "--morph-pivot",
|
|
140
|
+
"description": "Indicates if the generated model should be a custom polymorphic intermediate table model"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"name": "--policy",
|
|
144
|
+
"description": "Create a new policy for the model"
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"name": "--seed",
|
|
148
|
+
"short": "-s",
|
|
149
|
+
"description": "Create a new seeder for the model"
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"name": "--pivot",
|
|
153
|
+
"short": "-p",
|
|
154
|
+
"description": "Indicates if the generated model should be a custom intermediate table model"
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"name": "--resource",
|
|
158
|
+
"short": "-r",
|
|
159
|
+
"description": "Indicates if the generated controller should be a resource controller"
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"name": "--api",
|
|
163
|
+
"description": "Indicates if the generated controller should be an API resource controller"
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"name": "--requests",
|
|
167
|
+
"short": "-R",
|
|
168
|
+
"description": "Create new form request classes and use them in the resource controller"
|
|
169
|
+
}
|
|
170
|
+
],
|
|
171
|
+
"examples": [
|
|
172
|
+
"php artisan make:model User",
|
|
173
|
+
"php artisan make:model Post -a",
|
|
174
|
+
"php artisan make:model Product -mcr"
|
|
175
|
+
]
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"name": "route:list",
|
|
179
|
+
"description": "List all registered routes",
|
|
180
|
+
"args": [],
|
|
181
|
+
"options": [
|
|
182
|
+
{
|
|
183
|
+
"name": "--compact",
|
|
184
|
+
"description": "Only show method, URI and action columns"
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"name": "--json",
|
|
188
|
+
"description": "Output the route list as JSON"
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"name": "--method",
|
|
192
|
+
"description": "Filter the routes by method",
|
|
193
|
+
"type": "string"
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"name": "--path",
|
|
197
|
+
"description": "Filter the routes by path",
|
|
198
|
+
"type": "string"
|
|
199
|
+
}
|
|
200
|
+
],
|
|
201
|
+
"examples": [
|
|
202
|
+
"php artisan route:list",
|
|
203
|
+
"php artisan route:list --path=api",
|
|
204
|
+
"php artisan route:list --compact"
|
|
205
|
+
]
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"name": "tinker",
|
|
209
|
+
"description": "Interact with your application",
|
|
210
|
+
"args": [],
|
|
211
|
+
"options": [
|
|
212
|
+
{
|
|
213
|
+
"name": "--execute",
|
|
214
|
+
"description": "Execute the given code using Tinker",
|
|
215
|
+
"type": "string"
|
|
216
|
+
}
|
|
217
|
+
],
|
|
218
|
+
"examples": [
|
|
219
|
+
"php artisan tinker"
|
|
220
|
+
]
|
|
221
|
+
}
|
|
222
|
+
],
|
|
223
|
+
"globalOptions": [
|
|
224
|
+
{
|
|
225
|
+
"name": "--env",
|
|
226
|
+
"description": "The environment the command should run under",
|
|
227
|
+
"type": "string"
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"name": "--help",
|
|
231
|
+
"short": "-h",
|
|
232
|
+
"description": "Display help for the given command"
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"name": "--version",
|
|
236
|
+
"short": "-V",
|
|
237
|
+
"description": "Display this application version"
|
|
238
|
+
}
|
|
239
|
+
],
|
|
240
|
+
"examples": [
|
|
241
|
+
"php artisan",
|
|
242
|
+
"php artisan serve",
|
|
243
|
+
"php artisan migrate",
|
|
244
|
+
"php artisan make:model User -m"
|
|
245
|
+
],
|
|
246
|
+
"relatedCommands": [
|
|
247
|
+
"php",
|
|
248
|
+
"composer",
|
|
249
|
+
"npm"
|
|
250
|
+
],
|
|
251
|
+
"contextEngine": {
|
|
252
|
+
"detectors": [
|
|
253
|
+
{
|
|
254
|
+
"name": "laravel_version",
|
|
255
|
+
"description": "Laravel Version",
|
|
256
|
+
"command": "php artisan --version 2>/dev/null",
|
|
257
|
+
"parser": "text",
|
|
258
|
+
"cacheFor": 3600
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"name": "env",
|
|
262
|
+
"description": "Environment variables configuration",
|
|
263
|
+
"command": "cat .env 2>/dev/null | grep -v '^#' | grep '=' | head -15",
|
|
264
|
+
"parser": "text",
|
|
265
|
+
"cacheFor": 60
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"name": "routes",
|
|
269
|
+
"description": "Available API Routes",
|
|
270
|
+
"command": "php artisan route:list --path=api --compact 2>/dev/null | head -10",
|
|
271
|
+
"parser": "lines",
|
|
272
|
+
"cacheFor": 60,
|
|
273
|
+
"requiresCmd": "php"
|
|
274
|
+
}
|
|
275
|
+
]
|
|
276
|
+
}
|
|
277
|
+
}
|