commit 402838d3bbafa821ac36d13290bc1a8339f63397 Author: Kevin <148832791+kevinfauzi@users.noreply.github.com> Date: Mon Jul 7 23:46:39 2025 +0700 as diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..6fb3de6 --- /dev/null +++ b/.env.example @@ -0,0 +1,66 @@ +APP_NAME=Laravel +APP_ENV=local +APP_KEY= +APP_DEBUG=true +APP_TIMEZONE=UTC +APP_URL=http://localhost + +APP_LOCALE=en +APP_FALLBACK_LOCALE=en +APP_FAKER_LOCALE=en_US + +APP_MAINTENANCE_DRIVER=file +# APP_MAINTENANCE_STORE=database + +PHP_CLI_SERVER_WORKERS=4 + +BCRYPT_ROUNDS=12 + +LOG_CHANNEL=stack +LOG_STACK=single +LOG_DEPRECATIONS_CHANNEL=null +LOG_LEVEL=debug + +DB_CONNECTION=sqlite +# DB_HOST=127.0.0.1 +# DB_PORT=3306 +# DB_DATABASE=laravel +# DB_USERNAME=root +# DB_PASSWORD= + +SESSION_DRIVER=database +SESSION_LIFETIME=120 +SESSION_ENCRYPT=false +SESSION_PATH=/ +SESSION_DOMAIN=null + +BROADCAST_CONNECTION=log +FILESYSTEM_DISK=local +QUEUE_CONNECTION=database + +CACHE_STORE=database +CACHE_PREFIX= + +MEMCACHED_HOST=127.0.0.1 + +REDIS_CLIENT=phpredis +REDIS_HOST=127.0.0.1 +REDIS_PASSWORD=null +REDIS_PORT=6379 + +MAIL_MAILER=log +MAIL_SCHEME=null +MAIL_HOST=127.0.0.1 +MAIL_PORT=2525 +MAIL_USERNAME=null +MAIL_PASSWORD=null +MAIL_FROM_ADDRESS="hello@example.com" +MAIL_FROM_NAME="${APP_NAME}" + +AWS_ACCESS_KEY_ID= +AWS_SECRET_ACCESS_KEY= +AWS_DEFAULT_REGION=us-east-1 +AWS_BUCKET= +AWS_USE_PATH_STYLE_ENDPOINT=false + +VITE_APP_NAME="${APP_NAME}" diff --git a/.ftpquota b/.ftpquota new file mode 100644 index 0000000..462ec59 --- /dev/null +++ b/.ftpquota @@ -0,0 +1 @@ +18324 142046666 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..fcb21d3 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,11 @@ +* text=auto eol=lf + +*.blade.php diff=html +*.css diff=css +*.html diff=html +*.md diff=markdown +*.php diff=php + +/.github export-ignore +CHANGELOG.md export-ignore +.styleci.yml export-ignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c7cf1fa --- /dev/null +++ b/.gitignore @@ -0,0 +1,23 @@ +/.phpunit.cache +/node_modules +/public/build +/public/hot +/public/storage +/storage/*.key +/storage/pail +/vendor +.env +.env.backup +.env.production +.phpactor.json +.phpunit.result.cache +Homestead.json +Homestead.yaml +npm-debug.log +yarn-error.log +/auth.json +/.fleet +/.idea +/.nova +/.vscode +/.zed diff --git a/README.md b/README.md new file mode 100644 index 0000000..1a4c26b --- /dev/null +++ b/README.md @@ -0,0 +1,66 @@ +

Laravel Logo

+ +

+Build Status +Total Downloads +Latest Stable Version +License +

+ +## About Laravel + +Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as: + +- [Simple, fast routing engine](https://laravel.com/docs/routing). +- [Powerful dependency injection container](https://laravel.com/docs/container). +- Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage. +- Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent). +- Database agnostic [schema migrations](https://laravel.com/docs/migrations). +- [Robust background job processing](https://laravel.com/docs/queues). +- [Real-time event broadcasting](https://laravel.com/docs/broadcasting). + +Laravel is accessible, powerful, and provides tools required for large, robust applications. + +## Learning Laravel + +Laravel has the most extensive and thorough [documentation](https://laravel.com/docs) and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework. + +You may also try the [Laravel Bootcamp](https://bootcamp.laravel.com), where you will be guided through building a modern Laravel application from scratch. + +If you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains thousands of video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library. + +## Laravel Sponsors + +We would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the [Laravel Partners program](https://partners.laravel.com). + +### Premium Partners + +- **[Vehikl](https://vehikl.com/)** +- **[Tighten Co.](https://tighten.co)** +- **[WebReinvent](https://webreinvent.com/)** +- **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)** +- **[64 Robots](https://64robots.com)** +- **[Curotec](https://www.curotec.com/services/technologies/laravel/)** +- **[Cyber-Duck](https://cyber-duck.co.uk)** +- **[DevSquad](https://devsquad.com/hire-laravel-developers)** +- **[Jump24](https://jump24.co.uk)** +- **[Redberry](https://redberry.international/laravel/)** +- **[Active Logic](https://activelogic.com)** +- **[byte5](https://byte5.de)** +- **[OP.GG](https://op.gg)** + +## Contributing + +Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions). + +## Code of Conduct + +In order to ensure that the Laravel community is welcoming to all, please review and abide by the [Code of Conduct](https://laravel.com/docs/contributions#code-of-conduct). + +## Security Vulnerabilities + +If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [taylor@laravel.com](mailto:taylor@laravel.com). All security vulnerabilities will be promptly addressed. + +## License + +The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT). diff --git a/app/Enums/UserRole.php b/app/Enums/UserRole.php new file mode 100644 index 0000000..0519ecb --- /dev/null +++ b/app/Enums/UserRole.php @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/app/Http/Controllers/Admin/AdminController.php b/app/Http/Controllers/Admin/AdminController.php new file mode 100644 index 0000000..d8e0f33 --- /dev/null +++ b/app/Http/Controllers/Admin/AdminController.php @@ -0,0 +1,58 @@ +middleware('auth'); + } + + public function dashboard() + { + // Get total counts + $totalUsers = User::count(); + $totalBarang = Barang::count(); + $totalTransaksi = Transaksi::count(); + $totalPendapatan = Transaksi::where('status_pembayaran', 'dibayar')->sum('total_pembayaran'); + + // Get recent users + $recentUsers = User::latest() + ->take(5) + ->get(); + + // Get pesanan data + $pesanan = Pesanan::with(['barang']) + ->latest() + ->get(); + + // Get recent transactions + $recentTransaksi = Transaksi::with(['user', 'pesanan']) + ->latest() + ->take(5) + ->get(); + + return view('admin.dashboardadmin', compact( + 'totalUsers', + 'totalBarang', + 'totalTransaksi', + 'totalPendapatan', + 'recentUsers', + 'recentTransaksi', + 'pesanan' + )); + } + + public function settings() + { + return view('admin.settings'); + } +} diff --git a/app/Http/Controllers/Admin/BannerController.php b/app/Http/Controllers/Admin/BannerController.php new file mode 100644 index 0000000..ade9521 --- /dev/null +++ b/app/Http/Controllers/Admin/BannerController.php @@ -0,0 +1,198 @@ +get(); + return view('admin.banners.index', compact('banners')); + } + + /** + * Show the form for creating a new resource. + */ + public function create() + { + return view('admin.banners.create'); + } + + /** + * Store a newly created resource in storage. + */ + public function store(Request $request) + { + $request->validate([ + 'judul' => 'required|string|max:255', + 'deskripsi' => 'nullable|string', + 'gambar' => 'required|image|max:2048', + 'url' => 'nullable|string|max:255', + 'aktif' => 'required|boolean', + 'tanggal_mulai' => 'nullable|date', + 'tanggal_selesai' => 'nullable|date|after_or_equal:tanggal_mulai', + ]); + + $data = $request->all(); + + // Otomatisasi urutan + $lastBanner = Banner::orderBy('urutan', 'desc')->first(); + $data['urutan'] = $lastBanner ? $lastBanner->urutan + 1 : 1; + + // Menangani tanggal kosong + if (empty($data['tanggal_mulai'])) { + $data['tanggal_mulai'] = null; + } + + if (empty($data['tanggal_selesai'])) { + $data['tanggal_selesai'] = null; + } + + if ($request->hasFile('gambar')) { + $data['gambar'] = $request->file('gambar')->store('banners', 'public'); + } + + Banner::create($data); + + return redirect()->route('admin.banners.index')->with('success', 'Banner berhasil ditambahkan'); + } + + /** + * Display the specified resource. + */ + public function show(Banner $banner) + { + return view('admin.banners.show', compact('banner')); + } + + /** + * Show the form for editing the specified resource. + */ + public function edit(Banner $banner) + { + return view('admin.banners.edit', compact('banner')); + } + + /** + * Update the specified resource in storage. + */ + public function update(Request $request, Banner $banner) + { + $request->validate([ + 'judul' => 'required|string|max:255', + 'deskripsi' => 'nullable|string', + 'gambar' => 'nullable|image|max:2048', + 'url' => 'nullable|string|max:255', + 'urutan' => 'nullable|integer|min:1', + 'tanggal_mulai' => 'nullable|date', + 'tanggal_selesai' => 'nullable|date|after_or_equal:tanggal_mulai', + 'aktif' => 'required|boolean', + ]); + + $data = $request->all(); + + // Menangani tanggal kosong + if (empty($data['tanggal_mulai'])) { + $data['tanggal_mulai'] = null; + } + + if (empty($data['tanggal_selesai'])) { + $data['tanggal_selesai'] = null; + } + + if ($request->hasFile('gambar')) { + // Hapus gambar lama jika ada + if ($banner->gambar) { + Storage::disk('public')->delete($banner->gambar); + } + + $data['gambar'] = $request->file('gambar')->store('banners', 'public'); + } + + $banner->update($data); + + return redirect()->route('admin.banners.index')->with('success', 'Banner berhasil diperbarui'); + } + + /** + * Remove the specified resource from storage. + */ + public function destroy(Banner $banner) + { + // Hapus gambar jika ada + if ($banner->gambar) { + Storage::disk('public')->delete($banner->gambar); + } + + $banner->delete(); + + return redirect()->route('admin.banners.index')->with('success', 'Banner berhasil dihapus'); + } + + /** + * Toggle status banner + */ + public function toggleStatus(Banner $banner) + { + $banner->aktif = !$banner->aktif; + $banner->save(); + + return redirect()->route('admin.banners.index')->with('success', 'Status banner berhasil diubah'); + } + + /** + * Move banner up in order + */ + public function moveUp(Banner $banner) + { + $prevBanner = Banner::where('urutan', '<', $banner->urutan) + ->orderBy('urutan', 'desc') + ->first(); + + if ($prevBanner) { + // Swap positions + $tempUrutan = $prevBanner->urutan; + $prevBanner->urutan = $banner->urutan; + $banner->urutan = $tempUrutan; + + $prevBanner->save(); + $banner->save(); + + return redirect()->route('admin.banners.index')->with('success', 'Urutan banner berhasil diubah'); + } + + return redirect()->route('admin.banners.index')->with('info', 'Banner sudah berada di urutan teratas'); + } + + /** + * Move banner down in order + */ + public function moveDown(Banner $banner) + { + $nextBanner = Banner::where('urutan', '>', $banner->urutan) + ->orderBy('urutan', 'asc') + ->first(); + + if ($nextBanner) { + // Swap positions + $tempUrutan = $nextBanner->urutan; + $nextBanner->urutan = $banner->urutan; + $banner->urutan = $tempUrutan; + + $nextBanner->save(); + $banner->save(); + + return redirect()->route('admin.banners.index')->with('success', 'Urutan banner berhasil diubah'); + } + + return redirect()->route('admin.banners.index')->with('info', 'Banner sudah berada di urutan terbawah'); + } +} diff --git a/app/Http/Controllers/Admin/BarangController.php b/app/Http/Controllers/Admin/BarangController.php new file mode 100644 index 0000000..92dd6dd --- /dev/null +++ b/app/Http/Controllers/Admin/BarangController.php @@ -0,0 +1,119 @@ +middleware('auth'); + $this->middleware(\App\Http\Middleware\CheckRole::class . ':admin'); + } + + public function index() + { + $barang = Barang::latest()->get(); + return view('admin.barang.index', compact('barang')); + } + + public function create() + { + return view('admin.barang.create'); + } + + public function store(Request $request) + { + $request->validate([ + 'nama' => 'required|string|max:255', + 'deskripsi' => 'required|string', + 'harga' => 'required|numeric|min:0', + 'stok' => 'required|integer|min:0', + 'kategori' => 'required|string|max:100', + 'gambar' => 'required|image|mimes:jpeg,png,jpg|max:2048', + ]); + + $data = [ + 'nama_barang' => $request->nama, + 'deskripsi' => $request->deskripsi, + 'harga' => $request->harga, + 'stok' => $request->stok, + 'kategori' => $request->kategori, + 'slug' => Str::slug($request->nama) . '-' . Str::random(5), + ]; + + if ($request->hasFile('gambar')) { + $gambar = $request->file('gambar'); + // Simpan dengan nama asli + $fileName = $gambar->getClientOriginalName(); + $path = $gambar->storeAs('products', $fileName, 'public'); + $data['gambar'] = $path; + } + + Barang::create($data); + + return redirect()->route('admin.barang.index') + ->with('success', 'Barang berhasil ditambahkan'); + } + + public function show(Barang $barang) + { + return view('admin.barang.show', compact('barang')); + } + + public function edit(Barang $barang) + { + return view('admin.barang.edit', compact('barang')); + } + + public function update(Request $request, Barang $barang) + { + $request->validate([ + 'nama' => 'required|string|max:255', + 'deskripsi' => 'required|string', + 'harga' => 'required|numeric|min:0', + 'stok' => 'required|integer|min:0', + 'kategori' => 'required|string|max:100', + 'gambar' => 'nullable|image|mimes:jpeg,png,jpg|max:2048', + ]); + + $data = [ + 'nama_barang' => $request->nama, + 'deskripsi' => $request->deskripsi, + 'harga' => $request->harga, + 'stok' => $request->stok, + 'kategori' => $request->kategori, + ]; + + if ($request->hasFile('gambar')) { + // Hapus gambar lama jika ada + if ($barang->gambar) { + Storage::disk('public')->delete($barang->gambar); + } + + $data['gambar'] = $request->file('gambar')->store('products', 'public'); + } + + $barang->update($data); + + return redirect()->route('admin.barang.index') + ->with('success', 'Barang berhasil diupdate'); + } + + public function destroy(Barang $barang) + { + // Hapus gambar jika ada + if ($barang->gambar) { + Storage::disk('public')->delete($barang->gambar); + } + + $barang->delete(); + return redirect()->route('admin.barang.index') + ->with('success', 'Barang berhasil dihapus'); + } +} \ No newline at end of file diff --git a/app/Http/Controllers/Admin/DashboardController.php b/app/Http/Controllers/Admin/DashboardController.php new file mode 100644 index 0000000..b3fe1a4 --- /dev/null +++ b/app/Http/Controllers/Admin/DashboardController.php @@ -0,0 +1,105 @@ +middleware('auth'); + $this->middleware(\App\Http\Middleware\CheckRole::class . ':admin'); + } + + public function index() + { + // Statistik Dasar + $totalPengguna = User::count(); + $totalBarang = Barang::count(); + $totalPesanan = Pesanan::count(); + $totalPendapatan = Transaksi::where('status', 'dibayar') + ->sum('total_pembayaran'); + + // Pesanan Terbaru + $pesananTerbaru = Pesanan::with('user') + ->latest() + ->take(5) + ->get(); + + // Produk Terlaris + $produkTerlaris = Barang::select('barang.*', DB::raw('COUNT(pesanan.id) as total_terjual')) + ->leftJoin('pesanan', 'barang.id', '=', 'pesanan.barang_id') + ->where(function ($query) { + $query->whereNull('pesanan.status') + ->orWhere('pesanan.status', '!=', 'cancelled'); + }) + ->groupBy('barang.id') + ->orderBy('total_terjual', 'desc') + ->take(5) + ->get(); + + // Data aktivitas + $aktivitasTerbaru = collect(); + + // Aktivitas pesanan terbaru + $pesananAktivitas = Pesanan::with('user') + ->latest() + ->take(3) + ->get() + ->map(function ($pesanan) { + return (object)[ + 'type' => 'order', + 'description' => "Pesanan baru #{$pesanan->id} dari {$pesanan->user->nama}", + 'created_at' => $pesanan->created_at + ]; + }); + + // Aktivitas transaksi terbaru + $transaksiAktivitas = Transaksi::with('user') + ->latest() + ->take(3) + ->get() + ->map(function ($transaksi) { + return (object)[ + 'type' => 'payment', + 'description' => "Pembayaran sebesar Rp " . number_format($transaksi->total_pembayaran, 0, ',', '.') . " dari {$transaksi->user->nama}", + 'created_at' => $transaksi->created_at + ]; + }); + + // Aktivitas user terbaru + $userAktivitas = User::latest() + ->take(3) + ->get() + ->map(function ($user) { + return (object)[ + 'type' => 'user', + 'description' => "Pengguna baru terdaftar: {$user->nama}", + 'created_at' => $user->created_at + ]; + }); + + // Gabungkan semua aktivitas + $aktivitasTerbaru = $pesananAktivitas->concat($transaksiAktivitas) + ->concat($userAktivitas) + ->sortByDesc('created_at') + ->take(5); + + return view('admin.dashboard', compact( + 'totalPengguna', + 'totalBarang', + 'totalPesanan', + 'totalPendapatan', + 'pesananTerbaru', + 'produkTerlaris', + 'aktivitasTerbaru' + )); + } +} \ No newline at end of file diff --git a/app/Http/Controllers/Admin/FlashSaleController.php b/app/Http/Controllers/Admin/FlashSaleController.php new file mode 100644 index 0000000..765b1d2 --- /dev/null +++ b/app/Http/Controllers/Admin/FlashSaleController.php @@ -0,0 +1,205 @@ +get(); + return view('admin.flash-sales.index', compact('flashSales')); + } + + /** + * Show the form for creating a new resource. + */ + public function create() + { + return view('admin.flash-sales.create'); + } + + /** + * Store a newly created resource in storage. + */ + public function store(Request $request) + { + $request->validate([ + 'nama' => 'required|string|max:255', + 'deskripsi' => 'nullable|string', + 'banner' => 'nullable|image|max:2048', + 'waktu_mulai' => 'required|date', + 'waktu_selesai' => 'required|date|after:waktu_mulai', + 'aktif' => 'required|boolean', + ]); + + $data = $request->all(); + + if ($request->hasFile('banner')) { + $data['banner'] = $request->file('banner')->store('flash-sales', 'public'); + } + + $flashSale = FlashSale::create($data); + + return redirect()->route('admin.flash-sales.index')->with('success', 'Flash sale berhasil ditambahkan'); + } + + /** + * Display the specified resource. + */ + public function show(FlashSale $flashSale) + { + return view('admin.flash-sales.show', compact('flashSale')); + } + + /** + * Show the form for editing the specified resource. + */ + public function edit(FlashSale $flashSale) + { + return view('admin.flash-sales.edit', compact('flashSale')); + } + + /** + * Update the specified resource in storage. + */ + public function update(Request $request, FlashSale $flashSale) + { + $request->validate([ + 'nama' => 'required|string|max:255', + 'deskripsi' => 'nullable|string', + 'banner' => 'nullable|image|max:2048', + 'waktu_mulai' => 'required|date', + 'waktu_selesai' => 'required|date|after:waktu_mulai', + 'aktif' => 'required|boolean', + ]); + + $data = $request->all(); + + if ($request->hasFile('banner')) { + // Hapus banner lama jika ada + if ($flashSale->banner) { + Storage::disk('public')->delete($flashSale->banner); + } + + $data['banner'] = $request->file('banner')->store('flash-sales', 'public'); + } + + $flashSale->update($data); + + return redirect()->route('admin.flash-sales.index')->with('success', 'Flash sale berhasil diperbarui'); + } + + /** + * Remove the specified resource from storage. + */ + public function destroy(FlashSale $flashSale) + { + // Hapus banner jika ada + if ($flashSale->banner) { + Storage::disk('public')->delete($flashSale->banner); + } + + // Hapus semua item flash sale terkait + $flashSale->items()->delete(); + + $flashSale->delete(); + + return redirect()->route('admin.flash-sales.index')->with('success', 'Flash sale berhasil dihapus'); + } + + /** + * Toggle status flash sale + */ + public function toggleStatus(FlashSale $flashSale) + { + $flashSale->aktif = !$flashSale->aktif; + $flashSale->save(); + + return redirect()->route('admin.flash-sales.index')->with('success', 'Status flash sale berhasil diubah'); + } + + /** + * Menampilkan halaman daftar item flash sale + */ + public function showItems(FlashSale $flashSale) + { + $barangs = Barang::whereDoesntHave('flashSaleItems', function($query) use ($flashSale) { + $query->where('flash_sale_id', $flashSale->id); + })->get(); + + return view('admin.flash-sales.items', compact('flashSale', 'barangs')); + } + + /** + * Menambahkan item ke flash sale + */ + public function storeItem(Request $request, FlashSale $flashSale) + { + $request->validate([ + 'barang_id' => 'required|exists:barangs,id', + 'harga_flash_sale' => 'required|numeric|min:0', + 'persentase_diskon' => 'nullable|numeric|min:0|max:100', + 'stok_flash_sale' => 'required|integer|min:1', + 'aktif' => 'required|boolean', + ]); + + $data = $request->all(); + $data['flash_sale_id'] = $flashSale->id; + $data['stok_terjual'] = 0; + + // Hitung persentase diskon jika tidak diisi + if (empty($data['persentase_diskon'])) { + $barang = Barang::find($data['barang_id']); + $data['persentase_diskon'] = round((($barang->harga - $data['harga_flash_sale']) / $barang->harga) * 100); + } + + FlashSaleItem::create($data); + + return redirect()->route('admin.flash-sales.items', $flashSale)->with('success', 'Item berhasil ditambahkan ke flash sale'); + } + + /** + * Update item flash sale + */ + public function updateItem(Request $request, FlashSaleItem $flashSaleItem) + { + $request->validate([ + 'harga_flash_sale' => 'required|numeric|min:0', + 'persentase_diskon' => 'required|numeric|min:0|max:100', + 'stok_flash_sale' => 'required|integer|min:' . $flashSaleItem->stok_terjual, + 'aktif' => 'required|boolean', + ]); + + $flashSaleItem->update($request->all()); + + return redirect()->route('admin.flash-sales.items', $flashSaleItem->flash_sale_id)->with('success', 'Item flash sale berhasil diperbarui'); + } + + public function destroyItem(FlashSaleItem $flashSaleItem) + { + $flashSaleId = $flashSaleItem->flash_sale_id; + $flashSaleItem->delete(); + return redirect()->route('admin.flash-sales.items', $flashSaleId)->with('success', 'Item flash sale berhasil dihapus'); + } + + public function getItemData(FlashSaleItem $flashSaleItem) + { + return response()->json([ + 'id' => $flashSaleItem->id, + 'harga_flash_sale' => $flashSaleItem->harga_flash_sale, + 'persentase_diskon' => $flashSaleItem->persentase_diskon, + 'stok_flash_sale' => $flashSaleItem->stok_flash_sale, + 'aktif' => $flashSaleItem->aktif + ]); + } +} diff --git a/app/Http/Controllers/Admin/LaporanController.php b/app/Http/Controllers/Admin/LaporanController.php new file mode 100644 index 0000000..9f2df64 --- /dev/null +++ b/app/Http/Controllers/Admin/LaporanController.php @@ -0,0 +1,259 @@ +middleware('auth'); + $this->middleware(\App\Http\Middleware\CheckRole::class . ':admin'); + } + + public function index() + { + $totalPendapatanBulanIni = Transaksi::where('status', 'completed') + ->whereMonth('created_at', Carbon::now()->month) + ->whereYear('created_at', Carbon::now()->year) + ->sum('total_pembayaran'); + + $totalPendapatanTahunIni = Transaksi::where('status', 'completed') + ->whereYear('created_at', Carbon::now()->year) + ->sum('total_pembayaran'); + + $totalPesananBulanIni = Pesanan::whereMonth('created_at', Carbon::now()->month) + ->whereYear('created_at', Carbon::now()->year) + ->count(); + + $totalPelanggan = User::where('role', 'customer')->count(); + + return view('admin.laporan.index', compact( + 'totalPendapatanBulanIni', + 'totalPendapatanTahunIni', + 'totalPesananBulanIni', + 'totalPelanggan' + )); + } + + public function generate(Request $request) + { + $jenis = $request->input('jenis', 'transaksi'); + $periode = $request->input('periode', 'bulan-ini'); + $tanggalMulai = $request->has('tanggal_mulai') ? $request->input('tanggal_mulai') : null; + $tanggalSelesai = $request->has('tanggal_selesai') ? $request->input('tanggal_selesai') : null; + + // Menentukan range tanggal berdasarkan periode + switch ($periode) { + case 'hari-ini': + $startDate = Carbon::today(); + $endDate = Carbon::today()->endOfDay(); + break; + case 'minggu-ini': + $startDate = Carbon::now()->startOfWeek(); + $endDate = Carbon::now()->endOfWeek(); + break; + case 'bulan-ini': + $startDate = Carbon::now()->startOfMonth(); + $endDate = Carbon::now()->endOfMonth(); + break; + case 'custom': + $startDate = $tanggalMulai ? Carbon::parse($tanggalMulai) : Carbon::now()->startOfMonth(); + $endDate = $tanggalSelesai ? Carbon::parse($tanggalSelesai)->endOfDay() : Carbon::now()->endOfMonth(); + break; + default: + $startDate = Carbon::now()->startOfMonth(); + $endDate = Carbon::now()->endOfMonth(); + } + + if ($jenis == 'transaksi') { + $data = Transaksi::with(['user', 'pesanan.barang']) + ->whereBetween('created_at', [$startDate, $endDate]) + ->where('status', 'dibayar') + ->latest() + ->get(); + + $totalPendapatan = $data->where('status', 'dibayar')->sum('total_pembayaran'); + $totalTransaksi = $data->count(); + $statusTransaksi = [ + 'pending' => $data->where('status', 'pending')->count(), + 'paid' => $data->where('status', 'paid')->count(), + 'completed' => $data->where('status', 'completed')->count(), + 'cancelled' => $data->where('status', 'cancelled')->count(), + ]; + + return view('admin.laporan.generate', compact( + 'data', + 'jenis', + 'periode', + 'startDate', + 'endDate', + 'totalPendapatan', + 'totalTransaksi', + 'statusTransaksi' + )); + } else { + // Laporan Barang + $data = Barang::withCount(['pesanan' => function ($query) use ($startDate, $endDate) { + $query->whereBetween('created_at', [$startDate, $endDate]) + ->where('status', '!=', 'cancelled'); + }]) + ->orderByDesc('pesanan_count') + ->get(); + + $totalBarang = $data->count(); + $totalTerjual = $data->sum('pesanan_count'); + $totalNilai = $data->sum(function($item) { + return $item->pesanan_count * $item->harga; + }); + + return view('admin.laporan.generate', compact( + 'data', + 'jenis', + 'periode', + 'startDate', + 'endDate', + 'totalBarang', + 'totalTerjual', + 'totalNilai' + )); + } + } + + public function penjualan(Request $request) + { + $tahun = $request->input('tahun', Carbon::now()->year); + $bulan = $request->input('bulan', Carbon::now()->month); + + $transaksi = Transaksi::where('status', 'completed') + ->when($bulan !== 'all', function ($query) use ($bulan) { + return $query->whereMonth('created_at', $bulan); + }) + ->when($tahun, function ($query) use ($tahun) { + return $query->whereYear('created_at', $tahun); + }) + ->with(['user', 'pesanan']) + ->latest() + ->get(); + + $pendapatanPerHari = Transaksi::where('status', 'completed') + ->when($bulan !== 'all', function ($query) use ($bulan) { + return $query->whereMonth('created_at', $bulan); + }) + ->when($tahun, function ($query) use ($tahun) { + return $query->whereYear('created_at', $tahun); + }) + ->select(DB::raw('DATE(created_at) as tanggal'), DB::raw('SUM(total_pembayaran) as total')) + ->groupBy('tanggal') + ->orderBy('tanggal') + ->get(); + + return view('admin.laporan.penjualan', compact('transaksi', 'pendapatanPerHari', 'tahun', 'bulan')); + } + + public function stok() + { + $barang = Barang::orderBy('stok')->get(); + + $kategoriCount = Barang::select('kategori', DB::raw('count(*) as total')) + ->groupBy('kategori') + ->orderBy('total', 'desc') + ->get(); + + return view('admin.laporan.stok', compact('barang', 'kategoriCount')); + } + + public function transaksi(Request $request) + { + $status = $request->input('status', 'all'); + $startDate = $request->input('start_date'); + $endDate = $request->input('end_date'); + + $transaksi = Transaksi::with(['user', 'pesanan']) + ->when($status !== 'all', function ($query) use ($status) { + return $query->where('status', $status); + }) + ->when($startDate, function ($query) use ($startDate) { + return $query->whereDate('created_at', '>=', $startDate); + }) + ->when($endDate, function ($query) use ($endDate) { + return $query->whereDate('created_at', '<=', $endDate); + }) + ->latest() + ->get(); + + $statusCount = [ + 'pending' => Transaksi::where('status', 'pending')->count(), + 'paid' => Transaksi::where('status', 'paid')->count(), + 'completed' => Transaksi::where('status', 'completed')->count(), + 'cancelled' => Transaksi::where('status', 'cancelled')->count(), + ]; + + return view('admin.laporan.transaksi', compact('transaksi', 'statusCount', 'status', 'startDate', 'endDate')); + } + + public function download(Request $request) + { + $jenis = $request->input('jenis', 'transaksi'); + $tanggal_mulai = $request->input('tanggal_mulai'); + $tanggal_selesai = $request->input('tanggal_selesai'); + + $startDate = Carbon::parse($tanggal_mulai); + $endDate = Carbon::parse($tanggal_selesai)->endOfDay(); + + if ($jenis == 'transaksi') { + $data = Transaksi::with(['user', 'pesanan.barang']) + ->whereBetween('created_at', [$startDate, $endDate]) + ->where('status', 'dibayar') + ->latest() + ->get(); + + $totalPendapatan = $data->where('status', 'dibayar')->sum('total_pembayaran'); + $totalTransaksi = $data->count(); + + $filename = 'laporan_' . $jenis . '_' . $startDate->format('dmY') . '_' . $endDate->format('dmY') . '.html'; + + return response() + ->view('admin.laporan.pdf', compact( + 'jenis', + 'tanggal_mulai', + 'tanggal_selesai', + 'transaksi', + 'totalPendapatan', + 'totalTransaksi' + )) + ->header('Content-Type', 'text/html') + ->header('Content-Disposition', 'attachment; filename="' . $filename . '"'); + } else { + // Laporan Barang + $barang = Barang::withCount(['pesanan' => function ($query) use ($startDate, $endDate) { + $query->whereBetween('created_at', [$startDate, $endDate]); + }]) + ->orderByDesc('pesanan_count') + ->get(); + + $filename = 'laporan_' . $jenis . '_' . $startDate->format('dmY') . '_' . $endDate->format('dmY') . '.html'; + + return response() + ->view('admin.laporan.pdf', compact( + 'jenis', + 'tanggal_mulai', + 'tanggal_selesai', + 'barang' + )) + ->header('Content-Type', 'text/html') + ->header('Content-Disposition', 'attachment; filename="' . $filename . '"'); + } + } +} diff --git a/app/Http/Controllers/Admin/PesananController.php b/app/Http/Controllers/Admin/PesananController.php new file mode 100644 index 0000000..21d12eb --- /dev/null +++ b/app/Http/Controllers/Admin/PesananController.php @@ -0,0 +1,64 @@ +middleware('auth'); + $this->middleware(\App\Http\Middleware\CheckRole::class . ':admin'); + } + + public function index() + { + $query = Pesanan::with(['user', 'barang']); + + // Filter berdasarkan tanggal + if (request('start_date')) { + $query->whereDate('created_at', '>=', request('start_date')); + } + if (request('end_date')) { + $query->whereDate('created_at', '<=', request('end_date')); + } + + // Filter berdasarkan status + if (request('status')) { + $query->where('status', request('status')); + } + + $pesanan = $query->latest()->paginate(10); + return view('admin.pesanan.index', compact('pesanan')); + } + + public function show(Pesanan $pesanan) + { + $pesanan->load(['user', 'barang']); + return view('admin.pesanan.show', compact('pesanan')); + } + + public function updateStatus(Request $request, Pesanan $pesanan) + { + $request->validate([ + 'status' => 'required|in:pending,diproses,dikirim,selesai,dibatalkan', + ]); + + $pesanan->update([ + 'status' => $request->status, + ]); + + return redirect()->route('admin.pesanan.show', $pesanan) + ->with('success', 'Status pesanan berhasil diperbarui'); + } + + public function cetakResi(Pesanan $pesanan) + { + $pdf = PDF::loadView('admin.pesanan.resi', compact('pesanan')); + return $pdf->stream('resi-' . $pesanan->id . '.pdf'); + } +} \ No newline at end of file diff --git a/app/Http/Controllers/Admin/TransaksiController.php b/app/Http/Controllers/Admin/TransaksiController.php new file mode 100644 index 0000000..889ad5a --- /dev/null +++ b/app/Http/Controllers/Admin/TransaksiController.php @@ -0,0 +1,56 @@ +middleware('auth'); + $this->middleware(\App\Http\Middleware\CheckRole::class . ':admin'); + } + + public function index() + { + $transaksi = Transaksi::with(['user', 'pesanan'])->latest()->get(); + return view('admin.transaksi.index', compact('transaksi')); + } + + public function show(Transaksi $transaksi) + { + $transaksi->load(['user', 'pesanan']); + return view('admin.transaksi.show', compact('transaksi')); + } + + public function updateStatus(Request $request, Transaksi $transaksi) + { + $request->validate([ + 'status' => 'required|in:pending,paid,completed,cancelled', + ]); + + $transaksi->update([ + 'status' => $request->status, + ]); + + // Jika transaksi selesai, update status pesanan juga + if ($request->status === 'completed') { + $transaksi->pesanan->update([ + 'status' => 'completed', + ]); + } + + // Jika transaksi dibatalkan, update status pesanan juga + if ($request->status === 'cancelled') { + $transaksi->pesanan->update([ + 'status' => 'cancelled', + ]); + } + + return redirect()->route('admin.transaksi.show', $transaksi) + ->with('success', 'Status transaksi berhasil diperbarui'); + } +} \ No newline at end of file diff --git a/app/Http/Controllers/Admin/UserController.php b/app/Http/Controllers/Admin/UserController.php new file mode 100644 index 0000000..1721ab0 --- /dev/null +++ b/app/Http/Controllers/Admin/UserController.php @@ -0,0 +1,93 @@ +middleware('auth'); + $this->middleware(\App\Http\Middleware\CheckRole::class . ':admin'); + } + + public function index() + { + $users = User::latest()->get(); + return view('admin.users.index', compact('users')); + } + + public function create() + { + return view('admin.users.create'); + } + + public function store(Request $request) + { + $request->validate([ + 'username' => 'required|string|max:255|unique:users', + 'nama' => 'required|string|max:255', + 'email' => 'required|string|email|max:255|unique:users', + 'password' => 'required|string|min:8', + 'role' => 'required|in:admin,customer', + ]); + + User::create([ + 'username' => $request->username, + 'nama' => $request->nama, + 'email' => $request->email, + 'password' => Hash::make($request->password), + 'role' => $request->role, + ]); + + return redirect()->route('admin.users.index') + ->with('success', 'User berhasil ditambahkan'); + } + + public function show(User $user) + { + return view('admin.users.show', compact('user')); + } + + public function edit(User $user) + { + return view('admin.users.edit', compact('user')); + } + + public function update(Request $request, User $user) + { + $request->validate([ + 'username' => 'required|string|max:255|unique:users,username,' . $user->id, + 'nama' => 'required|string|max:255', + 'email' => 'required|string|email|max:255|unique:users,email,' . $user->id, + 'role' => 'required|in:admin,customer', + ]); + + $user->update([ + 'username' => $request->username, + 'nama' => $request->nama, + 'email' => $request->email, + 'role' => $request->role, + ]); + + if ($request->filled('password')) { + $user->update([ + 'password' => Hash::make($request->password), + ]); + } + + return redirect()->route('admin.users.index') + ->with('success', 'User berhasil diupdate'); + } + + public function destroy(User $user) + { + $user->delete(); + return redirect()->route('admin.users.index') + ->with('success', 'User berhasil dihapus'); + } +} diff --git a/app/Http/Controllers/Auth/ForgotPasswordController.php b/app/Http/Controllers/Auth/ForgotPasswordController.php new file mode 100644 index 0000000..4d95e9a --- /dev/null +++ b/app/Http/Controllers/Auth/ForgotPasswordController.php @@ -0,0 +1,196 @@ +middleware('guest'); + } + + public function showLinkRequestForm() + { + return View::make('auth.passwords.email'); + } + + public function sendResetLinkEmail(Request $request) + { + Log::info('Reset Password Request Started', [ + 'email' => $request->email, + 'request_url' => $request->fullUrl(), + 'request_method' => $request->method() + ]); + + try { + $request->validate([ + 'email' => ['required', 'email', 'exists:users,email'], + ]); + + $user = User::where('email', $request->email)->first(); + + if (!$user) { + Log::error('Email not found', [ + 'email' => $request->email + ]); + return Redirect::back()->withErrors([ + 'email' => ['Email tidak ditemukan dalam sistem kami.'], + ]); + } + + // Generate token reset password + $token = Str::random(64); + $expiresAt = now()->addHours(24); + + Log::info('Generated reset token', [ + 'email' => $user->email, + 'token' => $token, + 'expires_at' => $expiresAt + ]); + + // Update user dengan token baru + $user->reset_password_token = $token; + $user->reset_password_expires_at = $expiresAt; + $user->save(); + + // Verifikasi update berhasil + $userAfterUpdate = User::where('email', $user->email) + ->where('reset_password_token', $token) + ->first(); + + Log::info('Update Result', [ + 'token_stored' => $userAfterUpdate ? $userAfterUpdate->reset_password_token : null, + 'expires_at_stored' => $userAfterUpdate ? $userAfterUpdate->reset_password_expires_at : null + ]); + + // Kirim email dengan link reset password + Mail::send('auth.passwords.reset-link', ['token' => $token, 'email' => $user->email], function($message) use($user) { + $message->to($user->email); + $message->subject('Reset Password - DJEE Elektronik'); + }); + + return Redirect::back()->with('status', 'Link reset password telah dikirim ke email Anda. Silakan cek inbox atau folder spam Anda.'); + } catch (\Exception $e) { + Log::error('Error during password reset request', [ + 'email' => $request->email, + 'error' => $e->getMessage(), + 'trace' => $e->getTraceAsString() + ]); + return Redirect::back()->withErrors(['email' => 'Terjadi kesalahan saat memproses permintaan reset password.']); + } + } + + public function showResetForm($token, $email) + { + Log::info('Reset Password Form Access', [ + 'email' => $email, + 'token' => $token, + 'current_time' => now(), + 'request_url' => request()->fullUrl() + ]); + + try { + $user = User::where('email', $email) + ->where('reset_password_token', $token) + ->where('reset_password_expires_at', '>', now()) + ->first(); + + Log::info('Reset Password Query Result', [ + 'user_found' => $user ? true : false, + 'expires_at' => $user ? $user->reset_password_expires_at : null, + 'stored_token' => $user ? $user->reset_password_token : null + ]); + + if (!$user) { + Log::error('Invalid or expired reset token', [ + 'email' => $email, + 'token' => $token + ]); + return Redirect::route('password.request') + ->withErrors(['email' => 'Link reset password tidak valid atau sudah kadaluarsa.']); + } + + return View::make('auth.passwords.reset', [ + 'token' => $token, + 'email' => $email + ]); + } catch (\Exception $e) { + Log::error('Error showing reset form', [ + 'email' => $email, + 'token' => $token, + 'error' => $e->getMessage(), + 'trace' => $e->getTraceAsString() + ]); + return Redirect::route('password.request') + ->withErrors(['email' => 'Terjadi kesalahan saat memproses permintaan reset password.']); + } + } + + public function reset(Request $request) + { + Log::info('Reset Password Attempt', [ + 'email' => $request->email, + 'token' => $request->token, + 'current_time' => now(), + 'request_url' => $request->fullUrl() + ]); + + try { + $request->validate([ + 'token' => 'required', + 'email' => 'required|email', + 'password' => 'required|min:8|confirmed', + ]); + + $user = User::where('email', $request->email) + ->where('reset_password_token', $request->token) + ->where('reset_password_expires_at', '>', now()) + ->first(); + + Log::info('Reset Password Query Result', [ + 'user_found' => $user ? true : false, + 'expires_at' => $user ? $user->reset_password_expires_at : null + ]); + + if (!$user) { + Log::error('Invalid or expired reset token during reset', [ + 'email' => $request->email, + 'token' => $request->token + ]); + return Redirect::back()->withErrors(['email' => 'Link reset password tidak valid atau sudah kadaluarsa.']); + } + + // Update password dan hapus token + $user->password = Hash::make($request->password); + $user->reset_password_token = null; + $user->reset_password_expires_at = null; + $user->save(); + + Log::info('Password reset successful', [ + 'email' => $user->email + ]); + + return Redirect::route('login') + ->with('status', 'Password Anda berhasil diubah. Silakan login dengan password baru Anda.'); + } catch (\Exception $e) { + Log::error('Error during password reset', [ + 'email' => $request->email, + 'error' => $e->getMessage(), + 'trace' => $e->getTraceAsString() + ]); + return Redirect::back()->withErrors(['email' => 'Terjadi kesalahan saat mereset password.']); + } + } +} diff --git a/app/Http/Controllers/Auth/LoginController.php b/app/Http/Controllers/Auth/LoginController.php new file mode 100644 index 0000000..e2de47b --- /dev/null +++ b/app/Http/Controllers/Auth/LoginController.php @@ -0,0 +1,78 @@ +middleware('guest')->except('logout'); + } + + // Menampilkan form login + public function showLoginForm() + { + return view('auth.login'); + } + + // Memproses login + public function login(Request $request) + { + // Validasi input + $credentials = $request->validate([ + 'username' => ['required', 'string'], + 'password' => ['required', 'string'], + ]); + + // Coba login + if (Auth::attempt($credentials)) { + $user = Auth::user(); + + // Cek apakah email sudah diverifikasi + if (!$user->is_verified) { + Auth::logout(); + return redirect()->route('login') + ->with('error', 'Email Anda belum diverifikasi. Silakan cek email Anda untuk link verifikasi. Jika Anda belum menerima email verifikasi, silakan klik link di bawah untuk mengirim ulang.') + ->with('show_resend', true); + } + + // Regenerate session + $request->session()->regenerate(); + + // Redirect berdasarkan role user + if (Auth::user()->role === 'admin') { + return redirect()->route('admin.dashboard'); + } + + // Jika bukan admin, redirect ke dashboard biasa + return redirect()->intended(route('dashboard')); + } + + // Jika gagal, tampilkan error + throw ValidationException::withMessages([ + 'username' => ['Username atau password salah.'], + ]); + } + + public function logout(Request $request) + { + // 1. Logout user + Auth::logout(); + + // 2. Invalidate session + $request->session()->invalidate(); + + // 3. Regenerate CSRF token + $request->session()->regenerateToken(); + + // 4. Redirect ke login + return redirect()->route('login'); + } +} diff --git a/app/Http/Controllers/Auth/RegisterController.php b/app/Http/Controllers/Auth/RegisterController.php new file mode 100644 index 0000000..da7cb46 --- /dev/null +++ b/app/Http/Controllers/Auth/RegisterController.php @@ -0,0 +1,86 @@ +middleware('guest'); + } + + public function create() + { + return view('auth.register'); + } + + public function store(Request $request) + { + $request->validate([ + 'nama' => 'required|string|max:255', + 'username' => 'required|string|max:255|unique:users', + 'email' => 'required|string|email|max:255|unique:users', + 'password' => 'required|string|min:8|confirmed', + 'nomor_telp' => 'required|string|max:20', + 'alamat' => 'required|string|max:191', + ]); + + try { + $user = User::create([ + 'nama' => $request->nama, + 'username' => $request->username, + 'email' => $request->email, + 'password' => Hash::make($request->password), + 'nomor_telp' => $request->nomor_telp, + 'alamat' => $request->alamat, + 'role' => 'customer', + 'verification_token' => Str::random(64), + 'is_verified' => 0 + ]); + + // Log untuk debug + Log::info('User registered successfully', [ + 'user_id' => $user->id, + 'email' => $user->email, + 'verification_token' => $user->verification_token + ]); + + // Kirim email verifikasi + $verificationUrl = route('verification.verify', ['token' => $user->verification_token]); + Log::info('Generated verification URL', [ + 'url' => $verificationUrl, + 'token' => $user->verification_token + ]); + + Mail::send('emails.verify', ['url' => $verificationUrl], function($message) use ($user) { + $message->to($user->email); + $message->subject('Verifikasi Email'); + }); + + Log::info('Verification email sent', [ + 'user_id' => $user->id, + 'email' => $user->email, + 'verification_url' => $verificationUrl + ]); + + return redirect()->route('login')->with('success', 'Registrasi berhasil! Silakan cek email Anda untuk verifikasi.'); + } catch (\Exception $e) { + Log::error('Registration failed', [ + 'error' => $e->getMessage(), + 'trace' => $e->getTraceAsString() + ]); + + return back()->withErrors(['error' => 'Terjadi kesalahan saat registrasi. Silakan coba lagi.']); + } + } +} diff --git a/app/Http/Controllers/Auth/VerificationController.php b/app/Http/Controllers/Auth/VerificationController.php new file mode 100644 index 0000000..ec01136 --- /dev/null +++ b/app/Http/Controllers/Auth/VerificationController.php @@ -0,0 +1,101 @@ +middleware('throttle:6,1')->only('verify', 'resend'); + } + + public function show() + { + return View::make('auth.verify-email'); + } + + public function verify(Request $request, $token) + { + Log::info('Verification attempt started', [ + 'token' => $token, + 'request_url' => $request->fullUrl(), + 'request_method' => $request->method(), + 'request_headers' => $request->headers->all() + ]); + + try { + // Cari user berdasarkan token + $user = User::where('verification_token', $token)->first(); + + if (!$user) { + Log::error('Invalid verification token', [ + 'token' => $token, + 'request_url' => $request->fullUrl() + ]); + return Redirect::to('/')->with('error', 'Token verifikasi tidak valid.'); + } + + Log::info('User found for verification', [ + 'user_id' => $user->id, + 'email' => $user->email, + 'is_verified' => $user->is_verified + ]); + + // Update status verifikasi + $user->is_verified = 1; + $user->verification_token = null; // Hapus token setelah digunakan + $user->save(); + + Log::info('Email verified successfully', [ + 'user_id' => $user->id, + 'email' => $user->email, + 'is_verified' => $user->is_verified + ]); + + // Login user + Auth::login($user); + + return Redirect::to('/')->with('status', 'Email berhasil diverifikasi!'); + } catch (\Exception $e) { + Log::error('Error during email verification', [ + 'token' => $token, + 'error' => $e->getMessage(), + 'trace' => $e->getTraceAsString() + ]); + return Redirect::to('/')->with('error', 'Terjadi kesalahan saat verifikasi email.'); + } + } + + public function resend(Request $request) + { + if ($request->user()->is_verified) { + return Redirect::to('/'); + } + + // Generate token baru + $token = Str::random(64); + $request->user()->verification_token = $token; + $request->user()->save(); + + // Kirim email dengan token baru + $verificationUrl = url("/email/verify/{$token}"); + + // Kirim email (gunakan sistem email yang sudah ada) + \Mail::send('emails.verify', ['url' => $verificationUrl], function($message) use ($request) { + $message->to($request->user()->email); + $message->subject('Verifikasi Email'); + }); + + return Redirect::back()->with('status', 'Link verifikasi baru telah dikirim ke email Anda.'); + } +} \ No newline at end of file diff --git a/app/Http/Controllers/BarangController.php b/app/Http/Controllers/BarangController.php new file mode 100644 index 0000000..f5d97bb --- /dev/null +++ b/app/Http/Controllers/BarangController.php @@ -0,0 +1,172 @@ +middleware('auth')->except(['index', 'show']); + } + + public function index(Request $request) + { + $query = Barang::latest(); + + if ($request->has('kategori')) { + $query->where('kategori', $request->kategori); + } + + if ($request->has('search')) { + $searchTerm = $request->search; + $query->where(function($q) use ($searchTerm) { + $q->where('nama_barang', 'LIKE', "%{$searchTerm}%") + ->orWhere('deskripsi', 'LIKE', "%{$searchTerm}%") + ->orWhere('kategori', 'LIKE', "%{$searchTerm}%"); + }); + } + + $barang = $query->get(); + return view('barang.index', compact('barang')); + } + + public function create() + { + return view('barang.create'); + } + + public function store(Request $request) + { + $request->validate([ + 'barang_id' => 'required|exists:barang,id', + 'jumlah' => 'required|integer|min:1', + 'catatan' => 'nullable|string|max:255', + ]); + + $barang = Barang::findOrFail($request->barang_id); + + // Cek stok + if ($barang->stok < $request->jumlah) { + return back()->with('error', 'Stok tidak mencukupi'); + } + + // Buat pesanan + $pesanan = Pesanan::create([ + 'user_id' => auth()->id(), + 'barang_id' => $request->barang_id, + 'jumlah' => $request->jumlah, + 'total_harga' => $barang->harga * $request->jumlah, + 'status' => 'pending', + 'catatan' => $request->catatan, + ]); + + // Kurangi stok + $barang->update([ + 'stok' => $barang->stok - $request->jumlah + ]); + + return redirect()->route('pesanan.show', $pesanan) + ->with('success', 'Pesanan berhasil dibuat'); + } + + public function show(Barang $barang) + { + return view('barang.show', compact('barang')); + } + + public function edit(Barang $barang) + { + return view('barang.edit', compact('barang')); + } + + public function update(Request $request, Barang $barang) + { + $request->validate([ + 'nama_barang' => 'required|string|max:255', + 'deskripsi' => 'nullable|string', + 'harga' => 'required|numeric|min:0', + 'stok' => 'required|integer|min:0', + 'kategori' => 'required|string|in:Lampu,Kipas,Kulkas,TV,Magic Com,Mesin Cuci,Kompor', + 'gambar' => 'nullable|image|mimes:jpeg,png,jpg|max:2048' + ]); + + $data = $request->all(); + + if ($request->hasFile('gambar')) { + // Delete old image + if ($barang->gambar) { + Storage::disk('public')->delete($barang->gambar); + } + + $gambar = $request->file('gambar'); + // Simpan dengan nama asli + $fileName = $gambar->getClientOriginalName(); + // Pastikan nama file tidak ada spasi dan karakter khusus + $fileName = preg_replace('/[^A-Za-z0-9\-\_\.]/', '', $fileName); + $path = $gambar->storeAs('products', $fileName, 'public'); + $data['gambar'] = $path; + } + + $barang->update($data); + return redirect()->route('barang.index')->with('success', 'Barang berhasil diperbarui'); + } + + public function destroy(Barang $barang) + { + if ($barang->gambar) { + Storage::disk('public')->delete($barang->gambar); + } + + $barang->delete(); + return redirect()->route('barang.index')->with('success', 'Barang berhasil dihapus'); + } + + public function checkout(Request $request) + { + // Cek role user + if (Auth::user()->role !== 'customer') { + return back()->with('error', 'Anda tidak memiliki akses untuk melakukan checkout'); + } + + $request->validate([ + 'barang_id' => 'required|exists:barang,id', + 'jumlah' => 'required|integer|min:1', + 'catatan' => 'nullable|string' + ]); + + $barang = Barang::findOrFail($request->barang_id); + + // Cek stok + if ($barang->stok < $request->jumlah) { + return back()->with('error', 'Stok tidak mencukupi'); + } + + $total = $barang->harga * $request->jumlah; + + // Buat pesanan langsung + $pesanan = Pesanan::create([ + 'user_id' => Auth::id(), + 'barang_id' => $request->barang_id, + 'jumlah' => $request->jumlah, + 'total_harga' => $total, + 'status' => 'pending', + 'catatan' => $request->catatan + ]); + + // Kurangi stok + $barang->update([ + 'stok' => $barang->stok - $request->jumlah + ]); + + return redirect()->route('pesanan.show', $pesanan) + ->with('success', 'Pesanan berhasil dibuat'); + } +} diff --git a/app/Http/Controllers/CheckoutController.php b/app/Http/Controllers/CheckoutController.php new file mode 100644 index 0000000..ff6547b --- /dev/null +++ b/app/Http/Controllers/CheckoutController.php @@ -0,0 +1,84 @@ +middleware('auth'); + } + + public function index(Request $request) + { + $request->validate([ + 'barang_id' => 'required|exists:barang,id', + 'jumlah' => 'required|integer|min:1', + ]); + + $barang = Barang::findOrFail($request->barang_id); + + if ($barang->stok < $request->jumlah) { + return redirect()->back()->with('error', 'Stok tidak mencukupi'); + } + + $total = $barang->harga * $request->jumlah; + + return view('checkout.index', compact('barang', 'total')); + } + + public function store(Request $request) + { + $request->validate([ + 'barang_id' => 'required|exists:barang,id', + 'jumlah' => 'required|integer|min:1', + 'alamat' => 'required|string', + 'metode_pembayaran' => 'required|in:transfer_bank,e_wallet', + 'catatan' => 'nullable|string', + ]); + + try { + DB::beginTransaction(); + + $barang = Barang::findOrFail($request->barang_id); + + if ($barang->stok < $request->jumlah) { + throw new \Exception('Stok tidak mencukupi'); + } + + $total = $barang->harga * $request->jumlah; + + $pesanan = Pesanan::create([ + 'user_id' => Auth::id(), + 'barang_id' => $barang->id, + 'jumlah' => $request->jumlah, + 'total_harga' => $total, + 'status' => 'menunggu_pembayaran', + 'alamat_pengiriman' => $request->alamat, + 'metode_pembayaran' => $request->metode_pembayaran, + 'catatan' => $request->catatan, + ]); + + $barang->update([ + 'stok' => $barang->stok - $request->jumlah + ]); + + DB::commit(); + + return redirect()->route('pesanan.show', $pesanan->id) + ->with('success', 'Pesanan berhasil dibuat. Silakan lakukan pembayaran.'); + + } catch (\Exception $e) { + DB::rollBack(); + return redirect()->back() + ->with('error', 'Terjadi kesalahan: ' . $e->getMessage()) + ->withInput(); + } + } +} \ No newline at end of file diff --git a/app/Http/Controllers/Controller.php b/app/Http/Controllers/Controller.php new file mode 100644 index 0000000..77ec359 --- /dev/null +++ b/app/Http/Controllers/Controller.php @@ -0,0 +1,12 @@ +middleware('auth'); + } + + public function index() + { + // Get user's data + $user = Auth::user(); + + // Get statistics + $totalBarang = Barang::count(); + $totalPesanan = Pesanan::where('user_id', $user->id)->count(); + $totalTransaksi = Transaksi::where('user_id', $user->id)->count(); + + // Get recent orders + $pesanan = Pesanan::with(['barang']) + ->where('user_id', $user->id) + ->latest() + ->take(5) + ->get(); + + // Get pending orders count + $pesananPending = Pesanan::where('user_id', $user->id) + ->where('status', 'pending') + ->count(); + + // $banners = Banner::where('aktif', true) + // ->orderBy('urutan', 'asc') + // ->get(); + + // $activeFlashSale = FlashSale::with(['items' => function($query) { + // $query->where('aktif', true) + // ->whereHas('barang'); + // }, 'items.barang']) + // ->where('aktif', true) + // ->whereDate('waktu_mulai', '<=', Carbon::now()) + // ->whereDate('waktu_selesai', '>=', Carbon::now()) + // ->first(); + + return view('dashboard.index', compact( + 'totalBarang', + 'totalPesanan', + 'totalTransaksi', + 'pesanan', + 'pesananPending' + )); + } +} diff --git a/app/Http/Controllers/KeranjangController.php b/app/Http/Controllers/KeranjangController.php new file mode 100644 index 0000000..6ad06c9 --- /dev/null +++ b/app/Http/Controllers/KeranjangController.php @@ -0,0 +1,682 @@ +where('user_id', Auth::id()) + ->latest() + ->get(); + + $total = $items->sum('total_harga'); + + // Jika ini adalah request verifikasi, kirim respons khusus tanpa view + if ($request->has('verify')) { + // Kirim data sebagai JSON jika diminta + if ($request->ajax()) { + return response()->json([ + 'items' => $items->map(function($item) { + return [ + 'id' => $item->id, + 'jumlah' => $item->jumlah, + 'total_harga' => $item->total_harga, + 'harga_satuan' => $item->barang->harga + ]; + }), + 'total' => $total, + 'timestamp' => now()->timestamp + ]); + } + + // Jika bukan request AJAX, kirim respons sederhana + return response('OK', 200); + } + + return view('keranjang.index', compact('items', 'total')); + } + + /** + * Tambah item ke keranjang + */ + public function tambah(Request $request) + { + $request->validate([ + 'barang_id' => 'required|exists:barang,id', + 'jumlah' => 'required|integer|min:1', + ]); + + $barang = Barang::findOrFail($request->barang_id); + + // Validasi stok + if ($request->jumlah > $barang->stok) { + return redirect()->back() + ->with('error', 'Jumlah melebihi stok yang tersedia'); + } + + // Cek jika barang sudah ada di keranjang + $item = Keranjang::where('user_id', Auth::id()) + ->where('barang_id', $request->barang_id) + ->first(); + + if ($item) { + // Update jumlah dan total harga + $newJumlah = $item->jumlah + $request->jumlah; + + // Cek stok sekali lagi + if ($newJumlah > $barang->stok) { + return redirect()->back() + ->with('error', 'Total jumlah melebihi stok yang tersedia'); + } + + $item->jumlah = $newJumlah; + $item->total_harga = $barang->harga * $newJumlah; + $item->save(); + } else { + // Buat item baru di keranjang + Keranjang::create([ + 'user_id' => Auth::id(), + 'barang_id' => $request->barang_id, + 'jumlah' => $request->jumlah, + 'total_harga' => $barang->harga * $request->jumlah, + ]); + } + + return redirect()->route('keranjang.index') + ->with('success', 'Barang berhasil ditambahkan ke keranjang'); + } + + /** + * Update jumlah item di keranjang + */ + public function update(Request $request, Keranjang $keranjang) + { + // Logging untuk debugging request method + \Log::debug('Update Keranjang Request: ', [ + 'method' => $request->method(), + 'real_method' => $request->getRealMethod(), + 'has_method_field' => $request->has('_method'), + 'method_field' => $request->input('_method'), + 'route' => $request->route()->getName(), + 'item_id' => $keranjang->id, + 'user_id' => Auth::id() + ]); + + $request->validate([ + 'jumlah' => 'required|integer|min:1', + ]); + + // Validasi kepemilikan dengan logging + if ($keranjang->user_id !== Auth::id()) { + \Log::warning('Akses tidak sah: User '.Auth::id().' mencoba mengakses keranjang '.$keranjang->id.' milik user '.$keranjang->user_id); + + if ($request->ajax()) { + return response()->json(['success' => false, 'message' => 'Tidak diizinkan'], 403); + } + abort(403); + } + + $barang = $keranjang->barang; + + // Validasi stok + if ($request->jumlah > $barang->stok) { + if ($request->ajax()) { + return response()->json(['success' => false, 'message' => 'Jumlah melebihi stok yang tersedia']); + } + return redirect()->back() + ->with('error', 'Jumlah melebihi stok yang tersedia'); + } + + // Deteksi apakah ini request konfirmasi + $isConfirm = $request->has('is_confirm_submit'); + + // Prioritaskan request konfirmasi atau nonaktifkan cache di browser + // Pastikan perubahan tersimpan ke database dalam semua kasus + $keranjang->jumlah = $request->jumlah; + $keranjang->total_harga = $barang->harga * $request->jumlah; + $result = $keranjang->save(); + + // Log untuk debugging + \Log::info('Keranjang diupdate: ID=' . $keranjang->id . + ', Jumlah=' . $request->jumlah . + ', IsConfirm=' . ($isConfirm ? 'Ya' : 'Tidak') . + ', Hasil=' . ($result ? 'Sukses' : 'Gagal')); + + // Handle jika ini adalah iframe request + if ($request->has('is_js_request')) { + // Kembalikan HTML minimal untuk iframe + return response(''); + } + + if ($request->ajax()) { + return response()->json([ + 'success' => true, + 'message' => 'Keranjang berhasil diperbarui', + 'total_harga' => $keranjang->total_harga, + 'jumlah' => $keranjang->jumlah + ]); + } + + // Jika ini request konfirmasi, buat respons khusus yang mengindikasikan sukses + if ($isConfirm) { + return response()->json(['success' => true, 'confirmed' => true]); + } + + return redirect()->route('keranjang.index') + ->with('success', 'Keranjang berhasil diperbarui'); + } + + /** + * Hapus item dari keranjang + */ + public function hapus(Request $request, Keranjang $keranjang) + { + try { + // Debug logging + \Log::debug('Mencoba menghapus keranjang: ID=' . $keranjang->id . + ', Auth::id()=' . Auth::id() . + ', keranjang->user_id=' . $keranjang->user_id . + ', sama=' . ((Auth::id() === $keranjang->user_id) ? 'Ya' : 'Tidak')); + + // Log semua parameter request + \Log::debug('Request data: ' . json_encode($request->all())); + + // Validasi kepemilikan dengan logging + if ($keranjang->user_id !== Auth::id()) { + \Log::warning('Akses tidak sah: User '.Auth::id().' mencoba menghapus keranjang '.$keranjang->id.' milik user '.$keranjang->user_id); + + if ($request->ajax() || $request->has('is_js_request')) { + return response(''); + } + + return redirect()->route('keranjang.index') + ->with('error', 'Anda tidak memiliki izin untuk menghapus item ini'); + } + + // Simpan informasi untuk log + $id = $keranjang->id; + $userId = $keranjang->user_id; + + // Hapus item dari keranjang + $result = $keranjang->delete(); + + // Log untuk debugging + \Log::info('Keranjang dihapus: ID=' . $id . + ', User=' . $userId . + ', Route=' . $request->route()->getName() . + ', Method=' . $request->method() . + ', Hasil=' . ($result ? 'Sukses' : 'Gagal')); + + // Handle jika ini adalah iframe request + if ($request->has('is_js_request') || $request->has('_ts')) { + // Kembalikan HTML minimal untuk iframe + return response(''); + } + + // Jika ini adalah request AJAX + if ($request->ajax()) { + return response()->json(['success' => true, 'message' => 'Item berhasil dihapus']); + } + + return redirect()->route('keranjang.index') + ->with('success', 'Item berhasil dihapus dari keranjang'); + } catch (\Exception $e) { + \Log::error('Error saat menghapus keranjang: ' . $e->getMessage()); + + // Handle jika ini adalah iframe request + if ($request->has('is_js_request') || $request->has('_ts')) { + // Kembalikan HTML minimal untuk iframe dengan pesan error + return response(''); + } + + // Jika ini adalah request AJAX + if ($request->ajax()) { + return response()->json(['success' => false, 'message' => 'Gagal menghapus item: ' . $e->getMessage()], 500); + } + + return redirect()->route('keranjang.index') + ->with('error', 'Gagal menghapus item: ' . $e->getMessage()); + } + } + + /** + * Kosongkan keranjang + */ + public function kosongkan() + { + Keranjang::where('user_id', Auth::id())->delete(); + + return redirect()->route('keranjang.index') + ->with('success', 'Keranjang berhasil dikosongkan'); + } + + /** + * Checkout semua item di keranjang + */ + public function checkout(Request $request) + { + // Jika ada parameter selected_items, gunakan itu (bisa dari GET) + if ($request->has('selected_items')) { + return $this->checkoutSelected($request); + } + + // Jika tidak ada parameter, cek session untuk item terpilih + if (session()->has('selected_keranjang_items')) { + $selectedIds = session('selected_keranjang_items'); + $items = Keranjang::with('barang') + ->where('user_id', Auth::id()) + ->whereIn('id', $selectedIds) + ->get(); + + if ($items->isNotEmpty()) { + $total = $items->sum('total_harga'); + $total_weight = $items->sum(function($item) { + return $item->barang->berat * $item->jumlah; + }); + return view('keranjang.checkout', compact('items', 'total', 'selectedIds', 'total_weight')); + } + } + + // Default: checkout semua item + $items = Keranjang::with('barang') + ->where('user_id', Auth::id()) + ->get(); + + if ($items->isEmpty()) { + return redirect()->route('keranjang.index') + ->with('error', 'Keranjang Anda kosong'); + } + + $total = $items->sum('total_harga'); + $total_weight = $items->sum(function($item) { + return $item->barang->berat * $item->jumlah; + }); + + return view('keranjang.checkout', compact('items', 'total', 'total_weight')); + } + + /** + * Checkout semua item terpilih di keranjang + */ + public function checkoutSelected(Request $request) + { + $request->validate([ + 'selected_items' => 'required|array', + 'selected_items.*' => 'exists:keranjang,id', + 'jumlah' => 'nullable|array', + ]); + + $selectedIds = $request->selected_items; + $items = Keranjang::with('barang') + ->where('user_id', Auth::id()) + ->whereIn('id', $selectedIds) + ->get(); + + if ($items->isEmpty()) { + return redirect()->route('keranjang.index') + ->with('error', 'Tidak ada item yang dipilih'); + } + + // Update jumlah item jika ada perubahan + if ($request->has('jumlah')) { + foreach ($items as $item) { + if (isset($request->jumlah[$item->id]) && $request->jumlah[$item->id] != $item->jumlah) { + // Validasi stok + if ($request->jumlah[$item->id] > $item->barang->stok) { + return redirect()->route('keranjang.index') + ->with('error', 'Jumlah ' . $item->barang->nama_barang . ' melebihi stok yang tersedia'); + } + + // Update jumlah dan total harga + $item->jumlah = $request->jumlah[$item->id]; + $item->total_harga = $item->barang->harga * $item->jumlah; + $item->save(); + } + } + } + + $total = $items->sum('total_harga'); + $total_weight = $items->sum(function($item) { + return $item->barang->berat * $item->jumlah; + }); + + return view('keranjang.checkout', compact('items', 'total', 'selectedIds', 'total_weight')); + } + + /** + * Hapus item terpilih dari keranjang + */ + public function hapusSelected(Request $request) + { + $request->validate([ + 'selected_items' => 'required|array', + 'selected_items.*' => 'exists:keranjang,id', + ]); + + $count = Keranjang::where('user_id', Auth::id()) + ->whereIn('id', $request->selected_items) + ->delete(); + + return redirect()->route('keranjang.index') + ->with('success', $count . ' item berhasil dihapus dari keranjang'); + } + + /** + * Hapus item dari keranjang dengan ID manual + */ + public function hapusManual(Request $request) + { + try { + $request->validate([ + 'id' => 'required|integer|exists:keranjang,id', + ]); + + $id = $request->input('id'); + + // Ambil keranjang berdasarkan ID dan user_id + $keranjang = Keranjang::where('id', $id) + ->where('user_id', Auth::id()) + ->first(); + + if (!$keranjang) { + \Log::warning('Akses tidak sah: User '.Auth::id().' mencoba menghapus keranjang '.$id.' yang tidak ditemukan atau bukan miliknya'); + + if ($request->ajax() || $request->has('is_js_request')) { + return response(''); + } + + return redirect()->route('keranjang.index') + ->with('error', 'Item tidak ditemukan atau bukan milik Anda'); + } + + // Debug logging + \Log::debug('Hapus Manual: ID=' . $keranjang->id . + ', Auth::id()=' . Auth::id() . + ', keranjang->user_id=' . $keranjang->user_id); + + // Hapus item dari keranjang + $result = $keranjang->delete(); + + // Log untuk debugging + \Log::info('Keranjang dihapus (manual): ID=' . $id . + ', User=' . Auth::id() . + ', Method=' . $request->method() . + ', Hasil=' . ($result ? 'Sukses' : 'Gagal')); + + // Handle jika ini adalah iframe request + if ($request->has('is_js_request') || $request->has('_ts')) { + // Kembalikan HTML minimal untuk iframe + return response(''); + } + + // Jika ini adalah request AJAX + if ($request->ajax()) { + return response()->json(['success' => true, 'message' => 'Item berhasil dihapus']); + } + + return redirect()->route('keranjang.index') + ->with('success', 'Item berhasil dihapus dari keranjang'); + + } catch (\Exception $e) { + \Log::error('Error saat menghapus keranjang manual: ' . $e->getMessage()); + + // Handle jika ini adalah iframe request + if ($request->has('is_js_request') || $request->has('_ts')) { + // Kembalikan HTML minimal untuk iframe dengan pesan error + return response(''); + } + + // Jika ini adalah request AJAX + if ($request->ajax()) { + return response()->json(['success' => false, 'message' => 'Gagal menghapus item: ' . $e->getMessage()], 500); + } + + return redirect()->route('keranjang.index') + ->with('error', 'Gagal menghapus item: ' . $e->getMessage()); + } + } + + /** + * Hapus item dari keranjang secara langsung dengan debugging total + * + * @param Request $request + * @return \Illuminate\Http\JsonResponse + */ + public function hapusDirect(Request $request) + { + // Set header content type untuk memastikan respons JSON yang benar + header('Content-Type: application/json'); + + try { + \Log::debug('====== DEBUG HAPUS DIRECT MULAI ======'); + \Log::debug('User ID dari Auth: ' . Auth::id()); + + // Tangani semua jenis request (JSON atau form) + if ($request->isJson()) { + $data = $request->json()->all(); + \Log::debug('Request adalah JSON: ' . json_encode($data)); + } else { + $data = $request->all(); + \Log::debug('Request adalah form data: ' . json_encode($data)); + } + + // Validasi minimal + $id = $data['id'] ?? null; + if (!$id) { + \Log::debug('ID tidak ditemukan dalam request'); + return response()->json([ + 'success' => false, + 'message' => 'ID tidak valid' + ], 400); + } + + \Log::debug('ID keranjang untuk dihapus: ' . $id); + + try { + // Hapus item dengan query builder untuk menghindari masalah model binding + $result = \DB::table('keranjang')->where('id', $id)->delete(); + \Log::debug('Hasil penghapusan dengan query builder: ' . ($result ? 'BERHASIL' : 'GAGAL')); + } catch (\Exception $dbException) { + \Log::error('Database error: ' . $dbException->getMessage()); + return response()->json([ + 'success' => false, + 'message' => 'Database error: ' . $dbException->getMessage(), + 'error_type' => 'database_error' + ], 500); + } + + if ($result) { + \Log::debug('====== DEBUG HAPUS DIRECT SELESAI (SUKSES) ======'); + return response()->json([ + 'success' => true, + 'message' => 'Item berhasil dihapus (mode debug)', + 'debug_info' => [ + 'user_id' => Auth::id(), + 'item_id' => $id, + 'deleted' => true, + 'time' => now()->toDateTimeString() + ] + ]); + } + + \Log::debug('====== DEBUG HAPUS DIRECT SELESAI (GAGAL) ======'); + return response()->json([ + 'success' => false, + 'message' => 'Gagal menghapus item' + ], 404); // Gunakan 404 jika item tidak ditemukan + + } catch (\Throwable $e) { + \Log::error('Exception: ' . $e->getMessage()); + \Log::error($e->getTraceAsString()); + \Log::debug('====== DEBUG HAPUS DIRECT SELESAI (ERROR) ======'); + + // Kembalikan respons JSON yang valid, meskipun terjadi error + return response()->json([ + 'success' => false, + 'message' => 'Terjadi kesalahan: ' . $e->getMessage(), + 'error_type' => 'exception' + ], 500); + } + } + + /** + * Update jumlah item di keranjang secara langsung + * + * @param Request $request + * @return \Illuminate\Http\JsonResponse + */ + public function updateDirect(Request $request) + { + // Set header content type untuk memastikan respons JSON yang benar + header('Content-Type: application/json'); + + try { + \Log::debug('====== DEBUG UPDATE DIRECT MULAI ======'); + \Log::debug('User ID dari Auth: ' . Auth::id()); + + // Tangani semua jenis request (JSON atau form) + if ($request->isJson()) { + $data = $request->json()->all(); + \Log::debug('Request adalah JSON: ' . json_encode($data)); + } else { + $data = $request->all(); + \Log::debug('Request adalah form data: ' . json_encode($data)); + } + + // Validasi minimal + $id = $data['id'] ?? null; + $jumlah = $data['jumlah'] ?? null; + + if (!$id || !$jumlah) { + \Log::debug('ID atau jumlah tidak ditemukan dalam request'); + return response()->json([ + 'success' => false, + 'message' => 'ID atau jumlah tidak valid' + ], 400); + } + + \Log::debug('ID keranjang: ' . $id . ', jumlah baru: ' . $jumlah); + + // Ambil item keranjang + $keranjang = Keranjang::where('id', $id) + ->where('user_id', Auth::id()) + ->first(); + + if (!$keranjang) { + \Log::debug('Item keranjang tidak ditemukan atau bukan milik user ini'); + return response()->json([ + 'success' => false, + 'message' => 'Item tidak ditemukan' + ], 404); + } + + // Validasi stok + $barang = $keranjang->barang; + if ($jumlah > $barang->stok) { + \Log::debug('Jumlah melebihi stok tersedia: ' . $barang->stok); + return response()->json([ + 'success' => false, + 'message' => 'Jumlah melebihi stok yang tersedia' + ], 400); + } + + // Update jumlah dan total harga + $keranjang->jumlah = $jumlah; + $keranjang->total_harga = $barang->harga * $jumlah; + $result = $keranjang->save(); + + \Log::debug('Hasil update: ' . ($result ? 'BERHASIL' : 'GAGAL')); + \Log::debug('====== DEBUG UPDATE DIRECT SELESAI (SUKSES) ======'); + + return response()->json([ + 'success' => true, + 'message' => 'Jumlah berhasil diperbarui', + 'data' => [ + 'id' => $keranjang->id, + 'jumlah' => $keranjang->jumlah, + 'total_harga' => $keranjang->total_harga, + 'harga_satuan' => $barang->harga + ] + ]); + + } catch (\Throwable $e) { + \Log::error('Exception: ' . $e->getMessage()); + \Log::error($e->getTraceAsString()); + \Log::debug('====== DEBUG UPDATE DIRECT SELESAI (ERROR) ======'); + + return response()->json([ + 'success' => false, + 'message' => 'Terjadi kesalahan: ' . $e->getMessage(), + 'error_type' => 'exception' + ], 500); + } + } + + /** + * Update jumlah item di keranjang dengan form tradisional (fallback) + * + * @param Request $request + * @return \Illuminate\Http\RedirectResponse + */ + public function updateFallback(Request $request) + { + try { + \Log::debug('====== UPDATE FALLBACK ======'); + \Log::debug('User ID: ' . Auth::id()); + \Log::debug('Request data: ' . json_encode($request->all())); + + // Validasi minimal + $request->validate([ + 'id' => 'required|integer|exists:keranjang,id', + 'jumlah' => 'required|integer|min:1', + ]); + + // Ambil item keranjang + $keranjang = Keranjang::where('id', $request->id) + ->where('user_id', Auth::id()) + ->first(); + + if (!$keranjang) { + \Log::debug('Item keranjang tidak ditemukan atau bukan milik user ini'); + return redirect()->route('keranjang.index') + ->with('error', 'Item tidak ditemukan'); + } + + // Validasi stok + $barang = $keranjang->barang; + if ($request->jumlah > $barang->stok) { + \Log::debug('Jumlah melebihi stok tersedia: ' . $barang->stok); + return redirect()->route('keranjang.index') + ->with('error', 'Jumlah melebihi stok yang tersedia'); + } + + // Update jumlah dan total harga + $keranjang->jumlah = $request->jumlah; + $keranjang->total_harga = $barang->harga * $request->jumlah; + $result = $keranjang->save(); + + \Log::debug('Hasil update: ' . ($result ? 'BERHASIL' : 'GAGAL')); + + return redirect()->route('keranjang.index') + ->with('success', 'Jumlah berhasil diperbarui'); + + } catch (\Throwable $e) { + \Log::error('Exception: ' . $e->getMessage()); + \Log::error($e->getTraceAsString()); + + return redirect()->route('keranjang.index') + ->with('error', 'Terjadi kesalahan: ' . $e->getMessage()); + } + } +} \ No newline at end of file diff --git a/app/Http/Controllers/LocationController.php b/app/Http/Controllers/LocationController.php new file mode 100644 index 0000000..6d75885 --- /dev/null +++ b/app/Http/Controllers/LocationController.php @@ -0,0 +1,163 @@ +distinct() + ->orderBy('province_name') + ->get(); + + return response()->json($provinces); + } catch (\Exception $e) { + Log::error('Error getting provinces:', [ + 'error' => $e->getMessage(), + 'trace' => $e->getTraceAsString() + ]); + return response()->json([ + 'error' => 'Gagal mengambil data provinsi', + 'message' => $e->getMessage() + ], 500); + } + } + + public function getCities(Request $request) + { + try { + $cities = Ongkir::where('province_id', $request->province_id) + ->select('city_id', 'city_name') + ->distinct() + ->orderBy('city_name') + ->get(); + + return response()->json($cities); + } catch (\Exception $e) { + Log::error('Error getting cities:', [ + 'error' => $e->getMessage(), + 'trace' => $e->getTraceAsString() + ]); + return response()->json([ + 'error' => 'Gagal mengambil data kota', + 'message' => $e->getMessage() + ], 500); + } + } + + public function calculateCost(Request $request) + { + try { + $ongkir = Ongkir::where('province_id', $request->province_id) + ->where('city_id', $request->city_id) + ->first(); + + if (!$ongkir) { + return response()->json([ + 'success' => false, + 'message' => 'Data ongkos kirim tidak ditemukan' + ], 404); + } + + $shippingOptions = []; + + // JNE Options + if ($ongkir->jne_reg) { + $shippingOptions[] = [ + 'service' => 'JNE Regular', + 'description' => 'Pengiriman reguler menggunakan JNE', + 'cost' => $ongkir->jne_reg, + 'etd' => '2-3' + ]; + } + if ($ongkir->jne_oke) { + $shippingOptions[] = [ + 'service' => 'JNE OKE', + 'description' => 'Pengiriman ekonomis menggunakan JNE', + 'cost' => $ongkir->jne_oke, + 'etd' => '3-4' + ]; + } + if ($ongkir->jne_yes) { + $shippingOptions[] = [ + 'service' => 'JNE YES', + 'description' => 'Pengiriman cepat menggunakan JNE', + 'cost' => $ongkir->jne_yes, + 'etd' => '1-2' + ]; + } + + // POS Options + if ($ongkir->pos_reg) { + $shippingOptions[] = [ + 'service' => 'POS Regular', + 'description' => 'Pengiriman reguler menggunakan POS Indonesia', + 'cost' => $ongkir->pos_reg, + 'etd' => '3-4' + ]; + } + if ($ongkir->pos_express) { + $shippingOptions[] = [ + 'service' => 'POS Express', + 'description' => 'Pengiriman cepat menggunakan POS Indonesia', + 'cost' => $ongkir->pos_express, + 'etd' => '2-3' + ]; + } + + // TIKI Options + if ($ongkir->tiki_reg) { + $shippingOptions[] = [ + 'service' => 'TIKI Regular', + 'description' => 'Pengiriman reguler menggunakan TIKI', + 'cost' => $ongkir->tiki_reg, + 'etd' => '2-3' + ]; + } + if ($ongkir->tiki_eco) { + $shippingOptions[] = [ + 'service' => 'TIKI ECO', + 'description' => 'Pengiriman ekonomis menggunakan TIKI', + 'cost' => $ongkir->tiki_eco, + 'etd' => '3-4' + ]; + } + if ($ongkir->tiki_express) { + $shippingOptions[] = [ + 'service' => 'TIKI Express', + 'description' => 'Pengiriman cepat menggunakan TIKI', + 'cost' => $ongkir->tiki_express, + 'etd' => '1-2' + ]; + } + + if (empty($shippingOptions)) { + return response()->json([ + 'success' => false, + 'message' => 'Tidak ada opsi pengiriman yang tersedia' + ], 404); + } + + return response()->json([ + 'success' => true, + 'options' => $shippingOptions + ]); + } catch (\Exception $e) { + Log::error('Error calculating cost:', [ + 'error' => $e->getMessage(), + 'trace' => $e->getTraceAsString() + ]); + return response()->json([ + 'success' => false, + 'message' => 'Gagal menghitung ongkos kirim', + 'error' => $e->getMessage() + ], 500); + } + } +} \ No newline at end of file diff --git a/app/Http/Controllers/PesananController.php b/app/Http/Controllers/PesananController.php new file mode 100644 index 0000000..e867c32 --- /dev/null +++ b/app/Http/Controllers/PesananController.php @@ -0,0 +1,376 @@ +middleware('auth'); + } + + public function index() + { + $query = Pesanan::with(['user', 'barang']) + ->where('user_id', Auth::id()); + + // Filter berdasarkan tanggal + if (request('start_date')) { + $query->whereDate('created_at', '>=', request('start_date')); + } + if (request('end_date')) { + $query->whereDate('created_at', '<=', request('end_date')); + } + + // Filter berdasarkan status + if (request('status')) { + $query->where('status', request('status')); + } + + $pesanan = $query->latest()->paginate(10); + return view('pesanan.index', compact('pesanan')); + } + + public function create() + { + $barang = Barang::where('stok', '>', 0)->get(); + return view('pesanan.create', compact('barang')); + } + + public function store(Request $request) + { + $request->validate([ + 'barang_id' => 'required|exists:barang,id', + 'jumlah' => 'required|integer|min:1', + 'catatan' => 'nullable|string' + ]); + + $barang = Barang::findOrFail($request->barang_id); + + if ($barang->stok < $request->jumlah) { + return back()->with('error', 'Stok tidak mencukupi'); + } + + // Cek apakah sudah ada pesanan pending untuk barang yang sama + $existingPesanan = Pesanan::where('user_id', Auth::id()) + ->where('barang_id', $request->barang_id) + ->where('status', 'pending') + ->first(); + + if ($existingPesanan) { + // Update jumlah pesanan yang ada + $newJumlah = $existingPesanan->jumlah + $request->jumlah; + + if ($barang->stok < $newJumlah) { + return back()->with('error', 'Stok tidak mencukupi untuk total pesanan'); + } + + $existingPesanan->update([ + 'jumlah' => $newJumlah, + 'total_harga' => $barang->harga * $newJumlah, + 'catatan' => $request->catatan ?? $existingPesanan->catatan + ]); + + // Kurangi stok barang + $barang->update([ + 'stok' => $barang->stok - $request->jumlah + ]); + + return redirect()->route('pesanan.index')->with('success', 'Pesanan berhasil diperbarui'); + } + + // Jika tidak ada pesanan yang sama, buat pesanan baru + $total_harga = $barang->harga * $request->jumlah; + + $pesanan = Pesanan::create([ + 'user_id' => Auth::id(), + 'barang_id' => $request->barang_id, + 'jumlah' => $request->jumlah, + 'total_harga' => $total_harga, + 'status' => 'pending', + 'catatan' => $request->catatan + ]); + + // Kurangi stok barang + $barang->update([ + 'stok' => $barang->stok - $request->jumlah + ]); + + return redirect()->route('pesanan.index')->with('success', 'Pesanan berhasil dibuat'); + } + + public function show(Pesanan $pesanan) + { + $pesanan->load(['user', 'barang', 'items.barang']); + return view('pesanan.show', compact('pesanan')); + } + + public function updateStatus(Request $request, Pesanan $pesanan) + { + $request->validate([ + 'status' => 'required|in:pending,diproses,dikirim,selesai,dibatalkan' + ]); + + $pesanan->update(['status' => $request->status]); + + // Jika pesanan dibatalkan, kembalikan stok + if ($request->status === 'dibatalkan') { + $pesanan->barang->update([ + 'stok' => $pesanan->barang->stok + $pesanan->jumlah + ]); + } + + return back()->with('success', 'Status pesanan berhasil diperbarui'); + } + + public function destroy(Pesanan $pesanan) + { + try { + // Kembalikan stok + $pesanan->barang->update([ + 'stok' => $pesanan->barang->stok + $pesanan->jumlah + ]); + + // Hapus pesanan + $pesanan->delete(); + + return response()->json([ + 'success' => true, + 'message' => 'Pesanan berhasil dibatalkan' + ]); + + } catch (\Exception $e) { + return response()->json([ + 'success' => false, + 'message' => 'Terjadi kesalahan saat membatalkan pesanan' + ], 500); + } + } + + public function createFromBarang(Barang $barang) + { + if ($barang->stok <= 0) { + return back()->with('error', 'Maaf, stok barang tidak tersedia'); + } + + return view('pesanan.create-from-barang', compact('barang')); + } + + public function edit(Pesanan $pesanan) + { + // Pastikan user hanya bisa mengedit pesanannya sendiri + if ($pesanan->user_id !== Auth::id()) { + return abort(403, 'Unauthorized action.'); + } + + // Pastikan hanya pesanan dengan status pending yang bisa diedit + if ($pesanan->status !== 'pending') { + return redirect()->route('pesanan.index') + ->with('error', 'Hanya pesanan dengan status pending yang dapat diedit'); + } + + return view('pesanan.edit', compact('pesanan')); + } + + public function update(Request $request, Pesanan $pesanan) + { + // Validasi user + if ($pesanan->user_id !== Auth::id()) { + return abort(403, 'Unauthorized action.'); + } + + // Validasi status + if ($pesanan->status !== 'pending') { + return redirect()->route('pesanan.index') + ->with('error', 'Hanya pesanan dengan status pending yang dapat diubah'); + } + + $request->validate([ + 'jumlah' => 'required|integer|min:1', + 'catatan' => 'nullable|string' + ]); + + $barang = $pesanan->barang; + $stokTersedia = $barang->stok + $pesanan->jumlah; // Stok saat ini + jumlah pesanan yang akan diubah + + if ($request->jumlah > $stokTersedia) { + return back()->with('error', 'Stok tidak mencukupi'); + } + + // Hitung selisih stok + $selisihStok = $pesanan->jumlah - $request->jumlah; + + // Update pesanan + $pesanan->update([ + 'jumlah' => $request->jumlah, + 'total_harga' => $barang->harga * $request->jumlah, + 'catatan' => $request->catatan + ]); + + // Update stok barang + $barang->update([ + 'stok' => $barang->stok + $selisihStok + ]); + + return redirect()->route('pesanan.index') + ->with('success', 'Pesanan berhasil diperbarui'); + } + + public function storeFromCart(Request $request) + { + $request->validate([ + 'catatan' => 'nullable|string', + 'shipping_info' => 'required|json', + 'selected_items' => 'required|array' + ]); + + $shippingInfo = json_decode($request->shipping_info, true); + if (!$shippingInfo) { + return redirect()->route('keranjang.index') + ->with('error', 'Informasi pengiriman tidak valid'); + } + + $query = Keranjang::with('barang')->where('user_id', Auth::id()); + + // Jika ada item yang dipilih, gunakan hanya item tersebut + if ($request->has('selected_items') && !empty($request->selected_items)) { + $query->whereIn('id', $request->selected_items); + } + + $keranjangItems = $query->get(); + + if ($keranjangItems->isEmpty()) { + return redirect()->route('keranjang.index') + ->with('error', 'Keranjang belanja Anda kosong'); + } + + DB::beginTransaction(); + + try { + $totalHargaBarang = 0; + $items = []; + + foreach ($keranjangItems as $item) { + $barang = $item->barang; + + // Verify stock availability + if ($barang->stok < $item->jumlah) { + DB::rollBack(); + return redirect()->route('keranjang.index') + ->with('error', "Stok {$barang->nama_barang} tidak mencukupi, tersisa {$barang->stok}"); + } + + $totalHargaBarang += $item->total_harga; + $items[] = [ + 'barang_id' => $barang->id, + 'jumlah' => $item->jumlah, + 'harga' => $barang->harga, + 'subtotal' => $item->total_harga + ]; + + // Update stock + $barang->update([ + 'stok' => $barang->stok - $item->jumlah + ]); + } + + // Buat satu pesanan untuk semua item + $pesanan = Pesanan::create([ + 'user_id' => Auth::id(), + 'barang_id' => $items[0]['barang_id'], // Set barang_id dari item pertama + 'jumlah' => $items[0]['jumlah'], // Set jumlah dari item pertama + 'total_harga' => $totalHargaBarang + $shippingInfo['cost'], + 'status' => 'pending', + 'catatan' => $request->catatan, + 'shipping_cost' => $shippingInfo['cost'], + 'shipping_service' => $shippingInfo['service'], + 'shipping_etd' => $shippingInfo['etd'], + 'shipping_courier' => $shippingInfo['courier'], + 'shipping_province_id' => $shippingInfo['province_id'], + 'shipping_city_id' => $shippingInfo['city_id'] + ]); + + // Simpan detail item pesanan + foreach ($items as $item) { + $pesanan->items()->create([ + 'barang_id' => $item['barang_id'], + 'jumlah' => $item['jumlah'], + 'harga' => $item['harga'], + 'total_harga' => $item['subtotal'] + ]); + } + + // Hapus item dari keranjang + $keranjangItems->each->delete(); + + DB::commit(); + + // Buat transaksi Midtrans + try { + // Hitung total harga item + $itemDetails = array_map(function($item) { + return [ + 'id' => $item['barang_id'], + 'price' => $item['harga'], + 'quantity' => $item['jumlah'], + 'name' => $item['barang']->nama_barang + ]; + }, $items); + + // Tambahkan detail pengiriman sebagai item terpisah + $itemDetails[] = [ + 'id' => 'shipping', + 'price' => $shippingInfo['cost'], + 'quantity' => 1, + 'name' => 'Ongkos Kirim - ' . strtoupper($shippingInfo['courier']) . ' ' . $shippingInfo['service'] + ]; + + $params = [ + 'transaction_details' => [ + 'order_id' => 'ORDER-' . $pesanan->id, + 'gross_amount' => $pesanan->total_harga, + ], + 'customer_details' => [ + 'first_name' => Auth::user()->name, + 'email' => Auth::user()->email, + ], + 'item_details' => $itemDetails + ]; + + // Dapatkan Snap Token + $snapToken = \Midtrans\Snap::getSnapToken($params); + + // Simpan transaksi + $transaksi = Transaksi::create([ + 'pesanan_id' => $pesanan->id, + 'user_id' => Auth::id(), + 'total_bayar' => $pesanan->total_harga, + 'status' => 'pending', + 'snap_token' => $snapToken + ]); + + return redirect()->route('transaksi.show', $transaksi) + ->with('success', 'Pesanan berhasil dibuat. Silakan selesaikan pembayaran.'); + } catch (\Exception $e) { + \Log::error('Midtrans Error: ' . $e->getMessage()); + return redirect()->route('pesanan.index'); + } + + } catch (\Exception $e) { + DB::rollBack(); + return redirect()->route('keranjang.index') + ->with('error', 'Terjadi kesalahan saat membuat pesanan: ' . $e->getMessage()); + } + } +} diff --git a/app/Http/Controllers/TransaksiController.php b/app/Http/Controllers/TransaksiController.php new file mode 100644 index 0000000..151ac17 --- /dev/null +++ b/app/Http/Controllers/TransaksiController.php @@ -0,0 +1,501 @@ +middleware('auth'); + $this->midtransService = $midtransService; + } + + public function index() + { + $query = Transaksi::with(['pesanan.barang', 'user']); + + // Filter berdasarkan tanggal + if (request('start_date')) { + $query->whereDate('created_at', '>=', request('start_date')); + } + if (request('end_date')) { + $query->whereDate('created_at', '<=', request('end_date')); + } + + // Filter berdasarkan status + if (request('status')) { + $query->where('status', request('status')); + } + + $transaksi = $query->latest()->paginate(10); + + return view('admin.transaksi.index', compact('transaksi')); + } + + public function create(Pesanan $pesanan) + { + try { + // Load relasi barang + $pesanan->load('barang'); + + // Debug logging + Log::info('Transaksi Create Debug', [ + 'pesanan_id' => $pesanan->id, + 'pesanan_user_id' => $pesanan->user_id, + 'auth_user_id' => Auth::id(), + 'has_transaksi' => $pesanan->transaksi ? true : false + ]); + + // Pastikan pesanan milik user yang sedang login + if ((int)$pesanan->user_id !== Auth::id()) { + return response()->json([ + 'error' => 'Unauthorized action' + ], 403); + } + + // Jika sudah ada transaksi, gunakan transaksi yang ada + if ($pesanan->transaksi) { + $transaksi = $pesanan->transaksi; + + // Dapatkan snap token baru + $snapToken = $this->midtransService->getSnapToken([ + 'transaction_details' => [ + 'order_id' => $transaksi->kode_transaksi, + 'gross_amount' => $transaksi->total_pembayaran + ], + 'item_details' => [ + [ + 'id' => (string)$pesanan->barang_id, + 'price' => (int)$pesanan->total_harga, + 'quantity' => 1, + 'name' => $pesanan->barang->nama_barang, + 'category' => 'Electronics' + ] + ], + 'customer_details' => [ + 'first_name' => $transaksi->nama_penerima, + 'email' => Auth::user()->email ?: 'guest@example.com', + 'phone' => $transaksi->no_telp, + 'billing_address' => [ + 'address' => $transaksi->alamat + ] + ] + ]); + + return response()->json([ + 'snap_token' => $snapToken + ]); + } + + // Generate kode transaksi + $kodeTransaksi = 'TRX' . date('YmdHis') . rand(100, 999); + + // Gunakan total_harga langsung dari pesanan + $totalPembayaran = (int)$pesanan->total_harga; + + // Validasi total pembayaran + if ($totalPembayaran < 1) { + return response()->json([ + 'error' => 'Total pembayaran harus lebih besar dari 0' + ], 400); + } + + // Buat transaksi baru + $user = Auth::user(); + $transaksi = Transaksi::create([ + 'user_id' => Auth::id(), + 'pesanan_id' => $pesanan->id, + 'kode_transaksi' => $kodeTransaksi, + 'total_pembayaran' => $totalPembayaran, + 'status' => 'menunggu_pembayaran', + 'nama_penerima' => $user->name ?? 'Guest', + 'no_telp' => $user->no_telp ?? '-', + 'alamat' => $user->alamat ?? '-' + ]); + + // Siapkan item details + $itemDetails = []; + + // Tambahkan item barang + if ($pesanan->barang) { + $itemDetails[] = [ + 'id' => (string)$pesanan->barang_id, + 'price' => (int)$pesanan->total_harga, + 'quantity' => 1, + 'name' => $pesanan->barang->nama_barang, + 'category' => 'Electronics' + ]; + } + + // Debug log untuk memeriksa total harga + Log::info('Total Harga Debug', [ + 'total_pembayaran' => $totalPembayaran, + 'item_details' => $itemDetails, + 'transaksi_id' => $transaksi->id, + ]); + + // Dapatkan Snap token dari Midtrans dengan order_id yang sama + $snapToken = $this->midtransService->getSnapToken([ + 'transaction_details' => [ + 'order_id' => $transaksi->kode_transaksi, + 'gross_amount' => $totalPembayaran // Gunakan totalPembayaran yang sudah termasuk ongkir + ], + 'item_details' => $itemDetails, + 'customer_details' => [ + 'first_name' => $transaksi->nama_penerima, + 'email' => Auth::user()->email ?: 'guest@example.com', + 'phone' => $transaksi->no_telp, + 'billing_address' => [ + 'address' => $transaksi->alamat + ] + ] + ]); + + return response()->json([ + 'snap_token' => $snapToken + ]); + } catch (\Exception $e) { + Log::error('Error creating transaction: ' . $e->getMessage()); + return response()->json([ + 'error' => 'Terjadi kesalahan saat memproses pembayaran: ' . $e->getMessage() + ], 500); + } + } + + public function store(Request $request) + { + $request->validate([ + 'pesanan_id' => 'required|exists:pesanan,id', + 'nama_penerima' => 'required|string|max:255', + 'no_telp' => 'required|string|max:15', + 'alamat' => 'required|string', + 'metode_pembayaran' => 'required|in:transfer,cod', + 'catatan_pengiriman' => 'nullable|string' + ]); + + $pesanan = Pesanan::findOrFail($request->pesanan_id); + + // Pastikan pesanan milik user yang sedang login + if ($pesanan->user_id !== Auth::id()) { + return back()->with('error', 'Anda tidak memiliki akses ke pesanan ini'); + } + + // Pastikan pesanan masih pending + if ($pesanan->status !== 'pending') { + return back()->with('error', 'Pesanan tidak dapat diproses untuk pembayaran'); + } + + // Generate kode transaksi + $kodeTransaksi = 'TRX' . date('YmdHis') . rand(100, 999); + + // Gunakan total_harga langsung dari pesanan + $totalPembayaran = (int)$pesanan->total_harga; + + // Buat transaksi baru + $transaksi = Transaksi::create([ + 'user_id' => Auth::id(), + 'pesanan_id' => $pesanan->id, + 'kode_transaksi' => $kodeTransaksi, + 'total_pembayaran' => $totalPembayaran, + 'metode_pembayaran' => $request->metode_pembayaran, + 'status' => 'menunggu_pembayaran', + 'nama_penerima' => $request->nama_penerima, + 'no_telp' => $request->no_telp, + 'alamat' => $request->alamat, + 'catatan_pengiriman' => $request->catatan_pengiriman + ]); + + // Update status pesanan menjadi diproses + $pesanan->update(['status' => 'diproses']); + + return redirect()->route('transaksi.show', $transaksi) + ->with('success', 'Transaksi berhasil dibuat. Silakan lakukan pembayaran.'); + } + + public function show(Transaksi $transaksi) + { + // Pastikan transaksi milik user yang sedang login + if ($transaksi->user_id !== Auth::id()) { + return abort(403, 'Unauthorized action.'); + } + + $transaksi->load(['pesanan.barang']); + return view('transaksi.show', compact('transaksi')); + } + + public function uploadBukti(Request $request, Transaksi $transaksi) + { + $request->validate([ + 'bukti_pembayaran' => 'required|image|max:2048' + ]); + + if ($transaksi->user_id !== Auth::id()) { + return abort(403, 'Unauthorized action.'); + } + + if ($transaksi->status !== 'menunggu_pembayaran') { + return back()->with('error', 'Bukti pembayaran tidak dapat diupload'); + } + + // Upload bukti pembayaran + $path = $request->file('bukti_pembayaran')->store('bukti_pembayaran', 'public'); + + $transaksi->update([ + 'bukti_pembayaran' => $path, + 'status' => 'menunggu_konfirmasi' + ]); + + return back()->with('success', 'Bukti pembayaran berhasil diupload'); + } + + public function confirmPayment(Request $request, Transaksi $transaksi) + { + if ($transaksi->status !== 'menunggu_konfirmasi') { + return back()->with('error', 'Status transaksi tidak valid'); + } + + $transaksi->update(['status' => 'dibayar']); + $transaksi->pesanan->update(['status' => 'diproses']); + + return back()->with('success', 'Pembayaran berhasil dikonfirmasi'); + } + + public function callback(Request $request) + { + try { + $payload = $request->all(); + $transaksi = $this->midtransService->handleCallback((object) $payload); + + return response()->json([ + 'success' => true, + 'message' => 'Callback berhasil diproses', + 'data' => $transaksi + ]); + } catch (\Exception $e) { + return response()->json([ + 'success' => false, + 'message' => $e->getMessage() + ], 400); + } + } + + public function finish(Request $request) + { + try { + Log::info('Finish Callback', [ + 'order_id' => $request->order_id, + 'transaction_status' => $request->transaction_status, + 'payment_type' => $request->payment_type, + 'all_params' => $request->all() + ]); + + $transaksi = Transaksi::where('kode_transaksi', $request->order_id)->first(); + + if (!$transaksi) { + Log::error('Transaksi tidak ditemukan', [ + 'order_id' => $request->order_id, + 'snap_token' => $request->snap_token + ]); + return redirect()->route('pesanan.index') + ->with('error', 'Transaksi tidak ditemukan. Silakan hubungi admin dengan kode transaksi: ' . $request->order_id); + } + + // Update status transaksi + $transaksi->update([ + 'status' => 'dibayar', + 'payment_type' => $request->payment_type, + 'transaction_status' => $request->transaction_status + ]); + + // Update status pesanan + $transaksi->pesanan->update(['status' => 'diproses']); + + return view('transaksi.success', [ + 'transaksi' => $transaksi, + 'payment_type' => $request->payment_type, + 'transaction_status' => $request->transaction_status + ]); + } catch (\Exception $e) { + Log::error('Error in finish callback: ' . $e->getMessage(), [ + 'order_id' => $request->order_id, + 'exception' => $e + ]); + + return redirect()->route('pesanan.index') + ->with('error', 'Terjadi kesalahan saat memproses pembayaran. Silakan hubungi admin.'); + } + } + + public function unfinish(Request $request) + { + try { + Log::info('Unfinish Callback', [ + 'order_id' => $request->order_id, + 'transaction_status' => $request->transaction_status, + 'payment_type' => $request->payment_type, + 'all_params' => $request->all() + ]); + + $transaksi = Transaksi::where('kode_transaksi', $request->order_id)->first(); + + if (!$transaksi) { + Log::error('Transaksi tidak ditemukan', [ + 'order_id' => $request->order_id + ]); + return redirect()->route('pesanan.index') + ->with('error', 'Transaksi tidak ditemukan. Silakan hubungi admin dengan kode transaksi: ' . $request->order_id); + } + + // Update status transaksi menjadi pending + $transaksi->update([ + 'status' => 'menunggu_pembayaran', + 'payment_type' => $request->payment_type, + 'transaction_status' => $request->transaction_status + ]); + + // Tampilkan halaman pending dengan informasi pembayaran + return view('transaksi.pending', [ + 'transaksi' => $transaksi, + 'payment_type' => $request->payment_type, + 'transaction_status' => $request->transaction_status, + 'message' => 'Pembayaran Anda belum selesai. Silakan selesaikan pembayaran Anda.' + ]); + } catch (\Exception $e) { + Log::error('Error in unfinish callback: ' . $e->getMessage(), [ + 'order_id' => $request->order_id, + 'exception' => $e + ]); + + return redirect()->route('pesanan.index') + ->with('error', 'Terjadi kesalahan saat memproses pembayaran. Silakan hubungi admin.'); + } + } + + public function error(Request $request) + { + $transaksi = Transaksi::where('kode_transaksi', $request->order_id)->first(); + + if (!$transaksi) { + return redirect()->route('pesanan.index')->with('error', 'Transaksi tidak ditemukan'); + } + + return view('transaksi.error', [ + 'transaksi' => $transaksi + ]); + } + + public function getSnapToken(Pesanan $pesanan) + { + try { + // Cek apakah pesanan memiliki transaksi + $transaksi = $pesanan->transaksi; + if (!$transaksi) { + return response()->json([ + 'error' => 'Tidak ada transaksi yang sedang menunggu pembayaran' + ], 400); + } + + // Pastikan pesanan milik user yang sedang login + if ((int)$pesanan->user_id !== Auth::id()) { + return response()->json([ + 'error' => 'Unauthorized action' + ], 403); + } + + // Siapkan item details + $itemDetails = []; + + // Ambil semua item dari pesanan + foreach ($pesanan->items as $item) { + $itemDetails[] = [ + 'id' => (string)$item->barang_id, + 'price' => (int)$item->harga, + 'quantity' => $item->jumlah, + 'name' => $item->barang->nama_barang, + 'category' => 'Electronics' + ]; + } + + // Debug log untuk memeriksa total harga + Log::info('Total Harga Debug', [ + 'total_pembayaran' => $transaksi->total_pembayaran, + 'item_details' => $itemDetails, + 'transaksi_id' => $transaksi->id, + ]); + + // Dapatkan Snap token dari Midtrans dengan order_id yang sama + $snapToken = $this->midtransService->getSnapToken([ + 'transaction_details' => [ + 'order_id' => $transaksi->kode_transaksi, + 'gross_amount' => (int)$transaksi->total_pembayaran + ], + 'item_details' => $itemDetails, + 'customer_details' => [ + 'first_name' => $transaksi->nama_penerima, + 'email' => Auth::user()->email ?: 'guest@example.com', + 'phone' => $transaksi->no_telp, + 'billing_address' => [ + 'address' => $transaksi->alamat + ] + ] + ]); + + return response()->json([ + 'snap_token' => $snapToken + ]); + } catch (\Exception $e) { + Log::error('Error getting snap token: ' . $e->getMessage()); + return response()->json([ + 'error' => 'Terjadi kesalahan saat memproses pembayaran: ' . $e->getMessage() + ], 500); + } + } + + public function updateStatus(Request $request) + { + try { + $transaksi = Transaksi::where('kode_transaksi', $request->order_id)->first(); + + if (!$transaksi) { + return response()->json([ + 'error' => 'Transaksi tidak ditemukan' + ], 404); + } + + // Update status transaksi + $transaksi->update([ + 'status' => 'dibayar', + 'payment_type' => $request->payment_type, + 'transaction_status' => $request->transaction_status + ]); + + // Update status pesanan + $transaksi->pesanan->update(['status' => 'diproses']); + + return response()->json([ + 'success' => true, + 'message' => 'Status transaksi berhasil diupdate' + ]); + } catch (\Exception $e) { + Log::error('Error updating transaction status: ' . $e->getMessage()); + return response()->json([ + 'error' => 'Terjadi kesalahan saat mengupdate status transaksi' + ], 500); + } + } +} diff --git a/app/Http/Controllers/UserController.php b/app/Http/Controllers/UserController.php new file mode 100644 index 0000000..98e8c82 --- /dev/null +++ b/app/Http/Controllers/UserController.php @@ -0,0 +1,22 @@ +validate([ + 'alamat' => 'required|string|max:255', + ]); + + $user = Auth::user(); + $user->alamat = $request->alamat; + $user->save(); + + return redirect()->back()->with('success', 'Alamat berhasil diperbarui'); + } +} \ No newline at end of file diff --git a/app/Http/Controllers/UserProfileController.php b/app/Http/Controllers/UserProfileController.php new file mode 100644 index 0000000..94b7fe0 --- /dev/null +++ b/app/Http/Controllers/UserProfileController.php @@ -0,0 +1,69 @@ +middleware('auth'); + } + + public function show() + { + $user = Auth::user(); + return view('user.profile', compact('user')); + } + + public function update(Request $request) + { + $user = Auth::user(); + + $validator = Validator::make($request->all(), [ + 'nama' => 'required|string|max:255', + 'email' => 'required|string|email|max:255|unique:users,email,' . $user->id, + 'alamat' => 'required|string|max:500', + 'nomor_telp' => 'required|string|max:15', + 'current_password' => 'nullable|required_with:new_password', + 'new_password' => 'nullable|min:8|confirmed', + ]); + + if ($validator->fails()) { + return back() + ->withErrors($validator) + ->withInput(); + } + + // Update informasi dasar + $user->nama = $request->nama; + $user->email = $request->email; + $user->alamat = $request->alamat; + $user->nomor_telp = $request->nomor_telp; + + // Update password jika diisi + if ($request->filled('current_password')) { + if (!Hash::check($request->current_password, $user->password)) { + return back() + ->withErrors(['current_password' => 'Password saat ini tidak sesuai']) + ->withInput(); + } + + $user->password = Hash::make($request->new_password); + } + + try { + $user->save(); + return back()->with('success', 'Profil berhasil diperbarui'); + } catch (\Exception $e) { + return back() + ->withErrors(['error' => 'Terjadi kesalahan saat memperbarui profil']) + ->withInput(); + } + } +} diff --git a/app/Http/Kernel.php b/app/Http/Kernel.php new file mode 100644 index 0000000..502e468 --- /dev/null +++ b/app/Http/Kernel.php @@ -0,0 +1,63 @@ + [ + \App\Http\Middleware\EncryptCookies::class, + \Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class, + \Illuminate\Session\Middleware\StartSession::class, + \Illuminate\View\Middleware\ShareErrorsFromSession::class, + \App\Http\Middleware\VerifyCsrfToken::class, + \Illuminate\Routing\Middleware\SubstituteBindings::class, + ], + + 'api' => [ + \Illuminate\Routing\Middleware\ThrottleRequests::class . ':api', + \Illuminate\Routing\Middleware\SubstituteBindings::class, + ], + ]; + + /** + * The application's middleware aliases. + * + * @var array + */ + protected $middlewareAliases = [ + 'auth' => \App\Http\Middleware\Authenticate::class, + 'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class, + 'auth.session' => \Illuminate\Session\Middleware\AuthenticateSession::class, + 'cache.headers' => \Illuminate\Http\Middleware\SetCacheHeaders::class, + 'can' => \Illuminate\Auth\Middleware\Authorize::class, + 'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class, + 'password.confirm' => \Illuminate\Auth\Middleware\RequirePassword::class, + 'signed' => \App\Http\Middleware\ValidateSignature::class, + 'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class, + 'verified' => \App\Http\Middleware\EnsureEmailIsVerified::class, + 'role' => \App\Http\Middleware\RoleMiddleware::class, + 'check.role' => \App\Http\Middleware\CheckRole::class, + ]; +} diff --git a/app/Http/Middleware/AllowRegistration.php b/app/Http/Middleware/AllowRegistration.php new file mode 100644 index 0000000..0519ecb --- /dev/null +++ b/app/Http/Middleware/AllowRegistration.php @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/app/Http/Middleware/Authenticate.php b/app/Http/Middleware/Authenticate.php new file mode 100644 index 0000000..c44a5f2 --- /dev/null +++ b/app/Http/Middleware/Authenticate.php @@ -0,0 +1,14 @@ +expectsJson() ? null : route('login'); + } +} diff --git a/app/Http/Middleware/CheckRole.php b/app/Http/Middleware/CheckRole.php new file mode 100644 index 0000000..da8824e --- /dev/null +++ b/app/Http/Middleware/CheckRole.php @@ -0,0 +1,37 @@ +route('login'); + } + + $roles = explode('|', $role); + + if (!in_array(Auth::user()->role, $roles)) { + if (Auth::user()->role === 'admin') { + return redirect()->route('admin.dashboard') + ->with('error', 'Anda tidak memiliki akses ke halaman ini.'); + } + + return redirect()->route('dashboard') + ->with('error', 'Anda tidak memiliki akses ke halaman ini.'); + } + + return $next($request); + } +} diff --git a/app/Http/Middleware/EncryptCookies.php b/app/Http/Middleware/EncryptCookies.php new file mode 100644 index 0000000..5e65591 --- /dev/null +++ b/app/Http/Middleware/EncryptCookies.php @@ -0,0 +1,12 @@ +is_verified) { + return $request->expectsJson() + ? response()->json(['message' => 'Email Anda belum diverifikasi.'], 403) + : Redirect::route('verification.notice'); + } + + return $next($request); + } +} \ No newline at end of file diff --git a/app/Http/Middleware/PreventRequestsDuringMaintenance.php b/app/Http/Middleware/PreventRequestsDuringMaintenance.php new file mode 100644 index 0000000..ca2f111 --- /dev/null +++ b/app/Http/Middleware/PreventRequestsDuringMaintenance.php @@ -0,0 +1,12 @@ +check()) { + return redirect()->route('dashboard'); + } + } + + return $next($request); + } +} diff --git a/app/Http/Middleware/RoleMiddleware.php b/app/Http/Middleware/RoleMiddleware.php new file mode 100644 index 0000000..f1b14f4 --- /dev/null +++ b/app/Http/Middleware/RoleMiddleware.php @@ -0,0 +1,39 @@ +route('login'); + } + + $roles = is_array($role) ? $role : explode('|', $role); + + if (!in_array(Auth::user()->role, $roles)) { + if (Auth::user()->role === 'admin') { + return redirect()->route('admin.dashboard') + ->with('error', 'Anda tidak memiliki akses ke halaman ini.'); + } + + return redirect()->route('dashboard') + ->with('error', 'Anda tidak memiliki akses ke halaman ini.'); + } + + return $next($request); + } +} diff --git a/app/Http/Middleware/TrimStrings.php b/app/Http/Middleware/TrimStrings.php new file mode 100644 index 0000000..bf51b97 --- /dev/null +++ b/app/Http/Middleware/TrimStrings.php @@ -0,0 +1,14 @@ + 'boolean', + 'tanggal_mulai' => 'datetime', + 'tanggal_selesai' => 'datetime', + ]; + + /** + * Scope untuk mendapatkan banner yang aktif + */ + public function scopeAktif($query) + { + return $query->where('aktif', true) + ->where(function ($q) { + $q->whereNull('tanggal_mulai') + ->orWhere('tanggal_mulai', '<=', now()); + }) + ->where(function ($q) { + $q->whereNull('tanggal_selesai') + ->orWhere('tanggal_selesai', '>=', now()); + }) + ->orderBy('urutan'); + } +} diff --git a/app/Models/Barang.php b/app/Models/Barang.php new file mode 100644 index 0000000..d06d738 --- /dev/null +++ b/app/Models/Barang.php @@ -0,0 +1,39 @@ +hasMany(FlashSaleItem::class); + } + + /** + * Mendapatkan pesanan yang terkait dengan barang ini + */ + public function pesanan() + { + return $this->hasMany(Pesanan::class); + } +} diff --git a/app/Models/FlashSale.php b/app/Models/FlashSale.php new file mode 100644 index 0000000..2e1170d --- /dev/null +++ b/app/Models/FlashSale.php @@ -0,0 +1,64 @@ + 'datetime', + 'waktu_selesai' => 'datetime', + 'aktif' => 'boolean', + ]; + + /** + * Relasi ke item flash sale + */ + public function items() + { + return $this->hasMany(FlashSaleItem::class); + } + + /** + * Relasi ke barang-barang yang termasuk dalam flash sale + */ + public function barangs() + { + return $this->belongsToMany(Barang::class, 'flash_sale_items') + ->withPivot('harga_flash_sale', 'persentase_diskon', 'stok_flash_sale', 'stok_terjual', 'aktif') + ->withTimestamps(); + } + + /** + * Scope untuk mendapatkan flash sale yang aktif dan berjalan saat ini + */ + public function scopeAktif($query) + { + return $query->where('aktif', true) + ->where('waktu_mulai', '<=', now()) + ->where('waktu_selesai', '>=', now()); + } + + /** + * Cek apakah flash sale sedang berlangsung + */ + public function getSedangBerlangsungAttribute() + { + return $this->aktif && + $this->waktu_mulai <= now() && + $this->waktu_selesai >= now(); + } +} diff --git a/app/Models/FlashSaleItem.php b/app/Models/FlashSaleItem.php new file mode 100644 index 0000000..3415140 --- /dev/null +++ b/app/Models/FlashSaleItem.php @@ -0,0 +1,57 @@ + 'boolean', + ]; + + /** + * Relasi ke flash sale + */ + public function flashSale() + { + return $this->belongsTo(FlashSale::class); + } + + /** + * Relasi ke barang + */ + public function barang() + { + return $this->belongsTo(Barang::class); + } + + /** + * Cek apakah masih tersedia stok + */ + public function getStokTersediaAttribute() + { + return $this->stok_flash_sale - $this->stok_terjual; + } + + /** + * Cek apakah item flash sale masih tersedia + */ + public function getTersediaAttribute() + { + return $this->aktif && $this->getStokTersediaAttribute() > 0 && $this->flashSale && $this->flashSale->sedang_berlangsung; + } +} diff --git a/app/Models/Keranjang.php b/app/Models/Keranjang.php new file mode 100644 index 0000000..4138d48 --- /dev/null +++ b/app/Models/Keranjang.php @@ -0,0 +1,36 @@ +belongsTo(Barang::class); + } + + /** + * Relasi ke model User + */ + public function user() + { + return $this->belongsTo(User::class); + } +} \ No newline at end of file diff --git a/app/Models/Ongkir.php b/app/Models/Ongkir.php new file mode 100644 index 0000000..bc96f91 --- /dev/null +++ b/app/Models/Ongkir.php @@ -0,0 +1,24 @@ + 'array', + 'shipping_cost' => 'decimal:2' + ]; + + public function user() + { + return $this->belongsTo(User::class); + } + + public function barang() + { + return $this->belongsTo(Barang::class); + } + + public function transaksi() + { + return $this->hasOne(Transaksi::class, 'pesanan_id'); + } + + public function items() + { + return $this->hasMany(PesananItem::class); + } +} diff --git a/app/Models/PesananItem.php b/app/Models/PesananItem.php new file mode 100644 index 0000000..6aeca98 --- /dev/null +++ b/app/Models/PesananItem.php @@ -0,0 +1,27 @@ +belongsTo(Pesanan::class); + } + + public function barang() + { + return $this->belongsTo(Barang::class); + } +} \ No newline at end of file diff --git a/app/Models/Transaksi.php b/app/Models/Transaksi.php new file mode 100644 index 0000000..8fb2ca3 --- /dev/null +++ b/app/Models/Transaksi.php @@ -0,0 +1,50 @@ + 'datetime', + ]; + + public function user(): BelongsTo + { + return $this->belongsTo(User::class); + } + + public function pesanan(): BelongsTo + { + return $this->belongsTo(Pesanan::class); + } + + public static function generateKodeTransaksi(): string + { + $prefix = 'TRX'; + $date = now()->format('Ymd'); + $random = str_pad(mt_rand(1, 999), 3, '0', STR_PAD_LEFT); + return $prefix . $date . $random; + } +} diff --git a/app/Models/User.php b/app/Models/User.php new file mode 100644 index 0000000..2c3885a --- /dev/null +++ b/app/Models/User.php @@ -0,0 +1,45 @@ + 'datetime', + 'password' => 'hashed', + 'is_verified' => 'boolean', + ]; + + public function keranjang() + { + return $this->hasMany(Keranjang::class); + } + + public function transaksi() + { + return $this->hasMany(Transaksi::class); + } +} diff --git a/app/Providers/AppServiceProvider.php b/app/Providers/AppServiceProvider.php new file mode 100644 index 0000000..426d3a0 --- /dev/null +++ b/app/Providers/AppServiceProvider.php @@ -0,0 +1,23 @@ + PesananPolicy::class, + ]; + + public function boot() + { + $this->registerPolicies(); + } +} \ No newline at end of file diff --git a/app/Providers/BroadcastServiceProvider.php b/app/Providers/BroadcastServiceProvider.php new file mode 100644 index 0000000..0519ecb --- /dev/null +++ b/app/Providers/BroadcastServiceProvider.php @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/app/Providers/EventServiceProvider.php b/app/Providers/EventServiceProvider.php new file mode 100644 index 0000000..0519ecb --- /dev/null +++ b/app/Providers/EventServiceProvider.php @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/app/Providers/RouteServiceProvider.php b/app/Providers/RouteServiceProvider.php new file mode 100644 index 0000000..c6371c5 --- /dev/null +++ b/app/Providers/RouteServiceProvider.php @@ -0,0 +1,30 @@ +by($request->user()?->id ?: $request->ip()); + }); + + $this->routes(function () { + Route::middleware('api') + ->prefix('api') + ->group(base_path('routes/api.php')); + + Route::middleware('web') + ->group(base_path('routes/web.php')); + }); + } +} diff --git a/app/Services/MidtransService.php b/app/Services/MidtransService.php new file mode 100644 index 0000000..275bcac --- /dev/null +++ b/app/Services/MidtransService.php @@ -0,0 +1,106 @@ + Config::$serverKey, + 'is_production' => Config::$isProduction + ]); + } + + public function getSnapToken($params) + { + try { + Log::info('Getting Snap Token', ['params' => $params]); + + // Pastikan semua nilai numerik adalah integer + if (isset($params['transaction_details']['gross_amount'])) { + $params['transaction_details']['gross_amount'] = (int)$params['transaction_details']['gross_amount']; + } + + if (isset($params['item_details'])) { + foreach ($params['item_details'] as &$item) { + $item['price'] = (int)$item['price']; + $item['quantity'] = (int)$item['quantity']; + } + } + + // Tambahkan konfigurasi callback + $params['callbacks'] = [ + 'finish' => config('midtrans.finish_url'), + 'unfinish' => config('midtrans.unfinish_url'), + 'error' => config('midtrans.error_url') + ]; + + $snapToken = Snap::getSnapToken($params); + Log::info('Snap Token Generated', ['token' => $snapToken]); + + return $snapToken; + } catch (\Exception $e) { + Log::error('Midtrans Error: ' . $e->getMessage(), [ + 'params' => $params, + 'trace' => $e->getTraceAsString() + ]); + throw $e; + } + } + + public function handleCallback($payload) + { + try { + $transaksi = Transaksi::where('kode_transaksi', $payload->order_id)->first(); + + if (!$transaksi) { + throw new \Exception('Transaksi tidak ditemukan'); + } + + $transactionStatus = $payload->transaction_status; + $fraudStatus = $payload->fraud_status; + + if ($transactionStatus == 'capture') { + if ($fraudStatus == 'challenge') { + $transaksi->status = 'challenge'; + } else if ($fraudStatus == 'accept') { + $transaksi->status = 'success'; + $transaksi->pesanan->update(['status' => 'diproses']); + } + } else if ($transactionStatus == 'settlement') { + $transaksi->status = 'success'; + $transaksi->pesanan->update(['status' => 'diproses']); + } else if ($transactionStatus == 'cancel' || $transactionStatus == 'deny' || $transactionStatus == 'expire') { + $transaksi->status = 'failed'; + } else if ($transactionStatus == 'pending') { + $transaksi->status = 'pending'; + } + + $transaksi->midtrans_transaction_id = $payload->transaction_id; + $transaksi->midtrans_payment_type = $payload->payment_type; + $transaksi->midtrans_transaction_time = $payload->transaction_time; + $transaksi->midtrans_transaction_status = $payload->transaction_status; + $transaksi->midtrans_fraud_status = $payload->fraud_status; + $transaksi->save(); + + return $transaksi; + } catch (\Exception $e) { + Log::error('Error handling callback: ' . $e->getMessage(), [ + 'payload' => $payload, + 'trace' => $e->getTraceAsString() + ]); + throw $e; + } + } +} \ No newline at end of file diff --git a/app/Services/OngkirService.php b/app/Services/OngkirService.php new file mode 100644 index 0000000..9f4f51f --- /dev/null +++ b/app/Services/OngkirService.php @@ -0,0 +1,164 @@ +distinct() + ->orderBy('province_name') + ->get(); + } + + public function getCities($provinceId) + { + return Ongkir::where('province_id', $provinceId) + ->select('city_id', 'city_name') + ->orderBy('city_name') + ->get(); + } + + public function calculateCost($origin, $destination, $weight, $courier) + { + // Ambil data ongkir berdasarkan kota tujuan + $ongkir = Ongkir::where('city_id', $destination)->first(); + + if (!$ongkir) { + throw new \Exception('Data ongkir tidak ditemukan'); + } + + // Hitung ongkir berdasarkan kurir dan layanan + $costs = []; + + switch ($courier) { + case 'jne': + $costs = [ + [ + 'service' => 'REG', + 'description' => 'Layanan Reguler', + 'cost' => [ + [ + 'value' => $ongkir->jne_reg, + 'etd' => '2-3', + 'note' => 'Estimasi pengiriman 2-3 hari' + ] + ] + ], + [ + 'service' => 'OKE', + 'description' => 'Layanan Ekonomis', + 'cost' => [ + [ + 'value' => $ongkir->jne_oke, + 'etd' => '3-5', + 'note' => 'Estimasi pengiriman 3-5 hari' + ] + ] + ], + [ + 'service' => 'YES', + 'description' => 'Layanan Express', + 'cost' => [ + [ + 'value' => $ongkir->jne_yes, + 'etd' => '1-2', + 'note' => 'Estimasi pengiriman 1-2 hari' + ] + ] + ] + ]; + break; + + case 'pos': + $costs = [ + [ + 'service' => 'REG', + 'description' => 'Layanan Reguler', + 'cost' => [ + [ + 'value' => $ongkir->pos_reg, + 'etd' => '3-4', + 'note' => 'Estimasi pengiriman 3-4 hari' + ] + ] + ], + [ + 'service' => 'EXPRESS', + 'description' => 'Layanan Express', + 'cost' => [ + [ + 'value' => $ongkir->pos_express, + 'etd' => '1-2', + 'note' => 'Estimasi pengiriman 1-2 hari' + ] + ] + ] + ]; + break; + + case 'tiki': + $costs = [ + [ + 'service' => 'REG', + 'description' => 'Layanan Reguler', + 'cost' => [ + [ + 'value' => $ongkir->tiki_reg, + 'etd' => '2-3', + 'note' => 'Estimasi pengiriman 2-3 hari' + ] + ] + ], + [ + 'service' => 'ECO', + 'description' => 'Layanan Ekonomis', + 'cost' => [ + [ + 'value' => $ongkir->tiki_eco, + 'etd' => '3-5', + 'note' => 'Estimasi pengiriman 3-5 hari' + ] + ] + ], + [ + 'service' => 'EXPRESS', + 'description' => 'Layanan Express', + 'cost' => [ + [ + 'value' => $ongkir->tiki_express, + 'etd' => '1-2', + 'note' => 'Estimasi pengiriman 1-2 hari' + ] + ] + ] + ]; + break; + } + + return [ + 'rajaongkir' => [ + 'query' => [ + 'origin' => $origin, + 'destination' => $destination, + 'weight' => $weight, + 'courier' => $courier + ], + 'status' => [ + 'code' => 200, + 'description' => 'OK' + ], + 'results' => [ + [ + 'code' => $courier, + 'name' => strtoupper($courier), + 'costs' => $costs + ] + ] + ] + ]; + } +} \ No newline at end of file diff --git a/app/Services/RajaOngkirService.php b/app/Services/RajaOngkirService.php new file mode 100644 index 0000000..ad8f368 --- /dev/null +++ b/app/Services/RajaOngkirService.php @@ -0,0 +1,138 @@ +baseUrl = config('services.rajaongkir.base_url'); + $this->apiKey = config('services.rajaongkir.api_key'); + } + + public function getProvinces($id = null) + { + try { + $curl = curl_init(); + + $url = $this->baseUrl . "/province"; + if ($id) { + $url .= "?id=" . $id; + } + + curl_setopt_array($curl, array( + CURLOPT_URL => $url, + CURLOPT_RETURNTRANSFER => true, + CURLOPT_ENCODING => "", + CURLOPT_MAXREDIRS => 10, + CURLOPT_TIMEOUT => 30, + CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, + CURLOPT_CUSTOMREQUEST => "GET", + CURLOPT_HTTPHEADER => array( + "key: " . $this->apiKey + ), + )); + + $response = curl_exec($curl); + $err = curl_error($curl); + + curl_close($curl); + + if ($err) { + throw new \Exception("cURL Error #:" . $err); + } + + return json_decode($response, true); + } catch (\Exception $e) { + throw new \Exception('Gagal mengambil data provinsi: ' . $e->getMessage()); + } + } + + public function getCities($provinceId = null, $id = null) + { + try { + $curl = curl_init(); + + $url = $this->baseUrl . "/city"; + $params = []; + if ($provinceId) { + $params[] = "province=" . $provinceId; + } + if ($id) { + $params[] = "id=" . $id; + } + if (!empty($params)) { + $url .= "?" . implode("&", $params); + } + + curl_setopt_array($curl, array( + CURLOPT_URL => $url, + CURLOPT_RETURNTRANSFER => true, + CURLOPT_ENCODING => "", + CURLOPT_MAXREDIRS => 10, + CURLOPT_TIMEOUT => 30, + CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, + CURLOPT_CUSTOMREQUEST => "GET", + CURLOPT_HTTPHEADER => array( + "key: " . $this->apiKey + ), + )); + + $response = curl_exec($curl); + $err = curl_error($curl); + + curl_close($curl); + + if ($err) { + throw new \Exception("cURL Error #:" . $err); + } + + return json_decode($response, true); + } catch (\Exception $e) { + throw new \Exception('Gagal mengambil data kota: ' . $e->getMessage()); + } + } + + public function calculateCost($origin, $destination, $weight, $courier) + { + try { + $curl = curl_init(); + + curl_setopt_array($curl, array( + CURLOPT_URL => $this->baseUrl . "/cost", + CURLOPT_RETURNTRANSFER => true, + CURLOPT_ENCODING => "", + CURLOPT_MAXREDIRS => 10, + CURLOPT_TIMEOUT => 30, + CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, + CURLOPT_CUSTOMREQUEST => "POST", + CURLOPT_POSTFIELDS => http_build_query([ + 'origin' => $origin, + 'destination' => $destination, + 'weight' => $weight, + 'courier' => $courier + ]), + CURLOPT_HTTPHEADER => array( + "content-type: application/x-www-form-urlencoded", + "key: " . $this->apiKey + ), + )); + + $response = curl_exec($curl); + $err = curl_error($curl); + + curl_close($curl); + + if ($err) { + throw new \Exception("cURL Error #:" . $err); + } + + return json_decode($response, true); + } catch (\Exception $e) { + throw new \Exception('Gagal menghitung ongkos kirim: ' . $e->getMessage()); + } + } +} \ No newline at end of file diff --git a/artisan b/artisan new file mode 100644 index 0000000..8e04b42 --- /dev/null +++ b/artisan @@ -0,0 +1,15 @@ +#!/usr/bin/env php +handleCommand(new ArgvInput); + +exit($status); diff --git a/bootstrap/app.php b/bootstrap/app.php new file mode 100644 index 0000000..7b162da --- /dev/null +++ b/bootstrap/app.php @@ -0,0 +1,18 @@ +withRouting( + web: __DIR__.'/../routes/web.php', + commands: __DIR__.'/../routes/console.php', + health: '/up', + ) + ->withMiddleware(function (Middleware $middleware) { + // + }) + ->withExceptions(function (Exceptions $exceptions) { + // + })->create(); diff --git a/bootstrap/cache/.gitignore b/bootstrap/cache/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/bootstrap/cache/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/bootstrap/providers.php b/bootstrap/providers.php new file mode 100644 index 0000000..38b258d --- /dev/null +++ b/bootstrap/providers.php @@ -0,0 +1,5 @@ +=5.0.0" + }, + "require-dev": { + "doctrine/dbal": "^4.0.0", + "nesbot/carbon": "^2.71.0 || ^3.0.0", + "phpunit/phpunit": "^10.3" + }, + "type": "library", + "autoload": { + "psr-4": { + "Carbon\\Doctrine\\": "src/Carbon/Doctrine/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "KyleKatarn", + "email": "kylekatarnls@gmail.com" + } + ], + "description": "Types to use Carbon in Doctrine", + "keywords": [ + "carbon", + "date", + "datetime", + "doctrine", + "time" + ], + "support": { + "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues", + "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0" + }, + "funding": [ + { + "url": "https://github.com/kylekatarnls", + "type": "github" + }, + { + "url": "https://opencollective.com/Carbon", + "type": "open_collective" + }, + { + "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon", + "type": "tidelift" + } + ], + "time": "2024-02-09T16:56:22+00:00" + }, + { + "name": "dflydev/dot-access-data", + "version": "v3.0.3", + "source": { + "type": "git", + "url": "https://github.com/dflydev/dflydev-dot-access-data.git", + "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f", + "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^0.12.42", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3", + "scrutinizer/ocular": "1.6.0", + "squizlabs/php_codesniffer": "^3.5", + "vimeo/psalm": "^4.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Dflydev\\DotAccessData\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Dragonfly Development Inc.", + "email": "info@dflydev.com", + "homepage": "http://dflydev.com" + }, + { + "name": "Beau Simensen", + "email": "beau@dflydev.com", + "homepage": "http://beausimensen.com" + }, + { + "name": "Carlos Frutos", + "email": "carlos@kiwing.it", + "homepage": "https://github.com/cfrutos" + }, + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com" + } + ], + "description": "Given a deep data structure, access data by dot notation.", + "homepage": "https://github.com/dflydev/dflydev-dot-access-data", + "keywords": [ + "access", + "data", + "dot", + "notation" + ], + "support": { + "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues", + "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3" + }, + "time": "2024-07-08T12:26:09+00:00" + }, + { + "name": "doctrine/inflector", + "version": "2.0.10", + "source": { + "type": "git", + "url": "https://github.com/doctrine/inflector.git", + "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc", + "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^11.0", + "phpstan/phpstan": "^1.8", + "phpstan/phpstan-phpunit": "^1.1", + "phpstan/phpstan-strict-rules": "^1.3", + "phpunit/phpunit": "^8.5 || ^9.5", + "vimeo/psalm": "^4.25 || ^5.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Inflector\\": "lib/Doctrine/Inflector" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.", + "homepage": "https://www.doctrine-project.org/projects/inflector.html", + "keywords": [ + "inflection", + "inflector", + "lowercase", + "manipulation", + "php", + "plural", + "singular", + "strings", + "uppercase", + "words" + ], + "support": { + "issues": "https://github.com/doctrine/inflector/issues", + "source": "https://github.com/doctrine/inflector/tree/2.0.10" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector", + "type": "tidelift" + } + ], + "time": "2024-02-18T20:23:39+00:00" + }, + { + "name": "doctrine/lexer", + "version": "3.0.1", + "source": { + "type": "git", + "url": "https://github.com/doctrine/lexer.git", + "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd", + "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "require-dev": { + "doctrine/coding-standard": "^12", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^10.5", + "psalm/plugin-phpunit": "^0.18.3", + "vimeo/psalm": "^5.21" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Common\\Lexer\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.", + "homepage": "https://www.doctrine-project.org/projects/lexer.html", + "keywords": [ + "annotations", + "docblock", + "lexer", + "parser", + "php" + ], + "support": { + "issues": "https://github.com/doctrine/lexer/issues", + "source": "https://github.com/doctrine/lexer/tree/3.0.1" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer", + "type": "tidelift" + } + ], + "time": "2024-02-05T11:56:58+00:00" + }, + { + "name": "dompdf/dompdf", + "version": "v2.0.8", + "source": { + "type": "git", + "url": "https://github.com/dompdf/dompdf.git", + "reference": "c20247574601700e1f7c8dab39310fca1964dc52" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dompdf/dompdf/zipball/c20247574601700e1f7c8dab39310fca1964dc52", + "reference": "c20247574601700e1f7c8dab39310fca1964dc52", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-mbstring": "*", + "masterminds/html5": "^2.0", + "phenx/php-font-lib": ">=0.5.4 <1.0.0", + "phenx/php-svg-lib": ">=0.5.2 <1.0.0", + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "ext-json": "*", + "ext-zip": "*", + "mockery/mockery": "^1.3", + "phpunit/phpunit": "^7.5 || ^8 || ^9", + "squizlabs/php_codesniffer": "^3.5" + }, + "suggest": { + "ext-gd": "Needed to process images", + "ext-gmagick": "Improves image processing performance", + "ext-imagick": "Improves image processing performance", + "ext-zlib": "Needed for pdf stream compression" + }, + "type": "library", + "autoload": { + "psr-4": { + "Dompdf\\": "src/" + }, + "classmap": [ + "lib/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "LGPL-2.1" + ], + "authors": [ + { + "name": "The Dompdf Community", + "homepage": "https://github.com/dompdf/dompdf/blob/master/AUTHORS.md" + } + ], + "description": "DOMPDF is a CSS 2.1 compliant HTML to PDF converter", + "homepage": "https://github.com/dompdf/dompdf", + "support": { + "issues": "https://github.com/dompdf/dompdf/issues", + "source": "https://github.com/dompdf/dompdf/tree/v2.0.8" + }, + "time": "2024-04-29T13:06:17+00:00" + }, + { + "name": "dragonmantank/cron-expression", + "version": "v3.4.0", + "source": { + "type": "git", + "url": "https://github.com/dragonmantank/cron-expression.git", + "reference": "8c784d071debd117328803d86b2097615b457500" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500", + "reference": "8c784d071debd117328803d86b2097615b457500", + "shasum": "" + }, + "require": { + "php": "^7.2|^8.0", + "webmozart/assert": "^1.0" + }, + "replace": { + "mtdowling/cron-expression": "^1.0" + }, + "require-dev": { + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "^1.0", + "phpunit/phpunit": "^7.0|^8.0|^9.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Cron\\": "src/Cron/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Chris Tankersley", + "email": "chris@ctankersley.com", + "homepage": "https://github.com/dragonmantank" + } + ], + "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due", + "keywords": [ + "cron", + "schedule" + ], + "support": { + "issues": "https://github.com/dragonmantank/cron-expression/issues", + "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0" + }, + "funding": [ + { + "url": "https://github.com/dragonmantank", + "type": "github" + } + ], + "time": "2024-10-09T13:47:03+00:00" + }, + { + "name": "egulias/email-validator", + "version": "4.0.4", + "source": { + "type": "git", + "url": "https://github.com/egulias/EmailValidator.git", + "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa", + "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa", + "shasum": "" + }, + "require": { + "doctrine/lexer": "^2.0 || ^3.0", + "php": ">=8.1", + "symfony/polyfill-intl-idn": "^1.26" + }, + "require-dev": { + "phpunit/phpunit": "^10.2", + "vimeo/psalm": "^5.12" + }, + "suggest": { + "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Egulias\\EmailValidator\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Eduardo Gulias Davis" + } + ], + "description": "A library for validating emails against several RFCs", + "homepage": "https://github.com/egulias/EmailValidator", + "keywords": [ + "email", + "emailvalidation", + "emailvalidator", + "validation", + "validator" + ], + "support": { + "issues": "https://github.com/egulias/EmailValidator/issues", + "source": "https://github.com/egulias/EmailValidator/tree/4.0.4" + }, + "funding": [ + { + "url": "https://github.com/egulias", + "type": "github" + } + ], + "time": "2025-03-06T22:45:56+00:00" + }, + { + "name": "fruitcake/php-cors", + "version": "v1.3.0", + "source": { + "type": "git", + "url": "https://github.com/fruitcake/php-cors.git", + "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b", + "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b", + "shasum": "" + }, + "require": { + "php": "^7.4|^8.0", + "symfony/http-foundation": "^4.4|^5.4|^6|^7" + }, + "require-dev": { + "phpstan/phpstan": "^1.4", + "phpunit/phpunit": "^9", + "squizlabs/php_codesniffer": "^3.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.2-dev" + } + }, + "autoload": { + "psr-4": { + "Fruitcake\\Cors\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fruitcake", + "homepage": "https://fruitcake.nl" + }, + { + "name": "Barryvdh", + "email": "barryvdh@gmail.com" + } + ], + "description": "Cross-origin resource sharing library for the Symfony HttpFoundation", + "homepage": "https://github.com/fruitcake/php-cors", + "keywords": [ + "cors", + "laravel", + "symfony" + ], + "support": { + "issues": "https://github.com/fruitcake/php-cors/issues", + "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0" + }, + "funding": [ + { + "url": "https://fruitcake.nl", + "type": "custom" + }, + { + "url": "https://github.com/barryvdh", + "type": "github" + } + ], + "time": "2023-10-12T05:21:21+00:00" + }, + { + "name": "graham-campbell/result-type", + "version": "v1.1.3", + "source": { + "type": "git", + "url": "https://github.com/GrahamCampbell/Result-Type.git", + "reference": "3ba905c11371512af9d9bdd27d99b782216b6945" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945", + "reference": "3ba905c11371512af9d9bdd27d99b782216b6945", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0", + "phpoption/phpoption": "^1.9.3" + }, + "require-dev": { + "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28" + }, + "type": "library", + "autoload": { + "psr-4": { + "GrahamCampbell\\ResultType\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + } + ], + "description": "An Implementation Of The Result Type", + "keywords": [ + "Graham Campbell", + "GrahamCampbell", + "Result Type", + "Result-Type", + "result" + ], + "support": { + "issues": "https://github.com/GrahamCampbell/Result-Type/issues", + "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type", + "type": "tidelift" + } + ], + "time": "2024-07-20T21:45:45+00:00" + }, + { + "name": "guzzlehttp/guzzle", + "version": "7.9.3", + "source": { + "type": "git", + "url": "https://github.com/guzzle/guzzle.git", + "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7b2f29fe81dc4da0ca0ea7d42107a0845946ea77", + "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77", + "shasum": "" + }, + "require": { + "ext-json": "*", + "guzzlehttp/promises": "^1.5.3 || ^2.0.3", + "guzzlehttp/psr7": "^2.7.0", + "php": "^7.2.5 || ^8.0", + "psr/http-client": "^1.0", + "symfony/deprecation-contracts": "^2.2 || ^3.0" + }, + "provide": { + "psr/http-client-implementation": "1.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "ext-curl": "*", + "guzzle/client-integration-tests": "3.0.2", + "php-http/message-factory": "^1.1", + "phpunit/phpunit": "^8.5.39 || ^9.6.20", + "psr/log": "^1.1 || ^2.0 || ^3.0" + }, + "suggest": { + "ext-curl": "Required for CURL handler support", + "ext-intl": "Required for Internationalized Domain Name (IDN) support", + "psr/log": "Required for using the Log middleware" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, + "autoload": { + "files": [ + "src/functions_include.php" + ], + "psr-4": { + "GuzzleHttp\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "Jeremy Lindblom", + "email": "jeremeamia@gmail.com", + "homepage": "https://github.com/jeremeamia" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://github.com/sagikazarmark" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" + } + ], + "description": "Guzzle is a PHP HTTP client library", + "keywords": [ + "client", + "curl", + "framework", + "http", + "http client", + "psr-18", + "psr-7", + "rest", + "web service" + ], + "support": { + "issues": "https://github.com/guzzle/guzzle/issues", + "source": "https://github.com/guzzle/guzzle/tree/7.9.3" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle", + "type": "tidelift" + } + ], + "time": "2025-03-27T13:37:11+00:00" + }, + { + "name": "guzzlehttp/promises", + "version": "2.2.0", + "source": { + "type": "git", + "url": "https://github.com/guzzle/promises.git", + "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/promises/zipball/7c69f28996b0a6920945dd20b3857e499d9ca96c", + "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.39 || ^9.6.20" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\Promise\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" + } + ], + "description": "Guzzle promises library", + "keywords": [ + "promise" + ], + "support": { + "issues": "https://github.com/guzzle/promises/issues", + "source": "https://github.com/guzzle/promises/tree/2.2.0" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises", + "type": "tidelift" + } + ], + "time": "2025-03-27T13:27:01+00:00" + }, + { + "name": "guzzlehttp/psr7", + "version": "2.7.1", + "source": { + "type": "git", + "url": "https://github.com/guzzle/psr7.git", + "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/c2270caaabe631b3b44c85f99e5a04bbb8060d16", + "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0", + "psr/http-factory": "^1.0", + "psr/http-message": "^1.1 || ^2.0", + "ralouphie/getallheaders": "^3.0" + }, + "provide": { + "psr/http-factory-implementation": "1.0", + "psr/http-message-implementation": "1.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "http-interop/http-factory-tests": "0.9.0", + "phpunit/phpunit": "^8.5.39 || ^9.6.20" + }, + "suggest": { + "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\Psr7\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://github.com/sagikazarmark" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://sagikazarmark.hu" + } + ], + "description": "PSR-7 message implementation that also provides common utility methods", + "keywords": [ + "http", + "message", + "psr-7", + "request", + "response", + "stream", + "uri", + "url" + ], + "support": { + "issues": "https://github.com/guzzle/psr7/issues", + "source": "https://github.com/guzzle/psr7/tree/2.7.1" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7", + "type": "tidelift" + } + ], + "time": "2025-03-27T12:30:47+00:00" + }, + { + "name": "guzzlehttp/uri-template", + "version": "v1.0.4", + "source": { + "type": "git", + "url": "https://github.com/guzzle/uri-template.git", + "reference": "30e286560c137526eccd4ce21b2de477ab0676d2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/uri-template/zipball/30e286560c137526eccd4ce21b2de477ab0676d2", + "reference": "30e286560c137526eccd4ce21b2de477ab0676d2", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0", + "symfony/polyfill-php80": "^1.24" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.36 || ^9.6.15", + "uri-template/tests": "1.0.0" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + } + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\UriTemplate\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + } + ], + "description": "A polyfill class for uri_template of PHP", + "keywords": [ + "guzzlehttp", + "uri-template" + ], + "support": { + "issues": "https://github.com/guzzle/uri-template/issues", + "source": "https://github.com/guzzle/uri-template/tree/v1.0.4" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template", + "type": "tidelift" + } + ], + "time": "2025-02-03T10:55:03+00:00" + }, + { + "name": "laravel/framework", + "version": "v11.45.0", + "source": { + "type": "git", + "url": "https://github.com/laravel/framework.git", + "reference": "d0730deb427632004d24801be7ca1ed2c10fbc4e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/framework/zipball/d0730deb427632004d24801be7ca1ed2c10fbc4e", + "reference": "d0730deb427632004d24801be7ca1ed2c10fbc4e", + "shasum": "" + }, + "require": { + "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12", + "composer-runtime-api": "^2.2", + "doctrine/inflector": "^2.0.5", + "dragonmantank/cron-expression": "^3.4", + "egulias/email-validator": "^3.2.1|^4.0", + "ext-ctype": "*", + "ext-filter": "*", + "ext-hash": "*", + "ext-mbstring": "*", + "ext-openssl": "*", + "ext-session": "*", + "ext-tokenizer": "*", + "fruitcake/php-cors": "^1.3", + "guzzlehttp/guzzle": "^7.8.2", + "guzzlehttp/uri-template": "^1.0", + "laravel/prompts": "^0.1.18|^0.2.0|^0.3.0", + "laravel/serializable-closure": "^1.3|^2.0", + "league/commonmark": "^2.7", + "league/flysystem": "^3.25.1", + "league/flysystem-local": "^3.25.1", + "league/uri": "^7.5.1", + "monolog/monolog": "^3.0", + "nesbot/carbon": "^2.72.6|^3.8.4", + "nunomaduro/termwind": "^2.0", + "php": "^8.2", + "psr/container": "^1.1.1|^2.0.1", + "psr/log": "^1.0|^2.0|^3.0", + "psr/simple-cache": "^1.0|^2.0|^3.0", + "ramsey/uuid": "^4.7", + "symfony/console": "^7.0.3", + "symfony/error-handler": "^7.0.3", + "symfony/finder": "^7.0.3", + "symfony/http-foundation": "^7.2.0", + "symfony/http-kernel": "^7.0.3", + "symfony/mailer": "^7.0.3", + "symfony/mime": "^7.0.3", + "symfony/polyfill-php83": "^1.31", + "symfony/process": "^7.0.3", + "symfony/routing": "^7.0.3", + "symfony/uid": "^7.0.3", + "symfony/var-dumper": "^7.0.3", + "tijsverkoyen/css-to-inline-styles": "^2.2.5", + "vlucas/phpdotenv": "^5.6.1", + "voku/portable-ascii": "^2.0.2" + }, + "conflict": { + "tightenco/collect": "<5.5.33" + }, + "provide": { + "psr/container-implementation": "1.1|2.0", + "psr/log-implementation": "1.0|2.0|3.0", + "psr/simple-cache-implementation": "1.0|2.0|3.0" + }, + "replace": { + "illuminate/auth": "self.version", + "illuminate/broadcasting": "self.version", + "illuminate/bus": "self.version", + "illuminate/cache": "self.version", + "illuminate/collections": "self.version", + "illuminate/concurrency": "self.version", + "illuminate/conditionable": "self.version", + "illuminate/config": "self.version", + "illuminate/console": "self.version", + "illuminate/container": "self.version", + "illuminate/contracts": "self.version", + "illuminate/cookie": "self.version", + "illuminate/database": "self.version", + "illuminate/encryption": "self.version", + "illuminate/events": "self.version", + "illuminate/filesystem": "self.version", + "illuminate/hashing": "self.version", + "illuminate/http": "self.version", + "illuminate/log": "self.version", + "illuminate/macroable": "self.version", + "illuminate/mail": "self.version", + "illuminate/notifications": "self.version", + "illuminate/pagination": "self.version", + "illuminate/pipeline": "self.version", + "illuminate/process": "self.version", + "illuminate/queue": "self.version", + "illuminate/redis": "self.version", + "illuminate/routing": "self.version", + "illuminate/session": "self.version", + "illuminate/support": "self.version", + "illuminate/testing": "self.version", + "illuminate/translation": "self.version", + "illuminate/validation": "self.version", + "illuminate/view": "self.version", + "spatie/once": "*" + }, + "require-dev": { + "ably/ably-php": "^1.0", + "aws/aws-sdk-php": "^3.322.9", + "ext-gmp": "*", + "fakerphp/faker": "^1.24", + "guzzlehttp/promises": "^2.0.3", + "guzzlehttp/psr7": "^2.4", + "laravel/pint": "^1.18", + "league/flysystem-aws-s3-v3": "^3.25.1", + "league/flysystem-ftp": "^3.25.1", + "league/flysystem-path-prefixing": "^3.25.1", + "league/flysystem-read-only": "^3.25.1", + "league/flysystem-sftp-v3": "^3.25.1", + "mockery/mockery": "^1.6.10", + "orchestra/testbench-core": "^9.13.2", + "pda/pheanstalk": "^5.0.6", + "php-http/discovery": "^1.15", + "phpstan/phpstan": "^2.0", + "phpunit/phpunit": "^10.5.35|^11.3.6|^12.0.1", + "predis/predis": "^2.3", + "resend/resend-php": "^0.10.0", + "symfony/cache": "^7.0.3", + "symfony/http-client": "^7.0.3", + "symfony/psr-http-message-bridge": "^7.0.3", + "symfony/translation": "^7.0.3" + }, + "suggest": { + "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).", + "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.322.9).", + "brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).", + "ext-apcu": "Required to use the APC cache driver.", + "ext-fileinfo": "Required to use the Filesystem class.", + "ext-ftp": "Required to use the Flysystem FTP driver.", + "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().", + "ext-memcached": "Required to use the memcache cache driver.", + "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.", + "ext-pdo": "Required to use all database features.", + "ext-posix": "Required to use all features of the queue worker.", + "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).", + "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).", + "filp/whoops": "Required for friendly error pages in development (^2.14.3).", + "laravel/tinker": "Required to use the tinker console command (^2.0).", + "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.25.1).", + "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.25.1).", + "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.25.1).", + "league/flysystem-read-only": "Required to use read-only disks (^3.25.1)", + "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.25.1).", + "mockery/mockery": "Required to use mocking (^1.6).", + "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).", + "php-http/discovery": "Required to use PSR-7 bridging features (^1.15).", + "phpunit/phpunit": "Required to use assertions and run tests (^10.5.35|^11.3.6|^12.0.1).", + "predis/predis": "Required to use the predis connector (^2.3).", + "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).", + "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).", + "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0).", + "symfony/cache": "Required to PSR-6 cache bridge (^7.0).", + "symfony/filesystem": "Required to enable support for relative symbolic links (^7.0).", + "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.0).", + "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.0).", + "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.0).", + "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.0)." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "11.x-dev" + } + }, + "autoload": { + "files": [ + "src/Illuminate/Collections/functions.php", + "src/Illuminate/Collections/helpers.php", + "src/Illuminate/Events/functions.php", + "src/Illuminate/Filesystem/functions.php", + "src/Illuminate/Foundation/helpers.php", + "src/Illuminate/Log/functions.php", + "src/Illuminate/Support/functions.php", + "src/Illuminate/Support/helpers.php" + ], + "psr-4": { + "Illuminate\\": "src/Illuminate/", + "Illuminate\\Support\\": [ + "src/Illuminate/Macroable/", + "src/Illuminate/Collections/", + "src/Illuminate/Conditionable/" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Laravel Framework.", + "homepage": "https://laravel.com", + "keywords": [ + "framework", + "laravel" + ], + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, + "time": "2025-05-20T15:15:58+00:00" + }, + { + "name": "laravel/prompts", + "version": "v0.3.5", + "source": { + "type": "git", + "url": "https://github.com/laravel/prompts.git", + "reference": "57b8f7efe40333cdb925700891c7d7465325d3b1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/prompts/zipball/57b8f7efe40333cdb925700891c7d7465325d3b1", + "reference": "57b8f7efe40333cdb925700891c7d7465325d3b1", + "shasum": "" + }, + "require": { + "composer-runtime-api": "^2.2", + "ext-mbstring": "*", + "php": "^8.1", + "symfony/console": "^6.2|^7.0" + }, + "conflict": { + "illuminate/console": ">=10.17.0 <10.25.0", + "laravel/framework": ">=10.17.0 <10.25.0" + }, + "require-dev": { + "illuminate/collections": "^10.0|^11.0|^12.0", + "mockery/mockery": "^1.5", + "pestphp/pest": "^2.3|^3.4", + "phpstan/phpstan": "^1.11", + "phpstan/phpstan-mockery": "^1.1" + }, + "suggest": { + "ext-pcntl": "Required for the spinner to be animated." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "0.3.x-dev" + } + }, + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Laravel\\Prompts\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Add beautiful and user-friendly forms to your command-line applications.", + "support": { + "issues": "https://github.com/laravel/prompts/issues", + "source": "https://github.com/laravel/prompts/tree/v0.3.5" + }, + "time": "2025-02-11T13:34:40+00:00" + }, + { + "name": "laravel/sanctum", + "version": "v4.1.1", + "source": { + "type": "git", + "url": "https://github.com/laravel/sanctum.git", + "reference": "a360a6a1fd2400ead4eb9b6a9c1bb272939194f5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/sanctum/zipball/a360a6a1fd2400ead4eb9b6a9c1bb272939194f5", + "reference": "a360a6a1fd2400ead4eb9b6a9c1bb272939194f5", + "shasum": "" + }, + "require": { + "ext-json": "*", + "illuminate/console": "^11.0|^12.0", + "illuminate/contracts": "^11.0|^12.0", + "illuminate/database": "^11.0|^12.0", + "illuminate/support": "^11.0|^12.0", + "php": "^8.2", + "symfony/console": "^7.0" + }, + "require-dev": { + "mockery/mockery": "^1.6", + "orchestra/testbench": "^9.0|^10.0", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^11.3" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Laravel\\Sanctum\\SanctumServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Laravel\\Sanctum\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.", + "keywords": [ + "auth", + "laravel", + "sanctum" + ], + "support": { + "issues": "https://github.com/laravel/sanctum/issues", + "source": "https://github.com/laravel/sanctum" + }, + "time": "2025-04-23T13:03:38+00:00" + }, + { + "name": "laravel/serializable-closure", + "version": "v2.0.4", + "source": { + "type": "git", + "url": "https://github.com/laravel/serializable-closure.git", + "reference": "b352cf0534aa1ae6b4d825d1e762e35d43f8a841" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/b352cf0534aa1ae6b4d825d1e762e35d43f8a841", + "reference": "b352cf0534aa1ae6b4d825d1e762e35d43f8a841", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "require-dev": { + "illuminate/support": "^10.0|^11.0|^12.0", + "nesbot/carbon": "^2.67|^3.0", + "pestphp/pest": "^2.36|^3.0", + "phpstan/phpstan": "^2.0", + "symfony/var-dumper": "^6.2.0|^7.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.x-dev" + } + }, + "autoload": { + "psr-4": { + "Laravel\\SerializableClosure\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + }, + { + "name": "Nuno Maduro", + "email": "nuno@laravel.com" + } + ], + "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.", + "keywords": [ + "closure", + "laravel", + "serializable" + ], + "support": { + "issues": "https://github.com/laravel/serializable-closure/issues", + "source": "https://github.com/laravel/serializable-closure" + }, + "time": "2025-03-19T13:51:03+00:00" + }, + { + "name": "laravel/tinker", + "version": "v2.10.1", + "source": { + "type": "git", + "url": "https://github.com/laravel/tinker.git", + "reference": "22177cc71807d38f2810c6204d8f7183d88a57d3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/tinker/zipball/22177cc71807d38f2810c6204d8f7183d88a57d3", + "reference": "22177cc71807d38f2810c6204d8f7183d88a57d3", + "shasum": "" + }, + "require": { + "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0", + "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0", + "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0", + "php": "^7.2.5|^8.0", + "psy/psysh": "^0.11.1|^0.12.0", + "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0" + }, + "require-dev": { + "mockery/mockery": "~1.3.3|^1.4.2", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^8.5.8|^9.3.3|^10.0" + }, + "suggest": { + "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0)." + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Laravel\\Tinker\\TinkerServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Laravel\\Tinker\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Powerful REPL for the Laravel framework.", + "keywords": [ + "REPL", + "Tinker", + "laravel", + "psysh" + ], + "support": { + "issues": "https://github.com/laravel/tinker/issues", + "source": "https://github.com/laravel/tinker/tree/v2.10.1" + }, + "time": "2025-01-27T14:24:01+00:00" + }, + { + "name": "laravel/ui", + "version": "v4.6.1", + "source": { + "type": "git", + "url": "https://github.com/laravel/ui.git", + "reference": "7d6ffa38d79f19c9b3e70a751a9af845e8f41d88" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/ui/zipball/7d6ffa38d79f19c9b3e70a751a9af845e8f41d88", + "reference": "7d6ffa38d79f19c9b3e70a751a9af845e8f41d88", + "shasum": "" + }, + "require": { + "illuminate/console": "^9.21|^10.0|^11.0|^12.0", + "illuminate/filesystem": "^9.21|^10.0|^11.0|^12.0", + "illuminate/support": "^9.21|^10.0|^11.0|^12.0", + "illuminate/validation": "^9.21|^10.0|^11.0|^12.0", + "php": "^8.0", + "symfony/console": "^6.0|^7.0" + }, + "require-dev": { + "orchestra/testbench": "^7.35|^8.15|^9.0|^10.0", + "phpunit/phpunit": "^9.3|^10.4|^11.5" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Laravel\\Ui\\UiServiceProvider" + ] + }, + "branch-alias": { + "dev-master": "4.x-dev" + } + }, + "autoload": { + "psr-4": { + "Laravel\\Ui\\": "src/", + "Illuminate\\Foundation\\Auth\\": "auth-backend/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Laravel UI utilities and presets.", + "keywords": [ + "laravel", + "ui" + ], + "support": { + "source": "https://github.com/laravel/ui/tree/v4.6.1" + }, + "time": "2025-01-28T15:15:29+00:00" + }, + { + "name": "league/commonmark", + "version": "2.7.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/commonmark.git", + "reference": "6fbb36d44824ed4091adbcf4c7d4a3923cdb3405" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/6fbb36d44824ed4091adbcf4c7d4a3923cdb3405", + "reference": "6fbb36d44824ed4091adbcf4c7d4a3923cdb3405", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "league/config": "^1.1.1", + "php": "^7.4 || ^8.0", + "psr/event-dispatcher": "^1.0", + "symfony/deprecation-contracts": "^2.1 || ^3.0", + "symfony/polyfill-php80": "^1.16" + }, + "require-dev": { + "cebe/markdown": "^1.0", + "commonmark/cmark": "0.31.1", + "commonmark/commonmark.js": "0.31.1", + "composer/package-versions-deprecated": "^1.8", + "embed/embed": "^4.4", + "erusev/parsedown": "^1.0", + "ext-json": "*", + "github/gfm": "0.29.0", + "michelf/php-markdown": "^1.4 || ^2.0", + "nyholm/psr7": "^1.5", + "phpstan/phpstan": "^1.8.2", + "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0", + "scrutinizer/ocular": "^1.8.1", + "symfony/finder": "^5.3 | ^6.0 | ^7.0", + "symfony/process": "^5.4 | ^6.0 | ^7.0", + "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0", + "unleashedtech/php-coding-standard": "^3.1.1", + "vimeo/psalm": "^4.24.0 || ^5.0.0" + }, + "suggest": { + "symfony/yaml": "v2.3+ required if using the Front Matter extension" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.8-dev" + } + }, + "autoload": { + "psr-4": { + "League\\CommonMark\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com", + "role": "Lead Developer" + } + ], + "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)", + "homepage": "https://commonmark.thephpleague.com", + "keywords": [ + "commonmark", + "flavored", + "gfm", + "github", + "github-flavored", + "markdown", + "md", + "parser" + ], + "support": { + "docs": "https://commonmark.thephpleague.com/", + "forum": "https://github.com/thephpleague/commonmark/discussions", + "issues": "https://github.com/thephpleague/commonmark/issues", + "rss": "https://github.com/thephpleague/commonmark/releases.atom", + "source": "https://github.com/thephpleague/commonmark" + }, + "funding": [ + { + "url": "https://www.colinodell.com/sponsor", + "type": "custom" + }, + { + "url": "https://www.paypal.me/colinpodell/10.00", + "type": "custom" + }, + { + "url": "https://github.com/colinodell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/league/commonmark", + "type": "tidelift" + } + ], + "time": "2025-05-05T12:20:28+00:00" + }, + { + "name": "league/config", + "version": "v1.2.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/config.git", + "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3", + "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3", + "shasum": "" + }, + "require": { + "dflydev/dot-access-data": "^3.0.1", + "nette/schema": "^1.2", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^1.8.2", + "phpunit/phpunit": "^9.5.5", + "scrutinizer/ocular": "^1.8.1", + "unleashedtech/php-coding-standard": "^3.1", + "vimeo/psalm": "^4.7.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.2-dev" + } + }, + "autoload": { + "psr-4": { + "League\\Config\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com", + "role": "Lead Developer" + } + ], + "description": "Define configuration arrays with strict schemas and access values with dot notation", + "homepage": "https://config.thephpleague.com", + "keywords": [ + "array", + "config", + "configuration", + "dot", + "dot-access", + "nested", + "schema" + ], + "support": { + "docs": "https://config.thephpleague.com/", + "issues": "https://github.com/thephpleague/config/issues", + "rss": "https://github.com/thephpleague/config/releases.atom", + "source": "https://github.com/thephpleague/config" + }, + "funding": [ + { + "url": "https://www.colinodell.com/sponsor", + "type": "custom" + }, + { + "url": "https://www.paypal.me/colinpodell/10.00", + "type": "custom" + }, + { + "url": "https://github.com/colinodell", + "type": "github" + } + ], + "time": "2022-12-11T20:36:23+00:00" + }, + { + "name": "league/flysystem", + "version": "3.29.1", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/flysystem.git", + "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/edc1bb7c86fab0776c3287dbd19b5fa278347319", + "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319", + "shasum": "" + }, + "require": { + "league/flysystem-local": "^3.0.0", + "league/mime-type-detection": "^1.0.0", + "php": "^8.0.2" + }, + "conflict": { + "async-aws/core": "<1.19.0", + "async-aws/s3": "<1.14.0", + "aws/aws-sdk-php": "3.209.31 || 3.210.0", + "guzzlehttp/guzzle": "<7.0", + "guzzlehttp/ringphp": "<1.1.1", + "phpseclib/phpseclib": "3.0.15", + "symfony/http-client": "<5.2" + }, + "require-dev": { + "async-aws/s3": "^1.5 || ^2.0", + "async-aws/simple-s3": "^1.1 || ^2.0", + "aws/aws-sdk-php": "^3.295.10", + "composer/semver": "^3.0", + "ext-fileinfo": "*", + "ext-ftp": "*", + "ext-mongodb": "^1.3", + "ext-zip": "*", + "friendsofphp/php-cs-fixer": "^3.5", + "google/cloud-storage": "^1.23", + "guzzlehttp/psr7": "^2.6", + "microsoft/azure-storage-blob": "^1.1", + "mongodb/mongodb": "^1.2", + "phpseclib/phpseclib": "^3.0.36", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^9.5.11|^10.0", + "sabre/dav": "^4.6.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\Flysystem\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "File storage abstraction for PHP", + "keywords": [ + "WebDAV", + "aws", + "cloud", + "file", + "files", + "filesystem", + "filesystems", + "ftp", + "s3", + "sftp", + "storage" + ], + "support": { + "issues": "https://github.com/thephpleague/flysystem/issues", + "source": "https://github.com/thephpleague/flysystem/tree/3.29.1" + }, + "time": "2024-10-08T08:58:34+00:00" + }, + { + "name": "league/flysystem-local", + "version": "3.29.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/flysystem-local.git", + "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/e0e8d52ce4b2ed154148453d321e97c8e931bd27", + "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", + "league/flysystem": "^3.0.0", + "league/mime-type-detection": "^1.0.0", + "php": "^8.0.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\Flysystem\\Local\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "Local filesystem adapter for Flysystem.", + "keywords": [ + "Flysystem", + "file", + "files", + "filesystem", + "local" + ], + "support": { + "source": "https://github.com/thephpleague/flysystem-local/tree/3.29.0" + }, + "time": "2024-08-09T21:24:39+00:00" + }, + { + "name": "league/mime-type-detection", + "version": "1.16.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/mime-type-detection.git", + "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9", + "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.2", + "phpstan/phpstan": "^0.12.68", + "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\MimeTypeDetection\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "Mime-type detection for Flysystem", + "support": { + "issues": "https://github.com/thephpleague/mime-type-detection/issues", + "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0" + }, + "funding": [ + { + "url": "https://github.com/frankdejonge", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/league/flysystem", + "type": "tidelift" + } + ], + "time": "2024-09-21T08:32:55+00:00" + }, + { + "name": "league/uri", + "version": "7.5.1", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/uri.git", + "reference": "81fb5145d2644324614cc532b28efd0215bda430" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/uri/zipball/81fb5145d2644324614cc532b28efd0215bda430", + "reference": "81fb5145d2644324614cc532b28efd0215bda430", + "shasum": "" + }, + "require": { + "league/uri-interfaces": "^7.5", + "php": "^8.1" + }, + "conflict": { + "league/uri-schemes": "^1.0" + }, + "suggest": { + "ext-bcmath": "to improve IPV4 host parsing", + "ext-fileinfo": "to create Data URI from file contennts", + "ext-gmp": "to improve IPV4 host parsing", + "ext-intl": "to handle IDN host with the best performance", + "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain", + "league/uri-components": "Needed to easily manipulate URI objects components", + "php-64bit": "to improve IPV4 host parsing", + "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "7.x-dev" + } + }, + "autoload": { + "psr-4": { + "League\\Uri\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ignace Nyamagana Butera", + "email": "nyamsprod@gmail.com", + "homepage": "https://nyamsprod.com" + } + ], + "description": "URI manipulation library", + "homepage": "https://uri.thephpleague.com", + "keywords": [ + "data-uri", + "file-uri", + "ftp", + "hostname", + "http", + "https", + "middleware", + "parse_str", + "parse_url", + "psr-7", + "query-string", + "querystring", + "rfc3986", + "rfc3987", + "rfc6570", + "uri", + "uri-template", + "url", + "ws" + ], + "support": { + "docs": "https://uri.thephpleague.com", + "forum": "https://thephpleague.slack.com", + "issues": "https://github.com/thephpleague/uri-src/issues", + "source": "https://github.com/thephpleague/uri/tree/7.5.1" + }, + "funding": [ + { + "url": "https://github.com/sponsors/nyamsprod", + "type": "github" + } + ], + "time": "2024-12-08T08:40:02+00:00" + }, + { + "name": "league/uri-interfaces", + "version": "7.5.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/uri-interfaces.git", + "reference": "08cfc6c4f3d811584fb09c37e2849e6a7f9b0742" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/08cfc6c4f3d811584fb09c37e2849e6a7f9b0742", + "reference": "08cfc6c4f3d811584fb09c37e2849e6a7f9b0742", + "shasum": "" + }, + "require": { + "ext-filter": "*", + "php": "^8.1", + "psr/http-factory": "^1", + "psr/http-message": "^1.1 || ^2.0" + }, + "suggest": { + "ext-bcmath": "to improve IPV4 host parsing", + "ext-gmp": "to improve IPV4 host parsing", + "ext-intl": "to handle IDN host with the best performance", + "php-64bit": "to improve IPV4 host parsing", + "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "7.x-dev" + } + }, + "autoload": { + "psr-4": { + "League\\Uri\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ignace Nyamagana Butera", + "email": "nyamsprod@gmail.com", + "homepage": "https://nyamsprod.com" + } + ], + "description": "Common interfaces and classes for URI representation and interaction", + "homepage": "https://uri.thephpleague.com", + "keywords": [ + "data-uri", + "file-uri", + "ftp", + "hostname", + "http", + "https", + "parse_str", + "parse_url", + "psr-7", + "query-string", + "querystring", + "rfc3986", + "rfc3987", + "rfc6570", + "uri", + "url", + "ws" + ], + "support": { + "docs": "https://uri.thephpleague.com", + "forum": "https://thephpleague.slack.com", + "issues": "https://github.com/thephpleague/uri-src/issues", + "source": "https://github.com/thephpleague/uri-interfaces/tree/7.5.0" + }, + "funding": [ + { + "url": "https://github.com/sponsors/nyamsprod", + "type": "github" + } + ], + "time": "2024-12-08T08:18:47+00:00" + }, + { + "name": "masterminds/html5", + "version": "2.9.0", + "source": { + "type": "git", + "url": "https://github.com/Masterminds/html5-php.git", + "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6", + "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "php": ">=5.3.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.7-dev" + } + }, + "autoload": { + "psr-4": { + "Masterminds\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Matt Butcher", + "email": "technosophos@gmail.com" + }, + { + "name": "Matt Farina", + "email": "matt@mattfarina.com" + }, + { + "name": "Asmir Mustafic", + "email": "goetas@gmail.com" + } + ], + "description": "An HTML5 parser and serializer.", + "homepage": "http://masterminds.github.io/html5-php", + "keywords": [ + "HTML5", + "dom", + "html", + "parser", + "querypath", + "serializer", + "xml" + ], + "support": { + "issues": "https://github.com/Masterminds/html5-php/issues", + "source": "https://github.com/Masterminds/html5-php/tree/2.9.0" + }, + "time": "2024-03-31T07:05:07+00:00" + }, + { + "name": "midtrans/midtrans-php", + "version": "2.6.2", + "source": { + "type": "git", + "url": "https://github.com/Midtrans/midtrans-php.git", + "reference": "8ed7fc58ff1ababe675da17acf8233f4028eb3be" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Midtrans/midtrans-php/zipball/8ed7fc58ff1ababe675da17acf8233f4028eb3be", + "reference": "8ed7fc58ff1ababe675da17acf8233f4028eb3be", + "shasum": "" + }, + "require": { + "ext-curl": "*", + "ext-json": "*", + "ext-openssl": "*", + "php": ">=5.4" + }, + "require-dev": { + "phpunit/phpunit": "5.7.*", + "psy/psysh": "0.4.*" + }, + "type": "library", + "autoload": { + "psr-4": { + "SnapBi\\": "SnapBi/", + "Midtrans\\": "Midtrans/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Andri Setiawan", + "email": "andri.setiawan@veritrans.co.id" + }, + { + "name": "Alvin Litani", + "email": "alvin.litani@veritrans.co.id" + }, + { + "name": "Ismail Faruqi", + "email": "ismail.faruqi@veritrans.co.id" + }, + { + "name": "Muhammad Fauzi Masykur", + "email": "muhammad.masykur@gojek.com" + } + ], + "description": "PHP Wrapper for Midtrans Payment API.", + "homepage": "https://midtrans.com", + "support": { + "issues": "https://github.com/Midtrans/midtrans-php/issues", + "source": "https://github.com/Midtrans/midtrans-php/tree/v2.6.2" + }, + "time": "2025-03-18T06:30:17+00:00" + }, + { + "name": "monolog/monolog", + "version": "3.9.0", + "source": { + "type": "git", + "url": "https://github.com/Seldaek/monolog.git", + "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/10d85740180ecba7896c87e06a166e0c95a0e3b6", + "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/log": "^2.0 || ^3.0" + }, + "provide": { + "psr/log-implementation": "3.0.0" + }, + "require-dev": { + "aws/aws-sdk-php": "^3.0", + "doctrine/couchdb": "~1.0@dev", + "elasticsearch/elasticsearch": "^7 || ^8", + "ext-json": "*", + "graylog2/gelf-php": "^1.4.2 || ^2.0", + "guzzlehttp/guzzle": "^7.4.5", + "guzzlehttp/psr7": "^2.2", + "mongodb/mongodb": "^1.8", + "php-amqplib/php-amqplib": "~2.4 || ^3", + "php-console/php-console": "^3.1.8", + "phpstan/phpstan": "^2", + "phpstan/phpstan-deprecation-rules": "^2", + "phpstan/phpstan-strict-rules": "^2", + "phpunit/phpunit": "^10.5.17 || ^11.0.7", + "predis/predis": "^1.1 || ^2", + "rollbar/rollbar": "^4.0", + "ruflin/elastica": "^7 || ^8", + "symfony/mailer": "^5.4 || ^6", + "symfony/mime": "^5.4 || ^6" + }, + "suggest": { + "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", + "doctrine/couchdb": "Allow sending log messages to a CouchDB server", + "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client", + "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)", + "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler", + "ext-mbstring": "Allow to work properly with unicode symbols", + "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)", + "ext-openssl": "Required to send log messages using SSL", + "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)", + "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", + "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)", + "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib", + "rollbar/rollbar": "Allow sending log messages to Rollbar", + "ruflin/elastica": "Allow sending log messages to an Elastic Search server" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Monolog\\": "src/Monolog" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "https://seld.be" + } + ], + "description": "Sends your logs to files, sockets, inboxes, databases and various web services", + "homepage": "https://github.com/Seldaek/monolog", + "keywords": [ + "log", + "logging", + "psr-3" + ], + "support": { + "issues": "https://github.com/Seldaek/monolog/issues", + "source": "https://github.com/Seldaek/monolog/tree/3.9.0" + }, + "funding": [ + { + "url": "https://github.com/Seldaek", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/monolog/monolog", + "type": "tidelift" + } + ], + "time": "2025-03-24T10:02:05+00:00" + }, + { + "name": "nesbot/carbon", + "version": "3.9.1", + "source": { + "type": "git", + "url": "https://github.com/CarbonPHP/carbon.git", + "reference": "ced71f79398ece168e24f7f7710462f462310d4d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/ced71f79398ece168e24f7f7710462f462310d4d", + "reference": "ced71f79398ece168e24f7f7710462f462310d4d", + "shasum": "" + }, + "require": { + "carbonphp/carbon-doctrine-types": "<100.0", + "ext-json": "*", + "php": "^8.1", + "psr/clock": "^1.0", + "symfony/clock": "^6.3 || ^7.0", + "symfony/polyfill-mbstring": "^1.0", + "symfony/translation": "^4.4.18 || ^5.2.1|| ^6.0 || ^7.0" + }, + "provide": { + "psr/clock-implementation": "1.0" + }, + "require-dev": { + "doctrine/dbal": "^3.6.3 || ^4.0", + "doctrine/orm": "^2.15.2 || ^3.0", + "friendsofphp/php-cs-fixer": "^3.57.2", + "kylekatarnls/multi-tester": "^2.5.3", + "ondrejmirtes/better-reflection": "^6.25.0.4", + "phpmd/phpmd": "^2.15.0", + "phpstan/extension-installer": "^1.3.1", + "phpstan/phpstan": "^1.11.2", + "phpunit/phpunit": "^10.5.20", + "squizlabs/php_codesniffer": "^3.9.0" + }, + "bin": [ + "bin/carbon" + ], + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Carbon\\Laravel\\ServiceProvider" + ] + }, + "phpstan": { + "includes": [ + "extension.neon" + ] + }, + "branch-alias": { + "dev-2.x": "2.x-dev", + "dev-master": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Carbon\\": "src/Carbon/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Brian Nesbitt", + "email": "brian@nesbot.com", + "homepage": "https://markido.com" + }, + { + "name": "kylekatarnls", + "homepage": "https://github.com/kylekatarnls" + } + ], + "description": "An API extension for DateTime that supports 281 different languages.", + "homepage": "https://carbon.nesbot.com", + "keywords": [ + "date", + "datetime", + "time" + ], + "support": { + "docs": "https://carbon.nesbot.com/docs", + "issues": "https://github.com/CarbonPHP/carbon/issues", + "source": "https://github.com/CarbonPHP/carbon" + }, + "funding": [ + { + "url": "https://github.com/sponsors/kylekatarnls", + "type": "github" + }, + { + "url": "https://opencollective.com/Carbon#sponsor", + "type": "opencollective" + }, + { + "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme", + "type": "tidelift" + } + ], + "time": "2025-05-01T19:51:51+00:00" + }, + { + "name": "nette/schema", + "version": "v1.3.2", + "source": { + "type": "git", + "url": "https://github.com/nette/schema.git", + "reference": "da801d52f0354f70a638673c4a0f04e16529431d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d", + "reference": "da801d52f0354f70a638673c4a0f04e16529431d", + "shasum": "" + }, + "require": { + "nette/utils": "^4.0", + "php": "8.1 - 8.4" + }, + "require-dev": { + "nette/tester": "^2.5.2", + "phpstan/phpstan-nette": "^1.0", + "tracy/tracy": "^2.8" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.3-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause", + "GPL-2.0-only", + "GPL-3.0-only" + ], + "authors": [ + { + "name": "David Grudl", + "homepage": "https://davidgrudl.com" + }, + { + "name": "Nette Community", + "homepage": "https://nette.org/contributors" + } + ], + "description": "📐 Nette Schema: validating data structures against a given Schema.", + "homepage": "https://nette.org", + "keywords": [ + "config", + "nette" + ], + "support": { + "issues": "https://github.com/nette/schema/issues", + "source": "https://github.com/nette/schema/tree/v1.3.2" + }, + "time": "2024-10-06T23:10:23+00:00" + }, + { + "name": "nette/utils", + "version": "v4.0.6", + "source": { + "type": "git", + "url": "https://github.com/nette/utils.git", + "reference": "ce708655043c7050eb050df361c5e313cf708309" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nette/utils/zipball/ce708655043c7050eb050df361c5e313cf708309", + "reference": "ce708655043c7050eb050df361c5e313cf708309", + "shasum": "" + }, + "require": { + "php": "8.0 - 8.4" + }, + "conflict": { + "nette/finder": "<3", + "nette/schema": "<1.2.2" + }, + "require-dev": { + "jetbrains/phpstorm-attributes": "dev-master", + "nette/tester": "^2.5", + "phpstan/phpstan": "^1.0", + "tracy/tracy": "^2.9" + }, + "suggest": { + "ext-gd": "to use Image", + "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()", + "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()", + "ext-json": "to use Nette\\Utils\\Json", + "ext-mbstring": "to use Strings::lower() etc...", + "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause", + "GPL-2.0-only", + "GPL-3.0-only" + ], + "authors": [ + { + "name": "David Grudl", + "homepage": "https://davidgrudl.com" + }, + { + "name": "Nette Community", + "homepage": "https://nette.org/contributors" + } + ], + "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.", + "homepage": "https://nette.org", + "keywords": [ + "array", + "core", + "datetime", + "images", + "json", + "nette", + "paginator", + "password", + "slugify", + "string", + "unicode", + "utf-8", + "utility", + "validation" + ], + "support": { + "issues": "https://github.com/nette/utils/issues", + "source": "https://github.com/nette/utils/tree/v4.0.6" + }, + "time": "2025-03-30T21:06:30+00:00" + }, + { + "name": "nikic/php-parser", + "version": "v5.4.0", + "source": { + "type": "git", + "url": "https://github.com/nikic/PHP-Parser.git", + "reference": "447a020a1f875a434d62f2a401f53b82a396e494" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/447a020a1f875a434d62f2a401f53b82a396e494", + "reference": "447a020a1f875a434d62f2a401f53b82a396e494", + "shasum": "" + }, + "require": { + "ext-ctype": "*", + "ext-json": "*", + "ext-tokenizer": "*", + "php": ">=7.4" + }, + "require-dev": { + "ircmaxell/php-yacc": "^0.0.7", + "phpunit/phpunit": "^9.0" + }, + "bin": [ + "bin/php-parse" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.0-dev" + } + }, + "autoload": { + "psr-4": { + "PhpParser\\": "lib/PhpParser" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Nikita Popov" + } + ], + "description": "A PHP parser written in PHP", + "keywords": [ + "parser", + "php" + ], + "support": { + "issues": "https://github.com/nikic/PHP-Parser/issues", + "source": "https://github.com/nikic/PHP-Parser/tree/v5.4.0" + }, + "time": "2024-12-30T11:07:19+00:00" + }, + { + "name": "nunomaduro/termwind", + "version": "v2.3.1", + "source": { + "type": "git", + "url": "https://github.com/nunomaduro/termwind.git", + "reference": "dfa08f390e509967a15c22493dc0bac5733d9123" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/dfa08f390e509967a15c22493dc0bac5733d9123", + "reference": "dfa08f390e509967a15c22493dc0bac5733d9123", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "php": "^8.2", + "symfony/console": "^7.2.6" + }, + "require-dev": { + "illuminate/console": "^11.44.7", + "laravel/pint": "^1.22.0", + "mockery/mockery": "^1.6.12", + "pestphp/pest": "^2.36.0 || ^3.8.2", + "phpstan/phpstan": "^1.12.25", + "phpstan/phpstan-strict-rules": "^1.6.2", + "symfony/var-dumper": "^7.2.6", + "thecodingmachine/phpstan-strict-rules": "^1.0.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Termwind\\Laravel\\TermwindServiceProvider" + ] + }, + "branch-alias": { + "dev-2.x": "2.x-dev" + } + }, + "autoload": { + "files": [ + "src/Functions.php" + ], + "psr-4": { + "Termwind\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "Its like Tailwind CSS, but for the console.", + "keywords": [ + "cli", + "console", + "css", + "package", + "php", + "style" + ], + "support": { + "issues": "https://github.com/nunomaduro/termwind/issues", + "source": "https://github.com/nunomaduro/termwind/tree/v2.3.1" + }, + "funding": [ + { + "url": "https://www.paypal.com/paypalme/enunomaduro", + "type": "custom" + }, + { + "url": "https://github.com/nunomaduro", + "type": "github" + }, + { + "url": "https://github.com/xiCO2k", + "type": "github" + } + ], + "time": "2025-05-08T08:14:37+00:00" + }, + { + "name": "phenx/php-font-lib", + "version": "0.5.6", + "source": { + "type": "git", + "url": "https://github.com/dompdf/php-font-lib.git", + "reference": "a1681e9793040740a405ac5b189275059e2a9863" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/a1681e9793040740a405ac5b189275059e2a9863", + "reference": "a1681e9793040740a405ac5b189275059e2a9863", + "shasum": "" + }, + "require": { + "ext-mbstring": "*" + }, + "require-dev": { + "symfony/phpunit-bridge": "^3 || ^4 || ^5 || ^6" + }, + "type": "library", + "autoload": { + "psr-4": { + "FontLib\\": "src/FontLib" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "LGPL-2.1-or-later" + ], + "authors": [ + { + "name": "Fabien Ménager", + "email": "fabien.menager@gmail.com" + } + ], + "description": "A library to read, parse, export and make subsets of different types of font files.", + "homepage": "https://github.com/PhenX/php-font-lib", + "support": { + "issues": "https://github.com/dompdf/php-font-lib/issues", + "source": "https://github.com/dompdf/php-font-lib/tree/0.5.6" + }, + "time": "2024-01-29T14:45:26+00:00" + }, + { + "name": "phenx/php-svg-lib", + "version": "0.5.4", + "source": { + "type": "git", + "url": "https://github.com/dompdf/php-svg-lib.git", + "reference": "46b25da81613a9cf43c83b2a8c2c1bdab27df691" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dompdf/php-svg-lib/zipball/46b25da81613a9cf43c83b2a8c2c1bdab27df691", + "reference": "46b25da81613a9cf43c83b2a8c2c1bdab27df691", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "php": "^7.1 || ^8.0", + "sabberworm/php-css-parser": "^8.4" + }, + "require-dev": { + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5" + }, + "type": "library", + "autoload": { + "psr-4": { + "Svg\\": "src/Svg" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "LGPL-3.0-or-later" + ], + "authors": [ + { + "name": "Fabien Ménager", + "email": "fabien.menager@gmail.com" + } + ], + "description": "A library to read, parse and export to PDF SVG files.", + "homepage": "https://github.com/PhenX/php-svg-lib", + "support": { + "issues": "https://github.com/dompdf/php-svg-lib/issues", + "source": "https://github.com/dompdf/php-svg-lib/tree/0.5.4" + }, + "time": "2024-04-08T12:52:34+00:00" + }, + { + "name": "phpoption/phpoption", + "version": "1.9.3", + "source": { + "type": "git", + "url": "https://github.com/schmittjoh/php-option.git", + "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54", + "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + }, + "branch-alias": { + "dev-master": "1.9-dev" + } + }, + "autoload": { + "psr-4": { + "PhpOption\\": "src/PhpOption/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Johannes M. Schmitt", + "email": "schmittjoh@gmail.com", + "homepage": "https://github.com/schmittjoh" + }, + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + } + ], + "description": "Option Type for PHP", + "keywords": [ + "language", + "option", + "php", + "type" + ], + "support": { + "issues": "https://github.com/schmittjoh/php-option/issues", + "source": "https://github.com/schmittjoh/php-option/tree/1.9.3" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption", + "type": "tidelift" + } + ], + "time": "2024-07-20T21:41:07+00:00" + }, + { + "name": "psr/clock", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/clock.git", + "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d", + "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d", + "shasum": "" + }, + "require": { + "php": "^7.0 || ^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Psr\\Clock\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for reading the clock.", + "homepage": "https://github.com/php-fig/clock", + "keywords": [ + "clock", + "now", + "psr", + "psr-20", + "time" + ], + "support": { + "issues": "https://github.com/php-fig/clock/issues", + "source": "https://github.com/php-fig/clock/tree/1.0.0" + }, + "time": "2022-11-25T14:36:26+00:00" + }, + { + "name": "psr/container", + "version": "2.0.2", + "source": { + "type": "git", + "url": "https://github.com/php-fig/container.git", + "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963", + "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963", + "shasum": "" + }, + "require": { + "php": ">=7.4.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Container\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common Container Interface (PHP FIG PSR-11)", + "homepage": "https://github.com/php-fig/container", + "keywords": [ + "PSR-11", + "container", + "container-interface", + "container-interop", + "psr" + ], + "support": { + "issues": "https://github.com/php-fig/container/issues", + "source": "https://github.com/php-fig/container/tree/2.0.2" + }, + "time": "2021-11-05T16:47:00+00:00" + }, + { + "name": "psr/event-dispatcher", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/event-dispatcher.git", + "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0", + "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0", + "shasum": "" + }, + "require": { + "php": ">=7.2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\EventDispatcher\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Standard interfaces for event handling.", + "keywords": [ + "events", + "psr", + "psr-14" + ], + "support": { + "issues": "https://github.com/php-fig/event-dispatcher/issues", + "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0" + }, + "time": "2019-01-08T18:20:26+00:00" + }, + { + "name": "psr/http-client", + "version": "1.0.3", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-client.git", + "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90", + "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90", + "shasum": "" + }, + "require": { + "php": "^7.0 || ^8.0", + "psr/http-message": "^1.0 || ^2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Client\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for HTTP clients", + "homepage": "https://github.com/php-fig/http-client", + "keywords": [ + "http", + "http-client", + "psr", + "psr-18" + ], + "support": { + "source": "https://github.com/php-fig/http-client" + }, + "time": "2023-09-23T14:17:50+00:00" + }, + { + "name": "psr/http-factory", + "version": "1.1.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-factory.git", + "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a", + "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a", + "shasum": "" + }, + "require": { + "php": ">=7.1", + "psr/http-message": "^1.0 || ^2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Message\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories", + "keywords": [ + "factory", + "http", + "message", + "psr", + "psr-17", + "psr-7", + "request", + "response" + ], + "support": { + "source": "https://github.com/php-fig/http-factory" + }, + "time": "2024-04-15T12:06:14+00:00" + }, + { + "name": "psr/http-message", + "version": "2.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-message.git", + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71", + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Message\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for HTTP messages", + "homepage": "https://github.com/php-fig/http-message", + "keywords": [ + "http", + "http-message", + "psr", + "psr-7", + "request", + "response" + ], + "support": { + "source": "https://github.com/php-fig/http-message/tree/2.0" + }, + "time": "2023-04-04T09:54:51+00:00" + }, + { + "name": "psr/log", + "version": "3.0.2", + "source": { + "type": "git", + "url": "https://github.com/php-fig/log.git", + "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", + "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", + "shasum": "" + }, + "require": { + "php": ">=8.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Log\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for logging libraries", + "homepage": "https://github.com/php-fig/log", + "keywords": [ + "log", + "psr", + "psr-3" + ], + "support": { + "source": "https://github.com/php-fig/log/tree/3.0.2" + }, + "time": "2024-09-11T13:17:53+00:00" + }, + { + "name": "psr/simple-cache", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/simple-cache.git", + "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865", + "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865", + "shasum": "" + }, + "require": { + "php": ">=8.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\SimpleCache\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interfaces for simple caching", + "keywords": [ + "cache", + "caching", + "psr", + "psr-16", + "simple-cache" + ], + "support": { + "source": "https://github.com/php-fig/simple-cache/tree/3.0.0" + }, + "time": "2021-10-29T13:26:27+00:00" + }, + { + "name": "psy/psysh", + "version": "v0.12.8", + "source": { + "type": "git", + "url": "https://github.com/bobthecow/psysh.git", + "reference": "85057ceedee50c49d4f6ecaff73ee96adb3b3625" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/85057ceedee50c49d4f6ecaff73ee96adb3b3625", + "reference": "85057ceedee50c49d4f6ecaff73ee96adb3b3625", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-tokenizer": "*", + "nikic/php-parser": "^5.0 || ^4.0", + "php": "^8.0 || ^7.4", + "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4", + "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4" + }, + "conflict": { + "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.2" + }, + "suggest": { + "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)", + "ext-pdo-sqlite": "The doc command requires SQLite to work.", + "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well." + }, + "bin": [ + "bin/psysh" + ], + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": false, + "forward-command": false + }, + "branch-alias": { + "dev-main": "0.12.x-dev" + } + }, + "autoload": { + "files": [ + "src/functions.php" + ], + "psr-4": { + "Psy\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Justin Hileman", + "email": "justin@justinhileman.info", + "homepage": "http://justinhileman.com" + } + ], + "description": "An interactive shell for modern PHP.", + "homepage": "http://psysh.org", + "keywords": [ + "REPL", + "console", + "interactive", + "shell" + ], + "support": { + "issues": "https://github.com/bobthecow/psysh/issues", + "source": "https://github.com/bobthecow/psysh/tree/v0.12.8" + }, + "time": "2025-03-16T03:05:19+00:00" + }, + { + "name": "ralouphie/getallheaders", + "version": "3.0.3", + "source": { + "type": "git", + "url": "https://github.com/ralouphie/getallheaders.git", + "reference": "120b605dfeb996808c31b6477290a714d356e822" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822", + "reference": "120b605dfeb996808c31b6477290a714d356e822", + "shasum": "" + }, + "require": { + "php": ">=5.6" + }, + "require-dev": { + "php-coveralls/php-coveralls": "^2.1", + "phpunit/phpunit": "^5 || ^6.5" + }, + "type": "library", + "autoload": { + "files": [ + "src/getallheaders.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ralph Khattar", + "email": "ralph.khattar@gmail.com" + } + ], + "description": "A polyfill for getallheaders.", + "support": { + "issues": "https://github.com/ralouphie/getallheaders/issues", + "source": "https://github.com/ralouphie/getallheaders/tree/develop" + }, + "time": "2019-03-08T08:55:37+00:00" + }, + { + "name": "ramsey/collection", + "version": "2.1.1", + "source": { + "type": "git", + "url": "https://github.com/ramsey/collection.git", + "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ramsey/collection/zipball/344572933ad0181accbf4ba763e85a0306a8c5e2", + "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "require-dev": { + "captainhook/plugin-composer": "^5.3", + "ergebnis/composer-normalize": "^2.45", + "fakerphp/faker": "^1.24", + "hamcrest/hamcrest-php": "^2.0", + "jangregor/phpstan-prophecy": "^2.1", + "mockery/mockery": "^1.6", + "php-parallel-lint/php-console-highlighter": "^1.0", + "php-parallel-lint/php-parallel-lint": "^1.4", + "phpspec/prophecy-phpunit": "^2.3", + "phpstan/extension-installer": "^1.4", + "phpstan/phpstan": "^2.1", + "phpstan/phpstan-mockery": "^2.0", + "phpstan/phpstan-phpunit": "^2.0", + "phpunit/phpunit": "^10.5", + "ramsey/coding-standard": "^2.3", + "ramsey/conventional-commits": "^1.6", + "roave/security-advisories": "dev-latest" + }, + "type": "library", + "extra": { + "captainhook": { + "force-install": true + }, + "ramsey/conventional-commits": { + "configFile": "conventional-commits.json" + } + }, + "autoload": { + "psr-4": { + "Ramsey\\Collection\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ben Ramsey", + "email": "ben@benramsey.com", + "homepage": "https://benramsey.com" + } + ], + "description": "A PHP library for representing and manipulating collections.", + "keywords": [ + "array", + "collection", + "hash", + "map", + "queue", + "set" + ], + "support": { + "issues": "https://github.com/ramsey/collection/issues", + "source": "https://github.com/ramsey/collection/tree/2.1.1" + }, + "time": "2025-03-22T05:38:12+00:00" + }, + { + "name": "ramsey/uuid", + "version": "4.7.6", + "source": { + "type": "git", + "url": "https://github.com/ramsey/uuid.git", + "reference": "91039bc1faa45ba123c4328958e620d382ec7088" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088", + "reference": "91039bc1faa45ba123c4328958e620d382ec7088", + "shasum": "" + }, + "require": { + "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12", + "ext-json": "*", + "php": "^8.0", + "ramsey/collection": "^1.2 || ^2.0" + }, + "replace": { + "rhumsaa/uuid": "self.version" + }, + "require-dev": { + "captainhook/captainhook": "^5.10", + "captainhook/plugin-composer": "^5.3", + "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", + "doctrine/annotations": "^1.8", + "ergebnis/composer-normalize": "^2.15", + "mockery/mockery": "^1.3", + "paragonie/random-lib": "^2", + "php-mock/php-mock": "^2.2", + "php-mock/php-mock-mockery": "^1.3", + "php-parallel-lint/php-parallel-lint": "^1.1", + "phpbench/phpbench": "^1.0", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan": "^1.8", + "phpstan/phpstan-mockery": "^1.1", + "phpstan/phpstan-phpunit": "^1.1", + "phpunit/phpunit": "^8.5 || ^9", + "ramsey/composer-repl": "^1.4", + "slevomat/coding-standard": "^8.4", + "squizlabs/php_codesniffer": "^3.5", + "vimeo/psalm": "^4.9" + }, + "suggest": { + "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.", + "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.", + "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.", + "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter", + "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type." + }, + "type": "library", + "extra": { + "captainhook": { + "force-install": true + } + }, + "autoload": { + "files": [ + "src/functions.php" + ], + "psr-4": { + "Ramsey\\Uuid\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).", + "keywords": [ + "guid", + "identifier", + "uuid" + ], + "support": { + "issues": "https://github.com/ramsey/uuid/issues", + "source": "https://github.com/ramsey/uuid/tree/4.7.6" + }, + "funding": [ + { + "url": "https://github.com/ramsey", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid", + "type": "tidelift" + } + ], + "time": "2024-04-27T21:32:50+00:00" + }, + { + "name": "sabberworm/php-css-parser", + "version": "v8.8.0", + "source": { + "type": "git", + "url": "https://github.com/MyIntervals/PHP-CSS-Parser.git", + "reference": "3de493bdddfd1f051249af725c7e0d2c38fed740" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/MyIntervals/PHP-CSS-Parser/zipball/3de493bdddfd1f051249af725c7e0d2c38fed740", + "reference": "3de493bdddfd1f051249af725c7e0d2c38fed740", + "shasum": "" + }, + "require": { + "ext-iconv": "*", + "php": "^5.6.20 || ^7.0.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0" + }, + "require-dev": { + "phpunit/phpunit": "5.7.27 || 6.5.14 || 7.5.20 || 8.5.41" + }, + "suggest": { + "ext-mbstring": "for parsing UTF-8 CSS" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "9.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Sabberworm\\CSS\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Raphael Schweikert" + }, + { + "name": "Oliver Klee", + "email": "github@oliverklee.de" + }, + { + "name": "Jake Hotson", + "email": "jake.github@qzdesign.co.uk" + } + ], + "description": "Parser for CSS Files written in PHP", + "homepage": "https://www.sabberworm.com/blog/2010/6/10/php-css-parser", + "keywords": [ + "css", + "parser", + "stylesheet" + ], + "support": { + "issues": "https://github.com/MyIntervals/PHP-CSS-Parser/issues", + "source": "https://github.com/MyIntervals/PHP-CSS-Parser/tree/v8.8.0" + }, + "time": "2025-03-23T17:59:05+00:00" + }, + { + "name": "symfony/clock", + "version": "v7.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/clock.git", + "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/clock/zipball/b81435fbd6648ea425d1ee96a2d8e68f4ceacd24", + "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "psr/clock": "^1.0", + "symfony/polyfill-php83": "^1.28" + }, + "provide": { + "psr/clock-implementation": "1.0" + }, + "type": "library", + "autoload": { + "files": [ + "Resources/now.php" + ], + "psr-4": { + "Symfony\\Component\\Clock\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Decouples applications from the system clock", + "homepage": "https://symfony.com", + "keywords": [ + "clock", + "psr20", + "time" + ], + "support": { + "source": "https://github.com/symfony/clock/tree/v7.2.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:21:43+00:00" + }, + { + "name": "symfony/console", + "version": "v7.2.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/console.git", + "reference": "0e2e3f38c192e93e622e41ec37f4ca70cfedf218" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/console/zipball/0e2e3f38c192e93e622e41ec37f4ca70cfedf218", + "reference": "0e2e3f38c192e93e622e41ec37f4ca70cfedf218", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-mbstring": "~1.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/string": "^6.4|^7.0" + }, + "conflict": { + "symfony/dependency-injection": "<6.4", + "symfony/dotenv": "<6.4", + "symfony/event-dispatcher": "<6.4", + "symfony/lock": "<6.4", + "symfony/process": "<6.4" + }, + "provide": { + "psr/log-implementation": "1.0|2.0|3.0" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/event-dispatcher": "^6.4|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/lock": "^6.4|^7.0", + "symfony/messenger": "^6.4|^7.0", + "symfony/process": "^6.4|^7.0", + "symfony/stopwatch": "^6.4|^7.0", + "symfony/var-dumper": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Console\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Eases the creation of beautiful and testable command line interfaces", + "homepage": "https://symfony.com", + "keywords": [ + "cli", + "command-line", + "console", + "terminal" + ], + "support": { + "source": "https://github.com/symfony/console/tree/v7.2.6" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-04-07T19:09:28+00:00" + }, + { + "name": "symfony/css-selector", + "version": "v7.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/css-selector.git", + "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/601a5ce9aaad7bf10797e3663faefce9e26c24e2", + "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\CssSelector\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Jean-François Simon", + "email": "jeanfrancois.simon@sensiolabs.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Converts CSS selectors to XPath expressions", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/css-selector/tree/v7.2.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:21:43+00:00" + }, + { + "name": "symfony/deprecation-contracts", + "version": "v3.5.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/deprecation-contracts.git", + "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6", + "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, + "branch-alias": { + "dev-main": "3.5-dev" + } + }, + "autoload": { + "files": [ + "function.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "A generic function and convention to trigger deprecation notices", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:20:29+00:00" + }, + { + "name": "symfony/error-handler", + "version": "v7.2.5", + "source": { + "type": "git", + "url": "https://github.com/symfony/error-handler.git", + "reference": "102be5e6a8e4f4f3eb3149bcbfa33a80d1ee374b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/102be5e6a8e4f4f3eb3149bcbfa33a80d1ee374b", + "reference": "102be5e6a8e4f4f3eb3149bcbfa33a80d1ee374b", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "psr/log": "^1|^2|^3", + "symfony/var-dumper": "^6.4|^7.0" + }, + "conflict": { + "symfony/deprecation-contracts": "<2.5", + "symfony/http-kernel": "<6.4" + }, + "require-dev": { + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/serializer": "^6.4|^7.0" + }, + "bin": [ + "Resources/bin/patch-type-declarations" + ], + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\ErrorHandler\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides tools to manage errors and ease debugging PHP code", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/error-handler/tree/v7.2.5" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-03-03T07:12:39+00:00" + }, + { + "name": "symfony/event-dispatcher", + "version": "v7.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "910c5db85a5356d0fea57680defec4e99eb9c8c1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/910c5db85a5356d0fea57680defec4e99eb9c8c1", + "reference": "910c5db85a5356d0fea57680defec4e99eb9c8c1", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/event-dispatcher-contracts": "^2.5|^3" + }, + "conflict": { + "symfony/dependency-injection": "<6.4", + "symfony/service-contracts": "<2.5" + }, + "provide": { + "psr/event-dispatcher-implementation": "1.0", + "symfony/event-dispatcher-implementation": "2.0|3.0" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/error-handler": "^6.4|^7.0", + "symfony/expression-language": "^6.4|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/stopwatch": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\EventDispatcher\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/event-dispatcher/tree/v7.2.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:21:43+00:00" + }, + { + "name": "symfony/event-dispatcher-contracts", + "version": "v3.5.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher-contracts.git", + "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f", + "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/event-dispatcher": "^1" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, + "branch-alias": { + "dev-main": "3.5-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\EventDispatcher\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to dispatching event", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:20:29+00:00" + }, + { + "name": "symfony/finder", + "version": "v7.2.2", + "source": { + "type": "git", + "url": "https://github.com/symfony/finder.git", + "reference": "87a71856f2f56e4100373e92529eed3171695cfb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/finder/zipball/87a71856f2f56e4100373e92529eed3171695cfb", + "reference": "87a71856f2f56e4100373e92529eed3171695cfb", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "symfony/filesystem": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Finder\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Finds files and directories via an intuitive fluent interface", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/finder/tree/v7.2.2" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-12-30T19:00:17+00:00" + }, + { + "name": "symfony/http-foundation", + "version": "v7.2.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-foundation.git", + "reference": "6023ec7607254c87c5e69fb3558255aca440d72b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/6023ec7607254c87c5e69fb3558255aca440d72b", + "reference": "6023ec7607254c87c5e69fb3558255aca440d72b", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3.0", + "symfony/polyfill-mbstring": "~1.1", + "symfony/polyfill-php83": "^1.27" + }, + "conflict": { + "doctrine/dbal": "<3.6", + "symfony/cache": "<6.4.12|>=7.0,<7.1.5" + }, + "require-dev": { + "doctrine/dbal": "^3.6|^4", + "predis/predis": "^1.1|^2.0", + "symfony/cache": "^6.4.12|^7.1.5", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/expression-language": "^6.4|^7.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/mime": "^6.4|^7.0", + "symfony/rate-limiter": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\HttpFoundation\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Defines an object-oriented layer for the HTTP specification", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/http-foundation/tree/v7.2.6" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-04-09T08:14:01+00:00" + }, + { + "name": "symfony/http-kernel", + "version": "v7.2.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-kernel.git", + "reference": "f9dec01e6094a063e738f8945ef69c0cfcf792ec" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/f9dec01e6094a063e738f8945ef69c0cfcf792ec", + "reference": "f9dec01e6094a063e738f8945ef69c0cfcf792ec", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "psr/log": "^1|^2|^3", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/error-handler": "^6.4|^7.0", + "symfony/event-dispatcher": "^6.4|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/polyfill-ctype": "^1.8" + }, + "conflict": { + "symfony/browser-kit": "<6.4", + "symfony/cache": "<6.4", + "symfony/config": "<6.4", + "symfony/console": "<6.4", + "symfony/dependency-injection": "<6.4", + "symfony/doctrine-bridge": "<6.4", + "symfony/form": "<6.4", + "symfony/http-client": "<6.4", + "symfony/http-client-contracts": "<2.5", + "symfony/mailer": "<6.4", + "symfony/messenger": "<6.4", + "symfony/translation": "<6.4", + "symfony/translation-contracts": "<2.5", + "symfony/twig-bridge": "<6.4", + "symfony/validator": "<6.4", + "symfony/var-dumper": "<6.4", + "twig/twig": "<3.12" + }, + "provide": { + "psr/log-implementation": "1.0|2.0|3.0" + }, + "require-dev": { + "psr/cache": "^1.0|^2.0|^3.0", + "symfony/browser-kit": "^6.4|^7.0", + "symfony/clock": "^6.4|^7.0", + "symfony/config": "^6.4|^7.0", + "symfony/console": "^6.4|^7.0", + "symfony/css-selector": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/dom-crawler": "^6.4|^7.0", + "symfony/expression-language": "^6.4|^7.0", + "symfony/finder": "^6.4|^7.0", + "symfony/http-client-contracts": "^2.5|^3", + "symfony/process": "^6.4|^7.0", + "symfony/property-access": "^7.1", + "symfony/routing": "^6.4|^7.0", + "symfony/serializer": "^7.1", + "symfony/stopwatch": "^6.4|^7.0", + "symfony/translation": "^6.4|^7.0", + "symfony/translation-contracts": "^2.5|^3", + "symfony/uid": "^6.4|^7.0", + "symfony/validator": "^6.4|^7.0", + "symfony/var-dumper": "^6.4|^7.0", + "symfony/var-exporter": "^6.4|^7.0", + "twig/twig": "^3.12" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\HttpKernel\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides a structured process for converting a Request into a Response", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/http-kernel/tree/v7.2.6" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-05-02T09:04:03+00:00" + }, + { + "name": "symfony/mailer", + "version": "v7.2.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/mailer.git", + "reference": "998692469d6e698c6eadc7ef37a6530a9eabb356" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/mailer/zipball/998692469d6e698c6eadc7ef37a6530a9eabb356", + "reference": "998692469d6e698c6eadc7ef37a6530a9eabb356", + "shasum": "" + }, + "require": { + "egulias/email-validator": "^2.1.10|^3|^4", + "php": ">=8.2", + "psr/event-dispatcher": "^1", + "psr/log": "^1|^2|^3", + "symfony/event-dispatcher": "^6.4|^7.0", + "symfony/mime": "^7.2", + "symfony/service-contracts": "^2.5|^3" + }, + "conflict": { + "symfony/http-client-contracts": "<2.5", + "symfony/http-kernel": "<6.4", + "symfony/messenger": "<6.4", + "symfony/mime": "<6.4", + "symfony/twig-bridge": "<6.4" + }, + "require-dev": { + "symfony/console": "^6.4|^7.0", + "symfony/http-client": "^6.4|^7.0", + "symfony/messenger": "^6.4|^7.0", + "symfony/twig-bridge": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Mailer\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Helps sending emails", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/mailer/tree/v7.2.6" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-04-04T09:50:51+00:00" + }, + { + "name": "symfony/mime", + "version": "v7.2.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/mime.git", + "reference": "706e65c72d402539a072d0d6ad105fff6c161ef1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/mime/zipball/706e65c72d402539a072d0d6ad105fff6c161ef1", + "reference": "706e65c72d402539a072d0d6ad105fff6c161ef1", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-intl-idn": "^1.10", + "symfony/polyfill-mbstring": "^1.0" + }, + "conflict": { + "egulias/email-validator": "~3.0.0", + "phpdocumentor/reflection-docblock": "<3.2.2", + "phpdocumentor/type-resolver": "<1.4.0", + "symfony/mailer": "<6.4", + "symfony/serializer": "<6.4.3|>7.0,<7.0.3" + }, + "require-dev": { + "egulias/email-validator": "^2.1.10|^3.1|^4", + "league/html-to-markdown": "^5.0", + "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/process": "^6.4|^7.0", + "symfony/property-access": "^6.4|^7.0", + "symfony/property-info": "^6.4|^7.0", + "symfony/serializer": "^6.4.3|^7.0.3" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Mime\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Allows manipulating MIME messages", + "homepage": "https://symfony.com", + "keywords": [ + "mime", + "mime-type" + ], + "support": { + "source": "https://github.com/symfony/mime/tree/v7.2.6" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-04-27T13:34:41+00:00" + }, + { + "name": "symfony/polyfill-ctype", + "version": "v1.32.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-ctype.git", + "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638", + "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "provide": { + "ext-ctype": "*" + }, + "suggest": { + "ext-ctype": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Ctype\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Gert de Pagter", + "email": "BackEndTea@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for ctype functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "ctype", + "polyfill", + "portable" + ], + "support": { + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.32.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-intl-grapheme", + "version": "v1.32.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-grapheme.git", + "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe", + "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Grapheme\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's grapheme_* functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "grapheme", + "intl", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.32.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-intl-idn", + "version": "v1.32.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-idn.git", + "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3", + "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3", + "shasum": "" + }, + "require": { + "php": ">=7.2", + "symfony/polyfill-intl-normalizer": "^1.10" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Idn\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Laurent Bassin", + "email": "laurent@bassin.info" + }, + { + "name": "Trevor Rowbotham", + "email": "trevor.rowbotham@pm.me" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "idn", + "intl", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.32.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-10T14:38:51+00:00" + }, + { + "name": "symfony/polyfill-intl-normalizer", + "version": "v1.32.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-normalizer.git", + "reference": "3833d7255cc303546435cb650316bff708a1c75c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c", + "reference": "3833d7255cc303546435cb650316bff708a1c75c", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Normalizer\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's Normalizer class and related functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "intl", + "normalizer", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.32.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-mbstring", + "version": "v1.32.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-mbstring.git", + "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493", + "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493", + "shasum": "" + }, + "require": { + "ext-iconv": "*", + "php": ">=7.2" + }, + "provide": { + "ext-mbstring": "*" + }, + "suggest": { + "ext-mbstring": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Mbstring\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for the Mbstring extension", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "mbstring", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.32.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-12-23T08:48:59+00:00" + }, + { + "name": "symfony/polyfill-php80", + "version": "v1.32.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php80.git", + "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608", + "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php80\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ion Bazan", + "email": "ion.bazan@gmail.com" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php80/tree/v1.32.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-01-02T08:10:11+00:00" + }, + { + "name": "symfony/polyfill-php83", + "version": "v1.32.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php83.git", + "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491", + "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php83\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php83/tree/v1.32.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-uuid", + "version": "v1.32.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-uuid.git", + "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2", + "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "provide": { + "ext-uuid": "*" + }, + "suggest": { + "ext-uuid": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Uuid\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Grégoire Pineau", + "email": "lyrixx@lyrixx.info" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for uuid functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "uuid" + ], + "support": { + "source": "https://github.com/symfony/polyfill-uuid/tree/v1.32.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/process", + "version": "v7.2.5", + "source": { + "type": "git", + "url": "https://github.com/symfony/process.git", + "reference": "87b7c93e57df9d8e39a093d32587702380ff045d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/process/zipball/87b7c93e57df9d8e39a093d32587702380ff045d", + "reference": "87b7c93e57df9d8e39a093d32587702380ff045d", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Process\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Executes commands in sub-processes", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/process/tree/v7.2.5" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-03-13T12:21:46+00:00" + }, + { + "name": "symfony/routing", + "version": "v7.2.3", + "source": { + "type": "git", + "url": "https://github.com/symfony/routing.git", + "reference": "ee9a67edc6baa33e5fae662f94f91fd262930996" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/routing/zipball/ee9a67edc6baa33e5fae662f94f91fd262930996", + "reference": "ee9a67edc6baa33e5fae662f94f91fd262930996", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3" + }, + "conflict": { + "symfony/config": "<6.4", + "symfony/dependency-injection": "<6.4", + "symfony/yaml": "<6.4" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/expression-language": "^6.4|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/yaml": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Routing\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Maps an HTTP request to a set of configuration variables", + "homepage": "https://symfony.com", + "keywords": [ + "router", + "routing", + "uri", + "url" + ], + "support": { + "source": "https://github.com/symfony/routing/tree/v7.2.3" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-01-17T10:56:55+00:00" + }, + { + "name": "symfony/service-contracts", + "version": "v3.5.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/service-contracts.git", + "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0", + "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/container": "^1.1|^2.0", + "symfony/deprecation-contracts": "^2.5|^3" + }, + "conflict": { + "ext-psr": "<1.1|>=2" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, + "branch-alias": { + "dev-main": "3.5-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\Service\\": "" + }, + "exclude-from-classmap": [ + "/Test/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to writing services", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/service-contracts/tree/v3.5.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:20:29+00:00" + }, + { + "name": "symfony/string", + "version": "v7.2.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/string.git", + "reference": "a214fe7d62bd4df2a76447c67c6b26e1d5e74931" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/string/zipball/a214fe7d62bd4df2a76447c67c6b26e1d5e74931", + "reference": "a214fe7d62bd4df2a76447c67c6b26e1d5e74931", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-intl-grapheme": "~1.0", + "symfony/polyfill-intl-normalizer": "~1.0", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/translation-contracts": "<2.5" + }, + "require-dev": { + "symfony/emoji": "^7.1", + "symfony/error-handler": "^6.4|^7.0", + "symfony/http-client": "^6.4|^7.0", + "symfony/intl": "^6.4|^7.0", + "symfony/translation-contracts": "^2.5|^3.0", + "symfony/var-exporter": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "files": [ + "Resources/functions.php" + ], + "psr-4": { + "Symfony\\Component\\String\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way", + "homepage": "https://symfony.com", + "keywords": [ + "grapheme", + "i18n", + "string", + "unicode", + "utf-8", + "utf8" + ], + "support": { + "source": "https://github.com/symfony/string/tree/v7.2.6" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-04-20T20:18:16+00:00" + }, + { + "name": "symfony/translation", + "version": "v7.2.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation.git", + "reference": "e7fd8e2a4239b79a0fd9fb1fef3e0e7f969c6dc6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation/zipball/e7fd8e2a4239b79a0fd9fb1fef3e0e7f969c6dc6", + "reference": "e7fd8e2a4239b79a0fd9fb1fef3e0e7f969c6dc6", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.0", + "symfony/translation-contracts": "^2.5|^3.0" + }, + "conflict": { + "symfony/config": "<6.4", + "symfony/console": "<6.4", + "symfony/dependency-injection": "<6.4", + "symfony/http-client-contracts": "<2.5", + "symfony/http-kernel": "<6.4", + "symfony/service-contracts": "<2.5", + "symfony/twig-bundle": "<6.4", + "symfony/yaml": "<6.4" + }, + "provide": { + "symfony/translation-implementation": "2.3|3.0" + }, + "require-dev": { + "nikic/php-parser": "^4.18|^5.0", + "psr/log": "^1|^2|^3", + "symfony/config": "^6.4|^7.0", + "symfony/console": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/finder": "^6.4|^7.0", + "symfony/http-client-contracts": "^2.5|^3.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/intl": "^6.4|^7.0", + "symfony/polyfill-intl-icu": "^1.21", + "symfony/routing": "^6.4|^7.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/yaml": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "files": [ + "Resources/functions.php" + ], + "psr-4": { + "Symfony\\Component\\Translation\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides tools to internationalize your application", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/translation/tree/v7.2.6" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-04-07T19:09:28+00:00" + }, + { + "name": "symfony/translation-contracts", + "version": "v3.5.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation-contracts.git", + "reference": "4667ff3bd513750603a09c8dedbea942487fb07c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c", + "reference": "4667ff3bd513750603a09c8dedbea942487fb07c", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, + "branch-alias": { + "dev-main": "3.5-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\Translation\\": "" + }, + "exclude-from-classmap": [ + "/Test/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to translation", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:20:29+00:00" + }, + { + "name": "symfony/uid", + "version": "v7.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/uid.git", + "reference": "2d294d0c48df244c71c105a169d0190bfb080426" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/uid/zipball/2d294d0c48df244c71c105a169d0190bfb080426", + "reference": "2d294d0c48df244c71c105a169d0190bfb080426", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-uuid": "^1.15" + }, + "require-dev": { + "symfony/console": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Uid\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Grégoire Pineau", + "email": "lyrixx@lyrixx.info" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides an object-oriented API to generate and represent UIDs", + "homepage": "https://symfony.com", + "keywords": [ + "UID", + "ulid", + "uuid" + ], + "support": { + "source": "https://github.com/symfony/uid/tree/v7.2.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:21:43+00:00" + }, + { + "name": "symfony/var-dumper", + "version": "v7.2.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/var-dumper.git", + "reference": "9c46038cd4ed68952166cf7001b54eb539184ccb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/9c46038cd4ed68952166cf7001b54eb539184ccb", + "reference": "9c46038cd4ed68952166cf7001b54eb539184ccb", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/console": "<6.4" + }, + "require-dev": { + "ext-iconv": "*", + "symfony/console": "^6.4|^7.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/process": "^6.4|^7.0", + "symfony/uid": "^6.4|^7.0", + "twig/twig": "^3.12" + }, + "bin": [ + "Resources/bin/var-dump-server" + ], + "type": "library", + "autoload": { + "files": [ + "Resources/functions/dump.php" + ], + "psr-4": { + "Symfony\\Component\\VarDumper\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides mechanisms for walking through any arbitrary PHP variable", + "homepage": "https://symfony.com", + "keywords": [ + "debug", + "dump" + ], + "support": { + "source": "https://github.com/symfony/var-dumper/tree/v7.2.6" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-04-09T08:14:01+00:00" + }, + { + "name": "tijsverkoyen/css-to-inline-styles", + "version": "v2.3.0", + "source": { + "type": "git", + "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git", + "reference": "0d72ac1c00084279c1816675284073c5a337c20d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0d72ac1c00084279c1816675284073c5a337c20d", + "reference": "0d72ac1c00084279c1816675284073c5a337c20d", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "php": "^7.4 || ^8.0", + "symfony/css-selector": "^5.4 || ^6.0 || ^7.0" + }, + "require-dev": { + "phpstan/phpstan": "^2.0", + "phpstan/phpstan-phpunit": "^2.0", + "phpunit/phpunit": "^8.5.21 || ^9.5.10" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.x-dev" + } + }, + "autoload": { + "psr-4": { + "TijsVerkoyen\\CssToInlineStyles\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Tijs Verkoyen", + "email": "css_to_inline_styles@verkoyen.eu", + "role": "Developer" + } + ], + "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.", + "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles", + "support": { + "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues", + "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.3.0" + }, + "time": "2024-12-21T16:25:41+00:00" + }, + { + "name": "vlucas/phpdotenv", + "version": "v5.6.2", + "source": { + "type": "git", + "url": "https://github.com/vlucas/phpdotenv.git", + "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/24ac4c74f91ee2c193fa1aaa5c249cb0822809af", + "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af", + "shasum": "" + }, + "require": { + "ext-pcre": "*", + "graham-campbell/result-type": "^1.1.3", + "php": "^7.2.5 || ^8.0", + "phpoption/phpoption": "^1.9.3", + "symfony/polyfill-ctype": "^1.24", + "symfony/polyfill-mbstring": "^1.24", + "symfony/polyfill-php80": "^1.24" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "ext-filter": "*", + "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2" + }, + "suggest": { + "ext-filter": "Required to use the boolean validator." + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + }, + "branch-alias": { + "dev-master": "5.6-dev" + } + }, + "autoload": { + "psr-4": { + "Dotenv\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Vance Lucas", + "email": "vance@vancelucas.com", + "homepage": "https://github.com/vlucas" + } + ], + "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.", + "keywords": [ + "dotenv", + "env", + "environment" + ], + "support": { + "issues": "https://github.com/vlucas/phpdotenv/issues", + "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.2" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv", + "type": "tidelift" + } + ], + "time": "2025-04-30T23:37:27+00:00" + }, + { + "name": "voku/portable-ascii", + "version": "2.0.3", + "source": { + "type": "git", + "url": "https://github.com/voku/portable-ascii.git", + "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d", + "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d", + "shasum": "" + }, + "require": { + "php": ">=7.0.0" + }, + "require-dev": { + "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0" + }, + "suggest": { + "ext-intl": "Use Intl for transliterator_transliterate() support" + }, + "type": "library", + "autoload": { + "psr-4": { + "voku\\": "src/voku/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Lars Moelleken", + "homepage": "https://www.moelleken.org/" + } + ], + "description": "Portable ASCII library - performance optimized (ascii) string functions for php.", + "homepage": "https://github.com/voku/portable-ascii", + "keywords": [ + "ascii", + "clean", + "php" + ], + "support": { + "issues": "https://github.com/voku/portable-ascii/issues", + "source": "https://github.com/voku/portable-ascii/tree/2.0.3" + }, + "funding": [ + { + "url": "https://www.paypal.me/moelleken", + "type": "custom" + }, + { + "url": "https://github.com/voku", + "type": "github" + }, + { + "url": "https://opencollective.com/portable-ascii", + "type": "open_collective" + }, + { + "url": "https://www.patreon.com/voku", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii", + "type": "tidelift" + } + ], + "time": "2024-11-21T01:49:47+00:00" + }, + { + "name": "webmozart/assert", + "version": "1.11.0", + "source": { + "type": "git", + "url": "https://github.com/webmozarts/assert.git", + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991", + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991", + "shasum": "" + }, + "require": { + "ext-ctype": "*", + "php": "^7.2 || ^8.0" + }, + "conflict": { + "phpstan/phpstan": "<0.12.20", + "vimeo/psalm": "<4.6.1 || 4.6.2" + }, + "require-dev": { + "phpunit/phpunit": "^8.5.13" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.10-dev" + } + }, + "autoload": { + "psr-4": { + "Webmozart\\Assert\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "Assertions to validate method input/output with nice error messages.", + "keywords": [ + "assert", + "check", + "validate" + ], + "support": { + "issues": "https://github.com/webmozarts/assert/issues", + "source": "https://github.com/webmozarts/assert/tree/1.11.0" + }, + "time": "2022-06-03T18:03:27+00:00" + } + ], + "packages-dev": [ + { + "name": "fakerphp/faker", + "version": "v1.24.1", + "source": { + "type": "git", + "url": "https://github.com/FakerPHP/Faker.git", + "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5", + "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5", + "shasum": "" + }, + "require": { + "php": "^7.4 || ^8.0", + "psr/container": "^1.0 || ^2.0", + "symfony/deprecation-contracts": "^2.2 || ^3.0" + }, + "conflict": { + "fzaninotto/faker": "*" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.4.1", + "doctrine/persistence": "^1.3 || ^2.0", + "ext-intl": "*", + "phpunit/phpunit": "^9.5.26", + "symfony/phpunit-bridge": "^5.4.16" + }, + "suggest": { + "doctrine/orm": "Required to use Faker\\ORM\\Doctrine", + "ext-curl": "Required by Faker\\Provider\\Image to download images.", + "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.", + "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.", + "ext-mbstring": "Required for multibyte Unicode string functionality." + }, + "type": "library", + "autoload": { + "psr-4": { + "Faker\\": "src/Faker/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "François Zaninotto" + } + ], + "description": "Faker is a PHP library that generates fake data for you.", + "keywords": [ + "data", + "faker", + "fixtures" + ], + "support": { + "issues": "https://github.com/FakerPHP/Faker/issues", + "source": "https://github.com/FakerPHP/Faker/tree/v1.24.1" + }, + "time": "2024-11-21T13:46:39+00:00" + }, + { + "name": "filp/whoops", + "version": "2.18.0", + "source": { + "type": "git", + "url": "https://github.com/filp/whoops.git", + "reference": "a7de6c3c6c3c022f5cfc337f8ede6a14460cf77e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/filp/whoops/zipball/a7de6c3c6c3c022f5cfc337f8ede6a14460cf77e", + "reference": "a7de6c3c6c3c022f5cfc337f8ede6a14460cf77e", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0", + "psr/log": "^1.0.1 || ^2.0 || ^3.0" + }, + "require-dev": { + "mockery/mockery": "^1.0", + "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3", + "symfony/var-dumper": "^4.0 || ^5.0" + }, + "suggest": { + "symfony/var-dumper": "Pretty print complex values better with var-dumper available", + "whoops/soap": "Formats errors as SOAP responses" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.7-dev" + } + }, + "autoload": { + "psr-4": { + "Whoops\\": "src/Whoops/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Filipe Dobreira", + "homepage": "https://github.com/filp", + "role": "Developer" + } + ], + "description": "php error handling for cool kids", + "homepage": "https://filp.github.io/whoops/", + "keywords": [ + "error", + "exception", + "handling", + "library", + "throwable", + "whoops" + ], + "support": { + "issues": "https://github.com/filp/whoops/issues", + "source": "https://github.com/filp/whoops/tree/2.18.0" + }, + "funding": [ + { + "url": "https://github.com/denis-sokolov", + "type": "github" + } + ], + "time": "2025-03-15T12:00:00+00:00" + }, + { + "name": "hamcrest/hamcrest-php", + "version": "v2.1.1", + "source": { + "type": "git", + "url": "https://github.com/hamcrest/hamcrest-php.git", + "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487", + "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487", + "shasum": "" + }, + "require": { + "php": "^7.4|^8.0" + }, + "replace": { + "cordoval/hamcrest-php": "*", + "davedevelopment/hamcrest-php": "*", + "kodova/hamcrest-php": "*" + }, + "require-dev": { + "phpunit/php-file-iterator": "^1.4 || ^2.0 || ^3.0", + "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0 || ^8.0 || ^9.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.1-dev" + } + }, + "autoload": { + "classmap": [ + "hamcrest" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "This is the PHP port of Hamcrest Matchers", + "keywords": [ + "test" + ], + "support": { + "issues": "https://github.com/hamcrest/hamcrest-php/issues", + "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.1.1" + }, + "time": "2025-04-30T06:54:44+00:00" + }, + { + "name": "laravel/pail", + "version": "v1.2.2", + "source": { + "type": "git", + "url": "https://github.com/laravel/pail.git", + "reference": "f31f4980f52be17c4667f3eafe034e6826787db2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/pail/zipball/f31f4980f52be17c4667f3eafe034e6826787db2", + "reference": "f31f4980f52be17c4667f3eafe034e6826787db2", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "illuminate/console": "^10.24|^11.0|^12.0", + "illuminate/contracts": "^10.24|^11.0|^12.0", + "illuminate/log": "^10.24|^11.0|^12.0", + "illuminate/process": "^10.24|^11.0|^12.0", + "illuminate/support": "^10.24|^11.0|^12.0", + "nunomaduro/termwind": "^1.15|^2.0", + "php": "^8.2", + "symfony/console": "^6.0|^7.0" + }, + "require-dev": { + "laravel/framework": "^10.24|^11.0|^12.0", + "laravel/pint": "^1.13", + "orchestra/testbench-core": "^8.13|^9.0|^10.0", + "pestphp/pest": "^2.20|^3.0", + "pestphp/pest-plugin-type-coverage": "^2.3|^3.0", + "phpstan/phpstan": "^1.10", + "symfony/var-dumper": "^6.3|^7.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Laravel\\Pail\\PailServiceProvider" + ] + }, + "branch-alias": { + "dev-main": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Laravel\\Pail\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + }, + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "Easily delve into your Laravel application's log files directly from the command line.", + "homepage": "https://github.com/laravel/pail", + "keywords": [ + "laravel", + "logs", + "php", + "tail" + ], + "support": { + "issues": "https://github.com/laravel/pail/issues", + "source": "https://github.com/laravel/pail" + }, + "time": "2025-01-28T15:15:15+00:00" + }, + { + "name": "laravel/pint", + "version": "v1.22.1", + "source": { + "type": "git", + "url": "https://github.com/laravel/pint.git", + "reference": "941d1927c5ca420c22710e98420287169c7bcaf7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/pint/zipball/941d1927c5ca420c22710e98420287169c7bcaf7", + "reference": "941d1927c5ca420c22710e98420287169c7bcaf7", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-mbstring": "*", + "ext-tokenizer": "*", + "ext-xml": "*", + "php": "^8.2.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.75.0", + "illuminate/view": "^11.44.7", + "larastan/larastan": "^3.4.0", + "laravel-zero/framework": "^11.36.1", + "mockery/mockery": "^1.6.12", + "nunomaduro/termwind": "^2.3.1", + "pestphp/pest": "^2.36.0" + }, + "bin": [ + "builds/pint" + ], + "type": "project", + "autoload": { + "psr-4": { + "App\\": "app/", + "Database\\Seeders\\": "database/seeders/", + "Database\\Factories\\": "database/factories/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "An opinionated code formatter for PHP.", + "homepage": "https://laravel.com", + "keywords": [ + "format", + "formatter", + "lint", + "linter", + "php" + ], + "support": { + "issues": "https://github.com/laravel/pint/issues", + "source": "https://github.com/laravel/pint" + }, + "time": "2025-05-08T08:38:12+00:00" + }, + { + "name": "laravel/sail", + "version": "v1.43.0", + "source": { + "type": "git", + "url": "https://github.com/laravel/sail.git", + "reference": "71a509b14b2621ce58574274a74290f933c687f7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/sail/zipball/71a509b14b2621ce58574274a74290f933c687f7", + "reference": "71a509b14b2621ce58574274a74290f933c687f7", + "shasum": "" + }, + "require": { + "illuminate/console": "^9.52.16|^10.0|^11.0|^12.0", + "illuminate/contracts": "^9.52.16|^10.0|^11.0|^12.0", + "illuminate/support": "^9.52.16|^10.0|^11.0|^12.0", + "php": "^8.0", + "symfony/console": "^6.0|^7.0", + "symfony/yaml": "^6.0|^7.0" + }, + "require-dev": { + "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0", + "phpstan/phpstan": "^1.10" + }, + "bin": [ + "bin/sail" + ], + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Laravel\\Sail\\SailServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Laravel\\Sail\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Docker files for running a basic Laravel application.", + "keywords": [ + "docker", + "laravel" + ], + "support": { + "issues": "https://github.com/laravel/sail/issues", + "source": "https://github.com/laravel/sail" + }, + "time": "2025-05-13T13:34:34+00:00" + }, + { + "name": "mockery/mockery", + "version": "1.6.12", + "source": { + "type": "git", + "url": "https://github.com/mockery/mockery.git", + "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699", + "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699", + "shasum": "" + }, + "require": { + "hamcrest/hamcrest-php": "^2.0.1", + "lib-pcre": ">=7.0", + "php": ">=7.3" + }, + "conflict": { + "phpunit/phpunit": "<8.0" + }, + "require-dev": { + "phpunit/phpunit": "^8.5 || ^9.6.17", + "symplify/easy-coding-standard": "^12.1.14" + }, + "type": "library", + "autoload": { + "files": [ + "library/helpers.php", + "library/Mockery.php" + ], + "psr-4": { + "Mockery\\": "library/Mockery" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Pádraic Brady", + "email": "padraic.brady@gmail.com", + "homepage": "https://github.com/padraic", + "role": "Author" + }, + { + "name": "Dave Marshall", + "email": "dave.marshall@atstsolutions.co.uk", + "homepage": "https://davedevelopment.co.uk", + "role": "Developer" + }, + { + "name": "Nathanael Esayeas", + "email": "nathanael.esayeas@protonmail.com", + "homepage": "https://github.com/ghostwriter", + "role": "Lead Developer" + } + ], + "description": "Mockery is a simple yet flexible PHP mock object framework", + "homepage": "https://github.com/mockery/mockery", + "keywords": [ + "BDD", + "TDD", + "library", + "mock", + "mock objects", + "mockery", + "stub", + "test", + "test double", + "testing" + ], + "support": { + "docs": "https://docs.mockery.io/", + "issues": "https://github.com/mockery/mockery/issues", + "rss": "https://github.com/mockery/mockery/releases.atom", + "security": "https://github.com/mockery/mockery/security/advisories", + "source": "https://github.com/mockery/mockery" + }, + "time": "2024-05-16T03:13:13+00:00" + }, + { + "name": "myclabs/deep-copy", + "version": "1.13.1", + "source": { + "type": "git", + "url": "https://github.com/myclabs/DeepCopy.git", + "reference": "1720ddd719e16cf0db4eb1c6eca108031636d46c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/1720ddd719e16cf0db4eb1c6eca108031636d46c", + "reference": "1720ddd719e16cf0db4eb1c6eca108031636d46c", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "conflict": { + "doctrine/collections": "<1.6.8", + "doctrine/common": "<2.13.3 || >=3 <3.2.2" + }, + "require-dev": { + "doctrine/collections": "^1.6.8", + "doctrine/common": "^2.13.3 || ^3.2.2", + "phpspec/prophecy": "^1.10", + "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13" + }, + "type": "library", + "autoload": { + "files": [ + "src/DeepCopy/deep_copy.php" + ], + "psr-4": { + "DeepCopy\\": "src/DeepCopy/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Create deep copies (clones) of your objects", + "keywords": [ + "clone", + "copy", + "duplicate", + "object", + "object graph" + ], + "support": { + "issues": "https://github.com/myclabs/DeepCopy/issues", + "source": "https://github.com/myclabs/DeepCopy/tree/1.13.1" + }, + "funding": [ + { + "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", + "type": "tidelift" + } + ], + "time": "2025-04-29T12:36:36+00:00" + }, + { + "name": "nunomaduro/collision", + "version": "v8.8.0", + "source": { + "type": "git", + "url": "https://github.com/nunomaduro/collision.git", + "reference": "4cf9f3b47afff38b139fb79ce54fc71799022ce8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nunomaduro/collision/zipball/4cf9f3b47afff38b139fb79ce54fc71799022ce8", + "reference": "4cf9f3b47afff38b139fb79ce54fc71799022ce8", + "shasum": "" + }, + "require": { + "filp/whoops": "^2.18.0", + "nunomaduro/termwind": "^2.3.0", + "php": "^8.2.0", + "symfony/console": "^7.2.5" + }, + "conflict": { + "laravel/framework": "<11.44.2 || >=13.0.0", + "phpunit/phpunit": "<11.5.15 || >=13.0.0" + }, + "require-dev": { + "brianium/paratest": "^7.8.3", + "larastan/larastan": "^3.2", + "laravel/framework": "^11.44.2 || ^12.6", + "laravel/pint": "^1.21.2", + "laravel/sail": "^1.41.0", + "laravel/sanctum": "^4.0.8", + "laravel/tinker": "^2.10.1", + "orchestra/testbench-core": "^9.12.0 || ^10.1", + "pestphp/pest": "^3.8.0", + "sebastian/environment": "^7.2.0 || ^8.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider" + ] + }, + "branch-alias": { + "dev-8.x": "8.x-dev" + } + }, + "autoload": { + "files": [ + "./src/Adapters/Phpunit/Autoload.php" + ], + "psr-4": { + "NunoMaduro\\Collision\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "Cli error handling for console/command-line PHP applications.", + "keywords": [ + "artisan", + "cli", + "command-line", + "console", + "dev", + "error", + "handling", + "laravel", + "laravel-zero", + "php", + "symfony" + ], + "support": { + "issues": "https://github.com/nunomaduro/collision/issues", + "source": "https://github.com/nunomaduro/collision" + }, + "funding": [ + { + "url": "https://www.paypal.com/paypalme/enunomaduro", + "type": "custom" + }, + { + "url": "https://github.com/nunomaduro", + "type": "github" + }, + { + "url": "https://www.patreon.com/nunomaduro", + "type": "patreon" + } + ], + "time": "2025-04-03T14:33:09+00:00" + }, + { + "name": "phar-io/manifest", + "version": "2.0.4", + "source": { + "type": "git", + "url": "https://github.com/phar-io/manifest.git", + "reference": "54750ef60c58e43759730615a392c31c80e23176" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176", + "reference": "54750ef60c58e43759730615a392c31c80e23176", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "ext-phar": "*", + "ext-xmlwriter": "*", + "phar-io/version": "^3.0.1", + "php": "^7.2 || ^8.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", + "support": { + "issues": "https://github.com/phar-io/manifest/issues", + "source": "https://github.com/phar-io/manifest/tree/2.0.4" + }, + "funding": [ + { + "url": "https://github.com/theseer", + "type": "github" + } + ], + "time": "2024-03-03T12:33:53+00:00" + }, + { + "name": "phar-io/version", + "version": "3.2.1", + "source": { + "type": "git", + "url": "https://github.com/phar-io/version.git", + "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74", + "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Library for handling version information and constraints", + "support": { + "issues": "https://github.com/phar-io/version/issues", + "source": "https://github.com/phar-io/version/tree/3.2.1" + }, + "time": "2022-02-21T01:04:05+00:00" + }, + { + "name": "phpunit/php-code-coverage", + "version": "11.0.9", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-code-coverage.git", + "reference": "14d63fbcca18457e49c6f8bebaa91a87e8e188d7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/14d63fbcca18457e49c6f8bebaa91a87e8e188d7", + "reference": "14d63fbcca18457e49c6f8bebaa91a87e8e188d7", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "ext-xmlwriter": "*", + "nikic/php-parser": "^5.4.0", + "php": ">=8.2", + "phpunit/php-file-iterator": "^5.1.0", + "phpunit/php-text-template": "^4.0.1", + "sebastian/code-unit-reverse-lookup": "^4.0.1", + "sebastian/complexity": "^4.0.1", + "sebastian/environment": "^7.2.0", + "sebastian/lines-of-code": "^3.0.1", + "sebastian/version": "^5.0.2", + "theseer/tokenizer": "^1.2.3" + }, + "require-dev": { + "phpunit/phpunit": "^11.5.2" + }, + "suggest": { + "ext-pcov": "PHP extension that provides line coverage", + "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "11.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", + "homepage": "https://github.com/sebastianbergmann/php-code-coverage", + "keywords": [ + "coverage", + "testing", + "xunit" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", + "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy", + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.9" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2025-02-25T13:26:39+00:00" + }, + { + "name": "phpunit/php-file-iterator", + "version": "5.1.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-file-iterator.git", + "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/118cfaaa8bc5aef3287bf315b6060b1174754af6", + "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "FilterIterator implementation that filters files based on a list of suffixes.", + "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", + "keywords": [ + "filesystem", + "iterator" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", + "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy", + "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-08-27T05:02:59+00:00" + }, + { + "name": "phpunit/php-invoker", + "version": "5.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-invoker.git", + "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2", + "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "ext-pcntl": "*", + "phpunit/phpunit": "^11.0" + }, + "suggest": { + "ext-pcntl": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Invoke callables with a timeout", + "homepage": "https://github.com/sebastianbergmann/php-invoker/", + "keywords": [ + "process" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-invoker/issues", + "security": "https://github.com/sebastianbergmann/php-invoker/security/policy", + "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T05:07:44+00:00" + }, + { + "name": "phpunit/php-text-template", + "version": "4.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-text-template.git", + "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964", + "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Simple template engine.", + "homepage": "https://github.com/sebastianbergmann/php-text-template/", + "keywords": [ + "template" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-text-template/issues", + "security": "https://github.com/sebastianbergmann/php-text-template/security/policy", + "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T05:08:43+00:00" + }, + { + "name": "phpunit/php-timer", + "version": "7.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-timer.git", + "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3", + "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "7.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Utility class for timing", + "homepage": "https://github.com/sebastianbergmann/php-timer/", + "keywords": [ + "timer" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-timer/issues", + "security": "https://github.com/sebastianbergmann/php-timer/security/policy", + "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T05:09:35+00:00" + }, + { + "name": "phpunit/phpunit", + "version": "11.5.21", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/phpunit.git", + "reference": "d565e2cdc21a7db9dc6c399c1fc2083b8010f289" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/d565e2cdc21a7db9dc6c399c1fc2083b8010f289", + "reference": "d565e2cdc21a7db9dc6c399c1fc2083b8010f289", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-json": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-xml": "*", + "ext-xmlwriter": "*", + "myclabs/deep-copy": "^1.13.1", + "phar-io/manifest": "^2.0.4", + "phar-io/version": "^3.2.1", + "php": ">=8.2", + "phpunit/php-code-coverage": "^11.0.9", + "phpunit/php-file-iterator": "^5.1.0", + "phpunit/php-invoker": "^5.0.1", + "phpunit/php-text-template": "^4.0.1", + "phpunit/php-timer": "^7.0.1", + "sebastian/cli-parser": "^3.0.2", + "sebastian/code-unit": "^3.0.3", + "sebastian/comparator": "^6.3.1", + "sebastian/diff": "^6.0.2", + "sebastian/environment": "^7.2.1", + "sebastian/exporter": "^6.3.0", + "sebastian/global-state": "^7.0.2", + "sebastian/object-enumerator": "^6.0.1", + "sebastian/type": "^5.1.2", + "sebastian/version": "^5.0.2", + "staabm/side-effects-detector": "^1.0.5" + }, + "suggest": { + "ext-soap": "To be able to generate mocks based on WSDL files" + }, + "bin": [ + "phpunit" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "11.5-dev" + } + }, + "autoload": { + "files": [ + "src/Framework/Assert/Functions.php" + ], + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "The PHP Unit Testing framework.", + "homepage": "https://phpunit.de/", + "keywords": [ + "phpunit", + "testing", + "xunit" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/phpunit/issues", + "security": "https://github.com/sebastianbergmann/phpunit/security/policy", + "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.21" + }, + "funding": [ + { + "url": "https://phpunit.de/sponsors.html", + "type": "custom" + }, + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit", + "type": "tidelift" + } + ], + "time": "2025-05-21T12:35:00+00:00" + }, + { + "name": "sebastian/cli-parser", + "version": "3.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/cli-parser.git", + "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180", + "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for parsing CLI options", + "homepage": "https://github.com/sebastianbergmann/cli-parser", + "support": { + "issues": "https://github.com/sebastianbergmann/cli-parser/issues", + "security": "https://github.com/sebastianbergmann/cli-parser/security/policy", + "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T04:41:36+00:00" + }, + { + "name": "sebastian/code-unit", + "version": "3.0.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit.git", + "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/54391c61e4af8078e5b276ab082b6d3c54c9ad64", + "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Collection of value objects that represent the PHP code units", + "homepage": "https://github.com/sebastianbergmann/code-unit", + "support": { + "issues": "https://github.com/sebastianbergmann/code-unit/issues", + "security": "https://github.com/sebastianbergmann/code-unit/security/policy", + "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2025-03-19T07:56:08+00:00" + }, + { + "name": "sebastian/code-unit-reverse-lookup", + "version": "4.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", + "reference": "183a9b2632194febd219bb9246eee421dad8d45e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e", + "reference": "183a9b2632194febd219bb9246eee421dad8d45e", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Looks up which function or method a line of code belongs to", + "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", + "support": { + "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues", + "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy", + "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T04:45:54+00:00" + }, + { + "name": "sebastian/comparator", + "version": "6.3.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/comparator.git", + "reference": "24b8fbc2c8e201bb1308e7b05148d6ab393b6959" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/24b8fbc2c8e201bb1308e7b05148d6ab393b6959", + "reference": "24b8fbc2c8e201bb1308e7b05148d6ab393b6959", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-mbstring": "*", + "php": ">=8.2", + "sebastian/diff": "^6.0", + "sebastian/exporter": "^6.0" + }, + "require-dev": { + "phpunit/phpunit": "^11.4" + }, + "suggest": { + "ext-bcmath": "For comparing BcMath\\Number objects" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.3-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@2bepublished.at" + } + ], + "description": "Provides the functionality to compare PHP values for equality", + "homepage": "https://github.com/sebastianbergmann/comparator", + "keywords": [ + "comparator", + "compare", + "equality" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/comparator/issues", + "security": "https://github.com/sebastianbergmann/comparator/security/policy", + "source": "https://github.com/sebastianbergmann/comparator/tree/6.3.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2025-03-07T06:57:01+00:00" + }, + { + "name": "sebastian/complexity", + "version": "4.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/complexity.git", + "reference": "ee41d384ab1906c68852636b6de493846e13e5a0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0", + "reference": "ee41d384ab1906c68852636b6de493846e13e5a0", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^5.0", + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for calculating the complexity of PHP code units", + "homepage": "https://github.com/sebastianbergmann/complexity", + "support": { + "issues": "https://github.com/sebastianbergmann/complexity/issues", + "security": "https://github.com/sebastianbergmann/complexity/security/policy", + "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T04:49:50+00:00" + }, + { + "name": "sebastian/diff", + "version": "6.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/diff.git", + "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544", + "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0", + "symfony/process": "^4.2 || ^5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Kore Nordmann", + "email": "mail@kore-nordmann.de" + } + ], + "description": "Diff implementation", + "homepage": "https://github.com/sebastianbergmann/diff", + "keywords": [ + "diff", + "udiff", + "unidiff", + "unified diff" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/diff/issues", + "security": "https://github.com/sebastianbergmann/diff/security/policy", + "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T04:53:05+00:00" + }, + { + "name": "sebastian/environment", + "version": "7.2.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/environment.git", + "reference": "a5c75038693ad2e8d4b6c15ba2403532647830c4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/a5c75038693ad2e8d4b6c15ba2403532647830c4", + "reference": "a5c75038693ad2e8d4b6c15ba2403532647830c4", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.3" + }, + "suggest": { + "ext-posix": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "7.2-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides functionality to handle HHVM/PHP environments", + "homepage": "https://github.com/sebastianbergmann/environment", + "keywords": [ + "Xdebug", + "environment", + "hhvm" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/environment/issues", + "security": "https://github.com/sebastianbergmann/environment/security/policy", + "source": "https://github.com/sebastianbergmann/environment/tree/7.2.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/sebastian/environment", + "type": "tidelift" + } + ], + "time": "2025-05-21T11:55:47+00:00" + }, + { + "name": "sebastian/exporter", + "version": "6.3.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/exporter.git", + "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/3473f61172093b2da7de1fb5782e1f24cc036dc3", + "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "php": ">=8.2", + "sebastian/recursion-context": "^6.0" + }, + "require-dev": { + "phpunit/phpunit": "^11.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "Provides the functionality to export PHP variables for visualization", + "homepage": "https://www.github.com/sebastianbergmann/exporter", + "keywords": [ + "export", + "exporter" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/exporter/issues", + "security": "https://github.com/sebastianbergmann/exporter/security/policy", + "source": "https://github.com/sebastianbergmann/exporter/tree/6.3.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-12-05T09:17:50+00:00" + }, + { + "name": "sebastian/global-state", + "version": "7.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/global-state.git", + "reference": "3be331570a721f9a4b5917f4209773de17f747d7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7", + "reference": "3be331570a721f9a4b5917f4209773de17f747d7", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "sebastian/object-reflector": "^4.0", + "sebastian/recursion-context": "^6.0" + }, + "require-dev": { + "ext-dom": "*", + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "7.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Snapshotting of global state", + "homepage": "https://www.github.com/sebastianbergmann/global-state", + "keywords": [ + "global state" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/global-state/issues", + "security": "https://github.com/sebastianbergmann/global-state/security/policy", + "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T04:57:36+00:00" + }, + { + "name": "sebastian/lines-of-code", + "version": "3.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/lines-of-code.git", + "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a", + "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^5.0", + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for counting the lines of code in PHP source code", + "homepage": "https://github.com/sebastianbergmann/lines-of-code", + "support": { + "issues": "https://github.com/sebastianbergmann/lines-of-code/issues", + "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy", + "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T04:58:38+00:00" + }, + { + "name": "sebastian/object-enumerator", + "version": "6.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-enumerator.git", + "reference": "f5b498e631a74204185071eb41f33f38d64608aa" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa", + "reference": "f5b498e631a74204185071eb41f33f38d64608aa", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "sebastian/object-reflector": "^4.0", + "sebastian/recursion-context": "^6.0" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Traverses array structures and object graphs to enumerate all referenced objects", + "homepage": "https://github.com/sebastianbergmann/object-enumerator/", + "support": { + "issues": "https://github.com/sebastianbergmann/object-enumerator/issues", + "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy", + "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T05:00:13+00:00" + }, + { + "name": "sebastian/object-reflector", + "version": "4.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-reflector.git", + "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9", + "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Allows reflection of object attributes, including inherited and non-public ones", + "homepage": "https://github.com/sebastianbergmann/object-reflector/", + "support": { + "issues": "https://github.com/sebastianbergmann/object-reflector/issues", + "security": "https://github.com/sebastianbergmann/object-reflector/security/policy", + "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T05:01:32+00:00" + }, + { + "name": "sebastian/recursion-context", + "version": "6.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/recursion-context.git", + "reference": "694d156164372abbd149a4b85ccda2e4670c0e16" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/694d156164372abbd149a4b85ccda2e4670c0e16", + "reference": "694d156164372abbd149a4b85ccda2e4670c0e16", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + } + ], + "description": "Provides functionality to recursively process PHP variables", + "homepage": "https://github.com/sebastianbergmann/recursion-context", + "support": { + "issues": "https://github.com/sebastianbergmann/recursion-context/issues", + "security": "https://github.com/sebastianbergmann/recursion-context/security/policy", + "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-07-03T05:10:34+00:00" + }, + { + "name": "sebastian/type", + "version": "5.1.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/type.git", + "reference": "a8a7e30534b0eb0c77cd9d07e82de1a114389f5e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/a8a7e30534b0eb0c77cd9d07e82de1a114389f5e", + "reference": "a8a7e30534b0eb0c77cd9d07e82de1a114389f5e", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Collection of value objects that represent the types of the PHP type system", + "homepage": "https://github.com/sebastianbergmann/type", + "support": { + "issues": "https://github.com/sebastianbergmann/type/issues", + "security": "https://github.com/sebastianbergmann/type/security/policy", + "source": "https://github.com/sebastianbergmann/type/tree/5.1.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2025-03-18T13:35:50+00:00" + }, + { + "name": "sebastian/version", + "version": "5.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/version.git", + "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874", + "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that helps with managing the version number of Git-hosted PHP projects", + "homepage": "https://github.com/sebastianbergmann/version", + "support": { + "issues": "https://github.com/sebastianbergmann/version/issues", + "security": "https://github.com/sebastianbergmann/version/security/policy", + "source": "https://github.com/sebastianbergmann/version/tree/5.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-10-09T05:16:32+00:00" + }, + { + "name": "spatie/backtrace", + "version": "1.7.4", + "source": { + "type": "git", + "url": "https://github.com/spatie/backtrace.git", + "reference": "cd37a49fce7137359ac30ecc44ef3e16404cccbe" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/backtrace/zipball/cd37a49fce7137359ac30ecc44ef3e16404cccbe", + "reference": "cd37a49fce7137359ac30ecc44ef3e16404cccbe", + "shasum": "" + }, + "require": { + "php": "^7.3 || ^8.0" + }, + "require-dev": { + "ext-json": "*", + "laravel/serializable-closure": "^1.3 || ^2.0", + "phpunit/phpunit": "^9.3 || ^11.4.3", + "spatie/phpunit-snapshot-assertions": "^4.2 || ^5.1.6", + "symfony/var-dumper": "^5.1 || ^6.0 || ^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Spatie\\Backtrace\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Freek Van de Herten", + "email": "freek@spatie.be", + "homepage": "https://spatie.be", + "role": "Developer" + } + ], + "description": "A better backtrace", + "homepage": "https://github.com/spatie/backtrace", + "keywords": [ + "Backtrace", + "spatie" + ], + "support": { + "source": "https://github.com/spatie/backtrace/tree/1.7.4" + }, + "funding": [ + { + "url": "https://github.com/sponsors/spatie", + "type": "github" + }, + { + "url": "https://spatie.be/open-source/support-us", + "type": "other" + } + ], + "time": "2025-05-08T15:41:09+00:00" + }, + { + "name": "spatie/error-solutions", + "version": "1.1.3", + "source": { + "type": "git", + "url": "https://github.com/spatie/error-solutions.git", + "reference": "e495d7178ca524f2dd0fe6a1d99a1e608e1c9936" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/error-solutions/zipball/e495d7178ca524f2dd0fe6a1d99a1e608e1c9936", + "reference": "e495d7178ca524f2dd0fe6a1d99a1e608e1c9936", + "shasum": "" + }, + "require": { + "php": "^8.0" + }, + "require-dev": { + "illuminate/broadcasting": "^10.0|^11.0|^12.0", + "illuminate/cache": "^10.0|^11.0|^12.0", + "illuminate/support": "^10.0|^11.0|^12.0", + "livewire/livewire": "^2.11|^3.5.20", + "openai-php/client": "^0.10.1", + "orchestra/testbench": "8.22.3|^9.0|^10.0", + "pestphp/pest": "^2.20|^3.0", + "phpstan/phpstan": "^2.1", + "psr/simple-cache": "^3.0", + "psr/simple-cache-implementation": "^3.0", + "spatie/ray": "^1.28", + "symfony/cache": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.0|^7.0", + "vlucas/phpdotenv": "^5.5" + }, + "suggest": { + "openai-php/client": "Require get solutions from OpenAI", + "simple-cache-implementation": "To cache solutions from OpenAI" + }, + "type": "library", + "autoload": { + "psr-4": { + "Spatie\\Ignition\\": "legacy/ignition", + "Spatie\\ErrorSolutions\\": "src", + "Spatie\\LaravelIgnition\\": "legacy/laravel-ignition" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ruben Van Assche", + "email": "ruben@spatie.be", + "role": "Developer" + } + ], + "description": "This is my package error-solutions", + "homepage": "https://github.com/spatie/error-solutions", + "keywords": [ + "error-solutions", + "spatie" + ], + "support": { + "issues": "https://github.com/spatie/error-solutions/issues", + "source": "https://github.com/spatie/error-solutions/tree/1.1.3" + }, + "funding": [ + { + "url": "https://github.com/Spatie", + "type": "github" + } + ], + "time": "2025-02-14T12:29:50+00:00" + }, + { + "name": "spatie/flare-client-php", + "version": "1.10.1", + "source": { + "type": "git", + "url": "https://github.com/spatie/flare-client-php.git", + "reference": "bf1716eb98bd689451b071548ae9e70738dce62f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/bf1716eb98bd689451b071548ae9e70738dce62f", + "reference": "bf1716eb98bd689451b071548ae9e70738dce62f", + "shasum": "" + }, + "require": { + "illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0|^12.0", + "php": "^8.0", + "spatie/backtrace": "^1.6.1", + "symfony/http-foundation": "^5.2|^6.0|^7.0", + "symfony/mime": "^5.2|^6.0|^7.0", + "symfony/process": "^5.2|^6.0|^7.0", + "symfony/var-dumper": "^5.2|^6.0|^7.0" + }, + "require-dev": { + "dms/phpunit-arraysubset-asserts": "^0.5.0", + "pestphp/pest": "^1.20|^2.0", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan-deprecation-rules": "^1.0", + "phpstan/phpstan-phpunit": "^1.0", + "spatie/pest-plugin-snapshots": "^1.0|^2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.3.x-dev" + } + }, + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Spatie\\FlareClient\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Send PHP errors to Flare", + "homepage": "https://github.com/spatie/flare-client-php", + "keywords": [ + "exception", + "flare", + "reporting", + "spatie" + ], + "support": { + "issues": "https://github.com/spatie/flare-client-php/issues", + "source": "https://github.com/spatie/flare-client-php/tree/1.10.1" + }, + "funding": [ + { + "url": "https://github.com/spatie", + "type": "github" + } + ], + "time": "2025-02-14T13:42:06+00:00" + }, + { + "name": "spatie/ignition", + "version": "1.15.1", + "source": { + "type": "git", + "url": "https://github.com/spatie/ignition.git", + "reference": "31f314153020aee5af3537e507fef892ffbf8c85" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/ignition/zipball/31f314153020aee5af3537e507fef892ffbf8c85", + "reference": "31f314153020aee5af3537e507fef892ffbf8c85", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-mbstring": "*", + "php": "^8.0", + "spatie/error-solutions": "^1.0", + "spatie/flare-client-php": "^1.7", + "symfony/console": "^5.4|^6.0|^7.0", + "symfony/var-dumper": "^5.4|^6.0|^7.0" + }, + "require-dev": { + "illuminate/cache": "^9.52|^10.0|^11.0|^12.0", + "mockery/mockery": "^1.4", + "pestphp/pest": "^1.20|^2.0", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan-deprecation-rules": "^1.0", + "phpstan/phpstan-phpunit": "^1.0", + "psr/simple-cache-implementation": "*", + "symfony/cache": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.0|^7.0", + "vlucas/phpdotenv": "^5.5" + }, + "suggest": { + "openai-php/client": "Require get solutions from OpenAI", + "simple-cache-implementation": "To cache solutions from OpenAI" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.5.x-dev" + } + }, + "autoload": { + "psr-4": { + "Spatie\\Ignition\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Spatie", + "email": "info@spatie.be", + "role": "Developer" + } + ], + "description": "A beautiful error page for PHP applications.", + "homepage": "https://flareapp.io/ignition", + "keywords": [ + "error", + "flare", + "laravel", + "page" + ], + "support": { + "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction", + "forum": "https://twitter.com/flareappio", + "issues": "https://github.com/spatie/ignition/issues", + "source": "https://github.com/spatie/ignition" + }, + "funding": [ + { + "url": "https://github.com/spatie", + "type": "github" + } + ], + "time": "2025-02-21T14:31:39+00:00" + }, + { + "name": "spatie/laravel-ignition", + "version": "2.9.1", + "source": { + "type": "git", + "url": "https://github.com/spatie/laravel-ignition.git", + "reference": "1baee07216d6748ebd3a65ba97381b051838707a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/1baee07216d6748ebd3a65ba97381b051838707a", + "reference": "1baee07216d6748ebd3a65ba97381b051838707a", + "shasum": "" + }, + "require": { + "ext-curl": "*", + "ext-json": "*", + "ext-mbstring": "*", + "illuminate/support": "^10.0|^11.0|^12.0", + "php": "^8.1", + "spatie/ignition": "^1.15", + "symfony/console": "^6.2.3|^7.0", + "symfony/var-dumper": "^6.2.3|^7.0" + }, + "require-dev": { + "livewire/livewire": "^2.11|^3.3.5", + "mockery/mockery": "^1.5.1", + "openai-php/client": "^0.8.1|^0.10", + "orchestra/testbench": "8.22.3|^9.0|^10.0", + "pestphp/pest": "^2.34|^3.7", + "phpstan/extension-installer": "^1.3.1", + "phpstan/phpstan-deprecation-rules": "^1.1.1|^2.0", + "phpstan/phpstan-phpunit": "^1.3.16|^2.0", + "vlucas/phpdotenv": "^5.5" + }, + "suggest": { + "openai-php/client": "Require get solutions from OpenAI", + "psr/simple-cache-implementation": "Needed to cache solutions from OpenAI" + }, + "type": "library", + "extra": { + "laravel": { + "aliases": { + "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare" + }, + "providers": [ + "Spatie\\LaravelIgnition\\IgnitionServiceProvider" + ] + } + }, + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Spatie\\LaravelIgnition\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Spatie", + "email": "info@spatie.be", + "role": "Developer" + } + ], + "description": "A beautiful error page for Laravel applications.", + "homepage": "https://flareapp.io/ignition", + "keywords": [ + "error", + "flare", + "laravel", + "page" + ], + "support": { + "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction", + "forum": "https://twitter.com/flareappio", + "issues": "https://github.com/spatie/laravel-ignition/issues", + "source": "https://github.com/spatie/laravel-ignition" + }, + "funding": [ + { + "url": "https://github.com/spatie", + "type": "github" + } + ], + "time": "2025-02-20T13:13:55+00:00" + }, + { + "name": "staabm/side-effects-detector", + "version": "1.0.5", + "source": { + "type": "git", + "url": "https://github.com/staabm/side-effects-detector.git", + "reference": "d8334211a140ce329c13726d4a715adbddd0a163" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163", + "reference": "d8334211a140ce329c13726d4a715adbddd0a163", + "shasum": "" + }, + "require": { + "ext-tokenizer": "*", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "phpstan/extension-installer": "^1.4.3", + "phpstan/phpstan": "^1.12.6", + "phpunit/phpunit": "^9.6.21", + "symfony/var-dumper": "^5.4.43", + "tomasvotruba/type-coverage": "1.0.0", + "tomasvotruba/unused-public": "1.0.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "lib/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "A static analysis tool to detect side effects in PHP code", + "keywords": [ + "static analysis" + ], + "support": { + "issues": "https://github.com/staabm/side-effects-detector/issues", + "source": "https://github.com/staabm/side-effects-detector/tree/1.0.5" + }, + "funding": [ + { + "url": "https://github.com/staabm", + "type": "github" + } + ], + "time": "2024-10-20T05:08:20+00:00" + }, + { + "name": "symfony/yaml", + "version": "v7.2.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/yaml.git", + "reference": "0feafffb843860624ddfd13478f481f4c3cd8b23" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/yaml/zipball/0feafffb843860624ddfd13478f481f4c3cd8b23", + "reference": "0feafffb843860624ddfd13478f481f4c3cd8b23", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3.0", + "symfony/polyfill-ctype": "^1.8" + }, + "conflict": { + "symfony/console": "<6.4" + }, + "require-dev": { + "symfony/console": "^6.4|^7.0" + }, + "bin": [ + "Resources/bin/yaml-lint" + ], + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Yaml\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Loads and dumps YAML files", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/yaml/tree/v7.2.6" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-04-04T10:10:11+00:00" + }, + { + "name": "theseer/tokenizer", + "version": "1.2.3", + "source": { + "type": "git", + "url": "https://github.com/theseer/tokenizer.git", + "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2", + "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-tokenizer": "*", + "ext-xmlwriter": "*", + "php": "^7.2 || ^8.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + } + ], + "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", + "support": { + "issues": "https://github.com/theseer/tokenizer/issues", + "source": "https://github.com/theseer/tokenizer/tree/1.2.3" + }, + "funding": [ + { + "url": "https://github.com/theseer", + "type": "github" + } + ], + "time": "2024-03-03T12:36:25+00:00" + } + ], + "aliases": [], + "minimum-stability": "stable", + "stability-flags": [], + "prefer-stable": true, + "prefer-lowest": false, + "platform": { + "php": "^8.2" + }, + "platform-dev": [], + "plugin-api-version": "2.6.0" +} diff --git a/config/app.php b/config/app.php new file mode 100644 index 0000000..f467267 --- /dev/null +++ b/config/app.php @@ -0,0 +1,126 @@ + env('APP_NAME', 'Laravel'), + + /* + |-------------------------------------------------------------------------- + | Application Environment + |-------------------------------------------------------------------------- + | + | This value determines the "environment" your application is currently + | running in. This may determine how you prefer to configure various + | services the application utilizes. Set this in your ".env" file. + | + */ + + 'env' => env('APP_ENV', 'production'), + + /* + |-------------------------------------------------------------------------- + | Application Debug Mode + |-------------------------------------------------------------------------- + | + | When your application is in debug mode, detailed error messages with + | stack traces will be shown on every error that occurs within your + | application. If disabled, a simple generic error page is shown. + | + */ + + 'debug' => (bool) env('APP_DEBUG', false), + + /* + |-------------------------------------------------------------------------- + | Application URL + |-------------------------------------------------------------------------- + | + | This URL is used by the console to properly generate URLs when using + | the Artisan command line tool. You should set this to the root of + | the application so that it's available within Artisan commands. + | + */ + + 'url' => env('APP_URL', 'http://localhost'), + + /* + |-------------------------------------------------------------------------- + | Application Timezone + |-------------------------------------------------------------------------- + | + | Here you may specify the default timezone for your application, which + | will be used by the PHP date and date-time functions. The timezone + | is set to "UTC" by default as it is suitable for most use cases. + | + */ + + 'timezone' => env('APP_TIMEZONE', 'UTC'), + + /* + |-------------------------------------------------------------------------- + | Application Locale Configuration + |-------------------------------------------------------------------------- + | + | The application locale determines the default locale that will be used + | by Laravel's translation / localization methods. This option can be + | set to any locale for which you plan to have translation strings. + | + */ + + 'locale' => env('APP_LOCALE', 'en'), + + 'fallback_locale' => env('APP_FALLBACK_LOCALE', 'en'), + + 'faker_locale' => env('APP_FAKER_LOCALE', 'en_US'), + + /* + |-------------------------------------------------------------------------- + | Encryption Key + |-------------------------------------------------------------------------- + | + | This key is utilized by Laravel's encryption services and should be set + | to a random, 32 character string to ensure that all encrypted values + | are secure. You should do this prior to deploying the application. + | + */ + + 'cipher' => 'AES-256-CBC', + + 'key' => env('APP_KEY'), + + 'previous_keys' => [ + ...array_filter( + explode(',', env('APP_PREVIOUS_KEYS', '')) + ), + ], + + /* + |-------------------------------------------------------------------------- + | Maintenance Mode Driver + |-------------------------------------------------------------------------- + | + | These configuration options determine the driver used to determine and + | manage Laravel's "maintenance mode" status. The "cache" driver will + | allow maintenance mode to be controlled across multiple machines. + | + | Supported drivers: "file", "cache" + | + */ + + 'maintenance' => [ + 'driver' => env('APP_MAINTENANCE_DRIVER', 'file'), + 'store' => env('APP_MAINTENANCE_STORE', 'database'), + ], + +]; diff --git a/config/auth.php b/config/auth.php new file mode 100644 index 0000000..0ba5d5d --- /dev/null +++ b/config/auth.php @@ -0,0 +1,115 @@ + [ + 'guard' => env('AUTH_GUARD', 'web'), + 'passwords' => env('AUTH_PASSWORD_BROKER', 'users'), + ], + + /* + |-------------------------------------------------------------------------- + | Authentication Guards + |-------------------------------------------------------------------------- + | + | Next, you may define every authentication guard for your application. + | Of course, a great default configuration has been defined for you + | which utilizes session storage plus the Eloquent user provider. + | + | All authentication guards have a user provider, which defines how the + | users are actually retrieved out of your database or other storage + | system used by the application. Typically, Eloquent is utilized. + | + | Supported: "session" + | + */ + + 'guards' => [ + 'web' => [ + 'driver' => 'session', + 'provider' => 'users', + ], + ], + + /* + |-------------------------------------------------------------------------- + | User Providers + |-------------------------------------------------------------------------- + | + | All authentication guards have a user provider, which defines how the + | users are actually retrieved out of your database or other storage + | system used by the application. Typically, Eloquent is utilized. + | + | If you have multiple user tables or models you may configure multiple + | providers to represent the model / table. These providers may then + | be assigned to any extra authentication guards you have defined. + | + | Supported: "database", "eloquent" + | + */ + + 'providers' => [ + 'users' => [ + 'driver' => 'eloquent', + 'model' => env('AUTH_MODEL', App\Models\User::class), + ], + + // 'users' => [ + // 'driver' => 'database', + // 'table' => 'users', + // ], + ], + + /* + |-------------------------------------------------------------------------- + | Resetting Passwords + |-------------------------------------------------------------------------- + | + | These configuration options specify the behavior of Laravel's password + | reset functionality, including the table utilized for token storage + | and the user provider that is invoked to actually retrieve users. + | + | The expiry time is the number of minutes that each reset token will be + | considered valid. This security feature keeps tokens short-lived so + | they have less time to be guessed. You may change this as needed. + | + | The throttle setting is the number of seconds a user must wait before + | generating more password reset tokens. This prevents the user from + | quickly generating a very large amount of password reset tokens. + | + */ + + 'passwords' => [ + 'users' => [ + 'provider' => 'users', + 'table' => env('AUTH_PASSWORD_RESET_TOKEN_TABLE', 'password_reset_tokens'), + 'expire' => 60, + 'throttle' => 60, + ], + ], + + /* + |-------------------------------------------------------------------------- + | Password Confirmation Timeout + |-------------------------------------------------------------------------- + | + | Here you may define the amount of seconds before a password confirmation + | window expires and users are asked to re-enter their password via the + | confirmation screen. By default, the timeout lasts for three hours. + | + */ + + 'password_timeout' => env('AUTH_PASSWORD_TIMEOUT', 10800), + +]; diff --git a/config/cache.php b/config/cache.php new file mode 100644 index 0000000..925f7d2 --- /dev/null +++ b/config/cache.php @@ -0,0 +1,108 @@ + env('CACHE_STORE', 'database'), + + /* + |-------------------------------------------------------------------------- + | Cache Stores + |-------------------------------------------------------------------------- + | + | Here you may define all of the cache "stores" for your application as + | well as their drivers. You may even define multiple stores for the + | same cache driver to group types of items stored in your caches. + | + | Supported drivers: "array", "database", "file", "memcached", + | "redis", "dynamodb", "octane", "null" + | + */ + + 'stores' => [ + + 'array' => [ + 'driver' => 'array', + 'serialize' => false, + ], + + 'database' => [ + 'driver' => 'database', + 'connection' => env('DB_CACHE_CONNECTION'), + 'table' => env('DB_CACHE_TABLE', 'cache'), + 'lock_connection' => env('DB_CACHE_LOCK_CONNECTION'), + 'lock_table' => env('DB_CACHE_LOCK_TABLE'), + ], + + 'file' => [ + 'driver' => 'file', + 'path' => storage_path('framework/cache/data'), + 'lock_path' => storage_path('framework/cache/data'), + ], + + 'memcached' => [ + 'driver' => 'memcached', + 'persistent_id' => env('MEMCACHED_PERSISTENT_ID'), + 'sasl' => [ + env('MEMCACHED_USERNAME'), + env('MEMCACHED_PASSWORD'), + ], + 'options' => [ + // Memcached::OPT_CONNECT_TIMEOUT => 2000, + ], + 'servers' => [ + [ + 'host' => env('MEMCACHED_HOST', '127.0.0.1'), + 'port' => env('MEMCACHED_PORT', 11211), + 'weight' => 100, + ], + ], + ], + + 'redis' => [ + 'driver' => 'redis', + 'connection' => env('REDIS_CACHE_CONNECTION', 'cache'), + 'lock_connection' => env('REDIS_CACHE_LOCK_CONNECTION', 'default'), + ], + + 'dynamodb' => [ + 'driver' => 'dynamodb', + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), + 'table' => env('DYNAMODB_CACHE_TABLE', 'cache'), + 'endpoint' => env('DYNAMODB_ENDPOINT'), + ], + + 'octane' => [ + 'driver' => 'octane', + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Cache Key Prefix + |-------------------------------------------------------------------------- + | + | When utilizing the APC, database, memcached, Redis, and DynamoDB cache + | stores, there might be other applications using the same cache. For + | that reason, you may prefix every cache key to avoid collisions. + | + */ + + 'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache_'), + +]; diff --git a/config/database.php b/config/database.php new file mode 100644 index 0000000..8da980b --- /dev/null +++ b/config/database.php @@ -0,0 +1,173 @@ + env('DB_CONNECTION', 'sqlite'), + + /* + |-------------------------------------------------------------------------- + | Database Connections + |-------------------------------------------------------------------------- + | + | Below are all of the database connections defined for your application. + | An example configuration is provided for each database system which + | is supported by Laravel. You're free to add / remove connections. + | + */ + + 'connections' => [ + + 'sqlite' => [ + 'driver' => 'sqlite', + 'url' => env('DB_URL'), + 'database' => env('DB_DATABASE', database_path('database.sqlite')), + 'prefix' => '', + 'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true), + 'busy_timeout' => null, + 'journal_mode' => null, + 'synchronous' => null, + ], + + 'mysql' => [ + 'driver' => 'mysql', + 'url' => env('DB_URL'), + 'host' => env('DB_HOST', 'localhost'), + 'port' => env('DB_PORT', '3306'), + 'database' => env('DB_DATABASE', 'oyiwebid_dijee'), + 'username' => env('DB_USERNAME', 'oyiwebid_kevin'), + 'password' => env('DB_PASSWORD', 'exmCmcFw@!)H'), + 'unix_socket' => env('DB_SOCKET', ''), + 'charset' => env('DB_CHARSET', 'utf8mb4'), + 'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'), + 'prefix' => '', + 'prefix_indexes' => true, + 'strict' => true, + 'engine' => null, + 'options' => extension_loaded('pdo_mysql') ? array_filter([ + PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'), + ]) : [], + ], + + 'mariadb' => [ + 'driver' => 'mariadb', + 'url' => env('DB_URL'), + 'host' => env('DB_HOST', '127.0.0.1'), + 'port' => env('DB_PORT', '3306'), + 'database' => env('DB_DATABASE', 'laravel'), + 'username' => env('DB_USERNAME', 'root'), + 'password' => env('DB_PASSWORD', ''), + 'unix_socket' => env('DB_SOCKET', ''), + 'charset' => env('DB_CHARSET', 'utf8mb4'), + 'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'), + 'prefix' => '', + 'prefix_indexes' => true, + 'strict' => true, + 'engine' => null, + 'options' => extension_loaded('pdo_mysql') ? array_filter([ + PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'), + ]) : [], + ], + + 'pgsql' => [ + 'driver' => 'pgsql', + 'url' => env('DB_URL'), + 'host' => env('DB_HOST', '127.0.0.1'), + 'port' => env('DB_PORT', '5432'), + 'database' => env('DB_DATABASE', 'laravel'), + 'username' => env('DB_USERNAME', 'root'), + 'password' => env('DB_PASSWORD', ''), + 'charset' => env('DB_CHARSET', 'utf8'), + 'prefix' => '', + 'prefix_indexes' => true, + 'search_path' => 'public', + 'sslmode' => 'prefer', + ], + + 'sqlsrv' => [ + 'driver' => 'sqlsrv', + 'url' => env('DB_URL'), + 'host' => env('DB_HOST', 'localhost'), + 'port' => env('DB_PORT', '1433'), + 'database' => env('DB_DATABASE', 'laravel'), + 'username' => env('DB_USERNAME', 'root'), + 'password' => env('DB_PASSWORD', ''), + 'charset' => env('DB_CHARSET', 'utf8'), + 'prefix' => '', + 'prefix_indexes' => true, + // 'encrypt' => env('DB_ENCRYPT', 'yes'), + // 'trust_server_certificate' => env('DB_TRUST_SERVER_CERTIFICATE', 'false'), + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Migration Repository Table + |-------------------------------------------------------------------------- + | + | This table keeps track of all the migrations that have already run for + | your application. Using this information, we can determine which of + | the migrations on disk haven't actually been run on the database. + | + */ + + 'migrations' => [ + 'table' => 'migrations', + 'update_date_on_publish' => true, + ], + + /* + |-------------------------------------------------------------------------- + | Redis Databases + |-------------------------------------------------------------------------- + | + | Redis is an open source, fast, and advanced key-value store that also + | provides a richer body of commands than a typical key-value system + | such as Memcached. You may define your connection settings here. + | + */ + + 'redis' => [ + + 'client' => env('REDIS_CLIENT', 'phpredis'), + + 'options' => [ + 'cluster' => env('REDIS_CLUSTER', 'redis'), + 'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'), + ], + + 'default' => [ + 'url' => env('REDIS_URL'), + 'host' => env('REDIS_HOST', '127.0.0.1'), + 'username' => env('REDIS_USERNAME'), + 'password' => env('REDIS_PASSWORD'), + 'port' => env('REDIS_PORT', '6379'), + 'database' => env('REDIS_DB', '0'), + ], + + 'cache' => [ + 'url' => env('REDIS_URL'), + 'host' => env('REDIS_HOST', '127.0.0.1'), + 'username' => env('REDIS_USERNAME'), + 'password' => env('REDIS_PASSWORD'), + 'port' => env('REDIS_PORT', '6379'), + 'database' => env('REDIS_CACHE_DB', '1'), + ], + + ], + +]; diff --git a/config/filesystems.php b/config/filesystems.php new file mode 100644 index 0000000..3d671bd --- /dev/null +++ b/config/filesystems.php @@ -0,0 +1,80 @@ + env('FILESYSTEM_DISK', 'local'), + + /* + |-------------------------------------------------------------------------- + | Filesystem Disks + |-------------------------------------------------------------------------- + | + | Below you may configure as many filesystem disks as necessary, and you + | may even configure multiple disks for the same driver. Examples for + | most supported storage drivers are configured here for reference. + | + | Supported drivers: "local", "ftp", "sftp", "s3" + | + */ + + 'disks' => [ + + 'local' => [ + 'driver' => 'local', + 'root' => storage_path('app/private'), + 'serve' => true, + 'throw' => false, + 'report' => false, + ], + + 'public' => [ + 'driver' => 'local', + 'root' => storage_path('app/public'), + 'url' => env('APP_URL').'/storage', + 'visibility' => 'public', + 'throw' => false, + 'report' => false, + ], + + 's3' => [ + 'driver' => 's3', + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'region' => env('AWS_DEFAULT_REGION'), + 'bucket' => env('AWS_BUCKET'), + 'url' => env('AWS_URL'), + 'endpoint' => env('AWS_ENDPOINT'), + 'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false), + 'throw' => false, + 'report' => false, + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Symbolic Links + |-------------------------------------------------------------------------- + | + | Here you may configure the symbolic links that will be created when the + | `storage:link` Artisan command is executed. The array keys should be + | the locations of the links and the values should be their targets. + | + */ + + 'links' => [ + public_path('storage') => storage_path('app/public'), + ], + +]; diff --git a/config/logging.php b/config/logging.php new file mode 100644 index 0000000..8d94292 --- /dev/null +++ b/config/logging.php @@ -0,0 +1,132 @@ + env('LOG_CHANNEL', 'stack'), + + /* + |-------------------------------------------------------------------------- + | Deprecations Log Channel + |-------------------------------------------------------------------------- + | + | This option controls the log channel that should be used to log warnings + | regarding deprecated PHP and library features. This allows you to get + | your application ready for upcoming major versions of dependencies. + | + */ + + 'deprecations' => [ + 'channel' => env('LOG_DEPRECATIONS_CHANNEL', 'null'), + 'trace' => env('LOG_DEPRECATIONS_TRACE', false), + ], + + /* + |-------------------------------------------------------------------------- + | Log Channels + |-------------------------------------------------------------------------- + | + | Here you may configure the log channels for your application. Laravel + | utilizes the Monolog PHP logging library, which includes a variety + | of powerful log handlers and formatters that you're free to use. + | + | Available drivers: "single", "daily", "slack", "syslog", + | "errorlog", "monolog", "custom", "stack" + | + */ + + 'channels' => [ + + 'stack' => [ + 'driver' => 'stack', + 'channels' => explode(',', env('LOG_STACK', 'single')), + 'ignore_exceptions' => false, + ], + + 'single' => [ + 'driver' => 'single', + 'path' => storage_path('logs/laravel.log'), + 'level' => env('LOG_LEVEL', 'debug'), + 'replace_placeholders' => true, + ], + + 'daily' => [ + 'driver' => 'daily', + 'path' => storage_path('logs/laravel.log'), + 'level' => env('LOG_LEVEL', 'debug'), + 'days' => env('LOG_DAILY_DAYS', 14), + 'replace_placeholders' => true, + ], + + 'slack' => [ + 'driver' => 'slack', + 'url' => env('LOG_SLACK_WEBHOOK_URL'), + 'username' => env('LOG_SLACK_USERNAME', 'Laravel Log'), + 'emoji' => env('LOG_SLACK_EMOJI', ':boom:'), + 'level' => env('LOG_LEVEL', 'critical'), + 'replace_placeholders' => true, + ], + + 'papertrail' => [ + 'driver' => 'monolog', + 'level' => env('LOG_LEVEL', 'debug'), + 'handler' => env('LOG_PAPERTRAIL_HANDLER', SyslogUdpHandler::class), + 'handler_with' => [ + 'host' => env('PAPERTRAIL_URL'), + 'port' => env('PAPERTRAIL_PORT'), + 'connectionString' => 'tls://'.env('PAPERTRAIL_URL').':'.env('PAPERTRAIL_PORT'), + ], + 'processors' => [PsrLogMessageProcessor::class], + ], + + 'stderr' => [ + 'driver' => 'monolog', + 'level' => env('LOG_LEVEL', 'debug'), + 'handler' => StreamHandler::class, + 'formatter' => env('LOG_STDERR_FORMATTER'), + 'with' => [ + 'stream' => 'php://stderr', + ], + 'processors' => [PsrLogMessageProcessor::class], + ], + + 'syslog' => [ + 'driver' => 'syslog', + 'level' => env('LOG_LEVEL', 'debug'), + 'facility' => env('LOG_SYSLOG_FACILITY', LOG_USER), + 'replace_placeholders' => true, + ], + + 'errorlog' => [ + 'driver' => 'errorlog', + 'level' => env('LOG_LEVEL', 'debug'), + 'replace_placeholders' => true, + ], + + 'null' => [ + 'driver' => 'monolog', + 'handler' => NullHandler::class, + ], + + 'emergency' => [ + 'path' => storage_path('logs/laravel.log'), + ], + + ], + +]; diff --git a/config/mail.php b/config/mail.php new file mode 100644 index 0000000..0d6d92e --- /dev/null +++ b/config/mail.php @@ -0,0 +1,48 @@ + env('MAIL_MAILER', 'smtp'), + + 'mailers' => [ + 'smtp' => [ + 'transport' => 'smtp', + 'host' => env('MAIL_HOST', 'smtp.mailgun.org'), + 'port' => env('MAIL_PORT', 587), + 'encryption' => env('MAIL_ENCRYPTION', 'tls'), + 'username' => env('MAIL_USERNAME'), + 'password' => env('MAIL_PASSWORD'), + 'timeout' => null, + 'local_domain' => env('MAIL_EHLO_DOMAIN'), + ], + + 'ses' => [ + 'transport' => 'ses', + ], + + 'mailgun' => [ + 'transport' => 'mailgun', + ], + + 'log' => [ + 'transport' => 'log', + 'channel' => env('MAIL_LOG_CHANNEL'), + ], + + 'array' => [ + 'transport' => 'array', + ], + ], + + 'from' => [ + 'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'), + 'name' => env('MAIL_FROM_NAME', 'Example'), + ], + + 'markdown' => [ + 'theme' => 'default', + + 'paths' => [ + resource_path('views/vendor/mail'), + ], + ], +]; \ No newline at end of file diff --git a/config/midtrans.php b/config/midtrans.php new file mode 100644 index 0000000..0a9f28a --- /dev/null +++ b/config/midtrans.php @@ -0,0 +1,67 @@ + env('MIDTRANS_MERCHANT_ID', ''), + 'client_key' => env('MIDTRANS_CLIENT_KEY', 'Mid-client-dGZpmVPgIuz0Y9tV'), + 'server_key' => env('MIDTRANS_SERVER_KEY', 'Mid-server-VvPKuiVcPnaxZXutJMKlXj-d'), + 'is_production' => env('MIDTRANS_IS_PRODUCTION', true), + + 'snap_url' => env('MIDTRANS_IS_PRODUCTION', true) + ? 'https://app.midtrans.com/snap/snap.js' + : 'https://app.sandbox.midtrans.com/snap/snap.js', + + 'finish_url' => env('APP_URL') . '/transaksi/finish', + 'unfinish_url' => env('APP_URL') . '/transaksi/unfinish', + 'error_url' => env('APP_URL') . '/transaksi/error', + + // Konfigurasi Snap + 'snap' => [ + 'callback_url' => env('MIDTRANS_SNAP_CALLBACK_URL', ''), + 'finish_url' => env('APP_URL') . '/transaksi/finish', + 'unfinish_url' => env('APP_URL') . '/transaksi/unfinish', + 'error_url' => env('APP_URL') . '/transaksi/error', + ], + + // Konfigurasi default untuk transaksi + 'transaction' => [ + 'payment_type' => 'bank_transfer', // bank_transfer, credit_card, e-wallet, dll + 'bank_transfer' => [ + 'bank' => 'bca', // bca, bni, mandiri, dll + ], + 'credit_card' => [ + 'secure' => true, + 'bank' => 'all', // all, bca, bni, mandiri, dll + 'installment' => [ + 'required' => false, + 'terms' => [ + 'bca' => [3, 6, 12], + 'bni' => [3, 6, 12], + 'mandiri' => [3, 6, 12], + ], + ], + ], + 'expiry' => [ + 'start_time' => '2024-01-01 00:00:00 +0700', + 'unit' => 'day', + 'duration' => 1, + ], + ], + + // Konfigurasi notifikasi + 'notification' => [ + 'enabled' => true, + 'url' => env('MIDTRANS_NOTIFICATION_URL', ''), + ], + + // Konfigurasi URL notifikasi + 'notification_url' => env('APP_URL') . '/transaksi/callback', +]; \ No newline at end of file diff --git a/config/queue.php b/config/queue.php new file mode 100644 index 0000000..116bd8d --- /dev/null +++ b/config/queue.php @@ -0,0 +1,112 @@ + env('QUEUE_CONNECTION', 'database'), + + /* + |-------------------------------------------------------------------------- + | Queue Connections + |-------------------------------------------------------------------------- + | + | Here you may configure the connection options for every queue backend + | used by your application. An example configuration is provided for + | each backend supported by Laravel. You're also free to add more. + | + | Drivers: "sync", "database", "beanstalkd", "sqs", "redis", "null" + | + */ + + 'connections' => [ + + 'sync' => [ + 'driver' => 'sync', + ], + + 'database' => [ + 'driver' => 'database', + 'connection' => env('DB_QUEUE_CONNECTION'), + 'table' => env('DB_QUEUE_TABLE', 'jobs'), + 'queue' => env('DB_QUEUE', 'default'), + 'retry_after' => (int) env('DB_QUEUE_RETRY_AFTER', 90), + 'after_commit' => false, + ], + + 'beanstalkd' => [ + 'driver' => 'beanstalkd', + 'host' => env('BEANSTALKD_QUEUE_HOST', 'localhost'), + 'queue' => env('BEANSTALKD_QUEUE', 'default'), + 'retry_after' => (int) env('BEANSTALKD_QUEUE_RETRY_AFTER', 90), + 'block_for' => 0, + 'after_commit' => false, + ], + + 'sqs' => [ + 'driver' => 'sqs', + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'), + 'queue' => env('SQS_QUEUE', 'default'), + 'suffix' => env('SQS_SUFFIX'), + 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), + 'after_commit' => false, + ], + + 'redis' => [ + 'driver' => 'redis', + 'connection' => env('REDIS_QUEUE_CONNECTION', 'default'), + 'queue' => env('REDIS_QUEUE', 'default'), + 'retry_after' => (int) env('REDIS_QUEUE_RETRY_AFTER', 90), + 'block_for' => null, + 'after_commit' => false, + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Job Batching + |-------------------------------------------------------------------------- + | + | The following options configure the database and table that store job + | batching information. These options can be updated to any database + | connection and table which has been defined by your application. + | + */ + + 'batching' => [ + 'database' => env('DB_CONNECTION', 'sqlite'), + 'table' => 'job_batches', + ], + + /* + |-------------------------------------------------------------------------- + | Failed Queue Jobs + |-------------------------------------------------------------------------- + | + | These options configure the behavior of failed queue job logging so you + | can control how and where failed jobs are stored. Laravel ships with + | support for storing failed jobs in a simple file or in a database. + | + | Supported drivers: "database-uuids", "dynamodb", "file", "null" + | + */ + + 'failed' => [ + 'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'), + 'database' => env('DB_CONNECTION', 'sqlite'), + 'table' => 'failed_jobs', + ], + +]; diff --git a/config/services.php b/config/services.php new file mode 100644 index 0000000..1fcc4ad --- /dev/null +++ b/config/services.php @@ -0,0 +1,50 @@ + [ + 'domain' => env('MAILGUN_DOMAIN'), + 'secret' => env('MAILGUN_SECRET'), + 'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'), + 'scheme' => 'https', + ], + + 'postmark' => [ + 'token' => env('POSTMARK_TOKEN'), + ], + + 'ses' => [ + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), + ], + + 'resend' => [ + 'key' => env('RESEND_KEY'), + ], + + 'slack' => [ + 'notifications' => [ + 'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'), + 'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'), + ], + ], + + 'rajaongkir' => [ + 'base_url' => env('RAJAONGKIR_BASE_URL', 'https://api.rajaongkir.com/starter'), + 'api_key' => env('RAJAONGKIR_API_KEY'), + ], + +]; diff --git a/config/session.php b/config/session.php new file mode 100644 index 0000000..d3b3037 --- /dev/null +++ b/config/session.php @@ -0,0 +1,217 @@ + env('SESSION_DRIVER', 'database'), + + /* + |-------------------------------------------------------------------------- + | Session Lifetime + |-------------------------------------------------------------------------- + | + | Here you may specify the number of minutes that you wish the session + | to be allowed to remain idle before it expires. If you want them + | to expire immediately when the browser is closed then you may + | indicate that via the expire_on_close configuration option. + | + */ + + 'lifetime' => env('SESSION_LIFETIME', 120), + + 'expire_on_close' => false, + + /* + |-------------------------------------------------------------------------- + | Session Encryption + |-------------------------------------------------------------------------- + | + | This option allows you to easily specify that all of your session data + | should be encrypted before it's stored. All encryption is performed + | automatically by Laravel and you may use the session like normal. + | + */ + + 'encrypt' => false, + + /* + |-------------------------------------------------------------------------- + | Session File Location + |-------------------------------------------------------------------------- + | + | When utilizing the "file" session driver, the session files are placed + | on disk. The default storage location is defined here; however, you + | are free to provide another location where they should be stored. + | + */ + + 'files' => storage_path('framework/sessions'), + + /* + |-------------------------------------------------------------------------- + | Session Database Connection + |-------------------------------------------------------------------------- + | + | When using the "database" or "redis" session drivers, you may specify a + | connection that should be used to manage these sessions. This should + | correspond to a connection in your database configuration options. + | + */ + + 'connection' => env('SESSION_CONNECTION'), + + /* + |-------------------------------------------------------------------------- + | Session Database Table + |-------------------------------------------------------------------------- + | + | When using the "database" session driver, you may specify the table to + | be used to store sessions. Of course, a sensible default is defined + | for you; however, you're welcome to change this to another table. + | + */ + + 'table' => 'sessions', + + /* + |-------------------------------------------------------------------------- + | Session Cache Store + |-------------------------------------------------------------------------- + | + | When using one of the framework's cache driven session backends, you may + | define the cache store which should be used to store the session data + | between requests. This must match one of your defined cache stores. + | + | Affects: "apc", "dynamodb", "memcached", "redis" + | + */ + + 'store' => env('SESSION_STORE'), + + /* + |-------------------------------------------------------------------------- + | Session Sweeping Lottery + |-------------------------------------------------------------------------- + | + | Some session drivers must manually sweep their storage location to get + | rid of old sessions from storage. Here are the chances that it will + | happen on a given request. By default, the odds are 2 out of 100. + | + */ + + 'lottery' => [2, 100], + + /* + |-------------------------------------------------------------------------- + | Session Cookie Name + |-------------------------------------------------------------------------- + | + | Here you may change the name of the session cookie that is created by + | the framework. Typically, you should not need to change this value + | since doing so does not grant a meaningful security improvement. + | + */ + + 'cookie' => env( + 'SESSION_COOKIE', + Str::slug(env('APP_NAME', 'laravel'), '_') . '_session' + ), + + /* + |-------------------------------------------------------------------------- + | Session Cookie Path + |-------------------------------------------------------------------------- + | + | The session cookie path determines the path for which the cookie will + | be regarded as available. Typically, this will be the root path of + | your application, but you're free to change this when necessary. + | + */ + + 'path' => '/', + + /* + |-------------------------------------------------------------------------- + | Session Cookie Domain + |-------------------------------------------------------------------------- + | + | This value determines the domain and subdomains the session cookie is + | available to. By default, the cookie will be available to the root + | domain and all subdomains. Typically, this shouldn't be changed. + | + */ + + 'domain' => env('SESSION_DOMAIN'), + + /* + |-------------------------------------------------------------------------- + | HTTPS Only Cookies + |-------------------------------------------------------------------------- + | + | By setting this option to true, session cookies will only be sent back + | to the server if the browser has a HTTPS connection. This will keep + | the cookie from being sent to you when it can't be done securely. + | + */ + + 'secure' => env('SESSION_SECURE_COOKIE'), + + /* + |-------------------------------------------------------------------------- + | HTTP Access Only + |-------------------------------------------------------------------------- + | + | Setting this value to true will prevent JavaScript from accessing the + | value of the cookie and the cookie will only be accessible through + | the HTTP protocol. It's unlikely you should disable this option. + | + */ + + 'http_only' => true, + + /* + |-------------------------------------------------------------------------- + | Same-Site Cookies + |-------------------------------------------------------------------------- + | + | This option determines how your cookies behave when cross-site requests + | take place, and can be used to mitigate CSRF attacks. By default, we + | will set this value to "lax" to permit secure cross-site requests. + | + | See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#samesitesamesite-value + | + | Supported: "lax", "strict", "none", null + | + */ + + 'same_site' => 'lax', + + /* + |-------------------------------------------------------------------------- + | Partitioned Cookies + |-------------------------------------------------------------------------- + | + | Setting this value to true will tie the cookie to the top-level site for + | a cross-site context. Partitioned cookies are accepted by the browser + | when flagged "secure" and the Same-Site attribute is set to "none". + | + */ + + 'partitioned' => env('SESSION_PARTITIONED_COOKIE', false), + +]; diff --git a/database/.gitignore b/database/.gitignore new file mode 100644 index 0000000..9b19b93 --- /dev/null +++ b/database/.gitignore @@ -0,0 +1 @@ +*.sqlite* diff --git a/database/factories/UserFactory.php b/database/factories/UserFactory.php new file mode 100644 index 0000000..584104c --- /dev/null +++ b/database/factories/UserFactory.php @@ -0,0 +1,44 @@ + + */ +class UserFactory extends Factory +{ + /** + * The current password being used by the factory. + */ + protected static ?string $password; + + /** + * Define the model's default state. + * + * @return array + */ + public function definition(): array + { + return [ + 'name' => fake()->name(), + 'email' => fake()->unique()->safeEmail(), + 'email_verified_at' => now(), + 'password' => static::$password ??= Hash::make('password'), + 'remember_token' => Str::random(10), + ]; + } + + /** + * Indicate that the model's email address should be unverified. + */ + public function unverified(): static + { + return $this->state(fn (array $attributes) => [ + 'email_verified_at' => null, + ]); + } +} diff --git a/database/migrations/0001_01_01_000001_create_cache_table.php b/database/migrations/0001_01_01_000001_create_cache_table.php new file mode 100644 index 0000000..b9c106b --- /dev/null +++ b/database/migrations/0001_01_01_000001_create_cache_table.php @@ -0,0 +1,35 @@ +string('key')->primary(); + $table->mediumText('value'); + $table->integer('expiration'); + }); + + Schema::create('cache_locks', function (Blueprint $table) { + $table->string('key')->primary(); + $table->string('owner'); + $table->integer('expiration'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('cache'); + Schema::dropIfExists('cache_locks'); + } +}; diff --git a/database/migrations/0001_01_01_000002_create_jobs_table.php b/database/migrations/0001_01_01_000002_create_jobs_table.php new file mode 100644 index 0000000..425e705 --- /dev/null +++ b/database/migrations/0001_01_01_000002_create_jobs_table.php @@ -0,0 +1,57 @@ +id(); + $table->string('queue')->index(); + $table->longText('payload'); + $table->unsignedTinyInteger('attempts'); + $table->unsignedInteger('reserved_at')->nullable(); + $table->unsignedInteger('available_at'); + $table->unsignedInteger('created_at'); + }); + + Schema::create('job_batches', function (Blueprint $table) { + $table->string('id')->primary(); + $table->string('name'); + $table->integer('total_jobs'); + $table->integer('pending_jobs'); + $table->integer('failed_jobs'); + $table->longText('failed_job_ids'); + $table->mediumText('options')->nullable(); + $table->integer('cancelled_at')->nullable(); + $table->integer('created_at'); + $table->integer('finished_at')->nullable(); + }); + + Schema::create('failed_jobs', function (Blueprint $table) { + $table->id(); + $table->string('uuid')->unique(); + $table->text('connection'); + $table->text('queue'); + $table->longText('payload'); + $table->longText('exception'); + $table->timestamp('failed_at')->useCurrent(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('jobs'); + Schema::dropIfExists('job_batches'); + Schema::dropIfExists('failed_jobs'); + } +}; diff --git a/database/migrations/2014_10_12_000000_create_users_table.php b/database/migrations/2014_10_12_000000_create_users_table.php new file mode 100644 index 0000000..1f7428b --- /dev/null +++ b/database/migrations/2014_10_12_000000_create_users_table.php @@ -0,0 +1,27 @@ +id(); + $table->string('username')->unique(); + $table->string('nama'); + $table->string('email')->unique(); + $table->string('password'); + $table->enum('role', ['admin', 'customer'])->default('customer'); + $table->rememberToken(); + $table->timestamps(); + }); + } + + public function down() + { + Schema::dropIfExists('users'); + } +}; diff --git a/database/migrations/2014_10_12_000000_create_users_table.txt b/database/migrations/2014_10_12_000000_create_users_table.txt new file mode 100644 index 0000000..a56582c --- /dev/null +++ b/database/migrations/2014_10_12_000000_create_users_table.txt @@ -0,0 +1,27 @@ +id(); + $table->string('username')->unique(); + $table->string('nama'); + $table->string('alamat'); + $table->string('nomor_hp'); + $table->string('password'); + $table->rememberToken(); + $table->timestamps(); + }); + } + + public function down() + { + Schema::dropIfExists('users'); + } +}; diff --git a/database/migrations/2024_02_10_000000_create_barang_table.php b/database/migrations/2024_02_10_000000_create_barang_table.php new file mode 100644 index 0000000..3b90728 --- /dev/null +++ b/database/migrations/2024_02_10_000000_create_barang_table.php @@ -0,0 +1,27 @@ +id(); + $table->string('nama_barang'); + $table->text('deskripsi')->nullable(); + $table->decimal('harga', 10, 2); + $table->integer('stok'); + $table->string('gambar')->nullable(); + $table->string('kategori')->nullable(); + $table->timestamps(); + }); + } + + public function down() + { + Schema::dropIfExists('barang'); + } +}; diff --git a/database/migrations/2024_02_10_000001_create_pesanan_table.php b/database/migrations/2024_02_10_000001_create_pesanan_table.php new file mode 100644 index 0000000..4a3c8f7 --- /dev/null +++ b/database/migrations/2024_02_10_000001_create_pesanan_table.php @@ -0,0 +1,27 @@ +id(); + $table->foreignId('user_id')->constrained('users')->onDelete('cascade'); + $table->foreignId('barang_id')->constrained('barang')->onDelete('cascade'); + $table->integer('jumlah'); + $table->decimal('total_harga', 10, 2); + $table->enum('status', ['pending', 'diproses', 'dikirim', 'selesai', 'dibatalkan'])->default('pending'); + $table->text('catatan')->nullable(); + $table->timestamps(); + }); + } + + public function down() + { + Schema::dropIfExists('pesanan'); + } +}; diff --git a/database/migrations/2024_02_10_000002_create_transaksi_table.php b/database/migrations/2024_02_10_000002_create_transaksi_table.php new file mode 100644 index 0000000..3ba98aa --- /dev/null +++ b/database/migrations/2024_02_10_000002_create_transaksi_table.php @@ -0,0 +1,44 @@ +id(); + $table->foreignId('user_id')->constrained('users')->onDelete('cascade'); + $table->foreignId('pesanan_id')->constrained('pesanan')->onDelete('cascade'); + $table->string('kode_transaksi')->unique(); + $table->decimal('total_pembayaran', 10, 2); + $table->enum('metode_pembayaran', ['transfer', 'cod', 'bank_transfer', 'e_wallet', 'credit_card'])->default('transfer'); + $table->enum('status', ['menunggu_pembayaran', 'menunggu_konfirmasi', 'dibayar', 'batal', 'expired', 'failed'])->default('menunggu_pembayaran'); + $table->string('bukti_pembayaran')->nullable(); + $table->string('nama_penerima'); + $table->string('no_telp'); + $table->text('alamat'); + $table->text('catatan_pengiriman')->nullable(); + // Kolom untuk Midtrans + $table->string('midtrans_order_id')->nullable(); + $table->string('midtrans_transaction_id')->nullable(); + $table->string('midtrans_payment_type')->nullable(); + $table->string('midtrans_transaction_status')->nullable(); + $table->string('midtrans_va_number')->nullable(); + $table->string('midtrans_bank')->nullable(); + $table->string('midtrans_permata_va_number')->nullable(); + $table->string('midtrans_bill_key')->nullable(); + $table->string('midtrans_biller_code')->nullable(); + $table->string('midtrans_redirect_url')->nullable(); + $table->timestamp('midtrans_expiry_time')->nullable(); + $table->timestamps(); + }); + } + + public function down() + { + Schema::dropIfExists('transaksi'); + } +}; diff --git a/database/migrations/2024_02_11_000000_add_role_to_users_table.txt b/database/migrations/2024_02_11_000000_add_role_to_users_table.txt new file mode 100644 index 0000000..6e30e15 --- /dev/null +++ b/database/migrations/2024_02_11_000000_add_role_to_users_table.txt @@ -0,0 +1,22 @@ +enum('role', ['admin', 'customer'])->default('customer')->after('password'); + }); + } + + public function down() + { + Schema::table('users', function (Blueprint $table) { + $table->dropColumn('role'); + }); + } +}; diff --git a/database/migrations/2024_03_21_000000_add_google_auth_columns_to_users_table.php b/database/migrations/2024_03_21_000000_add_google_auth_columns_to_users_table.php new file mode 100644 index 0000000..337a529 --- /dev/null +++ b/database/migrations/2024_03_21_000000_add_google_auth_columns_to_users_table.php @@ -0,0 +1,34 @@ +string('alamat')->nullable(); + $table->string('google_id')->nullable(); + $table->string('avatar')->nullable(); + $table->timestamp('email_verified_at')->nullable(); + $table->string('google_token')->nullable(); + $table->string('google_refresh_token')->nullable(); + }); + } + + public function down() + { + Schema::table('users', function (Blueprint $table) { + $table->dropColumn([ + 'alamat', + 'google_id', + 'avatar', + 'email_verified_at', + 'google_token', + 'google_refresh_token' + ]); + }); + } +}; \ No newline at end of file diff --git a/database/migrations/2024_03_21_add_berat_to_barang_table.php b/database/migrations/2024_03_21_add_berat_to_barang_table.php new file mode 100644 index 0000000..fe8e279 --- /dev/null +++ b/database/migrations/2024_03_21_add_berat_to_barang_table.php @@ -0,0 +1,22 @@ +integer('berat')->default(1000)->after('stok'); // berat dalam gram + }); + } + + public function down() + { + Schema::table('barang', function (Blueprint $table) { + $table->dropColumn('berat'); + }); + } +}; \ No newline at end of file diff --git a/database/migrations/2024_03_21_add_email_verified_at_to_users_table.php b/database/migrations/2024_03_21_add_email_verified_at_to_users_table.php new file mode 100644 index 0000000..52cd593 --- /dev/null +++ b/database/migrations/2024_03_21_add_email_verified_at_to_users_table.php @@ -0,0 +1,26 @@ +timestamp('email_verified_at')->nullable(); + } + }); + } + + public function down() + { + Schema::table('users', function (Blueprint $table) { + if (Schema::hasColumn('users', 'email_verified_at')) { + $table->dropColumn('email_verified_at'); + } + }); + } +}; \ No newline at end of file diff --git a/database/migrations/2024_03_21_add_is_verified_to_users_table.php b/database/migrations/2024_03_21_add_is_verified_to_users_table.php new file mode 100644 index 0000000..6107101 --- /dev/null +++ b/database/migrations/2024_03_21_add_is_verified_to_users_table.php @@ -0,0 +1,22 @@ +boolean('is_verified')->default(0)->after('email'); + }); + } + + public function down() + { + Schema::table('users', function (Blueprint $table) { + $table->dropColumn('is_verified'); + }); + } +}; \ No newline at end of file diff --git a/database/migrations/2024_03_21_add_reset_password_columns_to_users_table.php b/database/migrations/2024_03_21_add_reset_password_columns_to_users_table.php new file mode 100644 index 0000000..2f52adc --- /dev/null +++ b/database/migrations/2024_03_21_add_reset_password_columns_to_users_table.php @@ -0,0 +1,24 @@ +string('reset_password_token', 64)->nullable(); + $table->timestamp('reset_password_expires_at')->nullable(); + }); + } + + public function down() + { + Schema::table('users', function (Blueprint $table) { + $table->dropColumn('reset_password_token'); + $table->dropColumn('reset_password_expires_at'); + }); + } +}; \ No newline at end of file diff --git a/database/migrations/2024_03_21_add_verification_token_to_users.php b/database/migrations/2024_03_21_add_verification_token_to_users.php new file mode 100644 index 0000000..4a046ce --- /dev/null +++ b/database/migrations/2024_03_21_add_verification_token_to_users.php @@ -0,0 +1,23 @@ +string('verification_token')->nullable()->after('email'); + $table->boolean('is_verified')->default(0)->after('verification_token'); + }); + } + + public function down() + { + Schema::table('users', function (Blueprint $table) { + $table->dropColumn(['verification_token', 'is_verified']); + }); + } +}; \ No newline at end of file diff --git a/database/migrations/2024_03_22_add_shipping_info_to_pesanan.php b/database/migrations/2024_03_22_add_shipping_info_to_pesanan.php new file mode 100644 index 0000000..f828202 --- /dev/null +++ b/database/migrations/2024_03_22_add_shipping_info_to_pesanan.php @@ -0,0 +1,36 @@ +json('shipping_info')->nullable()->after('catatan'); + $table->string('province_id')->nullable()->after('shipping_info'); + $table->string('city_id')->nullable()->after('province_id'); + $table->string('courier')->nullable()->after('city_id'); + $table->decimal('shipping_cost', 10, 2)->nullable()->after('courier'); + $table->string('shipping_service')->nullable()->after('shipping_cost'); + $table->string('shipping_etd')->nullable()->after('shipping_service'); + }); + } + + public function down() + { + Schema::table('pesanan', function (Blueprint $table) { + $table->dropColumn([ + 'shipping_info', + 'province_id', + 'city_id', + 'courier', + 'shipping_cost', + 'shipping_service', + 'shipping_etd' + ]); + }); + } +}; \ No newline at end of file diff --git a/database/migrations/2024_03_23_ensure_email_verified_at_column.php b/database/migrations/2024_03_23_ensure_email_verified_at_column.php new file mode 100644 index 0000000..5391f9d --- /dev/null +++ b/database/migrations/2024_03_23_ensure_email_verified_at_column.php @@ -0,0 +1,29 @@ +timestamp('email_verified_at')->nullable(); + } else { + // Ubah tipe kolom jika sudah ada + $table->timestamp('email_verified_at')->nullable()->change(); + } + }); + } + + public function down() + { + Schema::table('users', function (Blueprint $table) { + if (Schema::hasColumn('users', 'email_verified_at')) { + $table->dropColumn('email_verified_at'); + } + }); + } +} \ No newline at end of file diff --git a/database/migrations/2024_03_24_000000_create_courses_table.php b/database/migrations/2024_03_24_000000_create_courses_table.php new file mode 100644 index 0000000..ae89f6b --- /dev/null +++ b/database/migrations/2024_03_24_000000_create_courses_table.php @@ -0,0 +1,26 @@ +id(); + $table->string('kode_mk')->unique(); + $table->string('nama_mk'); + $table->integer('sks'); + $table->text('deskripsi')->nullable(); + $table->string('semester'); + $table->timestamps(); + }); + } + + public function down(): void + { + Schema::dropIfExists('courses'); + } +}; \ No newline at end of file diff --git a/database/migrations/2024_03_24_create_ongkir_table.php b/database/migrations/2024_03_24_create_ongkir_table.php new file mode 100644 index 0000000..79806a8 --- /dev/null +++ b/database/migrations/2024_03_24_create_ongkir_table.php @@ -0,0 +1,33 @@ +id(); + $table->string('province_id'); + $table->string('province_name'); + $table->string('city_id'); + $table->string('city_name'); + $table->decimal('jne_reg', 10, 2); + $table->decimal('jne_oke', 10, 2); + $table->decimal('jne_yes', 10, 2); + $table->decimal('pos_reg', 10, 2); + $table->decimal('pos_express', 10, 2); + $table->decimal('tiki_reg', 10, 2); + $table->decimal('tiki_eco', 10, 2); + $table->decimal('tiki_express', 10, 2); + $table->timestamps(); + }); + } + + public function down() + { + Schema::dropIfExists('ongkir'); + } +}; \ No newline at end of file diff --git a/database/migrations/2024_03_25_add_shipping_columns_to_pesanan_table.php b/database/migrations/2024_03_25_add_shipping_columns_to_pesanan_table.php new file mode 100644 index 0000000..c7bd3b1 --- /dev/null +++ b/database/migrations/2024_03_25_add_shipping_columns_to_pesanan_table.php @@ -0,0 +1,34 @@ +decimal('shipping_cost', 10, 2)->nullable(); + $table->string('shipping_service')->nullable(); + $table->string('shipping_etd')->nullable(); + $table->string('shipping_courier')->nullable(); + $table->string('shipping_province_id')->nullable(); + $table->string('shipping_city_id')->nullable(); + }); + } + + public function down() + { + Schema::table('pesanan', function (Blueprint $table) { + $table->dropColumn([ + 'shipping_cost', + 'shipping_service', + 'shipping_etd', + 'shipping_courier', + 'shipping_province_id', + 'shipping_city_id' + ]); + }); + } +}; \ No newline at end of file diff --git a/database/migrations/2024_03_25_create_pesanan_items_table.php b/database/migrations/2024_03_25_create_pesanan_items_table.php new file mode 100644 index 0000000..69d7036 --- /dev/null +++ b/database/migrations/2024_03_25_create_pesanan_items_table.php @@ -0,0 +1,25 @@ +id(); + $table->foreignId('pesanan_id')->constrained('pesanan')->onDelete('cascade'); + $table->foreignId('barang_id')->constrained('barang')->onDelete('cascade'); + $table->integer('jumlah'); + $table->decimal('total_harga', 10, 2); + $table->timestamps(); + }); + } + + public function down() + { + Schema::dropIfExists('pesanan_items'); + } +}; \ No newline at end of file diff --git a/database/migrations/2024_05_15_000000_create_keranjang_table.php b/database/migrations/2024_05_15_000000_create_keranjang_table.php new file mode 100644 index 0000000..e69de29 diff --git a/database/migrations/2025_02_10_153642_create_users_table.txt b/database/migrations/2025_02_10_153642_create_users_table.txt new file mode 100644 index 0000000..2777fd0 --- /dev/null +++ b/database/migrations/2025_02_10_153642_create_users_table.txt @@ -0,0 +1,29 @@ +id(); + $table->string('username')->unique(); + $table->string('password'); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('users'); + } +}; diff --git a/database/migrations/2025_02_10_154235_add_columns_to_users_table.php b/database/migrations/2025_02_10_154235_add_columns_to_users_table.php new file mode 100644 index 0000000..3210f08 --- /dev/null +++ b/database/migrations/2025_02_10_154235_add_columns_to_users_table.php @@ -0,0 +1,22 @@ +string('nomor_telp')->nullable(); // Kolom untuk nomor HP + }); + } + + /** + * Reverse the migrations. + */ +}; diff --git a/database/migrations/2025_02_10_154235_add_columns_to_users_table.txt b/database/migrations/2025_02_10_154235_add_columns_to_users_table.txt new file mode 100644 index 0000000..1dabf7b --- /dev/null +++ b/database/migrations/2025_02_10_154235_add_columns_to_users_table.txt @@ -0,0 +1,30 @@ +string('nama')->nullable(); // Kolom untuk nama + $table->string('alamat')->nullable(); // Kolom untuk alamat + $table->string('nomor_hp')->nullable(); // Kolom untuk nomor HP + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('users', function (Blueprint $table) { + $table->dropColumn(['nama', 'alamat', 'nomor_hp']); + }); + } +}; diff --git a/database/migrations/2025_02_11_163929_create_sessions_table.php b/database/migrations/2025_02_11_163929_create_sessions_table.php new file mode 100644 index 0000000..f60625b --- /dev/null +++ b/database/migrations/2025_02_11_163929_create_sessions_table.php @@ -0,0 +1,31 @@ +string('id')->primary(); + $table->foreignId('user_id')->nullable()->index(); + $table->string('ip_address', 45)->nullable(); + $table->text('user_agent')->nullable(); + $table->longText('payload'); + $table->integer('last_activity')->index(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('sessions'); + } +}; diff --git a/database/migrations/2025_04_30_075535_add_kategori_and_slug_to_barang_table.php b/database/migrations/2025_04_30_075535_add_kategori_and_slug_to_barang_table.php new file mode 100644 index 0000000..fdb6653 --- /dev/null +++ b/database/migrations/2025_04_30_075535_add_kategori_and_slug_to_barang_table.php @@ -0,0 +1,29 @@ +string('kategori')->after('gambar')->nullable(); + $table->string('slug')->after('kategori')->nullable(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('barang', function (Blueprint $table) { + $table->dropColumn(['kategori', 'slug']); + }); + } +}; diff --git a/database/migrations/2025_05_02_085606_create_banners_table.php b/database/migrations/2025_05_02_085606_create_banners_table.php new file mode 100644 index 0000000..b36a934 --- /dev/null +++ b/database/migrations/2025_05_02_085606_create_banners_table.php @@ -0,0 +1,35 @@ +id(); + $table->string('judul'); + $table->string('deskripsi')->nullable(); + $table->string('gambar'); // Path ke file gambar + $table->string('url')->nullable(); // URL tujuan ketika banner diklik + $table->boolean('aktif')->default(true); + $table->integer('urutan')->default(0); // Untuk mengurutkan banner + $table->timestamp('tanggal_mulai')->nullable(); + $table->timestamp('tanggal_selesai')->nullable(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('banners'); + } +}; diff --git a/database/migrations/2025_05_02_085611_create_flash_sales_table.php b/database/migrations/2025_05_02_085611_create_flash_sales_table.php new file mode 100644 index 0000000..4a947f3 --- /dev/null +++ b/database/migrations/2025_05_02_085611_create_flash_sales_table.php @@ -0,0 +1,33 @@ +id(); + $table->string('nama'); + $table->text('deskripsi')->nullable(); + $table->string('banner')->nullable(); // Gambar banner flash sale + $table->timestamp('waktu_mulai'); + $table->timestamp('waktu_selesai'); + $table->boolean('aktif')->default(false); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('flash_sales'); + } +}; diff --git a/database/migrations/2025_05_02_085617_create_flash_sale_items_table.php b/database/migrations/2025_05_02_085617_create_flash_sale_items_table.php new file mode 100644 index 0000000..5d0eb78 --- /dev/null +++ b/database/migrations/2025_05_02_085617_create_flash_sale_items_table.php @@ -0,0 +1,37 @@ +id(); + $table->foreignId('flash_sale_id')->constrained()->onDelete('cascade'); + $table->foreignId('barang_id')->constrained('barang')->onDelete('cascade'); + $table->integer('harga_flash_sale'); // Harga khusus selama flash sale + $table->integer('persentase_diskon')->nullable(); // Bisa diisi otomatis atau manual + $table->integer('stok_flash_sale'); // Berapa unit yang tersedia untuk flash sale + $table->integer('stok_terjual')->default(0); // Berapa unit yang sudah terjual + $table->boolean('aktif')->default(true); + $table->timestamps(); + + // Memastikan satu barang hanya muncul sekali dalam satu flash sale + $table->unique(['flash_sale_id', 'barang_id']); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('flash_sale_items'); + } +}; diff --git a/database/migrations/2025_05_14_182247_create_keranjang_table.php b/database/migrations/2025_05_14_182247_create_keranjang_table.php new file mode 100644 index 0000000..3338e8b --- /dev/null +++ b/database/migrations/2025_05_14_182247_create_keranjang_table.php @@ -0,0 +1,35 @@ +id(); + $table->foreignId('user_id')->constrained('users')->onDelete('cascade'); + $table->foreignId('barang_id')->constrained('barang')->onDelete('cascade'); + $table->integer('jumlah'); + $table->decimal('total_harga', 12, 2); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('keranjang'); + } +} \ No newline at end of file diff --git a/database/seeders/CustomerSeeder.php b/database/seeders/CustomerSeeder.php new file mode 100644 index 0000000..1fe650d --- /dev/null +++ b/database/seeders/CustomerSeeder.php @@ -0,0 +1,41 @@ + 'john_doe', + 'nama' => 'John Doe', + 'email' => 'john@example.com', + 'password' => Hash::make('password123'), + 'role' => 'customer', + ], + [ + 'username' => 'jane_doe', + 'nama' => 'Jane Doe', + 'email' => 'jane@example.com', + 'password' => Hash::make('password123'), + 'role' => 'customer', + ], + [ + 'username' => 'alice_smith', + 'nama' => 'Alice Smith', + 'email' => 'alice@example.com', + 'password' => Hash::make('password123'), + 'role' => 'customer', + ], + ]; + + foreach ($customers as $customer) { + User::create($customer); + } + } +} diff --git a/database/seeders/DatabaseSeeder.php b/database/seeders/DatabaseSeeder.php new file mode 100644 index 0000000..e71b420 --- /dev/null +++ b/database/seeders/DatabaseSeeder.php @@ -0,0 +1,17 @@ +call([ + UserSeeder::class, + CustomerSeeder::class, + OngkirSeeder::class, + ]); + } +} diff --git a/database/seeders/OngkirSeeder.php b/database/seeders/OngkirSeeder.php new file mode 100644 index 0000000..ea3be1b --- /dev/null +++ b/database/seeders/OngkirSeeder.php @@ -0,0 +1,1556 @@ + '6', + 'province_name' => 'DKI Jakarta', + 'city_id' => '151', + 'city_name' => 'Jakarta Pusat', + 'jne_reg' => 35000, + 'jne_oke' => 30000, + 'jne_yes' => 45000, + 'pos_reg' => 32000, + 'pos_express' => 40000, + 'tiki_reg' => 38000, + 'tiki_eco' => 32000, + 'tiki_express' => 42000 + ], + [ + 'province_id' => '6', + 'province_name' => 'DKI Jakarta', + 'city_id' => '152', + 'city_name' => 'Jakarta Utara', + 'jne_reg' => 35000, + 'jne_oke' => 30000, + 'jne_yes' => 45000, + 'pos_reg' => 32000, + 'pos_express' => 40000, + 'tiki_reg' => 38000, + 'tiki_eco' => 32000, + 'tiki_express' => 42000 + ], + [ + 'province_id' => '6', + 'province_name' => 'DKI Jakarta', + 'city_id' => '153', + 'city_name' => 'Jakarta Barat', + 'jne_reg' => 35000, + 'jne_oke' => 30000, + 'jne_yes' => 45000, + 'pos_reg' => 32000, + 'pos_express' => 40000, + 'tiki_reg' => 38000, + 'tiki_eco' => 32000, + 'tiki_express' => 42000 + ], + [ + 'province_id' => '6', + 'province_name' => 'DKI Jakarta', + 'city_id' => '154', + 'city_name' => 'Jakarta Selatan', + 'jne_reg' => 35000, + 'jne_oke' => 30000, + 'jne_yes' => 45000, + 'pos_reg' => 32000, + 'pos_express' => 40000, + 'tiki_reg' => 38000, + 'tiki_eco' => 32000, + 'tiki_express' => 42000 + ], + [ + 'province_id' => '6', + 'province_name' => 'DKI Jakarta', + 'city_id' => '155', + 'city_name' => 'Jakarta Timur', + 'jne_reg' => 35000, + 'jne_oke' => 30000, + 'jne_yes' => 45000, + 'pos_reg' => 32000, + 'pos_express' => 40000, + 'tiki_reg' => 38000, + 'tiki_eco' => 32000, + 'tiki_express' => 42000 + ], + + // Jawa Barat + [ + 'province_id' => '9', + 'province_name' => 'Jawa Barat', + 'city_id' => '22', + 'city_name' => 'Bandung', + 'jne_reg' => 30000, + 'jne_oke' => 25000, + 'jne_yes' => 40000, + 'pos_reg' => 28000, + 'pos_express' => 35000, + 'tiki_reg' => 32000, + 'tiki_eco' => 27000, + 'tiki_express' => 38000 + ], + [ + 'province_id' => '9', + 'province_name' => 'Jawa Barat', + 'city_id' => '23', + 'city_name' => 'Bekasi', + 'jne_reg' => 32000, + 'jne_oke' => 27000, + 'jne_yes' => 42000, + 'pos_reg' => 30000, + 'pos_express' => 37000, + 'tiki_reg' => 34000, + 'tiki_eco' => 29000, + 'tiki_express' => 40000 + ], + [ + 'province_id' => '9', + 'province_name' => 'Jawa Barat', + 'city_id' => '24', + 'city_name' => 'Bogor', + 'jne_reg' => 32000, + 'jne_oke' => 27000, + 'jne_yes' => 42000, + 'pos_reg' => 30000, + 'pos_express' => 37000, + 'tiki_reg' => 34000, + 'tiki_eco' => 29000, + 'tiki_express' => 40000 + ], + [ + 'province_id' => '9', + 'province_name' => 'Jawa Barat', + 'city_id' => '25', + 'city_name' => 'Cimahi', + 'jne_reg' => 30000, + 'jne_oke' => 25000, + 'jne_yes' => 40000, + 'pos_reg' => 28000, + 'pos_express' => 35000, + 'tiki_reg' => 32000, + 'tiki_eco' => 27000, + 'tiki_express' => 38000 + ], + [ + 'province_id' => '9', + 'province_name' => 'Jawa Barat', + 'city_id' => '26', + 'city_name' => 'Depok', + 'jne_reg' => 32000, + 'jne_oke' => 27000, + 'jne_yes' => 42000, + 'pos_reg' => 30000, + 'pos_express' => 37000, + 'tiki_reg' => 34000, + 'tiki_eco' => 29000, + 'tiki_express' => 40000 + ], + + // Jawa Tengah + [ + 'province_id' => '10', + 'province_name' => 'Jawa Tengah', + 'city_id' => '327', + 'city_name' => 'Semarang', + 'jne_reg' => 25000, + 'jne_oke' => 20000, + 'jne_yes' => 35000, + 'pos_reg' => 23000, + 'pos_express' => 30000, + 'tiki_reg' => 27000, + 'tiki_eco' => 22000, + 'tiki_express' => 32000 + ], + [ + 'province_id' => '10', + 'province_name' => 'Jawa Tengah', + 'city_id' => '328', + 'city_name' => 'Solo', + 'jne_reg' => 25000, + 'jne_oke' => 20000, + 'jne_yes' => 35000, + 'pos_reg' => 23000, + 'pos_express' => 30000, + 'tiki_reg' => 27000, + 'tiki_eco' => 22000, + 'tiki_express' => 32000 + ], + [ + 'province_id' => '10', + 'province_name' => 'Jawa Tengah', + 'city_id' => '329', + 'city_name' => 'Yogyakarta', + 'jne_reg' => 25000, + 'jne_oke' => 20000, + 'jne_yes' => 35000, + 'pos_reg' => 23000, + 'pos_express' => 30000, + 'tiki_reg' => 27000, + 'tiki_eco' => 22000, + 'tiki_express' => 32000 + ], + // Tambahan Kota di Jawa Tengah + [ + 'province_id' => '10', + 'province_name' => 'Jawa Tengah', + 'city_id' => '330', + 'city_name' => 'Salatiga', + 'jne_reg' => 25000, + 'jne_oke' => 20000, + 'jne_yes' => 35000, + 'pos_reg' => 23000, + 'pos_express' => 30000, + 'tiki_reg' => 27000, + 'tiki_eco' => 22000, + 'tiki_express' => 32000 + ], + [ + 'province_id' => '10', + 'province_name' => 'Jawa Tengah', + 'city_id' => '331', + 'city_name' => 'Magelang', + 'jne_reg' => 25000, + 'jne_oke' => 20000, + 'jne_yes' => 35000, + 'pos_reg' => 23000, + 'pos_express' => 30000, + 'tiki_reg' => 27000, + 'tiki_eco' => 22000, + 'tiki_express' => 32000 + ], + [ + 'province_id' => '10', + 'province_name' => 'Jawa Tengah', + 'city_id' => '332', + 'city_name' => 'Pekalongan', + 'jne_reg' => 25000, + 'jne_oke' => 20000, + 'jne_yes' => 35000, + 'pos_reg' => 23000, + 'pos_express' => 30000, + 'tiki_reg' => 27000, + 'tiki_eco' => 22000, + 'tiki_express' => 32000 + ], + [ + 'province_id' => '10', + 'province_name' => 'Jawa Tengah', + 'city_id' => '333', + 'city_name' => 'Tegal', + 'jne_reg' => 25000, + 'jne_oke' => 20000, + 'jne_yes' => 35000, + 'pos_reg' => 23000, + 'pos_express' => 30000, + 'tiki_reg' => 27000, + 'tiki_eco' => 22000, + 'tiki_express' => 32000 + ], + // Tambahan Kabupaten di Jawa Tengah + [ + 'province_id' => '10', + 'province_name' => 'Jawa Tengah', + 'city_id' => '334', + 'city_name' => 'Cilacap', + 'jne_reg' => 25000, + 'jne_oke' => 20000, + 'jne_yes' => 35000, + 'pos_reg' => 23000, + 'pos_express' => 30000, + 'tiki_reg' => 27000, + 'tiki_eco' => 22000, + 'tiki_express' => 32000 + ], + [ + 'province_id' => '10', + 'province_name' => 'Jawa Tengah', + 'city_id' => '335', + 'city_name' => 'Banyumas', + 'jne_reg' => 25000, + 'jne_oke' => 20000, + 'jne_yes' => 35000, + 'pos_reg' => 23000, + 'pos_express' => 30000, + 'tiki_reg' => 27000, + 'tiki_eco' => 22000, + 'tiki_express' => 32000 + ], + [ + 'province_id' => '10', + 'province_name' => 'Jawa Tengah', + 'city_id' => '336', + 'city_name' => 'Purbalingga', + 'jne_reg' => 25000, + 'jne_oke' => 20000, + 'jne_yes' => 35000, + 'pos_reg' => 23000, + 'pos_express' => 30000, + 'tiki_reg' => 27000, + 'tiki_eco' => 22000, + 'tiki_express' => 32000 + ], + [ + 'province_id' => '10', + 'province_name' => 'Jawa Tengah', + 'city_id' => '337', + 'city_name' => 'Banjarnegara', + 'jne_reg' => 25000, + 'jne_oke' => 20000, + 'jne_yes' => 35000, + 'pos_reg' => 23000, + 'pos_express' => 30000, + 'tiki_reg' => 27000, + 'tiki_eco' => 22000, + 'tiki_express' => 32000 + ], + [ + 'province_id' => '10', + 'province_name' => 'Jawa Tengah', + 'city_id' => '338', + 'city_name' => 'Kebumen', + 'jne_reg' => 25000, + 'jne_oke' => 20000, + 'jne_yes' => 35000, + 'pos_reg' => 23000, + 'pos_express' => 30000, + 'tiki_reg' => 27000, + 'tiki_eco' => 22000, + 'tiki_express' => 32000 + ], + [ + 'province_id' => '10', + 'province_name' => 'Jawa Tengah', + 'city_id' => '339', + 'city_name' => 'Purworejo', + 'jne_reg' => 25000, + 'jne_oke' => 20000, + 'jne_yes' => 35000, + 'pos_reg' => 23000, + 'pos_express' => 30000, + 'tiki_reg' => 27000, + 'tiki_eco' => 22000, + 'tiki_express' => 32000 + ], + [ + 'province_id' => '10', + 'province_name' => 'Jawa Tengah', + 'city_id' => '340', + 'city_name' => 'Wonosobo', + 'jne_reg' => 25000, + 'jne_oke' => 20000, + 'jne_yes' => 35000, + 'pos_reg' => 23000, + 'pos_express' => 30000, + 'tiki_reg' => 27000, + 'tiki_eco' => 22000, + 'tiki_express' => 32000 + ], + [ + 'province_id' => '10', + 'province_name' => 'Jawa Tengah', + 'city_id' => '341', + 'city_name' => 'Magelang', + 'jne_reg' => 25000, + 'jne_oke' => 20000, + 'jne_yes' => 35000, + 'pos_reg' => 23000, + 'pos_express' => 30000, + 'tiki_reg' => 27000, + 'tiki_eco' => 22000, + 'tiki_express' => 32000 + ], + [ + 'province_id' => '10', + 'province_name' => 'Jawa Tengah', + 'city_id' => '342', + 'city_name' => 'Boyolali', + 'jne_reg' => 25000, + 'jne_oke' => 20000, + 'jne_yes' => 35000, + 'pos_reg' => 23000, + 'pos_express' => 30000, + 'tiki_reg' => 27000, + 'tiki_eco' => 22000, + 'tiki_express' => 32000 + ], + [ + 'province_id' => '10', + 'province_name' => 'Jawa Tengah', + 'city_id' => '343', + 'city_name' => 'Klaten', + 'jne_reg' => 25000, + 'jne_oke' => 20000, + 'jne_yes' => 35000, + 'pos_reg' => 23000, + 'pos_express' => 30000, + 'tiki_reg' => 27000, + 'tiki_eco' => 22000, + 'tiki_express' => 32000 + ], + [ + 'province_id' => '10', + 'province_name' => 'Jawa Tengah', + 'city_id' => '344', + 'city_name' => 'Sukoharjo', + 'jne_reg' => 25000, + 'jne_oke' => 20000, + 'jne_yes' => 35000, + 'pos_reg' => 23000, + 'pos_express' => 30000, + 'tiki_reg' => 27000, + 'tiki_eco' => 22000, + 'tiki_express' => 32000 + ], + [ + 'province_id' => '10', + 'province_name' => 'Jawa Tengah', + 'city_id' => '345', + 'city_name' => 'Wonogiri', + 'jne_reg' => 25000, + 'jne_oke' => 20000, + 'jne_yes' => 35000, + 'pos_reg' => 23000, + 'pos_express' => 30000, + 'tiki_reg' => 27000, + 'tiki_eco' => 22000, + 'tiki_express' => 32000 + ], + [ + 'province_id' => '10', + 'province_name' => 'Jawa Tengah', + 'city_id' => '346', + 'city_name' => 'Karanganyar', + 'jne_reg' => 25000, + 'jne_oke' => 20000, + 'jne_yes' => 35000, + 'pos_reg' => 23000, + 'pos_express' => 30000, + 'tiki_reg' => 27000, + 'tiki_eco' => 22000, + 'tiki_express' => 32000 + ], + [ + 'province_id' => '10', + 'province_name' => 'Jawa Tengah', + 'city_id' => '347', + 'city_name' => 'Sragen', + 'jne_reg' => 25000, + 'jne_oke' => 20000, + 'jne_yes' => 35000, + 'pos_reg' => 23000, + 'pos_express' => 30000, + 'tiki_reg' => 27000, + 'tiki_eco' => 22000, + 'tiki_express' => 32000 + ], + [ + 'province_id' => '10', + 'province_name' => 'Jawa Tengah', + 'city_id' => '348', + 'city_name' => 'Grobogan', + 'jne_reg' => 25000, + 'jne_oke' => 20000, + 'jne_yes' => 35000, + 'pos_reg' => 23000, + 'pos_express' => 30000, + 'tiki_reg' => 27000, + 'tiki_eco' => 22000, + 'tiki_express' => 32000 + ], + [ + 'province_id' => '10', + 'province_name' => 'Jawa Tengah', + 'city_id' => '349', + 'city_name' => 'Blora', + 'jne_reg' => 25000, + 'jne_oke' => 20000, + 'jne_yes' => 35000, + 'pos_reg' => 23000, + 'pos_express' => 30000, + 'tiki_reg' => 27000, + 'tiki_eco' => 22000, + 'tiki_express' => 32000 + ], + [ + 'province_id' => '10', + 'province_name' => 'Jawa Tengah', + 'city_id' => '350', + 'city_name' => 'Rembang', + 'jne_reg' => 25000, + 'jne_oke' => 20000, + 'jne_yes' => 35000, + 'pos_reg' => 23000, + 'pos_express' => 30000, + 'tiki_reg' => 27000, + 'tiki_eco' => 22000, + 'tiki_express' => 32000 + ], + [ + 'province_id' => '10', + 'province_name' => 'Jawa Tengah', + 'city_id' => '351', + 'city_name' => 'Pati', + 'jne_reg' => 25000, + 'jne_oke' => 20000, + 'jne_yes' => 35000, + 'pos_reg' => 23000, + 'pos_express' => 30000, + 'tiki_reg' => 27000, + 'tiki_eco' => 22000, + 'tiki_express' => 32000 + ], + [ + 'province_id' => '10', + 'province_name' => 'Jawa Tengah', + 'city_id' => '352', + 'city_name' => 'Kudus', + 'jne_reg' => 25000, + 'jne_oke' => 20000, + 'jne_yes' => 35000, + 'pos_reg' => 23000, + 'pos_express' => 30000, + 'tiki_reg' => 27000, + 'tiki_eco' => 22000, + 'tiki_express' => 32000 + ], + [ + 'province_id' => '10', + 'province_name' => 'Jawa Tengah', + 'city_id' => '353', + 'city_name' => 'Jepara', + 'jne_reg' => 25000, + 'jne_oke' => 20000, + 'jne_yes' => 35000, + 'pos_reg' => 23000, + 'pos_express' => 30000, + 'tiki_reg' => 27000, + 'tiki_eco' => 22000, + 'tiki_express' => 32000 + ], + [ + 'province_id' => '10', + 'province_name' => 'Jawa Tengah', + 'city_id' => '354', + 'city_name' => 'Demak', + 'jne_reg' => 25000, + 'jne_oke' => 20000, + 'jne_yes' => 35000, + 'pos_reg' => 23000, + 'pos_express' => 30000, + 'tiki_reg' => 27000, + 'tiki_eco' => 22000, + 'tiki_express' => 32000 + ], + [ + 'province_id' => '10', + 'province_name' => 'Jawa Tengah', + 'city_id' => '355', + 'city_name' => 'Semarang', + 'jne_reg' => 25000, + 'jne_oke' => 20000, + 'jne_yes' => 35000, + 'pos_reg' => 23000, + 'pos_express' => 30000, + 'tiki_reg' => 27000, + 'tiki_eco' => 22000, + 'tiki_express' => 32000 + ], + [ + 'province_id' => '10', + 'province_name' => 'Jawa Tengah', + 'city_id' => '356', + 'city_name' => 'Temanggung', + 'jne_reg' => 25000, + 'jne_oke' => 20000, + 'jne_yes' => 35000, + 'pos_reg' => 23000, + 'pos_express' => 30000, + 'tiki_reg' => 27000, + 'tiki_eco' => 22000, + 'tiki_express' => 32000 + ], + [ + 'province_id' => '10', + 'province_name' => 'Jawa Tengah', + 'city_id' => '357', + 'city_name' => 'Kendal', + 'jne_reg' => 25000, + 'jne_oke' => 20000, + 'jne_yes' => 35000, + 'pos_reg' => 23000, + 'pos_express' => 30000, + 'tiki_reg' => 27000, + 'tiki_eco' => 22000, + 'tiki_express' => 32000 + ], + [ + 'province_id' => '10', + 'province_name' => 'Jawa Tengah', + 'city_id' => '358', + 'city_name' => 'Batang', + 'jne_reg' => 25000, + 'jne_oke' => 20000, + 'jne_yes' => 35000, + 'pos_reg' => 23000, + 'pos_express' => 30000, + 'tiki_reg' => 27000, + 'tiki_eco' => 22000, + 'tiki_express' => 32000 + ], + [ + 'province_id' => '10', + 'province_name' => 'Jawa Tengah', + 'city_id' => '359', + 'city_name' => 'Pekalongan', + 'jne_reg' => 25000, + 'jne_oke' => 20000, + 'jne_yes' => 35000, + 'pos_reg' => 23000, + 'pos_express' => 30000, + 'tiki_reg' => 27000, + 'tiki_eco' => 22000, + 'tiki_express' => 32000 + ], + [ + 'province_id' => '10', + 'province_name' => 'Jawa Tengah', + 'city_id' => '360', + 'city_name' => 'Pemalang', + 'jne_reg' => 25000, + 'jne_oke' => 20000, + 'jne_yes' => 35000, + 'pos_reg' => 23000, + 'pos_express' => 30000, + 'tiki_reg' => 27000, + 'tiki_eco' => 22000, + 'tiki_express' => 32000 + ], + [ + 'province_id' => '10', + 'province_name' => 'Jawa Tengah', + 'city_id' => '361', + 'city_name' => 'Tegal', + 'jne_reg' => 25000, + 'jne_oke' => 20000, + 'jne_yes' => 35000, + 'pos_reg' => 23000, + 'pos_express' => 30000, + 'tiki_reg' => 27000, + 'tiki_eco' => 22000, + 'tiki_express' => 32000 + ], + [ + 'province_id' => '10', + 'province_name' => 'Jawa Tengah', + 'city_id' => '362', + 'city_name' => 'Brebes', + 'jne_reg' => 25000, + 'jne_oke' => 20000, + 'jne_yes' => 35000, + 'pos_reg' => 23000, + 'pos_express' => 30000, + 'tiki_reg' => 27000, + 'tiki_eco' => 22000, + 'tiki_express' => 32000 + ], + + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '444', + 'city_name' => 'Surabaya', + 'jne_reg' => 20000, + 'jne_oke' => 15000, + 'jne_yes' => 30000, + 'pos_reg' => 18000, + 'pos_express' => 25000, + 'tiki_reg' => 22000, + 'tiki_eco' => 17000, + 'tiki_express' => 27000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '445', + 'city_name' => 'Malang', + 'jne_reg' => 15000, + 'jne_oke' => 12000, + 'jne_yes' => 25000, + 'pos_reg' => 13000, + 'pos_express' => 20000, + 'tiki_reg' => 17000, + 'tiki_eco' => 14000, + 'tiki_express' => 22000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '446', + 'city_name' => 'Sidoarjo', + 'jne_reg' => 20000, + 'jne_oke' => 15000, + 'jne_yes' => 30000, + 'pos_reg' => 18000, + 'pos_express' => 25000, + 'tiki_reg' => 22000, + 'tiki_eco' => 17000, + 'tiki_express' => 27000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '447', + 'city_name' => 'Gresik', + 'jne_reg' => 20000, + 'jne_oke' => 15000, + 'jne_yes' => 30000, + 'pos_reg' => 18000, + 'pos_express' => 25000, + 'tiki_reg' => 22000, + 'tiki_eco' => 17000, + 'tiki_express' => 27000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '448', + 'city_name' => 'Pasuruan', + 'jne_reg' => 18000, + 'jne_oke' => 14000, + 'jne_yes' => 28000, + 'pos_reg' => 16000, + 'pos_express' => 23000, + 'tiki_reg' => 20000, + 'tiki_eco' => 15000, + 'tiki_express' => 25000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '449', + 'city_name' => 'Mojokerto', + 'jne_reg' => 18000, + 'jne_oke' => 14000, + 'jne_yes' => 28000, + 'pos_reg' => 16000, + 'pos_express' => 23000, + 'tiki_reg' => 20000, + 'tiki_eco' => 15000, + 'tiki_express' => 25000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '450', + 'city_name' => 'Madiun', + 'jne_reg' => 15000, + 'jne_oke' => 12000, + 'jne_yes' => 25000, + 'pos_reg' => 13000, + 'pos_express' => 20000, + 'tiki_reg' => 17000, + 'tiki_eco' => 14000, + 'tiki_express' => 22000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '451', + 'city_name' => 'Kediri', + 'jne_reg' => 15000, + 'jne_oke' => 12000, + 'jne_yes' => 25000, + 'pos_reg' => 13000, + 'pos_express' => 20000, + 'tiki_reg' => 17000, + 'tiki_eco' => 14000, + 'tiki_express' => 22000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '452', + 'city_name' => 'Blitar', + 'jne_reg' => 15000, + 'jne_oke' => 12000, + 'jne_yes' => 25000, + 'pos_reg' => 13000, + 'pos_express' => 20000, + 'tiki_reg' => 17000, + 'tiki_eco' => 14000, + 'tiki_express' => 22000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '453', + 'city_name' => 'Probolinggo', + 'jne_reg' => 18000, + 'jne_oke' => 14000, + 'jne_yes' => 28000, + 'pos_reg' => 16000, + 'pos_express' => 23000, + 'tiki_reg' => 20000, + 'tiki_eco' => 15000, + 'tiki_express' => 25000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '454', + 'city_name' => 'Jember', + 'jne_reg' => 10000, + 'jne_oke' => 8000, + 'jne_yes' => 15000, + 'pos_reg' => 9000, + 'pos_express' => 12000, + 'tiki_reg' => 11000, + 'tiki_eco' => 9000, + 'tiki_express' => 13000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '455', + 'city_name' => 'Banyuwangi', + 'jne_reg' => 15000, + 'jne_oke' => 12000, + 'jne_yes' => 20000, + 'pos_reg' => 13000, + 'pos_express' => 17000, + 'tiki_reg' => 16000, + 'tiki_eco' => 14000, + 'tiki_express' => 18000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '456', + 'city_name' => 'Bondowoso', + 'jne_reg' => 12000, + 'jne_oke' => 10000, + 'jne_yes' => 18000, + 'pos_reg' => 11000, + 'pos_express' => 15000, + 'tiki_reg' => 13000, + 'tiki_eco' => 11000, + 'tiki_express' => 16000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '457', + 'city_name' => 'Situbondo', + 'jne_reg' => 15000, + 'jne_oke' => 12000, + 'jne_yes' => 20000, + 'pos_reg' => 13000, + 'pos_express' => 17000, + 'tiki_reg' => 16000, + 'tiki_eco' => 14000, + 'tiki_express' => 18000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '458', + 'city_name' => 'Lumajang', + 'jne_reg' => 12000, + 'jne_oke' => 10000, + 'jne_yes' => 18000, + 'pos_reg' => 11000, + 'pos_express' => 15000, + 'tiki_reg' => 13000, + 'tiki_eco' => 11000, + 'tiki_express' => 16000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '459', + 'city_name' => 'Tulungagung', + 'jne_reg' => 15000, + 'jne_oke' => 12000, + 'jne_yes' => 25000, + 'pos_reg' => 13000, + 'pos_express' => 20000, + 'tiki_reg' => 17000, + 'tiki_eco' => 14000, + 'tiki_express' => 22000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '460', + 'city_name' => 'Trenggalek', + 'jne_reg' => 15000, + 'jne_oke' => 12000, + 'jne_yes' => 25000, + 'pos_reg' => 13000, + 'pos_express' => 20000, + 'tiki_reg' => 17000, + 'tiki_eco' => 14000, + 'tiki_express' => 22000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '461', + 'city_name' => 'Ponorogo', + 'jne_reg' => 15000, + 'jne_oke' => 12000, + 'jne_yes' => 25000, + 'pos_reg' => 13000, + 'pos_express' => 20000, + 'tiki_reg' => 17000, + 'tiki_eco' => 14000, + 'tiki_express' => 22000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '462', + 'city_name' => 'Magetan', + 'jne_reg' => 15000, + 'jne_oke' => 12000, + 'jne_yes' => 25000, + 'pos_reg' => 13000, + 'pos_express' => 20000, + 'tiki_reg' => 17000, + 'tiki_eco' => 14000, + 'tiki_express' => 22000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '463', + 'city_name' => 'Ngawi', + 'jne_reg' => 15000, + 'jne_oke' => 12000, + 'jne_yes' => 25000, + 'pos_reg' => 13000, + 'pos_express' => 20000, + 'tiki_reg' => 17000, + 'tiki_eco' => 14000, + 'tiki_express' => 22000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '464', + 'city_name' => 'Bojonegoro', + 'jne_reg' => 18000, + 'jne_oke' => 14000, + 'jne_yes' => 28000, + 'pos_reg' => 16000, + 'pos_express' => 23000, + 'tiki_reg' => 20000, + 'tiki_eco' => 15000, + 'tiki_express' => 25000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '465', + 'city_name' => 'Tuban', + 'jne_reg' => 18000, + 'jne_oke' => 14000, + 'jne_yes' => 28000, + 'pos_reg' => 16000, + 'pos_express' => 23000, + 'tiki_reg' => 20000, + 'tiki_eco' => 15000, + 'tiki_express' => 25000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '466', + 'city_name' => 'Lamongan', + 'jne_reg' => 18000, + 'jne_oke' => 14000, + 'jne_yes' => 28000, + 'pos_reg' => 16000, + 'pos_express' => 23000, + 'tiki_reg' => 20000, + 'tiki_eco' => 15000, + 'tiki_express' => 25000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '467', + 'city_name' => 'Sampang', + 'jne_reg' => 20000, + 'jne_oke' => 15000, + 'jne_yes' => 30000, + 'pos_reg' => 18000, + 'pos_express' => 25000, + 'tiki_reg' => 22000, + 'tiki_eco' => 17000, + 'tiki_express' => 27000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '468', + 'city_name' => 'Pamekasan', + 'jne_reg' => 20000, + 'jne_oke' => 15000, + 'jne_yes' => 30000, + 'pos_reg' => 18000, + 'pos_express' => 25000, + 'tiki_reg' => 22000, + 'tiki_eco' => 17000, + 'tiki_express' => 27000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '469', + 'city_name' => 'Sumenep', + 'jne_reg' => 25000, + 'jne_oke' => 20000, + 'jne_yes' => 35000, + 'pos_reg' => 23000, + 'pos_express' => 30000, + 'tiki_reg' => 27000, + 'tiki_eco' => 22000, + 'tiki_express' => 32000 + ], + // Tambahan Kota di Jawa Timur + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '470', + 'city_name' => 'Batu', + 'jne_reg' => 15000, + 'jne_oke' => 12000, + 'jne_yes' => 25000, + 'pos_reg' => 13000, + 'pos_express' => 20000, + 'tiki_reg' => 17000, + 'tiki_eco' => 14000, + 'tiki_express' => 22000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '471', + 'city_name' => 'Probolinggo', + 'jne_reg' => 18000, + 'jne_oke' => 14000, + 'jne_yes' => 28000, + 'pos_reg' => 16000, + 'pos_express' => 23000, + 'tiki_reg' => 20000, + 'tiki_eco' => 15000, + 'tiki_express' => 25000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '472', + 'city_name' => 'Pasuruan', + 'jne_reg' => 18000, + 'jne_oke' => 14000, + 'jne_yes' => 28000, + 'pos_reg' => 16000, + 'pos_express' => 23000, + 'tiki_reg' => 20000, + 'tiki_eco' => 15000, + 'tiki_express' => 25000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '473', + 'city_name' => 'Madiun', + 'jne_reg' => 15000, + 'jne_oke' => 12000, + 'jne_yes' => 25000, + 'pos_reg' => 13000, + 'pos_express' => 20000, + 'tiki_reg' => 17000, + 'tiki_eco' => 14000, + 'tiki_express' => 22000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '474', + 'city_name' => 'Blitar', + 'jne_reg' => 15000, + 'jne_oke' => 12000, + 'jne_yes' => 25000, + 'pos_reg' => 13000, + 'pos_express' => 20000, + 'tiki_reg' => 17000, + 'tiki_eco' => 14000, + 'tiki_express' => 22000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '475', + 'city_name' => 'Kediri', + 'jne_reg' => 15000, + 'jne_oke' => 12000, + 'jne_yes' => 25000, + 'pos_reg' => 13000, + 'pos_express' => 20000, + 'tiki_reg' => 17000, + 'tiki_eco' => 14000, + 'tiki_express' => 22000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '476', + 'city_name' => 'Mojokerto', + 'jne_reg' => 18000, + 'jne_oke' => 14000, + 'jne_yes' => 28000, + 'pos_reg' => 16000, + 'pos_express' => 23000, + 'tiki_reg' => 20000, + 'tiki_eco' => 15000, + 'tiki_express' => 25000 + ], + // Tambahan Kabupaten di Jawa Timur + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '477', + 'city_name' => 'Pacitan', + 'jne_reg' => 15000, + 'jne_oke' => 12000, + 'jne_yes' => 25000, + 'pos_reg' => 13000, + 'pos_express' => 20000, + 'tiki_reg' => 17000, + 'tiki_eco' => 14000, + 'tiki_express' => 22000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '478', + 'city_name' => 'Nganjuk', + 'jne_reg' => 15000, + 'jne_oke' => 12000, + 'jne_yes' => 25000, + 'pos_reg' => 13000, + 'pos_express' => 20000, + 'tiki_reg' => 17000, + 'tiki_eco' => 14000, + 'tiki_express' => 22000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '479', + 'city_name' => 'Jombang', + 'jne_reg' => 15000, + 'jne_oke' => 12000, + 'jne_yes' => 25000, + 'pos_reg' => 13000, + 'pos_express' => 20000, + 'tiki_reg' => 17000, + 'tiki_eco' => 14000, + 'tiki_express' => 22000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '480', + 'city_name' => 'Sidoarjo', + 'jne_reg' => 20000, + 'jne_oke' => 15000, + 'jne_yes' => 30000, + 'pos_reg' => 18000, + 'pos_express' => 25000, + 'tiki_reg' => 22000, + 'tiki_eco' => 17000, + 'tiki_express' => 27000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '481', + 'city_name' => 'Gresik', + 'jne_reg' => 20000, + 'jne_oke' => 15000, + 'jne_yes' => 30000, + 'pos_reg' => 18000, + 'pos_express' => 25000, + 'tiki_reg' => 22000, + 'tiki_eco' => 17000, + 'tiki_express' => 27000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '482', + 'city_name' => 'Bangkalan', + 'jne_reg' => 20000, + 'jne_oke' => 15000, + 'jne_yes' => 30000, + 'pos_reg' => 18000, + 'pos_express' => 25000, + 'tiki_reg' => 22000, + 'tiki_eco' => 17000, + 'tiki_express' => 27000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '483', + 'city_name' => 'Sampang', + 'jne_reg' => 20000, + 'jne_oke' => 15000, + 'jne_yes' => 30000, + 'pos_reg' => 18000, + 'pos_express' => 25000, + 'tiki_reg' => 22000, + 'tiki_eco' => 17000, + 'tiki_express' => 27000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '484', + 'city_name' => 'Pamekasan', + 'jne_reg' => 20000, + 'jne_oke' => 15000, + 'jne_yes' => 30000, + 'pos_reg' => 18000, + 'pos_express' => 25000, + 'tiki_reg' => 22000, + 'tiki_eco' => 17000, + 'tiki_express' => 27000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '485', + 'city_name' => 'Sumenep', + 'jne_reg' => 25000, + 'jne_oke' => 20000, + 'jne_yes' => 35000, + 'pos_reg' => 23000, + 'pos_express' => 30000, + 'tiki_reg' => 27000, + 'tiki_eco' => 22000, + 'tiki_express' => 32000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '486', + 'city_name' => 'Jember', + 'jne_reg' => 10000, + 'jne_oke' => 8000, + 'jne_yes' => 15000, + 'pos_reg' => 9000, + 'pos_express' => 12000, + 'tiki_reg' => 11000, + 'tiki_eco' => 9000, + 'tiki_express' => 13000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '487', + 'city_name' => 'Banyuwangi', + 'jne_reg' => 15000, + 'jne_oke' => 12000, + 'jne_yes' => 20000, + 'pos_reg' => 13000, + 'pos_express' => 17000, + 'tiki_reg' => 16000, + 'tiki_eco' => 14000, + 'tiki_express' => 18000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '488', + 'city_name' => 'Bondowoso', + 'jne_reg' => 12000, + 'jne_oke' => 10000, + 'jne_yes' => 18000, + 'pos_reg' => 11000, + 'pos_express' => 15000, + 'tiki_reg' => 13000, + 'tiki_eco' => 11000, + 'tiki_express' => 16000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '489', + 'city_name' => 'Situbondo', + 'jne_reg' => 15000, + 'jne_oke' => 12000, + 'jne_yes' => 20000, + 'pos_reg' => 13000, + 'pos_express' => 17000, + 'tiki_reg' => 16000, + 'tiki_eco' => 14000, + 'tiki_express' => 18000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '490', + 'city_name' => 'Probolinggo', + 'jne_reg' => 18000, + 'jne_oke' => 14000, + 'jne_yes' => 28000, + 'pos_reg' => 16000, + 'pos_express' => 23000, + 'tiki_reg' => 20000, + 'tiki_eco' => 15000, + 'tiki_express' => 25000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '491', + 'city_name' => 'Pasuruan', + 'jne_reg' => 18000, + 'jne_oke' => 14000, + 'jne_yes' => 28000, + 'pos_reg' => 16000, + 'pos_express' => 23000, + 'tiki_reg' => 20000, + 'tiki_eco' => 15000, + 'tiki_express' => 25000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '492', + 'city_name' => 'Sidoarjo', + 'jne_reg' => 20000, + 'jne_oke' => 15000, + 'jne_yes' => 30000, + 'pos_reg' => 18000, + 'pos_express' => 25000, + 'tiki_reg' => 22000, + 'tiki_eco' => 17000, + 'tiki_express' => 27000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '493', + 'city_name' => 'Mojokerto', + 'jne_reg' => 18000, + 'jne_oke' => 14000, + 'jne_yes' => 28000, + 'pos_reg' => 16000, + 'pos_express' => 23000, + 'tiki_reg' => 20000, + 'tiki_eco' => 15000, + 'tiki_express' => 25000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '494', + 'city_name' => 'Jombang', + 'jne_reg' => 15000, + 'jne_oke' => 12000, + 'jne_yes' => 25000, + 'pos_reg' => 13000, + 'pos_express' => 20000, + 'tiki_reg' => 17000, + 'tiki_eco' => 14000, + 'tiki_express' => 22000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '495', + 'city_name' => 'Nganjuk', + 'jne_reg' => 15000, + 'jne_oke' => 12000, + 'jne_yes' => 25000, + 'pos_reg' => 13000, + 'pos_express' => 20000, + 'tiki_reg' => 17000, + 'tiki_eco' => 14000, + 'tiki_express' => 22000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '496', + 'city_name' => 'Madiun', + 'jne_reg' => 15000, + 'jne_oke' => 12000, + 'jne_yes' => 25000, + 'pos_reg' => 13000, + 'pos_express' => 20000, + 'tiki_reg' => 17000, + 'tiki_eco' => 14000, + 'tiki_express' => 22000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '497', + 'city_name' => 'Magetan', + 'jne_reg' => 15000, + 'jne_oke' => 12000, + 'jne_yes' => 25000, + 'pos_reg' => 13000, + 'pos_express' => 20000, + 'tiki_reg' => 17000, + 'tiki_eco' => 14000, + 'tiki_express' => 22000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '498', + 'city_name' => 'Ngawi', + 'jne_reg' => 15000, + 'jne_oke' => 12000, + 'jne_yes' => 25000, + 'pos_reg' => 13000, + 'pos_express' => 20000, + 'tiki_reg' => 17000, + 'tiki_eco' => 14000, + 'tiki_express' => 22000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '499', + 'city_name' => 'Bojonegoro', + 'jne_reg' => 18000, + 'jne_oke' => 14000, + 'jne_yes' => 28000, + 'pos_reg' => 16000, + 'pos_express' => 23000, + 'tiki_reg' => 20000, + 'tiki_eco' => 15000, + 'tiki_express' => 25000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '500', + 'city_name' => 'Tuban', + 'jne_reg' => 18000, + 'jne_oke' => 14000, + 'jne_yes' => 28000, + 'pos_reg' => 16000, + 'pos_express' => 23000, + 'tiki_reg' => 20000, + 'tiki_eco' => 15000, + 'tiki_express' => 25000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '501', + 'city_name' => 'Lamongan', + 'jne_reg' => 18000, + 'jne_oke' => 14000, + 'jne_yes' => 28000, + 'pos_reg' => 16000, + 'pos_express' => 23000, + 'tiki_reg' => 20000, + 'tiki_eco' => 15000, + 'tiki_express' => 25000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '502', + 'city_name' => 'Gresik', + 'jne_reg' => 20000, + 'jne_oke' => 15000, + 'jne_yes' => 30000, + 'pos_reg' => 18000, + 'pos_express' => 25000, + 'tiki_reg' => 22000, + 'tiki_eco' => 17000, + 'tiki_express' => 27000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '503', + 'city_name' => 'Bangkalan', + 'jne_reg' => 20000, + 'jne_oke' => 15000, + 'jne_yes' => 30000, + 'pos_reg' => 18000, + 'pos_express' => 25000, + 'tiki_reg' => 22000, + 'tiki_eco' => 17000, + 'tiki_express' => 27000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '504', + 'city_name' => 'Sampang', + 'jne_reg' => 20000, + 'jne_oke' => 15000, + 'jne_yes' => 30000, + 'pos_reg' => 18000, + 'pos_express' => 25000, + 'tiki_reg' => 22000, + 'tiki_eco' => 17000, + 'tiki_express' => 27000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '505', + 'city_name' => 'Pamekasan', + 'jne_reg' => 20000, + 'jne_oke' => 15000, + 'jne_yes' => 30000, + 'pos_reg' => 18000, + 'pos_express' => 25000, + 'tiki_reg' => 22000, + 'tiki_eco' => 17000, + 'tiki_express' => 27000 + ], + [ + 'province_id' => '11', + 'province_name' => 'Jawa Timur', + 'city_id' => '506', + 'city_name' => 'Sumenep', + 'jne_reg' => 25000, + 'jne_oke' => 20000, + 'jne_yes' => 35000, + 'pos_reg' => 23000, + 'pos_express' => 30000, + 'tiki_reg' => 27000, + 'tiki_eco' => 22000, + 'tiki_express' => 32000 + ] + + ]; + + foreach ($data as $item) { + Ongkir::create($item); + } + } +} \ No newline at end of file diff --git a/database/seeders/UserSeeder.php b/database/seeders/UserSeeder.php new file mode 100644 index 0000000..90dedce --- /dev/null +++ b/database/seeders/UserSeeder.php @@ -0,0 +1,31 @@ + 'admin', + 'nama' => 'Administrator', + 'email' => 'admin@admin.com', + 'password' => Hash::make('admin123'), + 'role' => 'admin', + ]); + + // Create sample customer + User::create([ + 'username' => 'customer', + 'nama' => 'Sample Customer', + 'email' => 'customer@example.com', + 'password' => Hash::make('customer123'), + 'role' => 'customer', + ]); + } +} diff --git a/error_log b/error_log new file mode 100644 index 0000000..29e9557 --- /dev/null +++ b/error_log @@ -0,0 +1,7 @@ +[23-May-2025 10:51:07 UTC] PHP Warning: require(/home/oyiwebid/dijeeelektronik/vendor/autoload.php): Failed to open stream: No such file or directory in /home/oyiwebid/dijeeelektronik/artisan on line 9 +[23-May-2025 10:51:07 UTC] PHP Fatal error: Uncaught Error: Failed opening required '/home/oyiwebid/dijeeelektronik/vendor/autoload.php' (include_path='.:/opt/alt/php82/usr/share/pear:/opt/alt/php82/usr/share/php:/usr/share/pear:/usr/share/php') in /home/oyiwebid/dijeeelektronik/artisan:9 +Stack trace: +#0 {main} + thrown in /home/oyiwebid/dijeeelektronik/artisan on line 9 +[23-May-2025 11:18:42 UTC] PHP Fatal error: DISEVAL - Use of eval is forbidden in /home/oyiwebid/dijeeelektronik/vendor/psy/psysh/src/ExecutionClosure.php(40) : eval()'d code on line 1 +[23-May-2025 15:10:23 UTC] PHP Fatal error: Cannot declare class EnsureEmailVerifiedAtColumn, because the name is already in use in /home/oyiwebid/dijeeelektronik/database/migrations/2024_03_23_ensure_email_verified_at_column.php on line 7 diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..9f2b09c --- /dev/null +++ b/package-lock.json @@ -0,0 +1,4734 @@ +{ + "name": "dijeeelektronik", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "devDependencies": { + "autoprefixer": "^10.4.20", + "axios": "^1.7.4", + "concurrently": "^9.0.1", + "laravel-vite-plugin": "^1.2.0", + "postcss": "^8.4.47", + "tailwindcss": "^3.4.13", + "vite": "^6.0.11" + } + }, + "node_modules/@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.0.tgz", + "integrity": "sha512-O7vun9Sf8DFjH2UtqK8Ku3LkquL9SZL8OLY1T5NZkA34+wG3OQF7cl4Ql8vdNzM6fzBbYfLaiRLIOZ+2FOCgBQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.0.tgz", + "integrity": "sha512-PTyWCYYiU0+1eJKmw21lWtC+d08JDZPQ5g+kFyxP0V+es6VPPSUhM6zk8iImp2jbV6GwjX4pap0JFbUQN65X1g==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.0.tgz", + "integrity": "sha512-grvv8WncGjDSyUBjN9yHXNt+cq0snxXbDxy5pJtzMKGmmpPxeAmAhWxXI+01lU5rwZomDgD3kJwulEnhTRUd6g==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.0.tgz", + "integrity": "sha512-m/ix7SfKG5buCnxasr52+LI78SQ+wgdENi9CqyCXwjVR2X4Jkz+BpC3le3AoBPYTC9NHklwngVXvbJ9/Akhrfg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.0.tgz", + "integrity": "sha512-mVwdUb5SRkPayVadIOI78K7aAnPamoeFR2bT5nszFUZ9P8UpK4ratOdYbZZXYSqPKMHfS1wdHCJk1P1EZpRdvw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.0.tgz", + "integrity": "sha512-DgDaYsPWFTS4S3nWpFcMn/33ZZwAAeAFKNHNa1QN0rI4pUjgqf0f7ONmXf6d22tqTY+H9FNdgeaAa+YIFUn2Rg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.0.tgz", + "integrity": "sha512-VN4ocxy6dxefN1MepBx/iD1dH5K8qNtNe227I0mnTRjry8tj5MRk4zprLEdG8WPyAPb93/e4pSgi1SoHdgOa4w==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.0.tgz", + "integrity": "sha512-mrSgt7lCh07FY+hDD1TxiTyIHyttn6vnjesnPoVDNmDfOmggTLXRv8Id5fNZey1gl/V2dyVK1VXXqVsQIiAk+A==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.0.tgz", + "integrity": "sha512-vkB3IYj2IDo3g9xX7HqhPYxVkNQe8qTK55fraQyTzTX/fxaDtXiEnavv9geOsonh2Fd2RMB+i5cbhu2zMNWJwg==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.0.tgz", + "integrity": "sha512-9QAQjTWNDM/Vk2bgBl17yWuZxZNQIF0OUUuPZRKoDtqF2k4EtYbpyiG5/Dk7nqeK6kIJWPYldkOcBqjXjrUlmg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.0.tgz", + "integrity": "sha512-43ET5bHbphBegyeqLb7I1eYn2P/JYGNmzzdidq/w0T8E2SsYL1U6un2NFROFRg1JZLTzdCoRomg8Rvf9M6W6Gg==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.0.tgz", + "integrity": "sha512-fC95c/xyNFueMhClxJmeRIj2yrSMdDfmqJnyOY4ZqsALkDrrKJfIg5NTMSzVBr5YW1jf+l7/cndBfP3MSDpoHw==", + "cpu": [ + "loong64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.0.tgz", + "integrity": "sha512-nkAMFju7KDW73T1DdH7glcyIptm95a7Le8irTQNO/qtkoyypZAnjchQgooFUDQhNAy4iu08N79W4T4pMBwhPwQ==", + "cpu": [ + "mips64el" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.0.tgz", + "integrity": "sha512-NhyOejdhRGS8Iwv+KKR2zTq2PpysF9XqY+Zk77vQHqNbo/PwZCzB5/h7VGuREZm1fixhs4Q/qWRSi5zmAiO4Fw==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.0.tgz", + "integrity": "sha512-5S/rbP5OY+GHLC5qXp1y/Mx//e92L1YDqkiBbO9TQOvuFXM+iDqUNG5XopAnXoRH3FjIUDkeGcY1cgNvnXp/kA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.0.tgz", + "integrity": "sha512-XM2BFsEBz0Fw37V0zU4CXfcfuACMrppsMFKdYY2WuTS3yi8O1nFOhil/xhKTmE1nPmVyvQJjJivgDT+xh8pXJA==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.0.tgz", + "integrity": "sha512-9yl91rHw/cpwMCNytUDxwj2XjFpxML0y9HAOH9pNVQDpQrBxHy01Dx+vaMu0N1CKa/RzBD2hB4u//nfc+Sd3Cw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.0.tgz", + "integrity": "sha512-RuG4PSMPFfrkH6UwCAqBzauBWTygTvb1nxWasEJooGSJ/NwRw7b2HOwyRTQIU97Hq37l3npXoZGYMy3b3xYvPw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.0.tgz", + "integrity": "sha512-jl+qisSB5jk01N5f7sPCsBENCOlPiS/xptD5yxOx2oqQfyourJwIKLRA2yqWdifj3owQZCL2sn6o08dBzZGQzA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.0.tgz", + "integrity": "sha512-21sUNbq2r84YE+SJDfaQRvdgznTD8Xc0oc3p3iW/a1EVWeNj/SdUCbm5U0itZPQYRuRTW20fPMWMpcrciH2EJw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.0.tgz", + "integrity": "sha512-2gwwriSMPcCFRlPlKx3zLQhfN/2WjJ2NSlg5TKLQOJdV0mSxIcYNTMhk3H3ulL/cak+Xj0lY1Ym9ysDV1igceg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.0.tgz", + "integrity": "sha512-bxI7ThgLzPrPz484/S9jLlvUAHYMzy6I0XiU1ZMeAEOBcS0VePBFxh1JjTQt3Xiat5b6Oh4x7UC7IwKQKIJRIg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.0.tgz", + "integrity": "sha512-ZUAc2YK6JW89xTbXvftxdnYy3m4iHIkDtK3CLce8wg8M2L+YZhIvO1DKpxrd0Yr59AeNNkTiic9YLf6FTtXWMw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.0.tgz", + "integrity": "sha512-eSNxISBu8XweVEWG31/JzjkIGbGIJN/TrRoiSVZwZ6pkC6VX4Im/WV2cz559/TXLcYbcrDN8JtKgd9DJVIo8GA==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.0.tgz", + "integrity": "sha512-ZENoHJBxA20C2zFzh6AI4fT6RraMzjYw4xKWemRTRmRVtN9c5DcH9r/f2ihEkMjOW5eGgrwCslG/+Y/3bL+DHQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz", + "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.34.8", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.34.8.tgz", + "integrity": "sha512-q217OSE8DTp8AFHuNHXo0Y86e1wtlfVrXiAlwkIvGRQv9zbc6mE3sjIVfwI8sYUyNxwOg0j/Vm1RKM04JcWLJw==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.34.8", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.34.8.tgz", + "integrity": "sha512-Gigjz7mNWaOL9wCggvoK3jEIUUbGul656opstjaUSGC3eT0BM7PofdAJaBfPFWWkXNVAXbaQtC99OCg4sJv70Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.34.8", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.34.8.tgz", + "integrity": "sha512-02rVdZ5tgdUNRxIUrFdcMBZQoaPMrxtwSb+/hOfBdqkatYHR3lZ2A2EGyHq2sGOd0Owk80oV3snlDASC24He3Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.34.8", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.34.8.tgz", + "integrity": "sha512-qIP/elwR/tq/dYRx3lgwK31jkZvMiD6qUtOycLhTzCvrjbZ3LjQnEM9rNhSGpbLXVJYQ3rq39A6Re0h9tU2ynw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.34.8", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.34.8.tgz", + "integrity": "sha512-IQNVXL9iY6NniYbTaOKdrlVP3XIqazBgJOVkddzJlqnCpRi/yAeSOa8PLcECFSQochzqApIOE1GHNu3pCz+BDA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.34.8", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.34.8.tgz", + "integrity": "sha512-TYXcHghgnCqYFiE3FT5QwXtOZqDj5GmaFNTNt3jNC+vh22dc/ukG2cG+pi75QO4kACohZzidsq7yKTKwq/Jq7Q==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.34.8", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.34.8.tgz", + "integrity": "sha512-A4iphFGNkWRd+5m3VIGuqHnG3MVnqKe7Al57u9mwgbyZ2/xF9Jio72MaY7xxh+Y87VAHmGQr73qoKL9HPbXj1g==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.34.8", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.34.8.tgz", + "integrity": "sha512-S0lqKLfTm5u+QTxlFiAnb2J/2dgQqRy/XvziPtDd1rKZFXHTyYLoVL58M/XFwDI01AQCDIevGLbQrMAtdyanpA==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.34.8", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.34.8.tgz", + "integrity": "sha512-jpz9YOuPiSkL4G4pqKrus0pn9aYwpImGkosRKwNi+sJSkz+WU3anZe6hi73StLOQdfXYXC7hUfsQlTnjMd3s1A==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.34.8", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.34.8.tgz", + "integrity": "sha512-KdSfaROOUJXgTVxJNAZ3KwkRc5nggDk+06P6lgi1HLv1hskgvxHUKZ4xtwHkVYJ1Rep4GNo+uEfycCRRxht7+Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loongarch64-gnu": { + "version": "4.34.8", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.34.8.tgz", + "integrity": "sha512-NyF4gcxwkMFRjgXBM6g2lkT58OWztZvw5KkV2K0qqSnUEqCVcqdh2jN4gQrTn/YUpAcNKyFHfoOZEer9nwo6uQ==", + "cpu": [ + "loong64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { + "version": "4.34.8", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.34.8.tgz", + "integrity": "sha512-LMJc999GkhGvktHU85zNTDImZVUCJ1z/MbAJTnviiWmmjyckP5aQsHtcujMjpNdMZPT2rQEDBlJfubhs3jsMfw==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.34.8", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.34.8.tgz", + "integrity": "sha512-xAQCAHPj8nJq1PI3z8CIZzXuXCstquz7cIOL73HHdXiRcKk8Ywwqtx2wrIy23EcTn4aZ2fLJNBB8d0tQENPCmw==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.34.8", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.34.8.tgz", + "integrity": "sha512-DdePVk1NDEuc3fOe3dPPTb+rjMtuFw89gw6gVWxQFAuEqqSdDKnrwzZHrUYdac7A7dXl9Q2Vflxpme15gUWQFA==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.34.8", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.34.8.tgz", + "integrity": "sha512-8y7ED8gjxITUltTUEJLQdgpbPh1sUQ0kMTmufRF/Ns5tI9TNMNlhWtmPKKHCU0SilX+3MJkZ0zERYYGIVBYHIA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.34.8", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.34.8.tgz", + "integrity": "sha512-SCXcP0ZpGFIe7Ge+McxY5zKxiEI5ra+GT3QRxL0pMMtxPfpyLAKleZODi1zdRHkz5/BhueUrYtYVgubqe9JBNQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.34.8", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.34.8.tgz", + "integrity": "sha512-YHYsgzZgFJzTRbth4h7Or0m5O74Yda+hLin0irAIobkLQFRQd1qWmnoVfwmKm9TXIZVAD0nZ+GEb2ICicLyCnQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.34.8", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.34.8.tgz", + "integrity": "sha512-r3NRQrXkHr4uWy5TOjTpTYojR9XmF0j/RYgKCef+Ag46FWUTltm5ziticv8LdNsDMehjJ543x/+TJAek/xBA2w==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.34.8", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.34.8.tgz", + "integrity": "sha512-U0FaE5O1BCpZSeE6gBl3c5ObhePQSfk9vDRToMmTkbhCOgW4jqvtS5LGyQ76L1fH8sM0keRp4uDTsbjiUyjk0g==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@types/estree": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", + "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", + "dev": true + }, + "node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "dev": true + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "dev": true + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true + }, + "node_modules/autoprefixer": { + "version": "10.4.20", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.20.tgz", + "integrity": "sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "browserslist": "^4.23.3", + "caniuse-lite": "^1.0.30001646", + "fraction.js": "^4.3.7", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.1", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/axios": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.8.1.tgz", + "integrity": "sha512-NN+fvwH/kV01dYUQ3PTOZns4LWtWhOFCAhQ/pHb88WQ1hNe5V/dvFwc4VJcDL11LT9xSX0QtsR8sWUuyOuOq7g==", + "dev": true, + "dependencies": { + "follow-redirects": "^1.15.6", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.24.4", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.4.tgz", + "integrity": "sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001688", + "electron-to-chromium": "^1.5.73", + "node-releases": "^2.0.19", + "update-browserslist-db": "^1.1.1" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "dev": true, + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001701", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001701.tgz", + "integrity": "sha512-faRs/AW3jA9nTwmJBSO1PQ6L/EOgsB5HMQQq4iCu5zhPgVVgO/pZRHlmatwijZKetFw8/Pr4q6dEN8sJuq8qTw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/chalk/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chokidar/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/cliui/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/cliui/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/cliui/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cliui/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cliui/node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/concurrently": { + "version": "9.1.2", + "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-9.1.2.tgz", + "integrity": "sha512-H9MWcoPsYddwbOGM6difjVwVZHl63nwMEwDJG/L7VGtuaJhb12h2caPG2tVPWs7emuYix252iGfqOyrz1GczTQ==", + "dev": true, + "dependencies": { + "chalk": "^4.1.2", + "lodash": "^4.17.21", + "rxjs": "^7.8.1", + "shell-quote": "^1.8.1", + "supports-color": "^8.1.1", + "tree-kill": "^1.2.2", + "yargs": "^17.7.2" + }, + "bin": { + "conc": "dist/bin/concurrently.js", + "concurrently": "dist/bin/concurrently.js" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/open-cli-tools/concurrently?sponsor=1" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true, + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", + "dev": true + }, + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", + "dev": true + }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "dev": true, + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true + }, + "node_modules/electron-to-chromium": { + "version": "1.5.109", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.109.tgz", + "integrity": "sha512-AidaH9JETVRr9DIPGfp1kAarm/W6hRJTPuCnkF+2MqhF4KaAgRIcBc8nvjk+YMXZhwfISof/7WG29eS4iGxQLQ==", + "dev": true + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "dev": true, + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", + "dev": true, + "dependencies": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/esbuild": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.0.tgz", + "integrity": "sha512-BXq5mqc8ltbaN34cDqWuYKyNhX8D/Z0J1xdtdQ8UcIIIyJyz+ZMKUt58tF3SrZ85jcfN/PZYhjR5uDQAYNVbuw==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.25.0", + "@esbuild/android-arm": "0.25.0", + "@esbuild/android-arm64": "0.25.0", + "@esbuild/android-x64": "0.25.0", + "@esbuild/darwin-arm64": "0.25.0", + "@esbuild/darwin-x64": "0.25.0", + "@esbuild/freebsd-arm64": "0.25.0", + "@esbuild/freebsd-x64": "0.25.0", + "@esbuild/linux-arm": "0.25.0", + "@esbuild/linux-arm64": "0.25.0", + "@esbuild/linux-ia32": "0.25.0", + "@esbuild/linux-loong64": "0.25.0", + "@esbuild/linux-mips64el": "0.25.0", + "@esbuild/linux-ppc64": "0.25.0", + "@esbuild/linux-riscv64": "0.25.0", + "@esbuild/linux-s390x": "0.25.0", + "@esbuild/linux-x64": "0.25.0", + "@esbuild/netbsd-arm64": "0.25.0", + "@esbuild/netbsd-x64": "0.25.0", + "@esbuild/openbsd-arm64": "0.25.0", + "@esbuild/openbsd-x64": "0.25.0", + "@esbuild/sunos-x64": "0.25.0", + "@esbuild/win32-arm64": "0.25.0", + "@esbuild/win32-ia32": "0.25.0", + "@esbuild/win32-x64": "0.25.0" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/fast-glob": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", + "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.8" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fastq": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz", + "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/follow-redirects": { + "version": "1.15.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", + "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/foreground-child": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", + "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.6", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/form-data": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.2.tgz", + "integrity": "sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w==", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fraction.js": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", + "dev": true, + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://github.com/sponsors/rawify" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "dev": true, + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "dev": true, + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "dev": true, + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-core-module": { + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", + "dev": true, + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "dev": true, + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/jiti": { + "version": "1.21.7", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.7.tgz", + "integrity": "sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==", + "dev": true, + "bin": { + "jiti": "bin/jiti.js" + } + }, + "node_modules/laravel-vite-plugin": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/laravel-vite-plugin/-/laravel-vite-plugin-1.2.0.tgz", + "integrity": "sha512-R0pJ+IcTVeqEMoKz/B2Ij57QVq3sFTABiFmb06gAwFdivbOgsUtuhX6N2MGLEArajrS3U5JbberzwOe7uXHMHQ==", + "dev": true, + "dependencies": { + "picocolors": "^1.0.0", + "vite-plugin-full-reload": "^1.1.0" + }, + "bin": { + "clean-orphaned-assets": "bin/clean.js" + }, + "engines": { + "node": "^18.0.0 || ^20.0.0 || >=22.0.0" + }, + "peerDependencies": { + "vite": "^5.0.0 || ^6.0.0" + } + }, + "node_modules/lilconfig": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz", + "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antonk52" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "dev": true + }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "dev": true, + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "dev": true, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "dev": true, + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "node_modules/nanoid": { + "version": "3.3.8", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", + "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/node-releases": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", + "dev": true + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", + "dev": true + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "dev": true, + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/postcss": { + "version": "8.5.3", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.3.tgz", + "integrity": "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.8", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-import": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-js": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", + "dev": true, + "dependencies": { + "camelcase-css": "^2.0.1" + }, + "engines": { + "node": "^12 || ^14 || >= 16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.4.21" + } + }, + "node_modules/postcss-load-config": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz", + "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "lilconfig": "^3.0.0", + "yaml": "^2.3.4" + }, + "engines": { + "node": ">= 14" + }, + "peerDependencies": { + "postcss": ">=8.0.9", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "postcss": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/postcss-nested": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz", + "integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "postcss-selector-parser": "^6.1.1" + }, + "engines": { + "node": ">=12.0" + }, + "peerDependencies": { + "postcss": "^8.2.14" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", + "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", + "dev": true, + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true + }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "dev": true + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "dev": true, + "dependencies": { + "pify": "^2.3.0" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve": { + "version": "1.22.10", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz", + "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==", + "dev": true, + "dependencies": { + "is-core-module": "^2.16.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/reusify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", + "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rollup": { + "version": "4.34.8", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.34.8.tgz", + "integrity": "sha512-489gTVMzAYdiZHFVA/ig/iYFllCcWFHMvUHI1rpFmkoUtRlQxqh6/yiNqnYibjMZ2b/+FUQwldG+aLsEt6bglQ==", + "dev": true, + "dependencies": { + "@types/estree": "1.0.6" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.34.8", + "@rollup/rollup-android-arm64": "4.34.8", + "@rollup/rollup-darwin-arm64": "4.34.8", + "@rollup/rollup-darwin-x64": "4.34.8", + "@rollup/rollup-freebsd-arm64": "4.34.8", + "@rollup/rollup-freebsd-x64": "4.34.8", + "@rollup/rollup-linux-arm-gnueabihf": "4.34.8", + "@rollup/rollup-linux-arm-musleabihf": "4.34.8", + "@rollup/rollup-linux-arm64-gnu": "4.34.8", + "@rollup/rollup-linux-arm64-musl": "4.34.8", + "@rollup/rollup-linux-loongarch64-gnu": "4.34.8", + "@rollup/rollup-linux-powerpc64le-gnu": "4.34.8", + "@rollup/rollup-linux-riscv64-gnu": "4.34.8", + "@rollup/rollup-linux-s390x-gnu": "4.34.8", + "@rollup/rollup-linux-x64-gnu": "4.34.8", + "@rollup/rollup-linux-x64-musl": "4.34.8", + "@rollup/rollup-win32-arm64-msvc": "4.34.8", + "@rollup/rollup-win32-ia32-msvc": "4.34.8", + "@rollup/rollup-win32-x64-msvc": "4.34.8", + "fsevents": "~2.3.2" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/rxjs": { + "version": "7.8.2", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.2.tgz", + "integrity": "sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==", + "dev": true, + "dependencies": { + "tslib": "^2.1.0" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/shell-quote": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.2.tgz", + "integrity": "sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/string-width-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/sucrase": { + "version": "3.35.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", + "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "^10.3.10", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + }, + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/tailwindcss": { + "version": "3.4.17", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.17.tgz", + "integrity": "sha512-w33E2aCvSDP0tW9RZuNXadXlkHXqFzSkQew/aIa2i/Sj8fThxwovwlXHSPXTbAHwEIhBFXAedUhP2tueAKP8Og==", + "dev": true, + "dependencies": { + "@alloc/quick-lru": "^5.2.0", + "arg": "^5.0.2", + "chokidar": "^3.6.0", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.3.2", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "jiti": "^1.21.6", + "lilconfig": "^3.1.3", + "micromatch": "^4.0.8", + "normalize-path": "^3.0.0", + "object-hash": "^3.0.0", + "picocolors": "^1.1.1", + "postcss": "^8.4.47", + "postcss-import": "^15.1.0", + "postcss-js": "^4.0.1", + "postcss-load-config": "^4.0.2", + "postcss-nested": "^6.2.0", + "postcss-selector-parser": "^6.1.2", + "resolve": "^1.22.8", + "sucrase": "^3.35.0" + }, + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "dev": true, + "dependencies": { + "any-promise": "^1.0.0" + } + }, + "node_modules/thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "dev": true, + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/tree-kill": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", + "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", + "dev": true, + "bin": { + "tree-kill": "cli.js" + } + }, + "node_modules/ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", + "dev": true + }, + "node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "dev": true + }, + "node_modules/update-browserslist-db": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", + "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/vite": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/vite/-/vite-6.2.0.tgz", + "integrity": "sha512-7dPxoo+WsT/64rDcwoOjk76XHj+TqNTIvHKcuMQ1k4/SeHDaQt5GFAeLYzrimZrMpn/O6DtdI03WUjdxuPM0oQ==", + "dev": true, + "dependencies": { + "esbuild": "^0.25.0", + "postcss": "^8.5.3", + "rollup": "^4.30.1" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || ^20.0.0 || >=22.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0", + "jiti": ">=1.21.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "sass-embedded": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.16.0", + "tsx": "^4.8.1", + "yaml": "^2.4.2" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "jiti": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true + } + } + }, + "node_modules/vite-plugin-full-reload": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/vite-plugin-full-reload/-/vite-plugin-full-reload-1.2.0.tgz", + "integrity": "sha512-kz18NW79x0IHbxRSHm0jttP4zoO9P9gXh+n6UTwlNKnviTTEpOlum6oS9SmecrTtSr+muHEn5TUuC75UovQzcA==", + "dev": true, + "dependencies": { + "picocolors": "^1.0.0", + "picomatch": "^2.3.1" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/wrap-ansi-cjs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yaml": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.7.0.tgz", + "integrity": "sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==", + "dev": true, + "bin": { + "yaml": "bin.mjs" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/yargs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/yargs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yargs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + } + }, + "dependencies": { + "@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "dev": true + }, + "@esbuild/aix-ppc64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.0.tgz", + "integrity": "sha512-O7vun9Sf8DFjH2UtqK8Ku3LkquL9SZL8OLY1T5NZkA34+wG3OQF7cl4Ql8vdNzM6fzBbYfLaiRLIOZ+2FOCgBQ==", + "dev": true, + "optional": true + }, + "@esbuild/android-arm": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.0.tgz", + "integrity": "sha512-PTyWCYYiU0+1eJKmw21lWtC+d08JDZPQ5g+kFyxP0V+es6VPPSUhM6zk8iImp2jbV6GwjX4pap0JFbUQN65X1g==", + "dev": true, + "optional": true + }, + "@esbuild/android-arm64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.0.tgz", + "integrity": "sha512-grvv8WncGjDSyUBjN9yHXNt+cq0snxXbDxy5pJtzMKGmmpPxeAmAhWxXI+01lU5rwZomDgD3kJwulEnhTRUd6g==", + "dev": true, + "optional": true + }, + "@esbuild/android-x64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.0.tgz", + "integrity": "sha512-m/ix7SfKG5buCnxasr52+LI78SQ+wgdENi9CqyCXwjVR2X4Jkz+BpC3le3AoBPYTC9NHklwngVXvbJ9/Akhrfg==", + "dev": true, + "optional": true + }, + "@esbuild/darwin-arm64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.0.tgz", + "integrity": "sha512-mVwdUb5SRkPayVadIOI78K7aAnPamoeFR2bT5nszFUZ9P8UpK4ratOdYbZZXYSqPKMHfS1wdHCJk1P1EZpRdvw==", + "dev": true, + "optional": true + }, + "@esbuild/darwin-x64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.0.tgz", + "integrity": "sha512-DgDaYsPWFTS4S3nWpFcMn/33ZZwAAeAFKNHNa1QN0rI4pUjgqf0f7ONmXf6d22tqTY+H9FNdgeaAa+YIFUn2Rg==", + "dev": true, + "optional": true + }, + "@esbuild/freebsd-arm64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.0.tgz", + "integrity": "sha512-VN4ocxy6dxefN1MepBx/iD1dH5K8qNtNe227I0mnTRjry8tj5MRk4zprLEdG8WPyAPb93/e4pSgi1SoHdgOa4w==", + "dev": true, + "optional": true + }, + "@esbuild/freebsd-x64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.0.tgz", + "integrity": "sha512-mrSgt7lCh07FY+hDD1TxiTyIHyttn6vnjesnPoVDNmDfOmggTLXRv8Id5fNZey1gl/V2dyVK1VXXqVsQIiAk+A==", + "dev": true, + "optional": true + }, + "@esbuild/linux-arm": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.0.tgz", + "integrity": "sha512-vkB3IYj2IDo3g9xX7HqhPYxVkNQe8qTK55fraQyTzTX/fxaDtXiEnavv9geOsonh2Fd2RMB+i5cbhu2zMNWJwg==", + "dev": true, + "optional": true + }, + "@esbuild/linux-arm64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.0.tgz", + "integrity": "sha512-9QAQjTWNDM/Vk2bgBl17yWuZxZNQIF0OUUuPZRKoDtqF2k4EtYbpyiG5/Dk7nqeK6kIJWPYldkOcBqjXjrUlmg==", + "dev": true, + "optional": true + }, + "@esbuild/linux-ia32": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.0.tgz", + "integrity": "sha512-43ET5bHbphBegyeqLb7I1eYn2P/JYGNmzzdidq/w0T8E2SsYL1U6un2NFROFRg1JZLTzdCoRomg8Rvf9M6W6Gg==", + "dev": true, + "optional": true + }, + "@esbuild/linux-loong64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.0.tgz", + "integrity": "sha512-fC95c/xyNFueMhClxJmeRIj2yrSMdDfmqJnyOY4ZqsALkDrrKJfIg5NTMSzVBr5YW1jf+l7/cndBfP3MSDpoHw==", + "dev": true, + "optional": true + }, + "@esbuild/linux-mips64el": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.0.tgz", + "integrity": "sha512-nkAMFju7KDW73T1DdH7glcyIptm95a7Le8irTQNO/qtkoyypZAnjchQgooFUDQhNAy4iu08N79W4T4pMBwhPwQ==", + "dev": true, + "optional": true + }, + "@esbuild/linux-ppc64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.0.tgz", + "integrity": "sha512-NhyOejdhRGS8Iwv+KKR2zTq2PpysF9XqY+Zk77vQHqNbo/PwZCzB5/h7VGuREZm1fixhs4Q/qWRSi5zmAiO4Fw==", + "dev": true, + "optional": true + }, + "@esbuild/linux-riscv64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.0.tgz", + "integrity": "sha512-5S/rbP5OY+GHLC5qXp1y/Mx//e92L1YDqkiBbO9TQOvuFXM+iDqUNG5XopAnXoRH3FjIUDkeGcY1cgNvnXp/kA==", + "dev": true, + "optional": true + }, + "@esbuild/linux-s390x": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.0.tgz", + "integrity": "sha512-XM2BFsEBz0Fw37V0zU4CXfcfuACMrppsMFKdYY2WuTS3yi8O1nFOhil/xhKTmE1nPmVyvQJjJivgDT+xh8pXJA==", + "dev": true, + "optional": true + }, + "@esbuild/linux-x64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.0.tgz", + "integrity": "sha512-9yl91rHw/cpwMCNytUDxwj2XjFpxML0y9HAOH9pNVQDpQrBxHy01Dx+vaMu0N1CKa/RzBD2hB4u//nfc+Sd3Cw==", + "dev": true, + "optional": true + }, + "@esbuild/netbsd-arm64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.0.tgz", + "integrity": "sha512-RuG4PSMPFfrkH6UwCAqBzauBWTygTvb1nxWasEJooGSJ/NwRw7b2HOwyRTQIU97Hq37l3npXoZGYMy3b3xYvPw==", + "dev": true, + "optional": true + }, + "@esbuild/netbsd-x64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.0.tgz", + "integrity": "sha512-jl+qisSB5jk01N5f7sPCsBENCOlPiS/xptD5yxOx2oqQfyourJwIKLRA2yqWdifj3owQZCL2sn6o08dBzZGQzA==", + "dev": true, + "optional": true + }, + "@esbuild/openbsd-arm64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.0.tgz", + "integrity": "sha512-21sUNbq2r84YE+SJDfaQRvdgznTD8Xc0oc3p3iW/a1EVWeNj/SdUCbm5U0itZPQYRuRTW20fPMWMpcrciH2EJw==", + "dev": true, + "optional": true + }, + "@esbuild/openbsd-x64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.0.tgz", + "integrity": "sha512-2gwwriSMPcCFRlPlKx3zLQhfN/2WjJ2NSlg5TKLQOJdV0mSxIcYNTMhk3H3ulL/cak+Xj0lY1Ym9ysDV1igceg==", + "dev": true, + "optional": true + }, + "@esbuild/sunos-x64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.0.tgz", + "integrity": "sha512-bxI7ThgLzPrPz484/S9jLlvUAHYMzy6I0XiU1ZMeAEOBcS0VePBFxh1JjTQt3Xiat5b6Oh4x7UC7IwKQKIJRIg==", + "dev": true, + "optional": true + }, + "@esbuild/win32-arm64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.0.tgz", + "integrity": "sha512-ZUAc2YK6JW89xTbXvftxdnYy3m4iHIkDtK3CLce8wg8M2L+YZhIvO1DKpxrd0Yr59AeNNkTiic9YLf6FTtXWMw==", + "dev": true, + "optional": true + }, + "@esbuild/win32-ia32": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.0.tgz", + "integrity": "sha512-eSNxISBu8XweVEWG31/JzjkIGbGIJN/TrRoiSVZwZ6pkC6VX4Im/WV2cz559/TXLcYbcrDN8JtKgd9DJVIo8GA==", + "dev": true, + "optional": true + }, + "@esbuild/win32-x64": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.0.tgz", + "integrity": "sha512-ZENoHJBxA20C2zFzh6AI4fT6RraMzjYw4xKWemRTRmRVtN9c5DcH9r/f2ihEkMjOW5eGgrwCslG/+Y/3bL+DHQ==", + "dev": true, + "optional": true + }, + "@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "requires": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + } + }, + "@jridgewell/gen-mapping": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz", + "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==", + "dev": true, + "requires": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true + }, + "@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "dev": true + }, + "@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", + "dev": true + }, + "@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "dev": true, + "requires": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true + }, + "@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "requires": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + } + }, + "@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "optional": true + }, + "@rollup/rollup-android-arm-eabi": { + "version": "4.34.8", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.34.8.tgz", + "integrity": "sha512-q217OSE8DTp8AFHuNHXo0Y86e1wtlfVrXiAlwkIvGRQv9zbc6mE3sjIVfwI8sYUyNxwOg0j/Vm1RKM04JcWLJw==", + "dev": true, + "optional": true + }, + "@rollup/rollup-android-arm64": { + "version": "4.34.8", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.34.8.tgz", + "integrity": "sha512-Gigjz7mNWaOL9wCggvoK3jEIUUbGul656opstjaUSGC3eT0BM7PofdAJaBfPFWWkXNVAXbaQtC99OCg4sJv70Q==", + "dev": true, + "optional": true + }, + "@rollup/rollup-darwin-arm64": { + "version": "4.34.8", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.34.8.tgz", + "integrity": "sha512-02rVdZ5tgdUNRxIUrFdcMBZQoaPMrxtwSb+/hOfBdqkatYHR3lZ2A2EGyHq2sGOd0Owk80oV3snlDASC24He3Q==", + "dev": true, + "optional": true + }, + "@rollup/rollup-darwin-x64": { + "version": "4.34.8", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.34.8.tgz", + "integrity": "sha512-qIP/elwR/tq/dYRx3lgwK31jkZvMiD6qUtOycLhTzCvrjbZ3LjQnEM9rNhSGpbLXVJYQ3rq39A6Re0h9tU2ynw==", + "dev": true, + "optional": true + }, + "@rollup/rollup-freebsd-arm64": { + "version": "4.34.8", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.34.8.tgz", + "integrity": "sha512-IQNVXL9iY6NniYbTaOKdrlVP3XIqazBgJOVkddzJlqnCpRi/yAeSOa8PLcECFSQochzqApIOE1GHNu3pCz+BDA==", + "dev": true, + "optional": true + }, + "@rollup/rollup-freebsd-x64": { + "version": "4.34.8", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.34.8.tgz", + "integrity": "sha512-TYXcHghgnCqYFiE3FT5QwXtOZqDj5GmaFNTNt3jNC+vh22dc/ukG2cG+pi75QO4kACohZzidsq7yKTKwq/Jq7Q==", + "dev": true, + "optional": true + }, + "@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.34.8", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.34.8.tgz", + "integrity": "sha512-A4iphFGNkWRd+5m3VIGuqHnG3MVnqKe7Al57u9mwgbyZ2/xF9Jio72MaY7xxh+Y87VAHmGQr73qoKL9HPbXj1g==", + "dev": true, + "optional": true + }, + "@rollup/rollup-linux-arm-musleabihf": { + "version": "4.34.8", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.34.8.tgz", + "integrity": "sha512-S0lqKLfTm5u+QTxlFiAnb2J/2dgQqRy/XvziPtDd1rKZFXHTyYLoVL58M/XFwDI01AQCDIevGLbQrMAtdyanpA==", + "dev": true, + "optional": true + }, + "@rollup/rollup-linux-arm64-gnu": { + "version": "4.34.8", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.34.8.tgz", + "integrity": "sha512-jpz9YOuPiSkL4G4pqKrus0pn9aYwpImGkosRKwNi+sJSkz+WU3anZe6hi73StLOQdfXYXC7hUfsQlTnjMd3s1A==", + "dev": true, + "optional": true + }, + "@rollup/rollup-linux-arm64-musl": { + "version": "4.34.8", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.34.8.tgz", + "integrity": "sha512-KdSfaROOUJXgTVxJNAZ3KwkRc5nggDk+06P6lgi1HLv1hskgvxHUKZ4xtwHkVYJ1Rep4GNo+uEfycCRRxht7+Q==", + "dev": true, + "optional": true + }, + "@rollup/rollup-linux-loongarch64-gnu": { + "version": "4.34.8", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.34.8.tgz", + "integrity": "sha512-NyF4gcxwkMFRjgXBM6g2lkT58OWztZvw5KkV2K0qqSnUEqCVcqdh2jN4gQrTn/YUpAcNKyFHfoOZEer9nwo6uQ==", + "dev": true, + "optional": true + }, + "@rollup/rollup-linux-powerpc64le-gnu": { + "version": "4.34.8", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.34.8.tgz", + "integrity": "sha512-LMJc999GkhGvktHU85zNTDImZVUCJ1z/MbAJTnviiWmmjyckP5aQsHtcujMjpNdMZPT2rQEDBlJfubhs3jsMfw==", + "dev": true, + "optional": true + }, + "@rollup/rollup-linux-riscv64-gnu": { + "version": "4.34.8", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.34.8.tgz", + "integrity": "sha512-xAQCAHPj8nJq1PI3z8CIZzXuXCstquz7cIOL73HHdXiRcKk8Ywwqtx2wrIy23EcTn4aZ2fLJNBB8d0tQENPCmw==", + "dev": true, + "optional": true + }, + "@rollup/rollup-linux-s390x-gnu": { + "version": "4.34.8", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.34.8.tgz", + "integrity": "sha512-DdePVk1NDEuc3fOe3dPPTb+rjMtuFw89gw6gVWxQFAuEqqSdDKnrwzZHrUYdac7A7dXl9Q2Vflxpme15gUWQFA==", + "dev": true, + "optional": true + }, + "@rollup/rollup-linux-x64-gnu": { + "version": "4.34.8", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.34.8.tgz", + "integrity": "sha512-8y7ED8gjxITUltTUEJLQdgpbPh1sUQ0kMTmufRF/Ns5tI9TNMNlhWtmPKKHCU0SilX+3MJkZ0zERYYGIVBYHIA==", + "dev": true, + "optional": true + }, + "@rollup/rollup-linux-x64-musl": { + "version": "4.34.8", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.34.8.tgz", + "integrity": "sha512-SCXcP0ZpGFIe7Ge+McxY5zKxiEI5ra+GT3QRxL0pMMtxPfpyLAKleZODi1zdRHkz5/BhueUrYtYVgubqe9JBNQ==", + "dev": true, + "optional": true + }, + "@rollup/rollup-win32-arm64-msvc": { + "version": "4.34.8", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.34.8.tgz", + "integrity": "sha512-YHYsgzZgFJzTRbth4h7Or0m5O74Yda+hLin0irAIobkLQFRQd1qWmnoVfwmKm9TXIZVAD0nZ+GEb2ICicLyCnQ==", + "dev": true, + "optional": true + }, + "@rollup/rollup-win32-ia32-msvc": { + "version": "4.34.8", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.34.8.tgz", + "integrity": "sha512-r3NRQrXkHr4uWy5TOjTpTYojR9XmF0j/RYgKCef+Ag46FWUTltm5ziticv8LdNsDMehjJ543x/+TJAek/xBA2w==", + "dev": true, + "optional": true + }, + "@rollup/rollup-win32-x64-msvc": { + "version": "4.34.8", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.34.8.tgz", + "integrity": "sha512-U0FaE5O1BCpZSeE6gBl3c5ObhePQSfk9vDRToMmTkbhCOgW4jqvtS5LGyQ76L1fH8sM0keRp4uDTsbjiUyjk0g==", + "dev": true, + "optional": true + }, + "@types/estree": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", + "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", + "dev": true + }, + "ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "dev": true + }, + "anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "dev": true + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true + }, + "autoprefixer": { + "version": "10.4.20", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.20.tgz", + "integrity": "sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==", + "dev": true, + "requires": { + "browserslist": "^4.23.3", + "caniuse-lite": "^1.0.30001646", + "fraction.js": "^4.3.7", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.1", + "postcss-value-parser": "^4.2.0" + } + }, + "axios": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.8.1.tgz", + "integrity": "sha512-NN+fvwH/kV01dYUQ3PTOZns4LWtWhOFCAhQ/pHb88WQ1hNe5V/dvFwc4VJcDL11LT9xSX0QtsR8sWUuyOuOq7g==", + "dev": true, + "requires": { + "follow-redirects": "^1.15.6", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "dev": true + }, + "brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0" + } + }, + "braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "requires": { + "fill-range": "^7.1.1" + } + }, + "browserslist": { + "version": "4.24.4", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.4.tgz", + "integrity": "sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==", + "dev": true, + "requires": { + "caniuse-lite": "^1.0.30001688", + "electron-to-chromium": "^1.5.73", + "node-releases": "^2.0.19", + "update-browserslist-db": "^1.1.1" + } + }, + "call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "dev": true, + "requires": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + } + }, + "camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "dev": true + }, + "caniuse-lite": { + "version": "1.0.30001701", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001701.tgz", + "integrity": "sha512-faRs/AW3jA9nTwmJBSO1PQ6L/EOgsB5HMQQq4iCu5zhPgVVgO/pZRHlmatwijZKetFw8/Pr4q6dEN8sJuq8qTw==", + "dev": true + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "dependencies": { + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "dependencies": { + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + } + } + }, + "cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + } + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true + }, + "concurrently": { + "version": "9.1.2", + "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-9.1.2.tgz", + "integrity": "sha512-H9MWcoPsYddwbOGM6difjVwVZHl63nwMEwDJG/L7VGtuaJhb12h2caPG2tVPWs7emuYix252iGfqOyrz1GczTQ==", + "dev": true, + "requires": { + "chalk": "^4.1.2", + "lodash": "^4.17.21", + "rxjs": "^7.8.1", + "shell-quote": "^1.8.1", + "supports-color": "^8.1.1", + "tree-kill": "^1.2.2", + "yargs": "^17.7.2" + } + }, + "cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true + }, + "didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", + "dev": true + }, + "dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", + "dev": true + }, + "dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "dev": true, + "requires": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + } + }, + "eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true + }, + "electron-to-chromium": { + "version": "1.5.109", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.109.tgz", + "integrity": "sha512-AidaH9JETVRr9DIPGfp1kAarm/W6hRJTPuCnkF+2MqhF4KaAgRIcBc8nvjk+YMXZhwfISof/7WG29eS4iGxQLQ==", + "dev": true + }, + "emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "dev": true + }, + "es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "dev": true + }, + "es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "dev": true, + "requires": { + "es-errors": "^1.3.0" + } + }, + "es-set-tostringtag": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", + "dev": true, + "requires": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + } + }, + "esbuild": { + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.0.tgz", + "integrity": "sha512-BXq5mqc8ltbaN34cDqWuYKyNhX8D/Z0J1xdtdQ8UcIIIyJyz+ZMKUt58tF3SrZ85jcfN/PZYhjR5uDQAYNVbuw==", + "dev": true, + "requires": { + "@esbuild/aix-ppc64": "0.25.0", + "@esbuild/android-arm": "0.25.0", + "@esbuild/android-arm64": "0.25.0", + "@esbuild/android-x64": "0.25.0", + "@esbuild/darwin-arm64": "0.25.0", + "@esbuild/darwin-x64": "0.25.0", + "@esbuild/freebsd-arm64": "0.25.0", + "@esbuild/freebsd-x64": "0.25.0", + "@esbuild/linux-arm": "0.25.0", + "@esbuild/linux-arm64": "0.25.0", + "@esbuild/linux-ia32": "0.25.0", + "@esbuild/linux-loong64": "0.25.0", + "@esbuild/linux-mips64el": "0.25.0", + "@esbuild/linux-ppc64": "0.25.0", + "@esbuild/linux-riscv64": "0.25.0", + "@esbuild/linux-s390x": "0.25.0", + "@esbuild/linux-x64": "0.25.0", + "@esbuild/netbsd-arm64": "0.25.0", + "@esbuild/netbsd-x64": "0.25.0", + "@esbuild/openbsd-arm64": "0.25.0", + "@esbuild/openbsd-x64": "0.25.0", + "@esbuild/sunos-x64": "0.25.0", + "@esbuild/win32-arm64": "0.25.0", + "@esbuild/win32-ia32": "0.25.0", + "@esbuild/win32-x64": "0.25.0" + } + }, + "escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true + }, + "fast-glob": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", + "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.8" + }, + "dependencies": { + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + } + } + }, + "fastq": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz", + "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==", + "dev": true, + "requires": { + "reusify": "^1.0.4" + } + }, + "fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "follow-redirects": { + "version": "1.15.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", + "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", + "dev": true + }, + "foreground-child": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", + "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.6", + "signal-exit": "^4.0.1" + } + }, + "form-data": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.2.tgz", + "integrity": "sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w==", + "dev": true, + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "mime-types": "^2.1.12" + } + }, + "fraction.js": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", + "dev": true + }, + "fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "optional": true + }, + "function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true + }, + "get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "dev": true, + "requires": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + } + }, + "get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "dev": true, + "requires": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + } + }, + "glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "dev": true, + "requires": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + } + }, + "glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "requires": { + "is-glob": "^4.0.3" + } + }, + "gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "dev": true + }, + "has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "dev": true, + "requires": { + "has-symbols": "^1.0.3" + } + }, + "hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "requires": { + "function-bind": "^1.1.2" + } + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-core-module": { + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", + "dev": true, + "requires": { + "hasown": "^2.0.2" + } + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "dev": true, + "requires": { + "@isaacs/cliui": "^8.0.2", + "@pkgjs/parseargs": "^0.11.0" + } + }, + "jiti": { + "version": "1.21.7", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.7.tgz", + "integrity": "sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==", + "dev": true + }, + "laravel-vite-plugin": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/laravel-vite-plugin/-/laravel-vite-plugin-1.2.0.tgz", + "integrity": "sha512-R0pJ+IcTVeqEMoKz/B2Ij57QVq3sFTABiFmb06gAwFdivbOgsUtuhX6N2MGLEArajrS3U5JbberzwOe7uXHMHQ==", + "dev": true, + "requires": { + "picocolors": "^1.0.0", + "vite-plugin-full-reload": "^1.1.0" + } + }, + "lilconfig": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz", + "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==", + "dev": true + }, + "lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "dev": true + }, + "math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "dev": true + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true + }, + "micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "dev": true, + "requires": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + } + }, + "mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true + }, + "mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "requires": { + "mime-db": "1.52.0" + } + }, + "minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "requires": { + "brace-expansion": "^2.0.1" + } + }, + "minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "dev": true + }, + "mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "dev": true, + "requires": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "nanoid": { + "version": "3.3.8", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", + "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", + "dev": true + }, + "node-releases": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", + "dev": true + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + }, + "normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "dev": true + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true + }, + "object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", + "dev": true + }, + "package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", + "dev": true + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "dev": true, + "requires": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + } + }, + "picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true + }, + "pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "dev": true + }, + "postcss": { + "version": "8.5.3", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.3.tgz", + "integrity": "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==", + "dev": true, + "requires": { + "nanoid": "^3.3.8", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + } + }, + "postcss-import": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + } + }, + "postcss-js": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", + "dev": true, + "requires": { + "camelcase-css": "^2.0.1" + } + }, + "postcss-load-config": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz", + "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==", + "dev": true, + "requires": { + "lilconfig": "^3.0.0", + "yaml": "^2.3.4" + } + }, + "postcss-nested": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz", + "integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==", + "dev": true, + "requires": { + "postcss-selector-parser": "^6.1.1" + } + }, + "postcss-selector-parser": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", + "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", + "dev": true, + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + } + }, + "postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true + }, + "proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "dev": true + }, + "queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true + }, + "read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "dev": true, + "requires": { + "pify": "^2.3.0" + } + }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "requires": { + "picomatch": "^2.2.1" + } + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true + }, + "resolve": { + "version": "1.22.10", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz", + "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==", + "dev": true, + "requires": { + "is-core-module": "^2.16.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + } + }, + "reusify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", + "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", + "dev": true + }, + "rollup": { + "version": "4.34.8", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.34.8.tgz", + "integrity": "sha512-489gTVMzAYdiZHFVA/ig/iYFllCcWFHMvUHI1rpFmkoUtRlQxqh6/yiNqnYibjMZ2b/+FUQwldG+aLsEt6bglQ==", + "dev": true, + "requires": { + "@rollup/rollup-android-arm-eabi": "4.34.8", + "@rollup/rollup-android-arm64": "4.34.8", + "@rollup/rollup-darwin-arm64": "4.34.8", + "@rollup/rollup-darwin-x64": "4.34.8", + "@rollup/rollup-freebsd-arm64": "4.34.8", + "@rollup/rollup-freebsd-x64": "4.34.8", + "@rollup/rollup-linux-arm-gnueabihf": "4.34.8", + "@rollup/rollup-linux-arm-musleabihf": "4.34.8", + "@rollup/rollup-linux-arm64-gnu": "4.34.8", + "@rollup/rollup-linux-arm64-musl": "4.34.8", + "@rollup/rollup-linux-loongarch64-gnu": "4.34.8", + "@rollup/rollup-linux-powerpc64le-gnu": "4.34.8", + "@rollup/rollup-linux-riscv64-gnu": "4.34.8", + "@rollup/rollup-linux-s390x-gnu": "4.34.8", + "@rollup/rollup-linux-x64-gnu": "4.34.8", + "@rollup/rollup-linux-x64-musl": "4.34.8", + "@rollup/rollup-win32-arm64-msvc": "4.34.8", + "@rollup/rollup-win32-ia32-msvc": "4.34.8", + "@rollup/rollup-win32-x64-msvc": "4.34.8", + "@types/estree": "1.0.6", + "fsevents": "~2.3.2" + } + }, + "run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "requires": { + "queue-microtask": "^1.2.2" + } + }, + "rxjs": { + "version": "7.8.2", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.2.tgz", + "integrity": "sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==", + "dev": true, + "requires": { + "tslib": "^2.1.0" + } + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, + "shell-quote": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.2.tgz", + "integrity": "sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==", + "dev": true + }, + "signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true + }, + "source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "dev": true + }, + "string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "requires": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + } + }, + "string-width-cjs": { + "version": "npm:string-width@4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + } + } + }, + "strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "requires": { + "ansi-regex": "^6.0.1" + } + }, + "strip-ansi-cjs": { + "version": "npm:strip-ansi@6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + } + } + }, + "sucrase": { + "version": "3.35.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", + "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", + "dev": true, + "requires": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "^10.3.10", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + } + }, + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true + }, + "tailwindcss": { + "version": "3.4.17", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.17.tgz", + "integrity": "sha512-w33E2aCvSDP0tW9RZuNXadXlkHXqFzSkQew/aIa2i/Sj8fThxwovwlXHSPXTbAHwEIhBFXAedUhP2tueAKP8Og==", + "dev": true, + "requires": { + "@alloc/quick-lru": "^5.2.0", + "arg": "^5.0.2", + "chokidar": "^3.6.0", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.3.2", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "jiti": "^1.21.6", + "lilconfig": "^3.1.3", + "micromatch": "^4.0.8", + "normalize-path": "^3.0.0", + "object-hash": "^3.0.0", + "picocolors": "^1.1.1", + "postcss": "^8.4.47", + "postcss-import": "^15.1.0", + "postcss-js": "^4.0.1", + "postcss-load-config": "^4.0.2", + "postcss-nested": "^6.2.0", + "postcss-selector-parser": "^6.1.2", + "resolve": "^1.22.8", + "sucrase": "^3.35.0" + } + }, + "thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "dev": true, + "requires": { + "any-promise": "^1.0.0" + } + }, + "thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "dev": true, + "requires": { + "thenify": ">= 3.1.0 < 4" + } + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } + }, + "tree-kill": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", + "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", + "dev": true + }, + "ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", + "dev": true + }, + "tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "dev": true + }, + "update-browserslist-db": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", + "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", + "dev": true, + "requires": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "vite": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/vite/-/vite-6.2.0.tgz", + "integrity": "sha512-7dPxoo+WsT/64rDcwoOjk76XHj+TqNTIvHKcuMQ1k4/SeHDaQt5GFAeLYzrimZrMpn/O6DtdI03WUjdxuPM0oQ==", + "dev": true, + "requires": { + "esbuild": "^0.25.0", + "fsevents": "~2.3.3", + "postcss": "^8.5.3", + "rollup": "^4.30.1" + } + }, + "vite-plugin-full-reload": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/vite-plugin-full-reload/-/vite-plugin-full-reload-1.2.0.tgz", + "integrity": "sha512-kz18NW79x0IHbxRSHm0jttP4zoO9P9gXh+n6UTwlNKnviTTEpOlum6oS9SmecrTtSr+muHEn5TUuC75UovQzcA==", + "dev": true, + "requires": { + "picocolors": "^1.0.0", + "picomatch": "^2.3.1" + } + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "requires": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true + } + } + }, + "wrap-ansi-cjs": { + "version": "npm:wrap-ansi@7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + } + } + }, + "y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true + }, + "yaml": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.7.0.tgz", + "integrity": "sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==", + "dev": true + }, + "yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "requires": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + } + } + }, + "yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..e32a862 --- /dev/null +++ b/package.json @@ -0,0 +1,17 @@ +{ + "private": true, + "type": "module", + "scripts": { + "build": "vite build", + "dev": "vite" + }, + "devDependencies": { + "autoprefixer": "^10.4.20", + "axios": "^1.7.4", + "concurrently": "^9.0.1", + "laravel-vite-plugin": "^1.2.0", + "postcss": "^8.4.47", + "tailwindcss": "^3.4.13", + "vite": "^6.0.11" + } +} diff --git a/phpunit.xml b/phpunit.xml new file mode 100644 index 0000000..506b9a3 --- /dev/null +++ b/phpunit.xml @@ -0,0 +1,33 @@ + + + + + tests/Unit + + + tests/Feature + + + + + app + + + + + + + + + + + + + + + + diff --git a/postcss.config.js b/postcss.config.js new file mode 100644 index 0000000..49c0612 --- /dev/null +++ b/postcss.config.js @@ -0,0 +1,6 @@ +export default { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +}; diff --git a/public/.htaccess b/public/.htaccess new file mode 100644 index 0000000..b574a59 --- /dev/null +++ b/public/.htaccess @@ -0,0 +1,25 @@ + + + Options -MultiViews -Indexes + + + RewriteEngine On + + # Handle Authorization Header + RewriteCond %{HTTP:Authorization} . + RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] + + # Handle X-XSRF-Token Header + RewriteCond %{HTTP:x-xsrf-token} . + RewriteRule .* - [E=HTTP_X_XSRF_TOKEN:%{HTTP:X-XSRF-Token}] + + # Redirect Trailing Slashes If Not A Folder... + RewriteCond %{REQUEST_FILENAME} !-d + RewriteCond %{REQUEST_URI} (.+)/$ + RewriteRule ^ %1 [L,R=301] + + # Send Requests To Front Controller... + RewriteCond %{REQUEST_FILENAME} !-d + RewriteCond %{REQUEST_FILENAME} !-f + RewriteRule ^ index.php [L] + diff --git a/public/DatabaseSeeder.php b/public/DatabaseSeeder.php new file mode 100644 index 0000000..2499e34 --- /dev/null +++ b/public/DatabaseSeeder.php @@ -0,0 +1,19 @@ +call([ + UserSeeder::class, + CustomerSeeder::class, + ]); + } +} diff --git a/public/assets/assets b/public/assets/assets new file mode 120000 index 0000000..16b8bd0 --- /dev/null +++ b/public/assets/assets @@ -0,0 +1 @@ +/home/oyiwebid/dijeeelektronik/public/assets \ No newline at end of file diff --git a/public/assets/images/buatakun.png b/public/assets/images/buatakun.png new file mode 100644 index 0000000..8d2fe4b Binary files /dev/null and b/public/assets/images/buatakun.png differ diff --git a/public/assets/images/jne.png b/public/assets/images/jne.png new file mode 100644 index 0000000..386cbad Binary files /dev/null and b/public/assets/images/jne.png differ diff --git a/public/assets/images/login.png b/public/assets/images/login.png new file mode 100644 index 0000000..67ccd27 Binary files /dev/null and b/public/assets/images/login.png differ diff --git a/public/assets/images/lonceng.png b/public/assets/images/lonceng.png new file mode 100644 index 0000000..df9d1d5 Binary files /dev/null and b/public/assets/images/lonceng.png differ diff --git a/public/assets/images/pos.png b/public/assets/images/pos.png new file mode 100644 index 0000000..cc18db9 Binary files /dev/null and b/public/assets/images/pos.png differ diff --git a/public/assets/images/profile.json b/public/assets/images/profile.json new file mode 100644 index 0000000..f49dbb1 --- /dev/null +++ b/public/assets/images/profile.json @@ -0,0 +1,63 @@ +{ + "v": "5.7.4", + "fr": 30, + "ip": 0, + "op": 60, + "w": 100, + "h": 100, + "nm": "Profile Animation", + "ddd": 0, + "assets": [], + "layers": [ + { + "ddd": 0, + "ind": 1, + "ty": 4, + "nm": "Circle", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { "x": [0.833], "y": [0.833] }, + "o": { "x": [0.167], "y": [0.167] }, + "t": 0, + "s": [100] + }, + { + "t": 30, + "s": [50] + }, + { + "t": 60, + "s": [100] + } + ] + }, + "r": { "a": 0, "k": 0 }, + "p": { "a": 0, "k": [50, 50, 0] }, + "a": { "a": 0, "k": [0, 0, 0] }, + "s": { "a": 0, "k": [100, 100, 100] } + }, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "d": 1, + "ty": "el", + "s": { "a": 0, "k": [80, 80] }, + "p": { "a": 0, "k": [0, 0] } + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.173, 0.478, 0.484, 1] }, + "o": { "a": 0, "k": 100 } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/public/assets/images/tiki.png b/public/assets/images/tiki.png new file mode 100644 index 0000000..e45e27d Binary files /dev/null and b/public/assets/images/tiki.png differ diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000..e69de29 diff --git a/public/index.php b/public/index.php new file mode 100644 index 0000000..09b9f90 --- /dev/null +++ b/public/index.php @@ -0,0 +1,17 @@ +handleRequest(Request::capture()); diff --git a/public/robots.txt b/public/robots.txt new file mode 100644 index 0000000..eb05362 --- /dev/null +++ b/public/robots.txt @@ -0,0 +1,2 @@ +User-agent: * +Disallow: diff --git a/resources/css/app.css b/resources/css/app.css new file mode 100644 index 0000000..b5c61c9 --- /dev/null +++ b/resources/css/app.css @@ -0,0 +1,3 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; diff --git a/resources/js/app.js b/resources/js/app.js new file mode 100644 index 0000000..e59d6a0 --- /dev/null +++ b/resources/js/app.js @@ -0,0 +1 @@ +import './bootstrap'; diff --git a/resources/js/bootstrap.js b/resources/js/bootstrap.js new file mode 100644 index 0000000..5f1390b --- /dev/null +++ b/resources/js/bootstrap.js @@ -0,0 +1,4 @@ +import axios from 'axios'; +window.axios = axios; + +window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest'; diff --git a/resources/php b/resources/php new file mode 100644 index 0000000..f9e8d9e --- /dev/null +++ b/resources/php @@ -0,0 +1,169 @@ + + + + + + Lupa Password - DJEE Elektronik + + + + + + +
+
+
+ Logo +

Lupa Password

+

+ Masukkan username dan nomor HP Anda untuk mendapatkan password baru. +

+
+ + @if (session('status')) + + @endif @if($errors->any()) +
+
    + @foreach($errors->all() as $error) +
  • {{ $error }}
  • + @endforeach +
+
+ @endif + +
+ @csrf +
+ + +
+ +
+ + +
+ + + + +
+
+
+ + diff --git a/resources/views/admin/banners/create.blade.php b/resources/views/admin/banners/create.blade.php new file mode 100644 index 0000000..b663c94 --- /dev/null +++ b/resources/views/admin/banners/create.blade.php @@ -0,0 +1,104 @@ +@extends('layouts.admin') + +@section('content') +
+

+ Tambah Banner Baru +

+ +
+
+ @csrf + +
+ +
+ + + @error('judul') +

{{ $message }}

+ @enderror +
+ + +
+ + + @error('url') +

{{ $message }}

+ @enderror +
+ + +
+ + + @error('deskripsi') +

{{ $message }}

+ @enderror +
+ + +
+ + +

Format: JPG, PNG. Maksimal 2MB. Ukuran yang disarankan: 1200 x 400 pixel.

+ @error('gambar') +

{{ $message }}

+ @enderror +
+ + +
+ +
+ + +
+ @error('aktif') +

{{ $message }}

+ @enderror +
+
+ + +
+

Periode Aktif (opsional)

+

Kosongkan kedua field jika banner tidak memiliki batasan waktu

+
+
+ + + @error('tanggal_mulai') +

{{ $message }}

+ @enderror +
+ +
+ + + @error('tanggal_selesai') +

{{ $message }}

+ @enderror +
+
+
+ +
+ + Kembali + + +
+
+
+
+@endsection \ No newline at end of file diff --git a/resources/views/admin/banners/edit.blade.php b/resources/views/admin/banners/edit.blade.php new file mode 100644 index 0000000..f1deff0 --- /dev/null +++ b/resources/views/admin/banners/edit.blade.php @@ -0,0 +1,123 @@ +@extends('layouts.admin') + +@section('content') +
+

+ Edit Banner +

+ +
+
+ @csrf + @method('PUT') + +
+ +
+ + + @error('judul') +

{{ $message }}

+ @enderror +
+ + +
+ + + @error('url') +

{{ $message }}

+ @enderror +
+ + +
+ + + @error('deskripsi') +

{{ $message }}

+ @enderror +
+ + +
+ +
+ {{ $banner->judul }} +
+
+ + +
+ + +

Format: JPG, PNG. Maksimal 2MB. Biarkan kosong jika tidak ingin mengganti gambar

+ @error('gambar') +

{{ $message }}

+ @enderror +
+ + +
+ + +

Urutan menentukan posisi banner (angka kecil tampil lebih dulu)

+ @error('urutan') +

{{ $message }}

+ @enderror +
+ + +
+ +
+ + +
+ @error('aktif') +

{{ $message }}

+ @enderror +
+
+ + +
+

Periode Aktif (opsional)

+

Kosongkan kedua field jika banner tidak memiliki batasan waktu

+
+
+ + + @error('tanggal_mulai') +

{{ $message }}

+ @enderror +
+ +
+ + + @error('tanggal_selesai') +

{{ $message }}

+ @enderror +
+
+
+ +
+ + Kembali + + +
+
+
+
+@endsection \ No newline at end of file diff --git a/resources/views/admin/banners/index.blade.php b/resources/views/admin/banners/index.blade.php new file mode 100644 index 0000000..ac6fd29 --- /dev/null +++ b/resources/views/admin/banners/index.blade.php @@ -0,0 +1,125 @@ +@extends('layouts.admin') + +@section('content') +
+

+ Manajemen Banner +

+ + @if(session('success')) + + @endif + + @if(session('info')) + + @endif + + + +
+
+ + + + + + + + + + + + + @forelse($banners as $banner) + + + + + + + + + @empty + + + + @endforelse + +
JudulGambarUrutanPeriodeStatusAksi
+
+
+

{{ $banner->judul }}

+

{{ $banner->deskripsi ? Str::limit($banner->deskripsi, 50) : 'Tidak ada deskripsi' }}

+
+
+
+ @if($banner->gambar) + {{ $banner->judul }} + @else + Tidak ada gambar + @endif + +
+ {{ $banner->urutan }} +
+
+ @csrf + +
+
+ @csrf + +
+
+
+
+

Mulai: {{ $banner->tanggal_mulai ? $banner->tanggal_mulai->format('d M Y') : 'Tidak diatur' }}

+

Selesai: {{ $banner->tanggal_selesai ? $banner->tanggal_selesai->format('d M Y') : 'Tidak diatur' }}

+
+ + {{ $banner->aktif ? 'Aktif' : 'Tidak Aktif' }} + + +
+
+ @csrf + +
+ + Edit + +
+ @csrf + @method('DELETE') + +
+
+
+ Tidak ada banner yang tersedia. +
+
+
+
+@endsection \ No newline at end of file diff --git a/resources/views/admin/barang/create.blade.php b/resources/views/admin/barang/create.blade.php new file mode 100644 index 0000000..400d2a8 --- /dev/null +++ b/resources/views/admin/barang/create.blade.php @@ -0,0 +1,191 @@ +@extends('layouts.admin') + +@section('content') +
+
+
+

Tambah Barang Baru

+

Isi form di bawah ini untuk menambahkan barang baru ke katalog

+
+ + Kembali + +
+ +
+
+ @if($errors->any()) +
+
+ +

Terjadi kesalahan:

+
+
    + @foreach($errors->all() as $error) +
  • {{ $error }}
  • + @endforeach +
+
+ @endif + +
+ @csrf + + +
+

Informasi Dasar

+
+
+ + +
+ +
+ + +
+
+
+ + +
+

Deskripsi Produk

+
+ + +
+
+ + +
+

Harga dan Stok

+
+
+ +
+ Rp + +
+
+ +
+ + +
+
+
+ + +
+

Gambar Produk

+
+ +
+
+ +
+ +

atau drag and drop

+
+

PNG, JPG, JPEG sampai 2MB

+
+
+
+
+ + +
+ + Batal + + +
+
+
+
+
+ +@push('scripts') + + +@endpush +@endsection \ No newline at end of file diff --git a/resources/views/admin/barang/edit.blade.php b/resources/views/admin/barang/edit.blade.php new file mode 100644 index 0000000..1f3d6e4 --- /dev/null +++ b/resources/views/admin/barang/edit.blade.php @@ -0,0 +1,148 @@ +@extends('layouts.admin') + +@section('content') +@php +use Illuminate\Support\Facades\Storage; +@endphp +
+

Edit Barang

+ + Kembali + +
+ +
+ @if($errors->any()) +
+
    + @foreach($errors->all() as $error) +
  • {{ $error }}
  • + @endforeach +
+
+ @endif + +
+ @csrf + @method('PUT') + +
+
+ + +
+ +
+ + +
+
+ +
+ + +
+ +
+
+ +
+ +
+
+ +
+ + +
+
+ +
+ + @if($barang->gambar) +
+ {{ $barang->nama_barang }} +

Gambar saat ini

+
+ @endif + +

Format: JPG, JPEG, PNG (Max. 2MB). Kosongkan jika tidak ingin mengubah gambar.

+
+ +
+ +
+
+
+@endsection + +@push('scripts') + + +@endpush \ No newline at end of file diff --git a/resources/views/admin/barang/index.blade.php b/resources/views/admin/barang/index.blade.php new file mode 100644 index 0000000..82dd496 --- /dev/null +++ b/resources/views/admin/barang/index.blade.php @@ -0,0 +1,87 @@ +@extends('layouts.admin') + +@section('content') +
+

Data Barang

+ + Tambah Barang + +
+ +@if(session('success')) +
+ {{ session('success') }} +
+@endif + +
+
+ + + + + + + + + + + + + + @forelse($barang as $item) + + + + + + + + + + @empty + + + + @endforelse + +
GambarNamaStokKategoriHargaAksi
+ @if ($item->gambar) + {{ $item->nama_barang }} + @else +
+ +
+ @endif +
+
{{ $item->nama_barang }}
+
+
{{ $item->stok }}
+
+ + {{ $item->kategori }} + + +
Rp {{ number_format($item->harga, 0, ',', '.') }}
+
+
+ + + + + + +
+ @csrf + @method('DELETE') + +
+
+
+ Tidak ada data barang +
+
+
+@endsection \ No newline at end of file diff --git a/resources/views/admin/barang/show.blade.php b/resources/views/admin/barang/show.blade.php new file mode 100644 index 0000000..e8a3bcc --- /dev/null +++ b/resources/views/admin/barang/show.blade.php @@ -0,0 +1,79 @@ +@extends('layouts.admin') + +@section('content') +@php +use Illuminate\Support\Facades\Storage; +@endphp +
+

Detail Barang

+ + Kembali + +
+ +
+
+
+
+
+ @if ($barang->gambar) + {{ $barang->nama_barang }} + @else +
+ +
+ @endif +
+
+ +
+

{{ $barang->nama_barang }}

+ +
+ + {{ $barang->kategori }} + +
+ +
+

Rp {{ number_format($barang->harga, 0, ',', '.') }}

+
+ +
+

Stok: {{ $barang->stok }} unit

+
+ +
+

Deskripsi

+

{{ $barang->deskripsi }}

+
+ +
+
+ + Edit + +
+ @csrf + @method('DELETE') + +
+
+
+
+
+
+ +
+
+

Dibuat pada: {{ $barang->created_at->format('d M Y H:i') }}

+

Terakhir diupdate: {{ $barang->updated_at->format('d M Y H:i') }}

+
+
+
+@endsection \ No newline at end of file diff --git a/resources/views/admin/dashboard.blade.php b/resources/views/admin/dashboard.blade.php new file mode 100644 index 0000000..9c3f9b0 --- /dev/null +++ b/resources/views/admin/dashboard.blade.php @@ -0,0 +1,242 @@ +@extends('layouts.admin') + +@section('content') +
+

Dashboard Admin

+

Selamat datang, {{ Auth::user()->nama }}! Lihat ikhtisar toko Anda di bawah ini.

+
+ + +
+
+
+
+ +
+
+

Total Pengguna

+

{{ $totalPengguna }}

+
+
+ +
+ +
+
+
+ +
+
+

Total Barang

+

{{ $totalBarang }}

+
+
+ +
+ +
+
+
+ +
+
+

Total Pesanan

+

{{ $totalPesanan }}

+
+
+ +
+ +
+
+
+ +
+
+

Total Pendapatan

+

Rp {{ number_format($totalPendapatan, 0, ',', '.') }}

+
+
+ +
+
+ + +
+ +
+
+

Pesanan Terbaru

+ + Lihat semua + +
+
+ + + + + + + + + + + @forelse ($pesananTerbaru as $pesanan) + + + + + + + @empty + + + + @endforelse + +
IDCustomerStatusTanggal
+
{{ $pesanan->id }}
+
+
{{ $pesanan->user->nama }}
+
+ @if($pesanan->status == 'pending') + + Pending + + @elseif($pesanan->status == 'processing') + + Diproses + + @elseif($pesanan->status == 'completed') + + Selesai + + @elseif($pesanan->status == 'cancelled') + + Dibatalkan + + @endif + +
{{ $pesanan->created_at->format('d M Y') }}
+
+ Belum ada pesanan +
+
+
+ + +
+
+

Produk Terlaris

+ + Lihat semua + +
+
+ + + + + + + + + + + @forelse ($produkTerlaris as $barang) + + + + + + + @empty + + + + @endforelse + +
ProdukKategoriTerjualStok
+
+
+ @if($barang->gambar) + {{ $barang->nama_barang }} + @else +
+ +
+ @endif +
+
+
{{ $barang->nama_barang }}
+
Rp {{ number_format($barang->harga, 0, ',', '.') }}
+
+
+
+
{{ $barang->kategori }}
+
+
{{ $barang->total_terjual }}
+
+
{{ $barang->stok }}
+
+ Belum ada data produk +
+
+
+
+ + +
+
+

Aktivitas Terbaru

+
+
+ @forelse ($aktivitasTerbaru as $aktivitas) +
+
+ @if($aktivitas->type == 'order') +
+ +
+ @elseif($aktivitas->type == 'payment') +
+ +
+ @elseif($aktivitas->type == 'user') +
+ +
+ @else +
+ +
+ @endif +
+
+

{{ $aktivitas->description }}

+

{{ $aktivitas->created_at->diffForHumans() }}

+
+
+ @empty +

Belum ada aktivitas terbaru

+ @endforelse +
+
+@endsection \ No newline at end of file diff --git a/resources/views/admin/flash-sales/create.blade.php b/resources/views/admin/flash-sales/create.blade.php new file mode 100644 index 0000000..c1b788a --- /dev/null +++ b/resources/views/admin/flash-sales/create.blade.php @@ -0,0 +1,106 @@ +@extends('layouts.admin') + +@section('content') +
+
+
+

Buat Flash Sale Baru

+

Atur event flash sale dengan harga dan waktu spesial

+
+ + Kembali + +
+
+ +
+
+
+ @csrf + +
+ +
+ + + @error('nama') +

{{ $message }}

+ @enderror +
+ + +
+ +
+ + +
+ @error('aktif') +

{{ $message }}

+ @enderror +
+ + +
+ + + @error('deskripsi') +

{{ $message }}

+ @enderror +
+ + +
+ + +

Format: JPG, PNG. Maksimal 2MB. Ukuran yang disarankan: 1200 x 400 pixel.

+ @error('banner') +

{{ $message }}

+ @enderror +
+ + +
+ + + @error('waktu_mulai') +

{{ $message }}

+ @enderror +
+ + +
+ + + @error('waktu_selesai') +

{{ $message }}

+ @enderror +
+
+ +
+ + +
+
+
+
+ +
+
+ +
+

Informasi

+

Setelah membuat flash sale, Anda dapat menambahkan produk ke dalamnya dengan mengklik "Produk" pada daftar flash sale.

+
+
+
+@endsection \ No newline at end of file diff --git a/resources/views/admin/flash-sales/edit.blade.php b/resources/views/admin/flash-sales/edit.blade.php new file mode 100644 index 0000000..3eddb52 --- /dev/null +++ b/resources/views/admin/flash-sales/edit.blade.php @@ -0,0 +1,138 @@ +@extends('layouts.admin') + +@section('content') +
+
+
+

Edit Flash Sale

+

Perbarui informasi flash sale

+
+ + Kembali + +
+
+ +
+
+
+ @csrf + @method('PUT') + +
+ +
+ + + @error('nama') +

{{ $message }}

+ @enderror +
+ + +
+ +
+ + +
+ @error('aktif') +

{{ $message }}

+ @enderror +
+ + +
+ + + @error('deskripsi') +

{{ $message }}

+ @enderror +
+ + + @if($flashSale->banner) +
+ +
+ {{ $flashSale->nama }} +
+
+ @endif + + +
+ + +

Format: JPG, PNG. Maksimal 2MB. Ukuran yang disarankan: 1200 x 400 pixel.

+ @if($flashSale->banner) +

Biarkan kosong jika tidak ingin mengganti banner

+ @endif + @error('banner') +

{{ $message }}

+ @enderror +
+ + +
+ + + @error('waktu_mulai') +

{{ $message }}

+ @enderror +
+ + +
+ + + @error('waktu_selesai') +

{{ $message }}

+ @enderror +
+
+ +
+ Batal + +
+
+
+
+ +
+
+

Produk dalam Flash Sale

+
+

Jumlah produk: {{ $flashSale->items->count() }}

+ +
+
+ +
+
+ +
+

Informasi Flash Sale

+
    +
  • • Flash sale aktif akan terlihat di halaman dashboard pelanggan.
  • +
  • • Pastikan Anda telah menambahkan produk ke dalam flash sale.
  • +
  • • Produk flash sale akan ditampilkan dengan harga diskon selama periode yang ditentukan.
  • +
+
+
+
+
+@endsection \ No newline at end of file diff --git a/resources/views/admin/flash-sales/index.blade.php b/resources/views/admin/flash-sales/index.blade.php new file mode 100644 index 0000000..6159524 --- /dev/null +++ b/resources/views/admin/flash-sales/index.blade.php @@ -0,0 +1,98 @@ +@extends('layouts.admin') + +@section('content') +
+

+ Manajemen Flash Sale +

+ + @if(session('success')) + + @endif + + + +
+
+ + + + + + + + + + + + @forelse($flashSales as $flashSale) + + + + + + + + @empty + + + + @endforelse + +
NamaBannerPeriodeStatusAksi
+
+
+

{{ $flashSale->nama }}

+

{{ $flashSale->deskripsi ? Str::limit($flashSale->deskripsi, 50) : 'Tidak ada deskripsi' }}

+
+
+
+ @if($flashSale->banner) + {{ $flashSale->nama }} + @else + Tidak ada banner + @endif + +

Mulai: {{ $flashSale->waktu_mulai->format('d M Y H:i') }}

+

Selesai: {{ $flashSale->waktu_selesai->format('d M Y H:i') }}

+
+ + {{ $flashSale->aktif ? 'Aktif' : 'Tidak Aktif' }} + + +
+
+ @csrf + +
+ + Item + + + Edit + +
+ @csrf + @method('DELETE') + +
+
+
+ Tidak ada flash sale yang tersedia. +
+
+
+
+@endsection \ No newline at end of file diff --git a/resources/views/admin/flash-sales/items.blade.php b/resources/views/admin/flash-sales/items.blade.php new file mode 100644 index 0000000..362de9b --- /dev/null +++ b/resources/views/admin/flash-sales/items.blade.php @@ -0,0 +1,292 @@ +@extends('layouts.admin') + +@section('content') +
+
+
+

Produk Flash Sale

+

{{ $flashSale->nama }} ({{ $flashSale->waktu_mulai->format('d/m/Y H:i') }} - {{ $flashSale->waktu_selesai->format('d/m/Y H:i') }})

+
+ + Kembali + +
+
+ +@if (session('success')) +
+ {{ session('success') }} +
+@endif + +
+ +
+
+

Tambah Produk ke Flash Sale

+ +
+ @csrf + + +
+ + + @error('barang_id') +

{{ $message }}

+ @enderror +
+ + +
+ +
+
+ Rp +
+ +
+ @error('harga_flash_sale') +

{{ $message }}

+ @enderror +
+ + +
+ +
+ +
+ % +
+
+

Akan dihitung otomatis jika dibiarkan kosong

+ @error('persentase_diskon') +

{{ $message }}

+ @enderror +
+ + +
+ + +

Berapa unit yang tersedia untuk flash sale ini

+ @error('stok_flash_sale') +

{{ $message }}

+ @enderror +
+ + +
+ +
+ + +
+ @error('aktif') +

{{ $message }}

+ @enderror +
+ + +
+
+
+ + +
+
+
+

Daftar Produk dalam Flash Sale

+

Total: {{ $flashSale->items->count() }} produk

+
+ +
+ + + + + + + + + + + + @forelse($flashSale->items as $item) + + + + + + + + @empty + + + + @endforelse + +
ProdukHargaStokStatusAksi
+
+ @if($item->barang->gambar) + {{ $item->barang->nama }} + @else +
+ +
+ @endif +
+
{{ $item->barang->nama }}
+
SKU: {{ $item->barang->kode ?? 'N/A' }}
+
+
+
+
Rp {{ number_format($item->harga_flash_sale, 0, ',', '.') }}
+
+ Diskon {{ $item->persentase_diskon }}% +
+
+ Normal: Rp {{ number_format($item->barang->harga, 0, ',', '.') }} +
+
+
{{ $item->stok_flash_sale }} unit
+
+ Terjual: {{ $item->stok_terjual }} +
+
+ Sisa: {{ $item->stok_flash_sale - $item->stok_terjual }} +
+
+ + {{ $item->aktif ? 'Aktif' : 'Nonaktif' }} + + + +
+ @csrf + @method('DELETE') + +
+
+ Belum ada produk dalam flash sale ini. +
+
+
+
+
+ + + + +@endsection + +@push('scripts') + +@endpush \ No newline at end of file diff --git a/resources/views/admin/laporan/generate.blade.php b/resources/views/admin/laporan/generate.blade.php new file mode 100644 index 0000000..63042d2 --- /dev/null +++ b/resources/views/admin/laporan/generate.blade.php @@ -0,0 +1,156 @@ +@extends('layouts.admin') + +@section('content') +
+
+
+
+

+ Laporan {{ ucfirst($jenis) }} +

+

+ Periode: {{ \Carbon\Carbon::parse($startDate)->format('d M Y') }} - {{ \Carbon\Carbon::parse($endDate)->format('d M Y') }} +

+
+
+ @csrf + + + + + Kembali + + +
+
+ + @if($jenis === 'transaksi') +
+
+
+
+

Total Transaksi

+

{{ $totalTransaksi }}

+
+
+ +
+
+
+ +
+
+
+

Total Pendapatan

+

+ Rp {{ number_format($totalPendapatan, 0, ',', '.') }} +

+
+
+ +
+
+
+
+ +
+ + + + + + + + + + + + @forelse($data as $t) + + + + + + + + @empty + + + + @endforelse + +
+ Kode Transaksi + + Tanggal + + Customer + + Barang + + Total +
+ {{ $t->kode_transaksi }} + + {{ $t->created_at->format('d/m/Y H:i') }} + + {{ $t->user->nama }} + + {{ $t->pesanan->barang->nama_barang }} + + Rp {{ number_format($t->total_pembayaran, 0, ',', '.') }} +
+ Tidak ada data transaksi +
+
+ @else +
+ + + + + + + + + + + @forelse($data as $b) + + + + + + + @empty + + + + @endforelse + +
+ Nama Barang + + Stok + + Harga + + Total Pesanan +
+ {{ $b->nama_barang }} + + {{ $b->stok }} + + Rp {{ number_format($b->harga, 0, ',', '.') }} + + {{ $b->pesanan_count }} +
+ Tidak ada data barang +
+
+ @endif +
+
+@endsection \ No newline at end of file diff --git a/resources/views/admin/laporan/index.blade.php b/resources/views/admin/laporan/index.blade.php new file mode 100644 index 0000000..e0c2ce5 --- /dev/null +++ b/resources/views/admin/laporan/index.blade.php @@ -0,0 +1,78 @@ +@extends('layouts.admin') + +@section('content') +
+
+
+

Generate Laporan

+

Pilih jenis dan periode laporan yang ingin Anda generate

+
+ +
+
+
+
+ + +
+ +
+ + +
+
+ + + +
+ +
+
+
+
+
+ + +@endsection \ No newline at end of file diff --git a/resources/views/admin/laporan/pdf.blade.php b/resources/views/admin/laporan/pdf.blade.php new file mode 100644 index 0000000..511f259 --- /dev/null +++ b/resources/views/admin/laporan/pdf.blade.php @@ -0,0 +1,115 @@ + + + + + + Laporan {{ ucfirst($jenis) }} + + + + +
+
DIJEE Elektronik
+
+ Laporan {{ ucfirst($jenis) }}
+ Periode: {{ \Carbon\Carbon::parse($tanggal_mulai)->format('d M Y') }} - {{ \Carbon\Carbon::parse($tanggal_selesai)->format('d M Y') }} +
+
+ + @if($jenis === 'transaksi') +
+

Total Transaksi: {{ $total_transaksi }}

+

Total Pendapatan: Rp {{ number_format($total_pendapatan, 0, ',', '.') }}

+
+ + + + + + + + + + + + + @foreach($transaksi as $t) + + + + + + + + @endforeach + +
Kode TransaksiTanggalCustomerBarangTotal
{{ $t->kode_transaksi }}{{ $t->created_at->format('d/m/Y') }}{{ $t->user->nama }}{{ $t->pesanan->barang->nama_barang }}Rp {{ number_format($t->total_pembayaran, 0, ',', '.') }}
+ @else + + + + + + + + + + + @foreach($barang as $b) + + + + + + + @endforeach + +
Nama BarangStokHargaTotal Pesanan
{{ $b->nama_barang }}{{ $b->stok }}Rp {{ number_format($b->harga, 0, ',', '.') }}{{ $b->pesanan_count }}
+ @endif + + + \ No newline at end of file diff --git a/resources/views/admin/pesanan/index.blade.php b/resources/views/admin/pesanan/index.blade.php new file mode 100644 index 0000000..efc2dad --- /dev/null +++ b/resources/views/admin/pesanan/index.blade.php @@ -0,0 +1,128 @@ +@extends('layouts.admin') + +@section('content') +
+

Daftar Pesanan

+
+ +@if(session('success')) +
+ {{ session('success') }} +
+@endif + + +
+
+
+ + +
+
+ + +
+
+ + +
+
+ + + Reset + +
+
+
+ +
+
+ + + + + + + + + + + + + + + + @forelse($pesanan as $item) + + + + + + + + + + + + @empty + + + + @endforelse + +
ID PesananPelangganBarangJumlahStatusTanggalTotalAksi
+
#{{ $item->id }}
+
+
{{ $item->user->nama ?? $item->user->name }}
+
{{ $item->user->email }}
+
+
{{ $item->barang->nama_barang }}
+
+
{{ $item->jumlah }}
+
+ @if($item->status == 'pending') + + Menunggu + + @elseif($item->status == 'diproses') + + Dibayar + + @elseif($item->status == 'dikirim') + + Dikirim + + @elseif($item->status == 'selesai') + + Selesai + + @elseif($item->status == 'dibatalkan') + + Dibatalkan + + @endif + +
{{ $item->created_at->format('d M Y H:i') }}
+
+
Rp {{ number_format($item->total_harga, 0, ',', '.') }}
+
+ + Detail + +
+ Tidak ada data pesanan +
+
+
+@endsection \ No newline at end of file diff --git a/resources/views/admin/pesanan/resi.blade.php b/resources/views/admin/pesanan/resi.blade.php new file mode 100644 index 0000000..c5d2c16 --- /dev/null +++ b/resources/views/admin/pesanan/resi.blade.php @@ -0,0 +1,150 @@ + + + + + Resi #{{ $pesanan->id }} + + + +
+
+

Resi Pengiriman

+

#{{ $pesanan->id }}

+

{{ $pesanan->created_at->format('d M Y H:i') }}

+
+ +
+
+
+

Pengirim

+
+
DIJEEELEKTRONIK
+
+
+
+

Penerima

+
+
{{ $pesanan->user->nama }}
+
{{ $pesanan->shipping_info ?? $pesanan->user->alamat }}
+
+
+
+
+ +
+

Detail Pengiriman

+
+
Kurir
+
{{ strtoupper($pesanan->shipping_courier) }} {{ $pesanan->shipping_service }}
+
+
+
Estimasi
+
{{ $pesanan->shipping_etd }} hari
+
+
+
Ongkos Kirim
+
Rp {{ number_format($pesanan->shipping_cost, 0, ',', '.') }}
+
+
+ +
+

Detail Barang

+ + + + + + + + + @if($pesanan->items->count() > 0) + @foreach($pesanan->items as $item) + + + + + @endforeach + @else + + + + + @endif + +
BarangJumlah
{{ $item->barang->nama_barang }}{{ $item->jumlah }}
{{ $pesanan->barang->nama_barang }}{{ $pesanan->jumlah }}
+
+ + +
+ + \ No newline at end of file diff --git a/resources/views/admin/pesanan/show.blade.php b/resources/views/admin/pesanan/show.blade.php new file mode 100644 index 0000000..95acd12 --- /dev/null +++ b/resources/views/admin/pesanan/show.blade.php @@ -0,0 +1,460 @@ +@extends('layouts.admin') + +@push('scripts') + + + + + +@endpush + +@section('content') +
+
+ + +
+
+ +
+
+

Detail Pesanan #{{ $pesanan->id }}

+

Tanggal: {{ $pesanan->created_at->format('d M Y H:i') }}

+
+
+ + {{ ucfirst($pesanan->status) }} + + @if($pesanan->status === 'diproses' || $pesanan->status === 'dikirim') +
+ +
+ @endif +
+
+ + +
+ +
+ +
+

+ + Informasi Barang +

+ @if($pesanan->items->count() > 0) + @foreach($pesanan->items as $item) +
+
+ @if($item->barang->gambar) + {{ $item->barang->nama_barang }} + @else +
+ No Image +
+ @endif +
+
+

{{ $item->barang->nama_barang }}

+
+
+

Jumlah

+

{{ $item->jumlah }}

+
+
+

Harga

+

Rp {{ number_format($item->harga, 0, ',', '.') }}

+
+
+

Subtotal

+

Rp {{ number_format($item->total_harga, 0, ',', '.') }}

+
+
+
+
+ @endforeach + @else +
+
+ @if($pesanan->barang->gambar) + {{ $pesanan->barang->nama_barang }} + @else +
+ No Image +
+ @endif +
+
+

{{ $pesanan->barang->nama_barang }}

+
+
+

Jumlah

+

{{ $pesanan->jumlah }}

+
+
+

Harga

+

Rp {{ number_format($pesanan->barang->harga, 0, ',', '.') }}

+
+
+
+
+ @endif +
+ + +
+

+ + Informasi Pengiriman +

+
+
+

Nama Penerima

+

{{ $pesanan->user->nama }}

+
+
+

Alamat

+

{{ $pesanan->shipping_info ?? $pesanan->user->alamat }}

+
+
+

Kurir

+

{{ strtoupper($pesanan->shipping_courier) }} {{ $pesanan->shipping_service }}

+
+
+

Ongkos Kirim

+

Rp {{ number_format($pesanan->shipping_cost, 0, ',', '.') }}

+
+
+

Estimasi Pengiriman

+

{{ $pesanan->shipping_etd }} hari

+
+ @if($pesanan->catatan) +
+

Catatan Pengiriman

+

{{ $pesanan->catatan }}

+
+ @endif +
+
+
+ + +
+ +
+

+ + Informasi Pesanan +

+
+
+

Total Harga

+

Rp {{ number_format($pesanan->total_harga, 0, ',', '.') }}

+
+ @if($pesanan->catatan) +
+

Catatan

+

{{ $pesanan->catatan }}

+
+ @endif +
+
+ + +
+

+ + Informasi Pelanggan +

+
+
+

Nama

+

{{ $pesanan->user->nama ?? $pesanan->user->name }}

+
+
+

Email

+

{{ $pesanan->user->email }}

+
+
+

No. Telepon

+

{{ $pesanan->user->no_telp ?? '-' }}

+
+
+
+ + + @if($pesanan->transaksi) +
+

+ + Informasi Pembayaran +

+
+
+

Status Pembayaran

+

{{ ucfirst(str_replace('_', ' ', $pesanan->transaksi->status)) }}

+
+
+

Total Pembayaran

+

Rp {{ number_format($pesanan->transaksi->total_pembayaran, 0, ',', '.') }}

+
+ @if($pesanan->transaksi->bukti_pembayaran) +
+

Bukti Pembayaran

+ Bukti Pembayaran +
+ @endif +
+
+ @endif + + +
+

+ + Update Status +

+
+ @csrf +
+ +
+ +
+
+ + + +
+
+
+
+
+
+ + + + + +@endsection \ No newline at end of file diff --git a/resources/views/admin/transaksi/index.blade.php b/resources/views/admin/transaksi/index.blade.php new file mode 100644 index 0000000..cbbc280 --- /dev/null +++ b/resources/views/admin/transaksi/index.blade.php @@ -0,0 +1,121 @@ +@extends('layouts.admin') + +@section('content') +
+

Daftar Transaksi

+
+ +@if(session('success')) +
+ {{ session('success') }} +
+@endif + + +
+
+
+ + +
+
+ + +
+
+ + +
+
+ + + Reset + +
+
+
+ +
+
+ + + + + + + + + + + + + + + @forelse($transaksi as $item) + + + + + + + + + + + @empty + + + + @endforelse + +
ID TransaksiPelangganID PesananTotalMetode PembayaranStatusTanggalAksi
+
#{{ $item->id }}
+
+
{{ $item->user->nama ?? $item->user->name }}
+
{{ $item->user->email }}
+
+
#{{ $item->pesanan->id }}
+
+
Rp {{ number_format($item->jumlah, 0, ',', '.') }}
+
+
{{ $item->metode_pembayaran }}
+
+ @if($item->status == 'pending') + + Menunggu + + @elseif($item->status == 'paid') + + Dibayar + + @elseif($item->status == 'completed') + + Selesai + + @elseif($item->status == 'cancelled') + + Dibatalkan + + @endif + +
{{ $item->created_at->format('d M Y H:i') }}
+
+ + Detail + +
+ Tidak ada data transaksi +
+
+
+@endsection \ No newline at end of file diff --git a/resources/views/admin/transaksi/show.blade.php b/resources/views/admin/transaksi/show.blade.php new file mode 100644 index 0000000..55e74a3 --- /dev/null +++ b/resources/views/admin/transaksi/show.blade.php @@ -0,0 +1,192 @@ +@extends('layouts.admin') + +@section('content') +
+

Detail Transaksi #{{ $transaksi->id }}

+ + Kembali + +
+ +@if(session('success')) +
+ {{ session('success') }} +
+@endif + +
+ +
+

Info Pelanggan

+
+
+

Nama

+

{{ $transaksi->user->nama ?? $transaksi->user->name }}

+
+
+

Email

+

{{ $transaksi->user->email }}

+
+ @if($transaksi->user->no_telp) +
+

No. Telepon

+

{{ $transaksi->user->no_telp }}

+
+ @endif +
+
+ + +
+

Info Transaksi

+
+
+

ID Transaksi

+

#{{ $transaksi->id }}

+
+
+

ID Pesanan

+

#{{ $transaksi->pesanan->id }}

+
+
+

Tanggal Transaksi

+

{{ $transaksi->created_at->format('d M Y H:i') }}

+
+
+

Metode Pembayaran

+

{{ $transaksi->metode_pembayaran }}

+
+
+

Jumlah

+

Rp {{ number_format($transaksi->jumlah, 0, ',', '.') }}

+
+
+
+ + +
+

Update Status

+
+

Status Saat Ini

+
+ @if($transaksi->status == 'pending') + + Menunggu Pembayaran + + @elseif($transaksi->status == 'paid') + + Sudah Dibayar + + @elseif($transaksi->status == 'completed') + + Selesai + + @elseif($transaksi->status == 'cancelled') + + Dibatalkan + + @endif +
+
+ +
+ @csrf + @method('PUT') +
+ + +

+ + Perubahan status ke "Selesai" atau "Dibatalkan" juga akan mengubah status pesanan +

+
+ +
+
+
+ + +
+ +
+

Detail Pesanan

+
+
+
+ {{ $transaksi->pesanan->barang->nama }} +
+
+

{{ $transaksi->pesanan->barang->nama }}

+
+

Jumlah: {{ $transaksi->pesanan->jumlah }} unit

+

Harga: Rp {{ number_format($transaksi->pesanan->barang->harga, 0, ',', '.') }} / unit

+

Total: Rp {{ number_format($transaksi->pesanan->total_harga, 0, ',', '.') }}

+
+
+
+ +
+
+

Status Pesanan:

+
+ @if($transaksi->pesanan->status == 'pending') + + Menunggu + + @elseif($transaksi->pesanan->status == 'processing') + + Diproses + + @elseif($transaksi->pesanan->status == 'completed') + + Selesai + + @elseif($transaksi->pesanan->status == 'cancelled') + + Dibatalkan + + @endif +
+
+ +
+
+
+ + +
+

Bukti Pembayaran

+
+ @if($transaksi->bukti_pembayaran) +
+ + Bukti Pembayaran + +

Klik gambar untuk melihat ukuran penuh

+
+
+

Tanggal Upload: {{ $transaksi->updated_at->format('d M Y H:i') }}

+
+ @else +
+ +

Belum ada bukti pembayaran yang diunggah

+
+ @endif +
+
+
+@endsection \ No newline at end of file diff --git a/resources/views/admin/users/create.blade.php b/resources/views/admin/users/create.blade.php new file mode 100644 index 0000000..d723434 --- /dev/null +++ b/resources/views/admin/users/create.blade.php @@ -0,0 +1,81 @@ +@extends('layouts.admin') + +@section('content') +
+
+
+

Tambah User Baru

+ + Kembali + +
+ +
+
+ @csrf + +
+ + + @error('username') +

{{ $message }}

+ @enderror +
+ +
+ + + @error('nama') +

{{ $message }}

+ @enderror +
+ +
+ + + @error('email') +

{{ $message }}

+ @enderror +
+ +
+ + + @error('password') +

{{ $message }}

+ @enderror +
+ +
+ + + @error('role') +

{{ $message }}

+ @enderror +
+ +
+ +
+
+
+
+
+@endsection \ No newline at end of file diff --git a/resources/views/admin/users/edit.blade.php b/resources/views/admin/users/edit.blade.php new file mode 100644 index 0000000..2e42c25 --- /dev/null +++ b/resources/views/admin/users/edit.blade.php @@ -0,0 +1,84 @@ +@extends('layouts.admin') + +@section('content') +
+
+
+

Edit User

+ + Kembali + +
+ +
+
+ @csrf + @method('PUT') + +
+ + + @error('username') +

{{ $message }}

+ @enderror +
+ +
+ + + @error('nama') +

{{ $message }}

+ @enderror +
+ +
+ + + @error('email') +

{{ $message }}

+ @enderror +
+ +
+ + + @error('password') +

{{ $message }}

+ @enderror +
+ +
+ + + @error('role') +

{{ $message }}

+ @enderror +
+ +
+ +
+
+
+
+
+@endsection \ No newline at end of file diff --git a/resources/views/admin/users/index.blade.php b/resources/views/admin/users/index.blade.php new file mode 100644 index 0000000..857d19c --- /dev/null +++ b/resources/views/admin/users/index.blade.php @@ -0,0 +1,78 @@ +@extends('layouts.admin') + +@section('content') +
+
+

Manajemen User

+ +
+ + @if(session('success')) + + @endif + +
+
+ + + + + + + + + + + + @forelse($users as $user) + + + + + + + + @empty + + + + @endforelse + +
UsernameNamaEmailRoleAksi
+
{{ $user->username }}
+
+
{{ $user->nama }}
+
+
{{ $user->email }}
+
+ + {{ ucfirst($user->role) }} + + +
+ + + +
+ @csrf + @method('DELETE') + +
+
+
+
+ +

Tidak ada user yang ditemukan

+
+
+
+
+
+@endsection \ No newline at end of file diff --git a/resources/views/app.blade.php b/resources/views/app.blade.php new file mode 100644 index 0000000..1db03a9 --- /dev/null +++ b/resources/views/app.blade.php @@ -0,0 +1,78 @@ + + + + + + + + DIJEE Elektronik + + + + + + + + @yield('content') + + + \ No newline at end of file diff --git a/resources/views/auth/login.blade.php b/resources/views/auth/login.blade.php new file mode 100644 index 0000000..98592cb --- /dev/null +++ b/resources/views/auth/login.blade.php @@ -0,0 +1,229 @@ + + + + + + + + Login - DJEE Elektronik + + + + + + +
+ +
+ + + \ No newline at end of file diff --git a/resources/views/auth/passwords/email.blade.php b/resources/views/auth/passwords/email.blade.php new file mode 100644 index 0000000..6d40bea --- /dev/null +++ b/resources/views/auth/passwords/email.blade.php @@ -0,0 +1,147 @@ + + + + + + + + Lupa Password - DJEE Elektronik + + + + + + +
+
+
+ Logo +

Lupa Password

+

Masukkan email Anda untuk menerima link reset password.

+
+ + @if (session('status')) + + @endif + + @if($errors->any()) +
+
    + @foreach($errors->all() as $error) +
  • {{ $error }}
  • + @endforeach +
+
+ @endif + +
+ @csrf +
+ + +
+ + + + +
+
+
+ + + \ No newline at end of file diff --git a/resources/views/auth/passwords/reset-link.blade.php b/resources/views/auth/passwords/reset-link.blade.php new file mode 100644 index 0000000..1ba86cb --- /dev/null +++ b/resources/views/auth/passwords/reset-link.blade.php @@ -0,0 +1,75 @@ + + + + Reset Password - DJEE Elektronik + + + +
+
+ +

Reset Password

+
+ +

Halo,

+ +

Kami menerima permintaan untuk mereset password akun DJEE Elektronik Anda. Untuk melanjutkan proses reset password, silakan klik tombol di bawah ini:

+ +
+ + Reset Password + +
+ +

Link ini akan kadaluarsa dalam 24 jam. Jika Anda tidak merasa melakukan permintaan reset password ini, Anda dapat mengabaikan email ini.

+ +

Jika tombol di atas tidak berfungsi, Anda dapat menyalin dan menempelkan link berikut ke browser Anda:

+

+ {{ route('password.reset', ['token' => $token, 'email' => $email]) }} +

+ + +
+ + \ No newline at end of file diff --git a/resources/views/auth/passwords/reset.blade.php b/resources/views/auth/passwords/reset.blade.php new file mode 100644 index 0000000..ca432a3 --- /dev/null +++ b/resources/views/auth/passwords/reset.blade.php @@ -0,0 +1,155 @@ + + + + + + + + Reset Password - DJEE Elektronik + + + + + + +
+
+
+ Logo +

Reset Password

+

Masukkan password baru Anda

+
+ + @if (session('status')) + + @endif + + @if($errors->any()) +
+
    + @foreach($errors->all() as $error) +
  • {{ $error }}
  • + @endforeach +
+
+ @endif + +
+ @csrf + + + +
+ + +
+ +
+ + +
+ + + + +
+
+
+ + + \ No newline at end of file diff --git a/resources/views/auth/register.blade.php b/resources/views/auth/register.blade.php new file mode 100644 index 0000000..4554c3e --- /dev/null +++ b/resources/views/auth/register.blade.php @@ -0,0 +1,167 @@ + + + + + + + + Register - DJEE Elektronik + + + + + + +
+
+
+ Logo +

Register

+

Buat akun baru untuk mulai berbelanja

+
+ + @if($errors->any()) +
+
    + @foreach($errors->all() as $error) +
  • {{ $error }}
  • + @endforeach +
+
+ @endif + +
+ @csrf +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ + + + +
+
+
+ + + \ No newline at end of file diff --git a/resources/views/auth/verify-email.blade.php b/resources/views/auth/verify-email.blade.php new file mode 100644 index 0000000..c84e941 --- /dev/null +++ b/resources/views/auth/verify-email.blade.php @@ -0,0 +1,75 @@ + + + + + + Verifikasi Email - DJEE Elektronik + + + + + +
+
+ Logo +

Verifikasi Email

+ + @if (session('status') == 'verification-link-sent') +
+ Link verifikasi baru telah dikirim ke email Anda. +
+ @endif + +

Terima kasih telah mendaftar! Sebelum memulai, mohon verifikasi email Anda dengan mengklik link yang telah kami kirim ke email Anda.

+ +
+ @csrf + +
+ +
+ @csrf + +
+
+
+ + \ No newline at end of file diff --git a/resources/views/barang/checkout.blade.php b/resources/views/barang/checkout.blade.php new file mode 100644 index 0000000..3706136 --- /dev/null +++ b/resources/views/barang/checkout.blade.php @@ -0,0 +1,125 @@ +@extends('layouts.dashboard') + +@section('content') +
+
+
+

Checkout

+

Selesaikan pesanan Anda.

+
+ + @if(session('error')) +
+ {{ session('error') }} + +
+ @endif + + @if(session('success')) +
+ {{ session('success') }} + +
+ @endif + + @if(!auth()->user()->alamat) +
+
+
+ +
+
+

+ Anda belum memiliki alamat. Silakan tambahkan alamat Anda terlebih dahulu. +

+
+
+
+ @endif + +
+ +
+
+
+

Item Pesanan

+
+
    +
  • +
    + @if($barang->gambar) + {{ $barang->nama_barang }} + @else +
    + No Image +
    + @endif +
    + +
    +
    +
    +

    {{ $barang->nama_barang }}

    +

    Rp {{ number_format($total, 0, ',', '.') }}

    +
    +

    Jumlah: {{ $jumlah }} x Rp {{ number_format($barang->harga, 0, ',', '.') }}

    +
    +
    +
  • +
+
+
+
+
+ + +
+
+
+

Ringkasan Pesanan

+ +
+
+

Subtotal

+

Rp {{ number_format($total, 0, ',', '.') }}

+
+ +
+
+

Total

+

Rp {{ number_format($total, 0, ',', '.') }}

+
+
+ +
+ @csrf + +
+ + +
+ + +
+ + +
+
+
+
+
+
+
+@endsection \ No newline at end of file diff --git a/resources/views/barang/create.blade.php b/resources/views/barang/create.blade.php new file mode 100644 index 0000000..39d358c --- /dev/null +++ b/resources/views/barang/create.blade.php @@ -0,0 +1,138 @@ +@extends('layouts.dashboard') + +@section('content') +
+
+
+

Tambah Barang Baru

+ + @if($errors->any()) +
+
    + @foreach($errors->all() as $error) +
  • {{ $error }}
  • + @endforeach +
+
+ @endif + +
+ @csrf +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+
+ +

+ Rp + +
+
+ +
+ + +
+
+ +
+ + +

Format: JPG, JPEG, PNG (Max. 2MB)

+
+ +
+ + Batal + + +
+
+
+
+
+@endsection + +@push('scripts') + +@endpush \ No newline at end of file diff --git a/resources/views/barang/edit.blade.php b/resources/views/barang/edit.blade.php new file mode 100644 index 0000000..3f820e0 --- /dev/null +++ b/resources/views/barang/edit.blade.php @@ -0,0 +1,146 @@ +@extends('layouts.dashboard') + +@section('content') +
+
+
+

Edit Barang

+ + @if($errors->any()) +
+
    + @foreach($errors->all() as $error) +
  • {{ $error }}
  • + @endforeach +
+
+ @endif + +
+ @csrf + @method('PUT') + +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+
+ +
+ Rp + + +
+
+ +
+ + +
+
+ +
+ + @if($barang->gambar) +
+ {{ $barang->nama_barang }} +
+ @endif + +

Format: JPG, JPEG, PNG (Max. 2MB)

+
+ +
+ + Batal + + +
+
+
+
+
+@endsection + +@push('scripts') + +@endpush \ No newline at end of file diff --git a/resources/views/barang/index.blade.php b/resources/views/barang/index.blade.php new file mode 100644 index 0000000..b36ea2d --- /dev/null +++ b/resources/views/barang/index.blade.php @@ -0,0 +1,95 @@ +@extends('layouts.dashboard') + +@section('content') +
+
+

Daftar Barang

+ + + Keranjang Belanja + +
+ + @if(session('success')) +
+ {{ session('success') }} + +
+ @endif + + @if(session('error')) +
+ {{ session('error') }} + +
+ @endif + +
+ @foreach($barang as $item) +
+ @if($item->gambar) + {{ $item->nama_barang }} + @else +
+ No Image +
+ @endif + +
+

{{ $item->nama_barang }}

+

{{ $item->deskripsi ?: 'Tidak ada deskripsi' }}

+
+ Rp {{ number_format($item->harga, 0, ',', '.') }} + Stok: {{ $item->stok }} +
+
+ + {{ $item->kategori }} + +
+ +
+ + Detail + + + @if($item->stok > 0) +
+ @csrf + + + +
+ @else + + @endif +
+
+
+ @endforeach +
+
+ +@push('scripts') + +@endpush +@endsection \ No newline at end of file diff --git a/resources/views/barang/show.blade.php b/resources/views/barang/show.blade.php new file mode 100644 index 0000000..12c6dcd --- /dev/null +++ b/resources/views/barang/show.blade.php @@ -0,0 +1,153 @@ +@extends('layouts.dashboard') + +@section('content') +
+
+ @if(session('success')) +
+ {{ session('success') }} + +
+ @endif + + @if(session('error')) +
+ {{ session('error') }} + +
+ @endif + +
+
+
+ @if($barang->gambar) + {{ $barang->nama_barang }} + @else +
+ No Image +
+ @endif +
+ +
+
+ Detail Produk +
+

+ {{ $barang->nama_barang }} +

+ +
+
+ + Rp {{ number_format($barang->harga, 0, ',', '.') }} + + + {{ $barang->stok > 0 ? 'Stok: ' . $barang->stok : 'Stok Habis' }} + +
+ +
+

Deskripsi

+

{{ $barang->deskripsi ?: 'Tidak ada deskripsi' }}

+
+ + @if($barang->stok > 0) + +
+
+ @csrf + + + +
+
+ + + @endif +
+
+
+
+ + +
+
+ +@push('scripts') + +@endpush +@endsection \ No newline at end of file diff --git a/resources/views/checkout/index.blade.php b/resources/views/checkout/index.blade.php new file mode 100644 index 0000000..db1d589 --- /dev/null +++ b/resources/views/checkout/index.blade.php @@ -0,0 +1,107 @@ +@extends('layouts.dashboard') + +@section('content') +
+
+
+
+

Checkout

+ + @if(session('error')) +
+ {{ session('error') }} +
+ @endif + +
+ +
+

Detail Pesanan

+
+
+ @if($barang->gambar) + {{ $barang->nama_barang }} + @else +
+ +
+ @endif +
+

{{ $barang->nama_barang }}

+

{{ $barang->kategori }}

+
+
+
+
+ Harga Satuan + Rp {{ number_format($barang->harga, 0, ',', '.') }} +
+
+ Jumlah + {{ request('jumlah') }} +
+
+
+ Total + Rp {{ number_format($total, 0, ',', '.') }} +
+
+
+
+
+ + +
+

Informasi Pengiriman & Pembayaran

+
+ @csrf + + + + +
+ + +
+ +
+ +
+ + +
+
+ +
+
+ Total Pembayaran + Rp {{ number_format($total, 0, ',', '.') }} +
+ +
+
+
+
+
+
+
+
+@endsection \ No newline at end of file diff --git a/resources/views/dashboard/index.blade.php b/resources/views/dashboard/index.blade.php new file mode 100644 index 0000000..a0ed905 --- /dev/null +++ b/resources/views/dashboard/index.blade.php @@ -0,0 +1,451 @@ +@extends('layouts.dashboard') + +@section('content') +
+ + + + {{-- Promotions Slider / Banner + @if($banners->count() > 0) +
+
+
+ +
+ @foreach($banners as $key => $banner) + + @endforeach +
+ + +
+ @foreach($banners as $key => $banner) + + @endforeach +
+ + + + +
+
+
+ + + @else +
+
+
+

Banner Produk Baru

+
+
+
+ @endif + --}} + + + + + + + +
+

Produk Terbaru

+ Lihat Semua +
+ +
+ @forelse(App\Models\Barang::latest()->take(10)->get() as $barang) + + @empty +
+ +

Belum ada produk yang tersedia

+
+ @endforelse +
+ + + +
+@endsection + +@push('scripts') + +{{-- Script untuk banner carousel + +--}} +@endpush + +@push('styles') +{{-- Style untuk carousel + +--}} +@endpush \ No newline at end of file diff --git a/resources/views/emails/verify.blade.php b/resources/views/emails/verify.blade.php new file mode 100644 index 0000000..6fbd567 --- /dev/null +++ b/resources/views/emails/verify.blade.php @@ -0,0 +1,16 @@ + + + + Verifikasi Email + + +

Verifikasi Email Anda

+

Terima kasih telah mendaftar. Silakan klik link di bawah ini untuk memverifikasi email Anda:

+

+ Verifikasi Email +

+

Atau copy paste link berikut ke browser Anda:

+

{{ $url }}

+

Link ini akan kadaluarsa dalam 24 jam.

+ + \ No newline at end of file diff --git a/resources/views/keranjang/checkout.blade.php b/resources/views/keranjang/checkout.blade.php new file mode 100644 index 0000000..cdd6df3 --- /dev/null +++ b/resources/views/keranjang/checkout.blade.php @@ -0,0 +1,659 @@ +@extends('layouts.dashboard') + +@push('styles') + +@endpush + +@push('scripts') + +@endpush + +@section('content') +
+
+
+

Checkout

+

Selesaikan pesanan Anda.

+
+ + @if(session('error')) +
+ {{ session('error') }} + +
+ @endif + + @if(session('success')) +
+ {{ session('success') }} + +
+ @endif + + @if(!auth()->user()->alamat) +
+
+
+ +
+
+

+ Anda belum memiliki alamat. Silakan tambahkan alamat Anda terlebih dahulu. +

+
+
+
+ @endif + + + + +
+ +
+
+
+

Item Pesanan ({{ count($items) }})

+
+
    + @foreach($items as $item) +
  • +
    + @if($item->barang->gambar) + {{ $item->barang->nama_barang }} + @else +
    + No Image +
    + @endif +
    + +
    +
    +
    +

    {{ $item->barang->nama_barang }}

    +

    Rp {{ number_format($item->total_harga, 0, ',', '.') }}

    +
    +

    Jumlah: {{ $item->jumlah }} x Rp {{ number_format($item->barang->harga, 0, ',', '.') }}

    +
    +
    +
  • + @endforeach +
+
+
+
+ + +
+
+

Alamat Pengiriman

+ + +
+
+
+ + +
+ +
+ + +
+
+ +
+ + +
+ +
+ + +
+ +
+ +
+
+ + + +
+
+
+ + +
+
+
+

Ringkasan Pesanan

+ +
+
+

Subtotal

+

Rp {{ number_format($total, 0, ',', '.') }}

+
+ +
+
+

Total

+

Rp {{ number_format($total, 0, ',', '.') }}

+
+
+ +
+ @csrf +
+ + +
+ + @if(isset($selectedIds)) + @foreach($selectedIds as $id) + + @endforeach + @endif + + + +
+ Silakan pilih opsi pengiriman terlebih dahulu +
+
+ + +
+
+
+
+
+
+
+@endsection \ No newline at end of file diff --git a/resources/views/keranjang/index.blade.php b/resources/views/keranjang/index.blade.php new file mode 100644 index 0000000..493459f --- /dev/null +++ b/resources/views/keranjang/index.blade.php @@ -0,0 +1,1714 @@ +@extends('layouts.dashboard') + +@section('content') + + + + +
+
+

Keranjang Belanja

+
+ + + Lanjut Belanja + + @if(count($items) > 0) +
+ @csrf + @method('DELETE') + +
+ @endif +
+
+ + @if(session('success')) +
+ {{ session('success') }} + +
+ @endif + + @if(session('error')) +
+ {{ session('error') }} + +
+ @endif + + + + @if(count($items) > 0) +
+ @csrf +
+
+
+
+
+ + +
+ +
+
+
    + @foreach($items as $item) +
  • +
    + +
    +
    + @if($item->barang->gambar) + {{ $item->barang->nama_barang }} + @else +
    + No Image +
    + @endif +
    + +
    +
    +
    +

    + {{ $item->barang->nama_barang }} +

    +

    Rp {{ number_format($item->total_harga, 0, ',', '.') }}

    +
    +

    Harga Satuan: Rp {{ number_format($item->barang->harga, 0, ',', '.') }}

    +
    + +
    +
    + Jumlah: +
    + @csrf + @method('PUT') + + + + + +
    + +
    + +
    +
    + @csrf + + + + +
    + + +
    +
    +
    +
    +
    +
  • + @endforeach +
+
+
+
+ +
+
+
+

Subtotal (0 item)

+

Rp 0

+
+
+ +
+ +
+
+
+ @else +
+
+
+ +
+
+

Keranjang Anda Kosong

+

Anda belum menambahkan barang apapun ke keranjang

+ + Mulai Belanja + +
+ @endif +
+ + + +@endsection \ No newline at end of file diff --git a/resources/views/layanan/bantuan.blade.php b/resources/views/layanan/bantuan.blade.php new file mode 100644 index 0000000..5622766 --- /dev/null +++ b/resources/views/layanan/bantuan.blade.php @@ -0,0 +1,70 @@ +@extends('layouts.dashboard') + +@section('content') +
+
+

Bantuan

+ + +
+

Pertanyaan yang Sering Diajukan

+ +
+
+

Bagaimana cara melakukan pembayaran?

+

Pembayaran dapat dilakukan melalui berbagai metode yang tersedia seperti transfer bank, e-wallet, dan kartu kredit. Setelah memilih metode pembayaran, Anda akan diarahkan ke halaman pembayaran yang sesuai.

+
+ +
+

Berapa lama waktu pengiriman?

+

Waktu pengiriman bervariasi tergantung lokasi pengiriman dan metode pengiriman yang dipilih. Estimasi waktu pengiriman akan ditampilkan saat checkout.

+
+ +
+

Bagaimana jika barang rusak saat diterima?

+

Jika barang rusak saat diterima, segera laporkan dalam waktu 24 jam dengan mengirimkan foto barang rusak ke email kami. Tim kami akan segera memproses pengembalian atau penggantian barang.

+
+ +
+

Apakah ada garansi untuk produk?

+

Ya, semua produk kami memiliki garansi sesuai dengan ketentuan dari masing-masing brand. Detail garansi dapat dilihat di halaman produk.

+
+
+
+ + +
+

Hubungi Kami

+ +
+
+

Informasi Kontak

+
+

+ + info@elektrostore.com +

+

+ + +62 812 3456 7890 +

+

+ + Jl. Elektronik No. 123, Jakarta +

+
+
+ +
+

Jam Operasional

+
+

Senin - Jumat: 09:00 - 17:00

+

Sabtu: 09:00 - 15:00

+

Minggu: Tutup

+
+
+
+
+
+
+@endsection \ No newline at end of file diff --git a/resources/views/layanan/cara-pembelian.blade.php b/resources/views/layanan/cara-pembelian.blade.php new file mode 100644 index 0000000..68756f8 --- /dev/null +++ b/resources/views/layanan/cara-pembelian.blade.php @@ -0,0 +1,90 @@ +@extends('layouts.dashboard') + +@section('content') +
+
+

Cara Pembelian

+ +
+
+ +
+
+ 1 +
+
+

Pilih Produk

+

Browsing dan pilih produk elektronik yang Anda inginkan. Anda dapat menggunakan fitur pencarian atau melihat kategori produk yang tersedia.

+
+
+ + +
+
+ 2 +
+
+

Tambahkan ke Keranjang

+

Klik tombol "Tambah ke Keranjang" pada produk yang Anda pilih. Anda dapat menambahkan beberapa produk sekaligus.

+
+
+ + +
+
+ 3 +
+
+

Periksa Keranjang

+

Klik ikon keranjang di pojok kanan atas untuk melihat produk yang telah Anda pilih. Anda dapat mengubah jumlah atau menghapus produk dari keranjang.

+
+
+ + +
+
+ 4 +
+
+

Checkout

+

Klik tombol "Checkout" untuk melanjutkan ke proses pembayaran. Pastikan alamat pengiriman dan informasi kontak Anda sudah benar.

+
+
+ + +
+
+ 5 +
+
+

Pilih Metode Pembayaran

+

Pilih metode pembayaran yang tersedia (transfer bank, e-wallet, atau kartu kredit). Ikuti instruksi pembayaran yang muncul.

+
+
+ + +
+
+ 6 +
+
+

Konfirmasi Pembayaran

+

Setelah melakukan pembayaran, Anda akan menerima konfirmasi melalui email. Pesanan Anda akan segera diproses.

+
+
+
+ + +
+

Catatan Penting:

+
    +
  • Pastikan alamat pengiriman sudah benar dan lengkap
  • +
  • Simpan bukti pembayaran Anda
  • +
  • Pembayaran harus dilakukan dalam waktu 24 jam
  • +
  • Untuk bantuan lebih lanjut, silakan hubungi customer service kami
  • +
+
+
+
+
+@endsection \ No newline at end of file diff --git a/resources/views/layanan/pengiriman.blade.php b/resources/views/layanan/pengiriman.blade.php new file mode 100644 index 0000000..5205932 --- /dev/null +++ b/resources/views/layanan/pengiriman.blade.php @@ -0,0 +1,81 @@ +@extends('layouts.dashboard') + +@section('content') +
+
+

Informasi Pengiriman

+ + +
+

Layanan Pengiriman

+ +
+ +
+
+ JNE +

JNE

+
+
+

OKE: 3-5 hari kerja

+

REG: 2-3 hari kerja

+

YES: 1-2 hari kerja

+
+
+ + +
+
+ SiCepat +

POS

+
+
+

REG: 3-4 hari kerja

+

EXPRESS: 1-2 hari kerja

+
+
+ + +
+
+ TIKI +

TIKI

+
+
+

ECO: 3-5 hari kerja

+

REG: 2-3 hari kerja

+

EXPRESS: 1-2 hari kerja

+
+
+
+
+ + +
+

Informasi Penting

+ +
+
+

Estimasi Waktu Pengiriman

+

Estimasi waktu pengiriman dapat berubah tergantung pada kondisi cuaca, lalu lintas, dan lokasi pengiriman. Kami akan selalu mengupdate status pengiriman melalui email dan aplikasi.

+
+ +
+

Biaya Pengiriman

+

Biaya pengiriman dihitung berdasarkan berat produk, jarak pengiriman, dan layanan yang dipilih. Anda dapat melihat estimasi biaya pengiriman saat checkout.

+
+ +
+

Lacak Pengiriman

+

Anda dapat melacak status pengiriman pesanan Anda melalui halaman detail pesanan atau menggunakan nomor resi yang akan kami kirimkan melalui email.

+
+ +
+

Pengiriman Khusus

+

Untuk produk elektronik berukuran besar, kami menggunakan layanan pengiriman khusus dengan penanganan ekstra hati-hati. Tim kami akan menghubungi Anda untuk mengatur jadwal pengiriman.

+
+
+
+
+
+@endsection \ No newline at end of file diff --git a/resources/views/layouts/admin.blade.php b/resources/views/layouts/admin.blade.php new file mode 100644 index 0000000..d70c136 --- /dev/null +++ b/resources/views/layouts/admin.blade.php @@ -0,0 +1,278 @@ + + + + + + + + Admin Dashboard - DIJEE Elektronik + + + + + + + +
+ + + + +
+ +
+ +
+ Logo + DIJEE Admin +
+
+ +
+
{{ Auth::user()->nama }}
+
+ @csrf + +
+
+
+
+ + +
+
+
+
+ +
+ +
+
+ @csrf + +
+
+
+
+ + +
+ @if (session('success')) +
+ {{ session('success') }} +
+ @endif + + @if (session('error')) +
+ {{ session('error') }} +
+ @endif + + @yield('content') +
+
+
+ + + \ No newline at end of file diff --git a/resources/views/layouts/dashboard.blade.php b/resources/views/layouts/dashboard.blade.php new file mode 100644 index 0000000..36d8250 --- /dev/null +++ b/resources/views/layouts/dashboard.blade.php @@ -0,0 +1,277 @@ + + + + + + + + @yield('title', 'Dashboard') - DIJEEELEKTRONIK + + + + + + + + + + +
+ +
+
+
+ +
+ @auth + + Logo + ElektroStore + + @else + + Logo + ElektroStore + + @endauth + + + +
+ + +
+ @auth + + + + + {{ Auth::user()->keranjang->sum('jumlah') ?? 0 }} + + + + + + + + + +
+ + + + +
+ @else + + + @endauth +
+
+
+
+ + + + + +
+
+ + +
+
+
+ + +
+ @yield('content') +
+ + + + @stack('scripts') + + + \ No newline at end of file diff --git a/resources/views/pesanan/create-from-barang.blade.php b/resources/views/pesanan/create-from-barang.blade.php new file mode 100644 index 0000000..ad4d3fc --- /dev/null +++ b/resources/views/pesanan/create-from-barang.blade.php @@ -0,0 +1,47 @@ +@extends('layouts.dashboard') + +@section('content') +
+
+

Buat Pesanan

+ +
+

Detail Barang:

+
+

Nama: {{ $barang->nama }}

+

Harga: Rp {{ number_format($barang->harga, 0, ',', '.') }}

+

Stok Tersedia: {{ $barang->stok }}

+
+
+ +
+ @csrf + + +
+ + +
+ +
+ + +
+ +
+ + Kembali + + +
+
+
+
+@endsection \ No newline at end of file diff --git a/resources/views/pesanan/edit.blade.php b/resources/views/pesanan/edit.blade.php new file mode 100644 index 0000000..1bb9d67 --- /dev/null +++ b/resources/views/pesanan/edit.blade.php @@ -0,0 +1,93 @@ +@extends('layouts.dashboard') + +@section('content') +
+
+

Edit Pesanan

+ + @if(session('error')) +
+ {{ session('error') }} +
+ @endif + +
+

Detail Barang:

+
+
+
+ @if($pesanan->barang->gambar) + {{ $pesanan->barang->nama }} + @else +
+ +
+ @endif +
+
+

{{ $pesanan->barang->nama }}

+

Rp {{ number_format($pesanan->barang->harga, 0, ',', '.') }} / unit

+

Stok Tersedia: {{ $pesanan->barang->stok + $pesanan->jumlah }}

+
+
+
+
+ +
+ @csrf + @method('PUT') + +
+ + + @error('jumlah') +

{{ $message }}

+ @enderror +
+ +
+
+

Total Pembayaran:

+

+ Rp {{ number_format($pesanan->total_harga, 0, ',', '.') }} +

+
+
+ +
+ + Kembali + + +
+
+
+
+ +@push('scripts') + +@endpush +@endsection \ No newline at end of file diff --git a/resources/views/pesanan/index.blade.php b/resources/views/pesanan/index.blade.php new file mode 100644 index 0000000..b7413e0 --- /dev/null +++ b/resources/views/pesanan/index.blade.php @@ -0,0 +1,322 @@ +@extends('layouts.dashboard') + +@section('content') +
+
+

Daftar Pesanan Saya

+ + + Buat Pesanan Baru + +
+ + @if(session('success')) +
+
+
+ + {{ session('success') }} +
+ +
+
+ @endif + + @if(session('error')) +
+
+
+ + {{ session('error') }} +
+ +
+
+ @endif + + + +
+
+ @php + $hasActiveOrders = false; + @endphp + + @forelse($pesanan as $item) + @php + $isExpired = $item->status === 'pending' && + $item->created_at->diffInHours(now()) >= 24; + @endphp + + @if(!$isExpired) + @php + $hasActiveOrders = true; + @endphp +
+ +
+ +
+
+ @if($item->barang->gambar) + {{ $item->barang->nama }} + @else +
+ +
+ @endif +
+
+

{{ $item->barang->nama }}

+

{{ Str::limit($item->barang->deskripsi, 100) }}

+
+

+ Jumlah: {{ $item->jumlah }} unit +

+

+ Total: + + Rp {{ number_format($item->total_harga, 0, ',', '.') }} + +

+
+
+
+ + +
+
+ + + {{ ucfirst($item->status) }} + + + {{ $item->created_at->format('d M Y H:i') }} + +
+
+
+
+ + +
+
+ @if($item->status === 'pending') + @if($item->transaksi && $item->transaksi->status === 'menunggu_pembayaran') + + @elseif(!$item->transaksi) + + @endif +
+ @csrf + @method('DELETE') + + +
+ @elseif($item->status === 'diproses') + + + Pembayaran Berhasil + + @endif +
+
+
+ @endif + @empty +
+
+ +
+

Belum Ada Pesanan

+

Anda belum memiliki pesanan apapun

+ + + Buat Pesanan Sekarang + +
+ @endforelse + + @if(!$hasActiveOrders && count($pesanan) > 0) +
+
+ +
+

Tidak Ada Pesanan Aktif

+

Semua pesanan Anda telah kadaluarsa atau selesai

+ + + Buat Pesanan Baru + +
+ @endif +
+ + @if($pesanan->hasPages()) +
+ {{ $pesanan->links() }} +
+ @endif +
+
+ + +
+ +@push('scripts') + + +@endpush +@endsection \ No newline at end of file diff --git a/resources/views/pesanan/show.blade.php b/resources/views/pesanan/show.blade.php new file mode 100644 index 0000000..f50ca1b --- /dev/null +++ b/resources/views/pesanan/show.blade.php @@ -0,0 +1,327 @@ +@extends('layouts.dashboard') + +@section('content') +
+
+ @if(session('success')) +
+ {{ session('success') }} + +
+ @endif + + @if(session('error')) +
+ {{ session('error') }} + +
+ @endif + +
+
+
+

Detail Pesanan

+ + {{ ucfirst($pesanan->status) }} + +
+ +
+ +
+

Informasi Pesanan

+
+
+

ID Pesanan

+

{{ $pesanan->id }}

+
+
+

Tanggal Pesanan

+

{{ $pesanan->created_at->format('d M Y H:i') }}

+
+
+

Total Harga

+

Rp {{ number_format($pesanan->total_harga, 0, ',', '.') }}

+
+ @if($pesanan->catatan) +
+

Catatan

+

{{ $pesanan->catatan }}

+
+ @endif +
+
+ + +
+

Informasi Barang

+ @if($pesanan->items->count() > 0) + @foreach($pesanan->items as $item) +
+
+ @if($item->barang->gambar) + {{ $item->barang->nama_barang }} + @else +
+ No Image +
+ @endif +
+
+

{{ $item->barang->nama_barang }}

+

Jumlah: {{ $item->jumlah }}

+

Harga: Rp {{ number_format($item->harga, 0, ',', '.') }}

+

Subtotal: Rp {{ number_format($item->total_harga, 0, ',', '.') }}

+
+
+ @endforeach + @else +
+
+ @if($pesanan->barang->gambar) + {{ $pesanan->barang->nama_barang }} + @else +
+ No Image +
+ @endif +
+
+

{{ $pesanan->barang->nama_barang }}

+

Jumlah: {{ $pesanan->jumlah }}

+

Harga: Rp {{ number_format($pesanan->barang->harga, 0, ',', '.') }}

+
+
+ @endif +
+
+ + +
+

Informasi Pengiriman

+
+
+
+

Alamat

+

{{ $pesanan->user->alamat }}

+
+
+
+

Kurir

+

{{ strtoupper($pesanan->courier) }} {{ $pesanan->shipping_service }}

+
+
+

Ongkos Kirim

+

Rp {{ number_format($pesanan->shipping_cost, 0, ',', '.') }}

+
+
+

Estimasi Pengiriman

+

{{ $pesanan->shipping_etd }} hari

+
+
+
+
+ + + @if($pesanan->transaksi) +
+

Informasi Pembayaran

+
+
+
+

Status Pembayaran

+

{{ ucfirst(str_replace('_', ' ', $pesanan->transaksi->status)) }}

+
+
+

Total Pembayaran

+

Rp {{ number_format($pesanan->transaksi->total_pembayaran, 0, ',', '.') }}

+
+ @if($pesanan->transaksi->bukti_pembayaran) +
+

Bukti Pembayaran

+ Bukti Pembayaran +
+ @endif +
+
+
+ @endif + + +
+ @if($pesanan->status === 'pending') + @if($pesanan->transaksi && $pesanan->transaksi->status === 'menunggu_pembayaran') + + @elseif(!$pesanan->transaksi) + + @endif + +
+ @csrf + @method('DELETE') + +
+ @endif + + + + Kembali + +
+
+
+
+
+ +@push('scripts') + + +@endpush +@endsection \ No newline at end of file diff --git a/resources/views/transaksi/create.blade.php b/resources/views/transaksi/create.blade.php new file mode 100644 index 0000000..3802212 --- /dev/null +++ b/resources/views/transaksi/create.blade.php @@ -0,0 +1,126 @@ +@extends('layouts.dashboard') + +@section('content') +
+
+

Form Pembayaran

+ +
+ @csrf + + + +
+

Informasi Pengiriman

+
+
+ + + @error('nama_penerima') +

{{ $message }}

+ @enderror +
+ +
+ + + @error('no_telp') +

{{ $message }}

+ @enderror +
+ +
+ + + @error('alamat') +

{{ $message }}

+ @enderror +
+ +
+ + +
+
+
+ + +
+

Ringkasan Pesanan

+
+
+ @if($pesanan->barang->gambar) + {{ $pesanan->barang->nama }} + @else +
+ No Image +
+ @endif +
+
+

{{ $pesanan->barang->nama }}

+

{{ $pesanan->jumlah }} x Rp {{ number_format($pesanan->barang->harga, 0, ',', '.') }}

+

Total: Rp {{ number_format($pesanan->total_harga, 0, ',', '.') }}

+
+
+
+ + +
+

Metode Pembayaran

+
+
+ + +
+
+ + +
+
+
+ + +
+

Ringkasan Pembayaran

+
+
+ Subtotal Produk + Rp {{ number_format($pesanan->total_harga, 0, ',', '.') }} +
+
+ Biaya Pengiriman + Rp 10.000 +
+
+
+ Total Pembayaran + Rp {{ number_format($pesanan->total_harga + 10000, 0, ',', '.') }} +
+
+
+
+ +
+ + + Kembali + + +
+
+
+
+@endsection \ No newline at end of file diff --git a/resources/views/transaksi/error.blade.php b/resources/views/transaksi/error.blade.php new file mode 100644 index 0000000..0860dc7 --- /dev/null +++ b/resources/views/transaksi/error.blade.php @@ -0,0 +1,106 @@ +@extends('layouts.dashboard') + +@section('content') +
+
+
+
+
+ +
+

Pembayaran Gagal

+

{{ $message ?? 'Terjadi kesalahan saat memproses pembayaran Anda.' }}

+
+ +
+
+
+ Kode Transaksi: + {{ $transaksi->kode_transaksi ?? '-' }} +
+
+ Total Pembayaran: + Rp {{ number_format($transaksi->total_pembayaran ?? 0, 0, ',', '.') }} +
+
+ Status: + + {{ ucfirst($transaction_status ?? 'error') }} + +
+
+
+ +
+ + Kembali ke Daftar Pesanan + + @if(isset($transaksi) && $transaksi->status === 'menunggu_pembayaran') + + @endif +
+
+
+
+ +@push('scripts') + + +@endpush +@endsection \ No newline at end of file diff --git a/resources/views/transaksi/finish.blade.php b/resources/views/transaksi/finish.blade.php new file mode 100644 index 0000000..708b9d0 --- /dev/null +++ b/resources/views/transaksi/finish.blade.php @@ -0,0 +1,67 @@ +@extends('layouts.dashboard') + +@section('content') +
+
+
+
+
+ +
+

Pembayaran Berhasil

+

{{ $message ?? 'Terima kasih! Pembayaran Anda telah berhasil diproses.' }}

+
+ +
+
+
+ Kode Transaksi: + {{ $transaksi->kode_transaksi }} +
+
+ Total Pembayaran: + Rp {{ number_format($transaksi->total_pembayaran, 0, ',', '.') }} +
+
+ Metode Pembayaran: + {{ ucfirst($payment_type ?? '-') }} +
+
+ Status: + + {{ ucfirst($transaction_status ?? 'success') }} + +
+
+ + @if($transaksi->midtrans_va_number) +
+

Informasi Pembayaran

+
+
+ Bank: + {{ $transaksi->midtrans_bank }} +
+
+ Nomor VA: + {{ $transaksi->midtrans_va_number }} +
+
+
+ @endif +
+ +
+ + Kembali ke Daftar Pesanan + + @if($transaksi->pesanan) + + Lihat Detail Pesanan + + @endif +
+
+
+
+@endsection \ No newline at end of file diff --git a/resources/views/transaksi/index.blade.php b/resources/views/transaksi/index.blade.php new file mode 100644 index 0000000..96038f3 --- /dev/null +++ b/resources/views/transaksi/index.blade.php @@ -0,0 +1,127 @@ +@extends('layouts.dashboard') + +@section('content') +
+
+
+

Pembayaran & Transaksi

+
+ + @if(session('success')) +
+ {{ session('success') }} +
+ @endif + + +
+

Menunggu Pembayaran

+
+ @forelse($transaksiPending as $t) +
+
+
+
+ @if($t->pesanan->barang->gambar) + {{ $t->pesanan->barang->nama }} + @else +
+ +
+ @endif +
+
+

{{ $t->pesanan->barang->nama }}

+

{{ $t->pesanan->jumlah }} x Rp {{ number_format($t->pesanan->barang->harga, 0, ',', '.') }}

+

Total: Rp {{ number_format($t->total_pembayaran, 0, ',', '.') }}

+

Kode: {{ $t->kode_transaksi }}

+
+
+
+ + Menunggu Pembayaran + + + + Bayar Sekarang + +
+
+
+ @empty +
+ Tidak ada transaksi yang menunggu pembayaran +
+ @endforelse +
+
+ + +
+

Riwayat Transaksi

+
+ + + + + + + + + + + + + @forelse($transaksi as $t) + + + + + + + + + @empty + + + + @endforelse + +
Kode TransaksiProdukTotal PembayaranStatusTanggalAksi
+
{{ $t->kode_transaksi }}
+
+
{{ $t->pesanan->barang->nama }}
+
{{ $t->pesanan->jumlah }} unit
+
+
Rp {{ number_format($t->total_pembayaran, 0, ',', '.') }}
+
+ + {{ ucwords(str_replace('_', ' ', $t->status)) }} + + +
{{ $t->created_at->format('d M Y H:i') }}
+
+ + Detail + +
+ Belum ada riwayat transaksi +
+ + @if($transaksi->hasPages()) +
+ {{ $transaksi->links() }} +
+ @endif +
+
+
+
+@endsection \ No newline at end of file diff --git a/resources/views/transaksi/payment.blade.php b/resources/views/transaksi/payment.blade.php new file mode 100644 index 0000000..098b84a --- /dev/null +++ b/resources/views/transaksi/payment.blade.php @@ -0,0 +1,85 @@ +@extends('layouts.dashboard') + +@section('content') +
+
+
+

Pembayaran

+ +
+

Detail Transaksi

+
+
+
+

Kode Transaksi

+

{{ $transaksi->kode_transaksi }}

+
+
+

Total Pembayaran

+

Rp {{ number_format($transaksi->total_pembayaran, 0, ',', '.') }}

+
+
+
+
+ +
+

Detail Pengiriman

+
+
+
+

Nama Penerima

+

{{ $transaksi->nama_penerima }}

+
+
+

No. Telepon

+

{{ $transaksi->no_telp }}

+
+
+

Alamat

+

{{ $transaksi->alamat }}

+
+ @if($transaksi->catatan_pengiriman) +
+

Catatan Pengiriman

+

{{ $transaksi->catatan_pengiriman }}

+
+ @endif +
+
+
+ +
+

Metode Pembayaran

+
+

Silakan pilih metode pembayaran yang tersedia:

+ +
+
+
+
+
+ +@push('scripts') + + +@endpush +@endsection \ No newline at end of file diff --git a/resources/views/transaksi/pending.blade.php b/resources/views/transaksi/pending.blade.php new file mode 100644 index 0000000..0df5168 --- /dev/null +++ b/resources/views/transaksi/pending.blade.php @@ -0,0 +1,110 @@ +@extends('layouts.dashboard') + +@section('content') +
+
+
+
+
+ +
+

Pembayaran Belum Selesai

+

{{ $message ?? 'Pembayaran Anda belum selesai. Silakan selesaikan pembayaran Anda.' }}

+
+ +
+
+
+ Kode Transaksi: + {{ $transaksi->kode_transaksi }} +
+
+ Total Pembayaran: + Rp {{ number_format($transaksi->total_pembayaran, 0, ',', '.') }} +
+
+ Metode Pembayaran: + {{ ucfirst($payment_type ?? '-') }} +
+
+ Status: + + {{ ucfirst($transaction_status ?? 'pending') }} + +
+
+
+ +
+ + Kembali ke Daftar Pesanan + + @if($transaksi->status === 'menunggu_pembayaran') + + @endif +
+
+
+
+ +@push('scripts') + + +@endpush +@endsection \ No newline at end of file diff --git a/resources/views/transaksi/show.blade.php b/resources/views/transaksi/show.blade.php new file mode 100644 index 0000000..99e5ce9 --- /dev/null +++ b/resources/views/transaksi/show.blade.php @@ -0,0 +1,121 @@ +@extends('dashboard') + +@section('content') +
+
+
+ +
+
+

Detail Transaksi

+ + {{ ucfirst(str_replace('_', ' ', $transaksi->status)) }} + +
+
+ + +
+
+ +
+

Detail Pesanan

+
+
+ {{ $transaksi->pesanan->barang->nama }} +
+

{{ $transaksi->pesanan->barang->nama }}

+
+

+ Jumlah: {{ $transaksi->pesanan->jumlah }} unit +

+

+ Harga Satuan: Rp {{ number_format($transaksi->pesanan->barang->harga, 0, ',', '.') }} +

+ @if($transaksi->pesanan->catatan) +

+ Catatan: {{ $transaksi->pesanan->catatan }} +

+ @endif +
+
+
+ + +
+

Detail Pembayaran

+
+
+

Total Pembayaran

+

+ Rp {{ number_format($transaksi->total_pembayaran, 0, ',', '.') }} +

+
+
+

Metode Pembayaran

+

{{ $transaksi->metode_pembayaran === 'transfer' ? 'Transfer Bank' : 'Cash on Delivery (COD)' }}

+
+
+

Tanggal Transaksi

+

{{ $transaksi->created_at->format('d M Y H:i') }}

+
+
+ + @if($transaksi->metode_pembayaran === 'transfer' && $transaksi->status === 'menunggu_pembayaran') + +
+

Upload Bukti Pembayaran

+
+ @csrf +
+
+ + +
+ +
+
+
+ @endif + + @if($transaksi->bukti_pembayaran) + +
+

Bukti Pembayaran

+
+ Bukti Pembayaran +
+
+ @endif +
+
+ + + +
+
+
+
+@endsection \ No newline at end of file diff --git a/resources/views/transaksi/success.blade.php b/resources/views/transaksi/success.blade.php new file mode 100644 index 0000000..3ec791b --- /dev/null +++ b/resources/views/transaksi/success.blade.php @@ -0,0 +1,43 @@ +@extends('layouts.dashboard') + +@section('content') +
+
+
+
+
+ +
+

Pembayaran Berhasil!

+

Terima kasih telah melakukan pembayaran

+
+ +
+
+
+ Kode Transaksi + {{ $transaksi->kode_transaksi }} +
+
+ Total Pembayaran + Rp {{ number_format($transaksi->total_pembayaran, 0, ',', '.') }} +
+
+ Status + + {{ ucfirst($transaksi->status) }} + +
+
+
+ + +
+
+
+@endsection \ No newline at end of file diff --git a/resources/views/user/profile.blade.php b/resources/views/user/profile.blade.php new file mode 100644 index 0000000..ca855dd --- /dev/null +++ b/resources/views/user/profile.blade.php @@ -0,0 +1,211 @@ +@extends('layouts.dashboard') + +@section('content') +
+
+ +
+

Profil Saya

+

Kelola informasi profil dan keamanan akun Anda

+
+ + @if (session('success')) +
+
+
+ +
+
+

{{ session('success') }}

+
+
+
+ @endif + + @if ($errors->any()) +
+
+
+ +
+
+

Terjadi kesalahan:

+
    + @foreach ($errors->all() as $error) +
  • {{ $error }}
  • + @endforeach +
+
+
+
+ @endif + + +
+
+ @csrf + @method('PUT') + + +
+
+
+ +
+
+
+ + +
+
+

Informasi Pribadi

+ +
+ +
+ +
+
+ +
+ +
+ @error('nama') +

{{ $message }}

+ @enderror +
+ +
+ +
+
+ +
+ +
+ @error('email') +

{{ $message }}

+ @enderror +
+ +
+ +
+
+ +
+ +
+ @error('nomor_telp') +

{{ $message }}

+ @enderror +
+ +
+ +
+
+ +
+ +
+ @error('alamat') +

{{ $message }}

+ @enderror +
+ +
+ +
+
+
+ + +
+
+

Ubah Password

+ +
+ +
+ @csrf + @method('PUT') + +
+ +
+
+ +
+ +
+ @error('current_password') +

{{ $message }}

+ @enderror +
+ +
+ +
+
+ +
+ +
+ @error('new_password') +

{{ $message }}

+ @enderror +
+ +
+ +
+
+ +
+ +
+
+ +
+ +
+
+
+
+
+
+@endsection \ No newline at end of file diff --git a/resources/views/welcome.blade.php b/resources/views/welcome.blade.php new file mode 100644 index 0000000..256dd68 --- /dev/null +++ b/resources/views/welcome.blade.php @@ -0,0 +1,109 @@ +@extends('layouts.dashboard') + +@section('content') +
+ +
+

Selamat Datang di ElektroStore

+

Temukan berbagai produk elektronik berkualitas dengan harga terbaik

+ + @guest + + @endguest +
+ + +
+
+
+ +
+

Belanja Mudah

+

Nikmati pengalaman belanja yang mudah dan aman dengan berbagai metode pembayaran

+
+ +
+
+ +
+

Pengiriman Cepat

+

Pengiriman ke seluruh Indonesia dengan berbagai pilihan kurir terpercaya

+
+ +
+
+ +
+

Layanan 24/7

+

Customer service kami siap membantu Anda kapan saja

+
+
+ + + + + +
+

Mengapa Memilih Kami?

+
+
+ +
+

Produk Original

+

Semua produk kami dijamin 100% original dengan garansi resmi

+
+
+
+ +
+

Harga Bersaing

+

Dapatkan harga terbaik dengan berbagai promo menarik

+
+
+
+ +
+

Pembayaran Aman

+

Berbagai metode pembayaran yang aman dan terpercaya

+
+
+
+ +
+

Layanan Pelanggan

+

Customer service kami siap membantu Anda 24/7

+
+
+
+
+
+@endsection \ No newline at end of file diff --git a/routes/api.php b/routes/api.php new file mode 100644 index 0000000..36fa6e1 --- /dev/null +++ b/routes/api.php @@ -0,0 +1,34 @@ +get('/user', function (Request $request) { + return $request->user(); +}); + +// Raja Ongkir Routes +Route::get('/provinces', function (RajaOngkirService $rajaOngkir) { + return $rajaOngkir->getProvinces(); +}); + +Route::get('/cities', function (Request $request, RajaOngkirService $rajaOngkir) { + return $rajaOngkir->getCities($request->province); +}); + +Route::post('/shipping-cost', function (Request $request, RajaOngkirService $rajaOngkir) { + $request->validate([ + 'origin' => 'required', + 'destination' => 'required', + 'weight' => 'required|numeric', + 'courier' => 'required|in:jne,pos,tiki' + ]); + + return $rajaOngkir->calculateCost( + $request->origin, + $request->destination, + $request->weight, + $request->courier + ); +}); \ No newline at end of file diff --git a/routes/console.php b/routes/console.php new file mode 100644 index 0000000..3c9adf1 --- /dev/null +++ b/routes/console.php @@ -0,0 +1,8 @@ +comment(Inspiring::quote()); +})->purpose('Display an inspiring quote'); diff --git a/routes/web.php b/routes/web.php new file mode 100644 index 0000000..0883954 --- /dev/null +++ b/routes/web.php @@ -0,0 +1,248 @@ +check()) { + return redirect()->route('dashboard'); + } + return view('welcome'); +})->name('home'); + +// Auth Routes +Route::middleware('guest')->group(function () { + // Login Routes + Route::get('/login', [LoginController::class, 'showLoginForm'])->name('login'); + Route::post('/login', [LoginController::class, 'login']); + + // Register Routes + Route::get('/register', [RegisterController::class, 'create'])->name('register'); + Route::post('/register', [RegisterController::class, 'store'])->name('register.store'); + + // Password Reset Routes + Route::get('/password/reset', [ForgotPasswordController::class, 'showLinkRequestForm'])->name('password.request'); + Route::post('/password/email', [ForgotPasswordController::class, 'sendResetLinkEmail'])->name('password.email'); + Route::get('/password/reset/{token}/{email}', [ForgotPasswordController::class, 'showResetForm'])->name('password.reset'); + Route::post('/password/reset', [ForgotPasswordController::class, 'reset'])->name('password.update'); +}); + +// Dashboard Route (Public) +Route::get('/dashboard', [DashboardController::class, 'index'])->name('dashboard'); + +// Protected Routes +Route::middleware(['auth'])->group(function () { + // User Profile Routes + Route::get('/profile', [UserProfileController::class, 'show'])->name('profile.show'); + Route::put('/profile', [UserProfileController::class, 'update'])->name('profile.update'); + + // Barang Routes + Route::resource('barang', BarangController::class); + Route::get('/barang', [BarangController::class, 'index'])->name('barang.index'); + Route::get('/barang/{barang}', [BarangController::class, 'show'])->name('barang.show'); + Route::post('/barang/checkout', [BarangController::class, 'checkout'])->name('barang.checkout'); + + // Pesanan Routes + Route::resource('pesanan', PesananController::class)->except(['destroy', 'show']); + Route::get('/pesanan/{pesanan}', [PesananController::class, 'show'])->name('pesanan.show'); + Route::post('/pesanan/from-cart', [PesananController::class, 'storeFromCart'])->name('pesanan.store-from-cart'); + + // Transaksi Routes + Route::get('/transaksi/create/{pesanan}', [TransaksiController::class, 'create'])->name('transaksi.create'); + Route::resource('transaksi', TransaksiController::class)->except(['create']); + + // Keranjang Routes + Route::get('/keranjang', [KeranjangController::class, 'index'])->name('keranjang.index'); + Route::post('/keranjang/tambah', [KeranjangController::class, 'tambah'])->name('keranjang.tambah'); + Route::get('/keranjang/checkout', [KeranjangController::class, 'checkout'])->name('keranjang.checkout'); + Route::post('/keranjang/checkout-selected', [KeranjangController::class, 'checkoutSelected'])->name('keranjang.checkout-selected'); + Route::delete('/keranjang/hapus-selected', [KeranjangController::class, 'hapusSelected'])->name('keranjang.hapus-selected'); + Route::put('/keranjang/{keranjang}', [KeranjangController::class, 'update'])->name('keranjang.update'); + Route::delete('/keranjang/{keranjang}', [KeranjangController::class, 'hapus'])->name('keranjang.hapus'); + Route::post('/keranjang/{keranjang}/delete', [KeranjangController::class, 'hapus'])->name('keranjang.hapus.post'); + Route::post('/keranjang/hapus-manual', [KeranjangController::class, 'hapusManual'])->name('keranjang.hapus.manual'); + Route::post('/keranjang/hapus-direct', [KeranjangController::class, 'hapusDirect'])->name('keranjang.hapus.direct'); + Route::post('/keranjang/update-direct', [KeranjangController::class, 'updateDirect'])->name('keranjang.update.direct'); + Route::post('/keranjang/update-fallback', [KeranjangController::class, 'updateFallback'])->name('keranjang.update.fallback'); + Route::post('/keranjang/hapus-fallback', function(Request $request) { + // Fallback sederhana yang dilengkapi debug + \Log::debug('===== FALLBACK HAPUS ====='); + \Log::debug('User ID: ' . Auth::id()); + \Log::debug('Data: ' . json_encode($request->all())); + + if (!$request->has('id')) { + return redirect()->route('keranjang.index')->with('error', 'ID tidak valid'); + } + + try { + $deleted = \DB::table('keranjang') + ->where('id', $request->id) + ->delete(); + + \Log::debug('Result: ' . ($deleted ? 'BERHASIL' : 'GAGAL')); + + return redirect()->route('keranjang.index') + ->with('success', 'Item berhasil dihapus'); + } catch (\Exception $e) { + \Log::error('Error: ' . $e->getMessage()); + return redirect()->route('keranjang.index') + ->with('error', 'Gagal menghapus item'); + } + })->name('keranjang.hapus.fallback'); + Route::delete('/keranjang', [KeranjangController::class, 'kosongkan'])->name('keranjang.kosongkan'); + + // Route fallback untuk keranjang dengan GET method (untuk mencegah error browser) + Route::get('/keranjang/{id}', function($id) { + // Log access dan redirect ke keranjang.index + \Log::debug('Akses GET ke keranjang/{id}', ['id' => $id]); + return redirect()->route('keranjang.index') + ->with('error', 'Gunakan tombol di halaman untuk mengubah jumlah barang'); + })->name('keranjang.fallback'); + + // Debug user + Route::get('/debug-user', function() { + if (!Auth::check()) { + return response()->json(['error' => 'Tidak ada user yang login'], 401); + } + return response()->json([ + 'user_id' => Auth::id(), + 'user_name' => Auth::user()->name, + 'user_email' => Auth::user()->email, + 'is_authenticated' => Auth::check(), + 'session_id' => session()->getId(), + 'time' => now()->toDateTimeString() + ]); + }); + + // Additional Routes + Route::post('/pesanan/{pesanan}/status', [PesananController::class, 'updateStatus'])->name('pesanan.status'); + Route::post('/transaksi/{transaksi}/upload-bukti', [TransaksiController::class, 'uploadBukti'])->name('transaksi.upload-bukti'); + Route::post('/transaksi/{transaksi}/confirm', [TransaksiController::class, 'confirmPayment'])->name('transaksi.confirm'); + + // Logout Route + Route::post('/logout', [LoginController::class, 'logout'])->name('logout'); + + // User Update Address + Route::post('/user/update-address', [UserController::class, 'updateAddress'])->name('user.update-address'); +}); + +// API Routes (tanpa CSRF) +Route::middleware(['auth'])->group(function () { + Route::delete('/api/pesanan/{pesanan}', [PesananController::class, 'destroy'])->name('pesanan.destroy'); +}); + +// Admin Routes +Route::middleware(['auth', \App\Http\Middleware\CheckRole::class . ':admin'])->prefix('admin')->name('admin.')->group(function () { + Route::get('/dashboard', [\App\Http\Controllers\Admin\DashboardController::class, 'index'])->name('dashboard'); + + // Admin Users + Route::get('/users', [\App\Http\Controllers\Admin\UserController::class, 'index'])->name('users.index'); + Route::get('/users/create', [\App\Http\Controllers\Admin\UserController::class, 'create'])->name('users.create'); + Route::post('/users', [\App\Http\Controllers\Admin\UserController::class, 'store'])->name('users.store'); + Route::get('/users/{user}', [\App\Http\Controllers\Admin\UserController::class, 'show'])->name('users.show'); + Route::get('/users/{user}/edit', [\App\Http\Controllers\Admin\UserController::class, 'edit'])->name('users.edit'); + Route::put('/users/{user}', [\App\Http\Controllers\Admin\UserController::class, 'update'])->name('users.update'); + Route::delete('/users/{user}', [\App\Http\Controllers\Admin\UserController::class, 'destroy'])->name('users.destroy'); + + // Admin Barang + Route::get('/barang', [\App\Http\Controllers\Admin\BarangController::class, 'index'])->name('barang.index'); + Route::get('/barang/create', [\App\Http\Controllers\Admin\BarangController::class, 'create'])->name('barang.create'); + Route::post('/barang', [\App\Http\Controllers\Admin\BarangController::class, 'store'])->name('barang.store'); + Route::get('/barang/{barang}', [\App\Http\Controllers\Admin\BarangController::class, 'show'])->name('barang.show'); + Route::get('/barang/{barang}/edit', [\App\Http\Controllers\Admin\BarangController::class, 'edit'])->name('barang.edit'); + Route::put('/barang/{barang}', [\App\Http\Controllers\Admin\BarangController::class, 'update'])->name('barang.update'); + Route::delete('/barang/{barang}', [\App\Http\Controllers\Admin\BarangController::class, 'destroy'])->name('barang.destroy'); + + // Admin Pesanan + Route::get('/pesanan', [\App\Http\Controllers\Admin\PesananController::class, 'index'])->name('pesanan.index'); + Route::get('/pesanan/{pesanan}', [\App\Http\Controllers\Admin\PesananController::class, 'show'])->name('pesanan.show'); + Route::post('/pesanan/{pesanan}/status', [\App\Http\Controllers\Admin\PesananController::class, 'updateStatus'])->name('pesanan.status'); + + // Admin Transaksi + Route::get('/transaksi', [\App\Http\Controllers\Admin\TransaksiController::class, 'index'])->name('transaksi.index'); + Route::get('/transaksi/{transaksi}', [\App\Http\Controllers\Admin\TransaksiController::class, 'show'])->name('transaksi.show'); + Route::put('/transaksi/{transaksi}/status', [\App\Http\Controllers\Admin\TransaksiController::class, 'updateStatus'])->name('transaksi.status'); + + // Admin Laporan + Route::get('/laporan', [\App\Http\Controllers\Admin\LaporanController::class, 'index'])->name('laporan.index'); + Route::get('/laporan/generate', [\App\Http\Controllers\Admin\LaporanController::class, 'generate'])->name('laporan.generate'); + Route::get('/laporan/penjualan', [\App\Http\Controllers\Admin\LaporanController::class, 'penjualan'])->name('laporan.penjualan'); + Route::get('/laporan/stok', [\App\Http\Controllers\Admin\LaporanController::class, 'stok'])->name('laporan.stok'); + Route::get('/laporan/transaksi', [\App\Http\Controllers\Admin\LaporanController::class, 'transaksi'])->name('laporan.transaksi'); + Route::post('/laporan/download', [\App\Http\Controllers\Admin\LaporanController::class, 'download'])->name('laporan.download'); + + // Admin Banner + Route::resource('/banners', \App\Http\Controllers\Admin\BannerController::class); + Route::post('/banners/{banner}/toggle', [\App\Http\Controllers\Admin\BannerController::class, 'toggleStatus'])->name('banners.toggle'); + Route::post('/banners/{banner}/move-up', [\App\Http\Controllers\Admin\BannerController::class, 'moveUp'])->name('banners.move-up'); + Route::post('/banners/{banner}/move-down', [\App\Http\Controllers\Admin\BannerController::class, 'moveDown'])->name('banners.move-down'); + + // Admin Flash Sale + Route::resource('/flash-sales', \App\Http\Controllers\Admin\FlashSaleController::class); + Route::post('/flash-sales/{flashSale}/toggle', [\App\Http\Controllers\Admin\FlashSaleController::class, 'toggleStatus'])->name('flash-sales.toggle'); + Route::get('/flash-sales/{flashSale}/items', [\App\Http\Controllers\Admin\FlashSaleController::class, 'showItems'])->name('flash-sales.items'); + Route::post('/flash-sales/{flashSale}/items', [\App\Http\Controllers\Admin\FlashSaleController::class, 'storeItem'])->name('flash-sales.items.store'); + Route::put('/flash-sales/items/{flashSaleItem}', [\App\Http\Controllers\Admin\FlashSaleController::class, 'updateItem'])->name('flash-sales.items.update'); + Route::delete('/flash-sales/items/{flashSaleItem}', [\App\Http\Controllers\Admin\FlashSaleController::class, 'destroyItem'])->name('flash-sales.items.destroy'); + Route::get('/flash-sales/items/{flashSaleItem}/data', [\App\Http\Controllers\Admin\FlashSaleController::class, 'getItemData'])->name('flash-sales.items.data'); + + // Pesanan routes + Route::get('pesanan/cetak-resi/{pesanan}', [\App\Http\Controllers\Admin\PesananController::class, 'cetakResi'])->name('pesanan.cetak-resi'); +}); + +Route::delete('/pesanan/{pesanan}', [PesananController::class, 'destroy'])->name('pesanan.destroy'); + +// Route untuk Midtrans +Route::post('/transaksi/create/{pesanan}', [TransaksiController::class, 'create'])->name('transaksi.create'); +Route::post('/transaksi/get-snap-token/{pesanan}', [TransaksiController::class, 'getSnapToken'])->name('transaksi.get-snap-token'); +Route::post('/transaksi/callback', [TransaksiController::class, 'callback'])->name('transaksi.callback'); +Route::get('/transaksi/finish', [TransaksiController::class, 'finish'])->name('transaksi.finish'); +Route::get('/transaksi/unfinish', [TransaksiController::class, 'unfinish'])->name('transaksi.unfinish'); +Route::get('/transaksi/error', [TransaksiController::class, 'error'])->name('transaksi.error'); +Route::post('/transaksi/update-status', [TransaksiController::class, 'updateStatus'])->name('transaksi.update-status'); + +// Email Verification Routes +Route::get('/email/verify', [App\Http\Controllers\Auth\VerificationController::class, 'show']) + ->middleware('auth') + ->name('verification.notice'); + +Route::get('/email/verify/{token}', [App\Http\Controllers\Auth\VerificationController::class, 'verify']) + ->name('verification.verify'); + +Route::post('/email/verification-notification', [App\Http\Controllers\Auth\VerificationController::class, 'resend']) + ->middleware(['auth', 'throttle:6,1']) + ->name('verification.send'); + +// Location Routes +Route::get('/provinces', [LocationController::class, 'getProvinces'])->name('provinces'); +Route::get('/cities', [LocationController::class, 'getCities'])->name('cities'); +Route::post('/calculate-cost', [LocationController::class, 'calculateCost'])->name('calculate-cost'); + +// Layanan Pelanggan Routes +Route::get('/bantuan', function () { + return view('layanan.bantuan'); +})->name('bantuan'); + +Route::get('/cara-pembelian', function () { + return view('layanan.cara-pembelian'); +})->name('cara-pembelian'); + +Route::get('/pengiriman', function () { + return view('layanan.pengiriman'); +})->name('pengiriman'); + +Route::get('/barang', [BarangController::class, 'index'])->name('barang.index'); \ No newline at end of file diff --git a/storage/app/.gitignore b/storage/app/.gitignore new file mode 100644 index 0000000..fedb287 --- /dev/null +++ b/storage/app/.gitignore @@ -0,0 +1,4 @@ +* +!private/ +!public/ +!.gitignore diff --git a/storage/app/private/.gitignore b/storage/app/private/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/storage/app/private/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/storage/app/public/.gitignore b/storage/app/public/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/storage/app/public/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/storage/framework/.gitignore b/storage/framework/.gitignore new file mode 100644 index 0000000..05c4471 --- /dev/null +++ b/storage/framework/.gitignore @@ -0,0 +1,9 @@ +compiled.php +config.php +down +events.scanned.php +maintenance.php +routes.php +routes.scanned.php +schedule-* +services.json diff --git a/storage/framework/cache/.gitignore b/storage/framework/cache/.gitignore new file mode 100644 index 0000000..01e4a6c --- /dev/null +++ b/storage/framework/cache/.gitignore @@ -0,0 +1,3 @@ +* +!data/ +!.gitignore diff --git a/storage/framework/cache/data/.gitignore b/storage/framework/cache/data/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/storage/framework/cache/data/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/storage/framework/sessions/.gitignore b/storage/framework/sessions/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/storage/framework/sessions/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/storage/framework/testing/.gitignore b/storage/framework/testing/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/storage/framework/testing/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/storage/framework/views/.gitignore b/storage/framework/views/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/storage/framework/views/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/storage/logs/.gitignore b/storage/logs/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/storage/logs/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..ce0c57f --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,20 @@ +import defaultTheme from 'tailwindcss/defaultTheme'; + +/** @type {import('tailwindcss').Config} */ +export default { + content: [ + './vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php', + './storage/framework/views/*.php', + './resources/**/*.blade.php', + './resources/**/*.js', + './resources/**/*.vue', + ], + theme: { + extend: { + fontFamily: { + sans: ['Figtree', ...defaultTheme.fontFamily.sans], + }, + }, + }, + plugins: [], +}; diff --git a/tests/.editorconfig b/tests/.editorconfig new file mode 100644 index 0000000..8f0de65 --- /dev/null +++ b/tests/.editorconfig @@ -0,0 +1,18 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 4 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false + +[*.{yml,yaml}] +indent_size = 2 + +[docker-compose.yml] +indent_size = 4 diff --git a/tests/Feature/ExampleTest.php b/tests/Feature/ExampleTest.php new file mode 100644 index 0000000..8364a84 --- /dev/null +++ b/tests/Feature/ExampleTest.php @@ -0,0 +1,19 @@ +get('/'); + + $response->assertStatus(200); + } +} diff --git a/tests/TestCase.php b/tests/TestCase.php new file mode 100644 index 0000000..fe1ffc2 --- /dev/null +++ b/tests/TestCase.php @@ -0,0 +1,10 @@ +assertTrue(true); + } +}