芝麻web文件管理V1.00
编辑当前文件:/home/rejoandoctor/medicine.joruridoctor.com/vendor/laravel/breeze/src/Console/InstallsApiStack.php
runCommands(['php artisan install:api']); $files = new Filesystem; // Controllers... $files->ensureDirectoryExists(app_path('Http/Controllers/Auth')); $files->copyDirectory(__DIR__.'/../../stubs/api/app/Http/Controllers/Auth', app_path('Http/Controllers/Auth')); // Middleware... $files->copyDirectory(__DIR__.'/../../stubs/api/app/Http/Middleware', app_path('Http/Middleware')); $this->installMiddlewareAliases([ 'verified' => '\App\Http\Middleware\EnsureEmailIsVerified::class', ]); $this->installMiddleware([ '\Laravel\Sanctum\Http\Middleware\EnsureFrontendRequestsAreStateful::class', ], 'api', 'prepend'); // Requests... $files->ensureDirectoryExists(app_path('Http/Requests/Auth')); $files->copyDirectory(__DIR__.'/../../stubs/api/app/Http/Requests/Auth', app_path('Http/Requests/Auth')); // Providers... $files->copyDirectory(__DIR__.'/../../stubs/api/app/Providers', app_path('Providers')); // Routes... copy(__DIR__.'/../../stubs/api/routes/api.php', base_path('routes/api.php')); copy(__DIR__.'/../../stubs/api/routes/web.php', base_path('routes/web.php')); copy(__DIR__.'/../../stubs/api/routes/auth.php', base_path('routes/auth.php')); // Configuration... $files->copyDirectory(__DIR__.'/../../stubs/api/config', config_path()); // Environment... if (! $files->exists(base_path('.env'))) { copy(base_path('.env.example'), base_path('.env')); } file_put_contents( base_path('.env'), preg_replace('/APP_URL=(.*)/', 'APP_URL=http://localhost:8000'.PHP_EOL.'FRONTEND_URL=http://localhost:3000', file_get_contents(base_path('.env'))) ); // Tests... if (! $this->installTests()) { return 1; } $files->delete(base_path('tests/Feature/Auth/PasswordConfirmationTest.php')); // Cleaning... $this->removeScaffoldingUnnecessaryForApis(); $this->components->info('Breeze scaffolding installed successfully.'); } /** * Remove any application scaffolding that isn't needed for APIs. * * @return void */ protected function removeScaffoldingUnnecessaryForApis() { $files = new Filesystem; // Remove frontend related files... $files->delete(base_path('package.json')); $files->delete(base_path('vite.config.js')); $files->delete(base_path('tailwind.config.js')); $files->delete(base_path('postcss.config.js')); // Remove Laravel "welcome" view... $files->delete(resource_path('views/welcome.blade.php')); $files->put(resource_path('views/.gitkeep'), PHP_EOL); // Remove CSS and JavaScript directories... $files->deleteDirectory(resource_path('css')); $files->deleteDirectory(resource_path('js')); // Remove the "node_modules" directory and associated lock files... static::flushNodeModules(); } }