-
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathide.json
More file actions
24 lines (23 loc) · 812 Bytes
/
ide.json
File metadata and controls
24 lines (23 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"$schema": "https://laravel-ide.com/schema/laravel-ide-v2.json",
"codeGenerations": [
{
"id": "babenkoivan.create-elastic-migration",
"name": "Create Elastic Migration",
"inputFilter": "elastic",
"files": [
{
"directory": "/elastic/migrations",
"name": "${CURRENT_TIME|format:yyyy_MM_dd_HHmmss}_${INPUT_CLASS|className|snakeCase}.php",
"template": {
"type": "stub",
"path": "src/Console/stubs/migration.blank.stub",
"parameters": {
"DummyClass": "${INPUT_FQN|className}"
}
}
}
]
}
]
}