We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4238282 commit eda30d1Copy full SHA for eda30d1
Skeletorfile.php
@@ -3,6 +3,8 @@
3
use NiftyCo\Skeletor\Skeletor;
4
5
return function (Skeletor $skeletor) {
6
+ $skeletor->intro('Welcome to Larament setup! Let\'s get started.');
7
+
8
$applicationName = $skeletor->text('What is the application name?', 'Laravel', required: true);
9
$name = $skeletor->text('What is the demo username?', 'John Doe', required: true);
10
$email = $skeletor->text('What is the demo email?', 'admin@example.com', required: true);
@@ -39,4 +41,6 @@
39
41
if ($timezone) {
40
42
$skeletor->pregReplaceInFile('/^APP_TIMEZONE=(".*?"|[^"\s]*|)$/m', 'APP_TIMEZONE="'.$timezone.'"', '.env');
43
}
44
45
+ $skeletor->outro('Setup complete.');
46
};
0 commit comments