gitextract_7pldj4rw/ ├── .editorconfig ├── .gitattributes ├── .github/ │ └── workflows/ │ └── run-tests.yml ├── .gitignore ├── .phpcs.xml.dist ├── LICENSE.TXT ├── app/ │ ├── Actions/ │ │ ├── AbortsCommands.php │ │ ├── Concerns/ │ │ │ ├── InteractsWithComposer.php │ │ │ ├── InteractsWithGitHub.php │ │ │ └── InteractsWithNpm.php │ │ ├── CreateDatabase.php │ │ ├── CustomizeDotEnv.php │ │ ├── DisplayHelpScreen.php │ │ ├── DisplayLamboWelcome.php │ │ ├── EditConfigFile.php │ │ ├── GenerateAppKey.php │ │ ├── InitializeGitHubRepository.php │ │ ├── InitializeGitRepository.php │ │ ├── InstallBreeze.php │ │ ├── InstallJetstream.php │ │ ├── InstallLaravel.php │ │ ├── InstallNpmDependencies.php │ │ ├── MigrateDatabase.php │ │ ├── OpenInBrowser.php │ │ ├── OpenInEditor.php │ │ ├── PushToGitHub.php │ │ ├── RunAfterScript.php │ │ ├── UpgradeSavedConfiguration.php │ │ ├── ValetLink.php │ │ ├── ValetSecure.php │ │ ├── ValidateGitHubConfiguration.php │ │ ├── VerifyDependencies.php │ │ └── VerifyPathAvailable.php │ ├── Commands/ │ │ ├── .gitkeep │ │ ├── Debug.php │ │ ├── EditAfter.php │ │ ├── EditConfig.php │ │ ├── HelpCommand.php │ │ ├── LamboCommand.php │ │ └── NewCommand.php │ ├── Configuration/ │ │ ├── CommandLineConfiguration.php │ │ ├── LamboConfiguration.php │ │ ├── SavedConfiguration.php │ │ ├── SetConfig.php │ │ └── ShellConfiguration.php │ ├── ConsoleWriter.php │ ├── Environment.php │ ├── Helpers/ │ │ └── GetTimezone.php │ ├── LamboException.php │ ├── LogsToConsole.php │ ├── Options.php │ ├── Providers/ │ │ └── AppServiceProvider.php │ ├── Shell.php │ └── Tools/ │ └── Database.php ├── bin/ │ └── testLambo.sh ├── bootstrap/ │ └── app.php ├── box.json ├── builds/ │ └── lambo ├── composer.json ├── config/ │ ├── app.php │ └── commands.php ├── lambo ├── phpunit.xml.dist ├── readme.md ├── stubs/ │ ├── after │ └── config ├── tests/ │ ├── CreatesApplication.php │ ├── Feature/ │ │ ├── CreateDatabaseTest.php │ │ ├── CustomizeDotEnvTest.php │ │ ├── EditConfigFileTest.php │ │ ├── Fakes/ │ │ │ └── FakeProcess.php │ │ ├── Fixtures/ │ │ │ ├── .lambo/ │ │ │ │ ├── commented_configuration │ │ │ │ ├── config │ │ │ │ └── old_configuration │ │ │ ├── composer-with-laravel-jetstream.json │ │ │ ├── composer-without-laravel-jetstream.json │ │ │ ├── composer.json │ │ │ ├── package-silent.json │ │ │ └── package.json │ │ ├── GenerateAppKeyTest.php │ │ ├── InitializeGitHubRepositoryTest.php │ │ ├── InitializeGitRepositoryTest.php │ │ ├── InstallBreezeTest.php │ │ ├── InstallJetstreamTest.php │ │ ├── InstallLaravelTest.php │ │ ├── InstallNpmDependenciesTest.php │ │ ├── LamboTestEnvironment.php │ │ ├── MigrateDatabaseTest.php │ │ ├── OpenInBrowserTest.php │ │ ├── OpenInEditorTest.php │ │ ├── PushToGitHubTest.php │ │ ├── RunAfterScriptTest.php │ │ ├── SignatureBuilderTest.php │ │ ├── UpgradeSavedConfigurationTest.php │ │ ├── ValetLinkTest.php │ │ ├── ValetSecureTest.php │ │ ├── ValidateGitHubConfigurationTest.php │ │ ├── VerifyDependenciesTest.php │ │ └── VerifyPathAvailableTest.php │ ├── TestCase.php │ └── Unit/ │ ├── CommandLineConfigurationTest.php │ ├── Fakes/ │ │ └── FakeInput.php │ ├── GetTimezoneTest.php │ ├── SavedConfigurationTest.php │ ├── SetConfigTest.php │ └── ShellConfigurationTest.php └── tlint.json