laravel->make('files'); $this->linkAssets($files); $this->linkTests($files); } /** * @param Filesystem $files * @return void */ protected function linkTests($files) { if (! is_file(base_path('phpunit.dusk.xml'))) { $files->copy(realpath(__DIR__.'/../../../phpunit.dusk.xml'), base_path('phpunit.dusk.xml')); } $target = base_path('tests'); $testsPath = realpath(__DIR__.'/../../../tests'); if (is_dir($target)) { $result = $this->ask("The [{$target}] directory already exists, are you sure to delete it? [yes/no]"); if (strtolower($result) !== 'yes') { return; } $files->deleteDirectory($target); } $files->link( $testsPath, $target ); $this->info("The [$testsPath] directory has been linked."); } /** * @param Filesystem $files * @return void */ protected function linkAssets($files) { $basePath = Admin::asset()->getRealPath('@admin'); $publicPath = public_path($basePath); if (! is_dir($publicPath.'/..')) { $files->makeDirectory($publicPath.'/..', 0755, true, true); } if (file_exists($publicPath)) { $this->warn("The [public/{$basePath}] directory already exists."); return; } $distPath = realpath(__DIR__.'/../../../resources/pre-dist'); $files->link( $distPath, $publicPath ); $this->info("The [$basePath] directory has been linked."); } }