This repository was archived by the owner on Jan 28, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwizard.json
More file actions
45 lines (45 loc) · 1.29 KB
/
wizard.json
File metadata and controls
45 lines (45 loc) · 1.29 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
{
"$schema": "https://package-wizard.com/schemas/schema-v2.json",
"replaces": [
{
"replace": "\n> [!TIP]\n>\n> **Package Wizard** is a library for easy creation and customization of new projects with\n> a CLI tool using ready-made templates.",
"with": ""
}
],
"questions": [
{
"type": "ask",
"prompt": "text",
"question": "Which name of your project?",
"replace": [
"Lightweight Composer Template",
"Package Wizard"
]
},
{
"type": "license",
"replace": [
":license:",
"MIT License",
"MIT"
]
},
{
"type": "author"
},
{
"type": "ask",
"prompt": "text",
"question": "Which namespace of your project?",
"placeholder": "E.g. PackageWizard\\Composer",
"replace": "PackageWizard\\Composer"
},
{
"type": "ask",
"prompt": "text",
"question": "Under what name will the project be distributed?",
"placeholder": "E.g. package-wizard/composer",
"replace": "package-wizard/composer"
}
]
}