From 51469f55209375ad15bb5fd759c07b675ef5508e Mon Sep 17 00:00:00 2001 From: bayughazali Date: Mon, 23 Feb 2026 21:33:52 +0700 Subject: [PATCH] first commit --- .editorconfig | 18 + .env.example | 65 + .gitattributes | 11 + .gitignore | 24 + README.md | 61 + app/Http/Controllers/AdminController.php | 174 + app/Http/Controllers/Auth/LoginController.php | 93 + .../Controllers/Auth/RegisterController.php | 127 + app/Http/Controllers/CheckoutController.php | 158 + app/Http/Controllers/ContactController.php | 31 + app/Http/Controllers/Controller.php | 8 + app/Http/Controllers/HomeController.php | 39 + app/Http/Controllers/ProductController.php | 215 + .../ProductRecommendationController.php | 158 + app/Http/Controllers/TransaksiController.php | 412 + app/Http/Controllers/UserController.php | 169 + app/Models/Contact.php | 28 + app/Models/Order.php | 33 + app/Models/OrderDetail.php | 39 + app/Models/Product.php | 129 + app/Models/Transaksi.php | 112 + app/Models/TransaksiDetail.php | 39 + app/Models/User.php | 51 + app/Providers/AppServiceProvider.php | 24 + app/Services/ProductRecommendationService.php | 86 + artisan | 18 + bootstrap/app.php | 18 + bootstrap/cache/.gitignore | 2 + bootstrap/providers.php | 5 + composer.json | 75 + composer.lock | 8105 +++++++++++++++++ config/app.php | 126 + config/auth.php | 115 + config/cache.php | 108 + config/database.php | 174 + config/filesystems.php | 80 + config/logging.php | 132 + config/mail.php | 118 + config/queue.php | 112 + config/services.php | 38 + config/session.php | 217 + database/.gitignore | 1 + database/factories/UserFactory.php | 44 + .../0001_01_01_000000_create_users_table.php | 33 + .../0001_01_01_000001_create_cache_table.php | 35 + .../0001_01_01_000002_create_jobs_table.php | 57 + ...025_07_20_042441_create_products_table.php | 36 + .../2025_07_20_042551_create_orders_table.php | 33 + ...7_20_042630_create_order_details_table.php | 32 + ...025_08_03_042203_create_contacts_table.php | 27 + ..._13_070809_add_is_admin_to_users_table.php | 32 + .../2025_11_26_054606_transaksis.php | 42 + ..._062544_create_transaksi_details_table.php | 31 + database/seeders/DatabaseSeeder.php | 23 + database/seeders/ProductSeeder.php | 88 + package.json | 17 + phpunit.xml | 34 + public/.htaccess | 25 + public/favicon.ico | 0 public/images/bibit-cabai-1.jpg | Bin 0 -> 8611 bytes public/images/bibit-cabai-2.jpg | Bin 0 -> 18220 bytes public/images/bibit-cabai-3.jpg | Bin 0 -> 11245 bytes public/images/cabai-hero.jpg | Bin 0 -> 12823 bytes public/images/placeholder-bibit.jpg | Bin 0 -> 11552 bytes public/images/qris.jpg | Bin 0 -> 158066 bytes public/index.php | 20 + public/robots.txt | 2 + resources/css/app.css | 11 + resources/js/app.js | 1 + resources/js/bootstrap.js | 4 + resources/views/admin/dashboard.blade.php | 329 + resources/views/admin/layouts/app.blade.php | 237 + resources/views/admin/login.blade.php | 192 + resources/views/admin/orders.blade.php | 269 + .../views/admin/products/create.blade.php | 496 + resources/views/admin/products/edit.blade.php | 238 + .../views/admin/products/index.blade.php | 746 ++ .../views/admin/transaksis/edit.blade.php | 258 + .../views/admin/transaksis/print.blade.php | 349 + .../views/admin/transaksis/show.blade.php | 297 + resources/views/admin/users.blade.php | 491 + resources/views/auth/login.blade.php | 250 + resources/views/auth/register.blade.php | 388 + resources/views/checkout/index.blade.php | 479 + resources/views/checkout/success.blade.php | 358 + resources/views/contact.blade.php | 178 + resources/views/home.blade.php | 265 + resources/views/layouts/app.blade.php | 284 + .../views/products/best-selling.blade.php | 271 + resources/views/welcome.blade.php | 277 + routes/console.php | 8 + routes/web.php | 143 + storage/app/.gitignore | 4 + storage/app/private/.gitignore | 2 + storage/app/public/.gitignore | 2 + storage/framework/.gitignore | 9 + storage/framework/cache/.gitignore | 3 + storage/framework/cache/data/.gitignore | 2 + storage/framework/sessions/.gitignore | 2 + storage/framework/testing/.gitignore | 2 + storage/framework/views/.gitignore | 2 + storage/logs/.gitignore | 2 + ta_bibit_cabai | 0 tests/Feature/ExampleTest.php | 19 + tests/TestCase.php | 10 + tests/Unit/ExampleTest.php | 16 + vite.config.js | 13 + 107 files changed, 19266 insertions(+) create mode 100644 .editorconfig create mode 100644 .env.example create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 README.md create mode 100644 app/Http/Controllers/AdminController.php create mode 100644 app/Http/Controllers/Auth/LoginController.php create mode 100644 app/Http/Controllers/Auth/RegisterController.php create mode 100644 app/Http/Controllers/CheckoutController.php create mode 100644 app/Http/Controllers/ContactController.php create mode 100644 app/Http/Controllers/Controller.php create mode 100644 app/Http/Controllers/HomeController.php create mode 100644 app/Http/Controllers/ProductController.php create mode 100644 app/Http/Controllers/ProductRecommendationController.php create mode 100644 app/Http/Controllers/TransaksiController.php create mode 100644 app/Http/Controllers/UserController.php create mode 100644 app/Models/Contact.php create mode 100644 app/Models/Order.php create mode 100644 app/Models/OrderDetail.php create mode 100644 app/Models/Product.php create mode 100644 app/Models/Transaksi.php create mode 100644 app/Models/TransaksiDetail.php create mode 100644 app/Models/User.php create mode 100644 app/Providers/AppServiceProvider.php create mode 100644 app/Services/ProductRecommendationService.php create mode 100644 artisan create mode 100644 bootstrap/app.php create mode 100644 bootstrap/cache/.gitignore create mode 100644 bootstrap/providers.php create mode 100644 composer.json create mode 100644 composer.lock create mode 100644 config/app.php create mode 100644 config/auth.php create mode 100644 config/cache.php create mode 100644 config/database.php create mode 100644 config/filesystems.php create mode 100644 config/logging.php create mode 100644 config/mail.php create mode 100644 config/queue.php create mode 100644 config/services.php create mode 100644 config/session.php create mode 100644 database/.gitignore create mode 100644 database/factories/UserFactory.php create mode 100644 database/migrations/0001_01_01_000000_create_users_table.php create mode 100644 database/migrations/0001_01_01_000001_create_cache_table.php create mode 100644 database/migrations/0001_01_01_000002_create_jobs_table.php create mode 100644 database/migrations/2025_07_20_042441_create_products_table.php create mode 100644 database/migrations/2025_07_20_042551_create_orders_table.php create mode 100644 database/migrations/2025_07_20_042630_create_order_details_table.php create mode 100644 database/migrations/2025_08_03_042203_create_contacts_table.php create mode 100644 database/migrations/2025_08_13_070809_add_is_admin_to_users_table.php create mode 100644 database/migrations/2025_11_26_054606_transaksis.php create mode 100644 database/migrations/2025_11_26_062544_create_transaksi_details_table.php create mode 100644 database/seeders/DatabaseSeeder.php create mode 100644 database/seeders/ProductSeeder.php create mode 100644 package.json create mode 100644 phpunit.xml create mode 100644 public/.htaccess create mode 100644 public/favicon.ico create mode 100644 public/images/bibit-cabai-1.jpg create mode 100644 public/images/bibit-cabai-2.jpg create mode 100644 public/images/bibit-cabai-3.jpg create mode 100644 public/images/cabai-hero.jpg create mode 100644 public/images/placeholder-bibit.jpg create mode 100644 public/images/qris.jpg create mode 100644 public/index.php create mode 100644 public/robots.txt create mode 100644 resources/css/app.css create mode 100644 resources/js/app.js create mode 100644 resources/js/bootstrap.js create mode 100644 resources/views/admin/dashboard.blade.php create mode 100644 resources/views/admin/layouts/app.blade.php create mode 100644 resources/views/admin/login.blade.php create mode 100644 resources/views/admin/orders.blade.php create mode 100644 resources/views/admin/products/create.blade.php create mode 100644 resources/views/admin/products/edit.blade.php create mode 100644 resources/views/admin/products/index.blade.php create mode 100644 resources/views/admin/transaksis/edit.blade.php create mode 100644 resources/views/admin/transaksis/print.blade.php create mode 100644 resources/views/admin/transaksis/show.blade.php create mode 100644 resources/views/admin/users.blade.php create mode 100644 resources/views/auth/login.blade.php create mode 100644 resources/views/auth/register.blade.php create mode 100644 resources/views/checkout/index.blade.php create mode 100644 resources/views/checkout/success.blade.php create mode 100644 resources/views/contact.blade.php create mode 100644 resources/views/home.blade.php create mode 100644 resources/views/layouts/app.blade.php create mode 100644 resources/views/products/best-selling.blade.php create mode 100644 resources/views/welcome.blade.php create mode 100644 routes/console.php create mode 100644 routes/web.php create mode 100644 storage/app/.gitignore create mode 100644 storage/app/private/.gitignore create mode 100644 storage/app/public/.gitignore create mode 100644 storage/framework/.gitignore create mode 100644 storage/framework/cache/.gitignore create mode 100644 storage/framework/cache/data/.gitignore create mode 100644 storage/framework/sessions/.gitignore create mode 100644 storage/framework/testing/.gitignore create mode 100644 storage/framework/views/.gitignore create mode 100644 storage/logs/.gitignore create mode 100644 ta_bibit_cabai create mode 100644 tests/Feature/ExampleTest.php create mode 100644 tests/TestCase.php create mode 100644 tests/Unit/ExampleTest.php create mode 100644 vite.config.js diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..8f0de65 --- /dev/null +++ b/.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/.env.example b/.env.example new file mode 100644 index 0000000..35db1dd --- /dev/null +++ b/.env.example @@ -0,0 +1,65 @@ +APP_NAME=Laravel +APP_ENV=local +APP_KEY= +APP_DEBUG=true +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/.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..b71b1ea --- /dev/null +++ b/.gitignore @@ -0,0 +1,24 @@ +*.log +.DS_Store +.env +.env.backup +.env.production +.phpactor.json +.phpunit.result.cache +/.fleet +/.idea +/.nova +/.phpunit.cache +/.vscode +/.zed +/auth.json +/node_modules +/public/build +/public/hot +/public/storage +/storage/*.key +/storage/pail +/vendor +Homestead.json +Homestead.yaml +Thumbs.db diff --git a/README.md b/README.md new file mode 100644 index 0000000..75c347a --- /dev/null +++ b/README.md @@ -0,0 +1,61 @@ +

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)** +- **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)** +- **[64 Robots](https://64robots.com)** +- **[Curotec](https://www.curotec.com/services/technologies/laravel)** +- **[DevSquad](https://devsquad.com/hire-laravel-developers)** +- **[Redberry](https://redberry.international/laravel-development)** +- **[Active Logic](https://activelogic.com)** + +## 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/Http/Controllers/AdminController.php b/app/Http/Controllers/AdminController.php new file mode 100644 index 0000000..fc844c6 --- /dev/null +++ b/app/Http/Controllers/AdminController.php @@ -0,0 +1,174 @@ + $request->method(), + 'all_data' => $request->all(), + 'only_email' => $request->only(['email']), + 'email_value' => $request->input('email'), + 'has_email' => $request->has('email'), + 'filled_email' => $request->filled('email'), + ]); + + // Validasi dengan pesan error yang jelas + $validated = $request->validate([ + 'email' => [ + 'required', + 'string', + 'email:rfc,dns', + 'max:255' + ], + 'password' => [ + 'required', + 'string', + 'min:6' + ], + ], [ + 'email.required' => 'Email wajib diisi', + 'email.string' => 'Email harus berupa teks', + 'email.email' => 'Format email tidak valid', + 'email.max' => 'Email terlalu panjang', + 'password.required' => 'Password wajib diisi', + 'password.string' => 'Password harus berupa teks', + 'password.min' => 'Password minimal 6 karakter', + ]); + + // Debug: Log validated data + Log::info('Validated data', $validated); + + $credentials = [ + 'email' => $validated['email'], + 'password' => $validated['password'] + ]; + + // Cek apakah user dengan email ini ada + $user = User::where('email', $credentials['email'])->first(); + + if (!$user) { + Log::warning('User not found', ['email' => $credentials['email']]); + return back()->withErrors([ + 'email' => 'Akun admin dengan email ini tidak ditemukan', + ])->withInput($request->only('email')); + } + + // Coba login + if (Auth::attempt($credentials, $request->boolean('remember'))) { + $request->session()->regenerate(); + + Log::info('Login successful', ['user_id' => Auth::id()]); + + return redirect() + ->intended(route('admin.dashboard')) + ->with('success', 'Selamat datang, ' . Auth::user()->name . '!'); + } + + Log::warning('Login failed - wrong credentials', ['email' => $credentials['email']]); + + return back()->withErrors([ + 'email' => 'Email atau password salah. Silakan coba lagi.', + ])->withInput($request->only('email')); + } + + /** + * Show the admin dashboard. + */ + public function dashboard() + { + $stats = [ + 'total_products' => Product::count(), + 'active_products' => Product::where('status', 'aktif')->count(), + 'out_of_stock' => Product::where('stock', 0)->count(), + 'low_stock' => Product::where('stock', '>', 0)->where('stock', '<=', 5)->count(), + ]; + + $recent_products = Product::latest()->take(5)->get(); + + return view('admin.dashboard', compact('stats', 'recent_products')); + } + + /** + * Show orders management. + */ + public function orders() +{ + $orders = \App\Models\Transaksi::with(['details.product']) + ->orderBy('created_at', 'desc') + ->paginate(15); + + return view('admin.orders', compact('orders')); +} + + /** + * Show users management. + */ + public function users() + { + return view('admin.users'); + } + + /** + * Show reports. + */ + public function reports() + { + return view('admin.reports'); + } + + /** + * Show settings. + */ + public function settings() + { + return view('admin.settings'); + } + + /** + * Logout admin. + */ + public function logout(Request $request) + { + Log::info('Admin logout', ['user_id' => Auth::id()]); + + Auth::logout(); + + $request->session()->invalidate(); + $request->session()->regenerateToken(); + + return redirect('/') + ->with('success', 'Anda telah berhasil logout'); + } + +// Tambahkan method ini ke dalam AdminController.php Anda + +/** + * Display orders page with shipping and status information + */ + + +} \ No newline at end of file diff --git a/app/Http/Controllers/Auth/LoginController.php b/app/Http/Controllers/Auth/LoginController.php new file mode 100644 index 0000000..dec2a6a --- /dev/null +++ b/app/Http/Controllers/Auth/LoginController.php @@ -0,0 +1,93 @@ +validate([ + 'email' => [ + 'required', + 'email', + 'regex:/@gmail\.com$/', + 'regex:/^\S+$/', // Tidak boleh mengandung spasi + ], + 'password' => [ + 'required', + 'min:8', + 'regex:/^\S+$/', // Tidak boleh mengandung spasi + ], + 'remember' => 'required|accepted', + ], [ + 'email.required' => 'Email wajib diisi.', + 'email.email' => 'Format email tidak valid.', + 'email.regex' => 'Email harus menggunakan domain @gmail.com dan tidak boleh mengandung spasi.', + 'password.required' => 'Password wajib diisi.', + 'password.min' => 'Password minimal harus 8 karakter.', + 'password.regex' => 'Password tidak boleh mengandung spasi.', + 'remember.required' => 'Anda harus mencentang "Ingat saya".', + 'remember.accepted' => 'Anda harus mencentang "Ingat saya".', + ]); + + // Ambil credentials yang sudah divalidasi + $credentials = [ + 'email' => $request->email, + 'password' => $request->password, + ]; + + // Cari user dengan email yang diberikan dan pastikan bukan admin + $user = User::where('email', $credentials['email']) + ->where(function ($query) { + $query->where('is_admin', false) + ->orWhereNull('is_admin'); + }) + ->first(); + + // Verifikasi apakah user ada dan password cocok + if (!$user) { + return back()->withErrors([ + 'email' => 'Email tidak terdaftar atau Anda mencoba login admin di halaman user.', + ])->onlyInput('email'); + } + + // Verifikasi password + if (!Hash::check($credentials['password'], $user->password)) { + return back()->withErrors([ + 'password' => 'Password yang Anda masukkan salah.', + ])->onlyInput('email'); + } + + // Login berhasil + Auth::login($user, $request->boolean('remember')); + $request->session()->regenerate(); + + // Pastikan session admin tidak ada + session()->forget('is_admin'); + + return redirect()->intended('/')->with('success', 'Selamat datang, ' . $user->name . '!'); + } + + public function logout(Request $request): RedirectResponse + { + Auth::logout(); + $request->session()->invalidate(); + $request->session()->regenerateToken(); + + return redirect('/')->with('success', 'Anda telah berhasil logout.'); + } +} \ No newline at end of file diff --git a/app/Http/Controllers/Auth/RegisterController.php b/app/Http/Controllers/Auth/RegisterController.php new file mode 100644 index 0000000..0455d12 --- /dev/null +++ b/app/Http/Controllers/Auth/RegisterController.php @@ -0,0 +1,127 @@ +all(), [ + 'name' => 'required|string|min:12|max:255', + 'email' => 'required|string|email|max:255|unique:users|regex:/@gmail\.com$/|regex:/^\S+$/', + 'phone' => 'required|string|regex:/^[0-9]+$/|min:12|max:20|regex:/^\S+$/', + 'address' => 'required|string|min:12|max:500', + 'password' => 'required|string|min:8|confirmed|regex:/^\S+$/', + 'agree' => 'required|accepted', + ], [ + 'name.required' => 'Nama wajib diisi.', + 'name.min' => 'Nama minimal harus 12 karakter.', + 'email.required' => 'Email wajib diisi.', + 'email.email' => 'Format email tidak valid.', + 'email.unique' => 'Email sudah digunakan.', + 'email.regex' => 'Email harus menggunakan domain @gmail.com dan tidak boleh mengandung spasi.', + 'phone.required' => 'Nomor telepon wajib diisi.', + 'phone.regex' => 'Nomor telepon hanya boleh berisi angka dan tidak boleh mengandung spasi.', + 'phone.min' => 'Nomor telepon minimal harus 12 karakter.', + 'address.required' => 'Alamat wajib diisi.', + 'address.min' => 'Alamat minimal harus 12 karakter.', + 'password.required' => 'Password wajib diisi.', + 'password.min' => 'Password minimal harus 8 karakter.', + 'password.confirmed' => 'Konfirmasi password tidak cocok.', + 'password.regex' => 'Password tidak boleh mengandung spasi.', + 'agree.required' => 'Anda harus menyetujui syarat dan ketentuan.', + 'agree.accepted' => 'Anda harus menyetujui syarat dan ketentuan.', + ]); + + // Validasi password familiar + $validator->after(function ($validator) use ($request) { + if ($request->has('password') && $this->isCommonPassword($request->password)) { + $validator->errors()->add('password', 'Password yang Anda gunakan terlalu umum dan sering digunakan. Silakan pilih password yang lebih unik untuk keamanan akun Anda.'); + } + }); + + if ($validator->fails()) { + return redirect()->back()->withErrors($validator)->withInput(); + } + + $validated = $validator->validated(); + + $user = User::create([ + 'name' => $validated['name'], + 'email' => $validated['email'], + 'phone' => $validated['phone'], + 'address' => $validated['address'], + 'password' => Hash::make($validated['password']), + 'is_admin' => false, // Pastikan user biasa bukan admin + ]); + + // Arahkan ke login dengan pesan sukses + return redirect()->route('login')->with('success', 'Registrasi berhasil! Silakan login dengan akun Anda.'); + } + + /** + * Cek apakah password termasuk password yang umum/familiar + */ + private function isCommonPassword(string $password): bool + { + $commonPasswords = [ + // Password numerik umum + '12345678', '123456789', '1234567890', + '87654321', '11111111', '22222222', '33333333', '44444444', '55555555', + '66666666', '77777777', '88888888', '99999999', '00000000', + + // Password alfabetik umum + 'password', 'Password', 'PASSWORD', 'password123', 'Password123', + 'qwerty123', 'qwertyui', 'asdfghjk', 'zxcvbnm123', + 'abcd1234', 'admin123', 'user1234', 'welcome123', + + // Password Indonesia umum + 'indonesia', 'Indonesia', 'garuda123', 'nusantara', + 'jakarta123', 'bali2023', 'surabaya', 'bandung123', + 'password1', 'rahasia123', 'bismillah', + + // Kombinasi tanggal umum + '01011990', '01011995', '01012000', '17081945', + '12345abc', 'abc12345', '123qwe123', 'qwe12345', + + // Pattern keyboard umum + 'qwerty12', 'asdf1234', 'zxcv1234', '1qaz2wsx', + '1q2w3e4r', 'qazwsxed', 'plokijuh', + + // Password dengan nama umum + 'admin1234', 'guest1234', 'test1234', 'demo1234', + 'sample123', 'example123', 'default123', + + // Password sosial media umum + 'facebook', 'instagram', 'whatsapp', 'twitter123', + 'gmail123', 'yahoo123', 'google123', + + // Password gaming umum + 'minecraft', 'roblox123', 'fortnite', 'pubg1234', + 'mobilelegend', 'freefire', 'valorant', + + // Password device umum + 'android123', 'iphone123', 'samsung123', 'nokia1234', + + // Tahun umum + '20232023', '20242024', '19901990', '20002000', + ]; + + return in_array(strtolower($password), array_map('strtolower', $commonPasswords)); + } +} \ No newline at end of file diff --git a/app/Http/Controllers/CheckoutController.php b/app/Http/Controllers/CheckoutController.php new file mode 100644 index 0000000..d0dc963 --- /dev/null +++ b/app/Http/Controllers/CheckoutController.php @@ -0,0 +1,158 @@ +get('product_id'); + $quantity = $request->get('quantity', 1); + + if (!$productId) { + return redirect()->route('home')->with('error', 'Produk tidak ditemukan'); + } + + $product = Product::find($productId); + + if (!$product) { + return redirect()->route('home')->with('error', 'Produk tidak ditemukan'); + } + + if ($product->stock < $quantity) { + return redirect()->back()->with('error', 'Stok tidak mencukupi. Stok tersedia: ' . $product->stock); + } + + $subtotal = $product->price * $quantity; + $ongkir = 15000; + $total = $subtotal + $ongkir; + + // Panggil view checkout.index (form checkout) + return view('checkout.index', compact('product', 'quantity', 'subtotal', 'ongkir', 'total')); + + } catch (\Exception $e) { + Log::error('Checkout Index Error: ' . $e->getMessage()); + return redirect()->route('home')->with('error', 'Terjadi kesalahan: ' . $e->getMessage()); + } + } + + public function process(Request $request) + { + $validated = $request->validate([ + 'product_id' => 'required|exists:products,id', + 'quantity' => 'required|integer|min:1', + 'name' => 'required|string|max:255', + 'phone' => 'required|string|max:20', + 'email' => 'required|email|max:255', + 'address' => 'required|string', + 'city' => 'required|string|max:100', + 'postal_code' => 'required|string|max:10', + 'payment_method' => 'required|in:qris,bri,dana,seabank,shopee,cod', // TAMBAHKAN 'qris' + 'shipping_cost' => 'required|numeric|min:0', + 'notes' => 'nullable|string|max:1000' +]); + + DB::beginTransaction(); + + try { + $product = Product::lockForUpdate()->find($request->product_id); + + if (!$product) { + throw new \Exception('Produk tidak ditemukan'); + } + + if ($product->stock < $request->quantity) { + throw new \Exception('Stok tidak mencukupi. Stok tersedia: ' . $product->stock); + } + + $subtotal = $product->price * $request->quantity; + $ongkir = 15000; + $total = $subtotal + $ongkir; + + $invoiceNumber = 'INV-' . date('Ymd') . '-' . strtoupper(substr(uniqid(), -6)); + + $transaksi = new Transaksi(); + $transaksi->invoice_number = $invoiceNumber; + $transaksi->user_id = Auth::id(); + $transaksi->customer_name = $request->name; + $transaksi->customer_phone = $request->phone; + $transaksi->customer_email = $request->email; + $transaksi->shipping_address = $request->address; + $transaksi->province = $request->province; + $transaksi->city = $request->city; + $transaksi->postal_code = $request->postal_code; + $transaksi->subtotal = $subtotal; + $transaksi->shipping_cost = $ongkir; + $transaksi->total_amount = $total; + $transaksi->payment_method = $request->payment_method; + $transaksi->payment_status = 'pending'; + $transaksi->order_status = 'pending'; + $transaksi->notes = $request->notes; + $transaksi->save(); + + $detail = new TransaksiDetail(); + $detail->transaksi_id = $transaksi->id; + $detail->product_id = $product->id; + $detail->product_name = $product->name; + $detail->quantity = $request->quantity; + $detail->price = $product->price; + $detail->subtotal = $subtotal; + $detail->save(); + + $product->stock = $product->stock - $request->quantity; + $product->save(); + + DB::commit(); + + return redirect()->route('checkout.success', ['id' => $transaksi->id]) + ->with('success', 'Pesanan berhasil dibuat!'); + + } catch (\Exception $e) { + DB::rollBack(); + + Log::error('Checkout Process Error', [ + 'message' => $e->getMessage(), + 'file' => $e->getFile(), + 'line' => $e->getLine() + ]); + + return redirect()->back() + ->with('error', 'Terjadi kesalahan: ' . $e->getMessage()) + ->withInput(); + } + } + + public function success($id) + { + try { + $transaksi = Transaksi::with(['details.product'])->find($id); + + if (!$transaksi) { + return redirect()->route('home') + ->with('error', 'Transaksi tidak ditemukan'); + } + + // Panggil view checkout.success (halaman sukses) + return view('checkout.success', compact('transaksi')); + + } catch (\Exception $e) { + Log::error('Success Page Error', [ + 'message' => $e->getMessage(), + 'file' => $e->getFile(), + 'line' => $e->getLine() + ]); + + return redirect()->route('home') + ->with('error', 'Terjadi kesalahan: ' . $e->getMessage()); + } + } +} \ No newline at end of file diff --git a/app/Http/Controllers/ContactController.php b/app/Http/Controllers/ContactController.php new file mode 100644 index 0000000..cb260dc --- /dev/null +++ b/app/Http/Controllers/ContactController.php @@ -0,0 +1,31 @@ +validate([ + 'name' => 'required|string|max:255', + 'email' => 'required|email|max:255', + 'phone' => 'nullable|string|max:20', + 'subject' => 'required|string|max:255', + 'message' => 'required|string|max:1000', + ]); + + Contact::create($validated); + + return redirect()->back()->with('success', 'Pesan Anda telah terkirim! Kami akan segera merespons.'); + } +} diff --git a/app/Http/Controllers/Controller.php b/app/Http/Controllers/Controller.php new file mode 100644 index 0000000..8677cd5 --- /dev/null +++ b/app/Http/Controllers/Controller.php @@ -0,0 +1,8 @@ +orderByDesc('sold') // Order by most sold + ->take(6) + ->get(); + + return view('home', compact('featuredProducts')); + } + + public function bestSellingProducts() + { + $products = Product::active() + ->where('sold', '>', 0) + ->orderByDesc('sold') + ->paginate(12); + + return view('products.best-selling', compact('products')); + } + + public function allProducts() + { + $products = Product::active() + ->orderByDesc('created_at') + ->paginate(12); + + return view('products.all', compact('products')); + } +} \ No newline at end of file diff --git a/app/Http/Controllers/ProductController.php b/app/Http/Controllers/ProductController.php new file mode 100644 index 0000000..ff6e0cb --- /dev/null +++ b/app/Http/Controllers/ProductController.php @@ -0,0 +1,215 @@ +filled('search')) { + $query->search($request->search); + } + + // Filter by category + if ($request->filled('category')) { + $query->byCategory($request->category); + } + + // Filter by status + if ($request->filled('status')) { + $query->where('status', $request->status); + } + + $products = $query->paginate(10); + + // Append query parameters to pagination links + $products->appends($request->query()); + + return view('admin.products.index', compact('products')); + } + + // Form tambah produk + public function create() + { + return view('admin.products.create'); + } + + // Simpan produk baru - UPDATED dengan auto label + public function store(Request $request) + { + $request->validate([ + 'name' => 'required|string|max:255', + 'category' => 'required|string|max:100', + 'price' => 'required|numeric|min:0', + 'stock' => 'required|integer|min:0', + 'status' => 'required|in:aktif,nonaktif', + 'description' => 'nullable|string', + 'image' => 'nullable|image|mimes:jpg,png,jpeg,gif|max:4048' + ], [ + 'name.required' => 'Nama produk wajib diisi', + 'category.required' => 'Kategori wajib dipilih', + 'price.required' => 'Harga wajib diisi', + 'price.numeric' => 'Harga harus berupa angka', + 'stock.required' => 'Stok wajib diisi', + 'stock.integer' => 'Stok harus berupa angka bulat', + 'status.required' => 'Status wajib dipilih', + 'image.image' => 'File harus berupa gambar', + 'image.max' => 'Ukuran gambar maksimal 4MB', + 'image.mimes' => 'Format gambar harus JPG, PNG, JPEG, atau GIF' + ]); + + $data = $request->only([ + 'name', + 'category', + 'price', + 'stock', + 'status', + 'description' + ]); + + // Upload gambar jika ada + if ($request->hasFile('image')) { + $gambar = $request->file('image'); + $filename = time() . '_' . $gambar->getClientOriginalName(); + $path = $gambar->storeAs('products', $filename, 'public'); + $data['image'] = $path; + } + + // Set default values + $data['sold'] = 0; + + try { + $product = Product::create($data); + + // Auto set label based on stock + $product->updateLabelBasedOnStock(); + $product->save(); + + return redirect()->route('admin.products.index') + ->with('success', 'Produk berhasil ditambahkan!'); + } catch (\Exception $e) { + return redirect()->back() + ->withErrors(['error' => $e->getMessage()]) + ->withInput(); + } + } + + // Tampilkan detail produk + // public function show($id) + // { + // $product = Product::findOrFail($id); + // return view('admin.products.show', compact('product')); + // } + + // Form edit produk +public function edit(Product $product) +{ + return view('admin.products.edit', compact('product')); +} + +// Ganti method update yang lama dengan yang ini: +public function update(Request $request, Product $product) +{ + $request->validate([ + 'name' => 'required|string|max:255', + 'category' => 'required|string|max:100', + 'price' => 'required|numeric|min:0', + 'stock' => 'required|integer|min:0', + 'status' => 'required|in:aktif,nonaktif', + 'description' => 'nullable|string', + 'image' => 'nullable|image|mimes:jpg,png,jpeg,gif|max:2048' + ], [ + 'name.required' => 'Nama produk wajib diisi', + 'category.required' => 'Kategori wajib dipilih', + 'price.required' => 'Harga wajib diisi', + 'price.numeric' => 'Harga harus berupa angka', + 'stock.required' => 'Stok wajib diisi', + 'stock.integer' => 'Stok harus berupa angka bulat', + 'status.required' => 'Status wajib dipilih', + 'image.image' => 'File harus berupa gambar', + 'image.max' => 'Ukuran gambar maksimal 2MB', + 'image.mimes' => 'Format gambar harus JPG, PNG, JPEG, atau GIF' + ]); + + $data = $request->only([ + 'name', + 'category', + 'price', + 'stock', + 'status', + 'description' + ]); + + // Upload gambar baru jika ada + if ($request->hasFile('image')) { + // Hapus gambar lama jika ada + if ($product->image && Storage::disk('public')->exists($product->image)) { + Storage::disk('public')->delete($product->image); + } + + $image = $request->file('image'); + $filename = time() . '_' . $image->getClientOriginalName(); + $path = $image->storeAs('products', $filename, 'public'); + $data['image'] = $path; + } + + try { + $product->update($data); + + // Auto update label based on new stock + $product->updateLabelBasedOnStock(); + $product->save(); + + return redirect()->route('admin.products.index') + ->with('success', 'Produk berhasil diupdate!'); + } catch (\Exception $e) { + return redirect()->back() + ->withErrors(['error' => 'Terjadi kesalahan saat mengupdate produk']) + ->withInput(); + } +} + +// Juga ubah method show dan destroy untuk konsistensi: +public function show(Product $product) +{ + return view('admin.products.show', compact('product')); +} + +public function destroy(Product $product) +{ + // Hapus gambar dari storage sebelum menghapus record + if ($product->image && Storage::disk('public')->exists($product->image)) { + Storage::disk('public')->delete($product->image); + } + + $product->delete(); + + return redirect()->route('admin.products.index') + ->with('success', 'Produk berhasil dihapus'); +} + + // NEW: Method untuk debugging gambar + public function debugImage($id) + { + $product = Product::findOrFail($id); + + $debug = [ + 'product_id' => $product->id, + 'image_field' => $product->image, + 'image_url' => $product->image_url, + 'storage_path' => $product->image ? storage_path('app/public/' . $product->image) : null, + 'file_exists' => $product->image ? Storage::disk('public')->exists($product->image) : false, + 'public_path' => $product->image ? public_path('storage/' . $product->image) : null, + ]; + + return response()->json($debug); + } +} \ No newline at end of file diff --git a/app/Http/Controllers/ProductRecommendationController.php b/app/Http/Controllers/ProductRecommendationController.php new file mode 100644 index 0000000..f20ea09 --- /dev/null +++ b/app/Http/Controllers/ProductRecommendationController.php @@ -0,0 +1,158 @@ +count(); + $totalDetails = TransaksiDetail::count(); + + Log::info("📊 Total Transaksi: {$totalTransaksi}"); + Log::info("✅ Delivered: {$totalDelivered}"); + Log::info("📦 Detail: {$totalDetails}"); + + // Query produk terlaris HANYA dari transaksi delivered + $bestSellingProducts = DB::table('transaksi_details') + ->join('transaksis', 'transaksi_details.transaksi_id', '=', 'transaksis.id') + ->join('products', 'transaksi_details.product_id', '=', 'products.id') + ->where('transaksis.order_status', 'delivered') + ->where('products.status', 'aktif') + ->select( + 'products.id', + 'products.name', + 'products.image', + 'products.price', + 'products.stock', + DB::raw('SUM(transaksi_details.quantity) as total_sold'), + DB::raw('COUNT(DISTINCT transaksis.id) as total_orders') + ) + ->groupBy( + 'products.id', + 'products.name', + 'products.image', + 'products.price', + 'products.stock' + ) + ->orderByDesc('total_sold') + ->take(10) + ->get(); + + Log::info("🏆 Produk terlaris ditemukan: " . $bestSellingProducts->count()); + + // FALLBACK: Jika tidak ada produk delivered, tampilkan dari semua status + if ($bestSellingProducts->isEmpty()) { + Log::warning('⚠️ Tidak ada produk dari transaksi delivered, menggunakan semua status'); + + $bestSellingProducts = DB::table('transaksi_details') + ->join('transaksis', 'transaksi_details.transaksi_id', '=', 'transaksis.id') + ->join('products', 'transaksi_details.product_id', '=', 'products.id') + // TANPA FILTER STATUS - untuk testing + ->where('products.status', 'aktif') + ->select( + 'products.id', + 'products.name', + 'products.image', + 'products.price', + 'products.stock', + DB::raw('SUM(transaksi_details.quantity) as total_sold'), + DB::raw('COUNT(DISTINCT transaksis.id) as total_orders') + ) + ->groupBy( + 'products.id', + 'products.name', + 'products.image', + 'products.price', + 'products.stock' + ) + ->orderByDesc('total_sold') + ->take(10) + ->get(); + + Log::info("🔄 Produk dari semua status: " . $bestSellingProducts->count()); + } + + // Hitung statistik + $statistics = [ + 'total_products_sold' => DB::table('transaksi_details') + ->join('transaksis', 'transaksi_details.transaksi_id', '=', 'transaksis.id') + ->where('transaksis.order_status', 'delivered') + ->sum('transaksi_details.quantity'), + + 'total_completed_orders' => Transaksi::where('order_status', 'delivered')->count(), + + 'most_popular_product' => $bestSellingProducts->first() + ]; + + // Debug info + $debugInfo = [ + 'total_transaksi' => $totalTransaksi, + 'total_delivered' => $totalDelivered, + 'total_details' => $totalDetails, + 'products_found' => $bestSellingProducts->count() + ]; + + return view('products.best-selling', compact('bestSellingProducts', 'statistics', 'debugInfo')); + } + + /** + * Method untuk update status transaksi ke delivered (untuk testing) + */ + public function updateToDelivered(Request $request) + { + $transaksiIds = $request->input('ids', []); + + if (empty($transaksiIds)) { + // Update semua transaksi yang ada detail + $transaksiIds = TransaksiDetail::distinct() + ->pluck('transaksi_id') + ->toArray(); + } + + $updated = Transaksi::whereIn('id', $transaksiIds) + ->update(['order_status' => 'delivered']); + + return response()->json([ + 'success' => true, + 'message' => "{$updated} transaksi berhasil diupdate ke delivered", + 'updated' => $updated + ]); + } + + /** + * Method untuk cek status sistem + */ + public function checkStatus() + { + $status = [ + 'total_transaksi' => Transaksi::count(), + 'total_delivered' => Transaksi::where('order_status', 'delivered')->count(), + 'total_pending' => Transaksi::where('order_status', 'pending')->count(), + 'total_processing' => Transaksi::where('order_status', 'processing')->count(), + 'total_details' => TransaksiDetail::count(), + 'transaksi_dengan_detail' => TransaksiDetail::distinct()->count('transaksi_id'), + 'status_breakdown' => Transaksi::select('order_status', DB::raw('count(*) as total')) + ->groupBy('order_status') + ->get(), + ]; + + return response()->json($status); + } +} \ No newline at end of file diff --git a/app/Http/Controllers/TransaksiController.php b/app/Http/Controllers/TransaksiController.php new file mode 100644 index 0000000..a613d27 --- /dev/null +++ b/app/Http/Controllers/TransaksiController.php @@ -0,0 +1,412 @@ +orderBy('created_at', 'desc'); + + // Filter by status + if ($request->has('status') && $request->status != '') { + $query->where('order_status', $request->status); + } + + // Filter by payment status + if ($request->has('payment_status') && $request->payment_status != '') { + $query->where('payment_status', $request->payment_status); + } + + // Filter by payment method + if ($request->has('payment_method') && $request->payment_method != '') { + $query->where('payment_method', $request->payment_method); + } + + // Search by invoice or customer name + if ($request->has('search') && $request->search != '') { + $search = $request->search; + $query->where(function($q) use ($search) { + $q->where('invoice_number', 'like', "%{$search}%") + ->orWhere('customer_name', 'like', "%{$search}%") + ->orWhere('customer_phone', 'like', "%{$search}%") + ->orWhere('customer_email', 'like', "%{$search}%"); + }); + } + + // Filter by date range + if ($request->has('start_date') && $request->start_date != '') { + $query->whereDate('created_at', '>=', $request->start_date); + } + if ($request->has('end_date') && $request->end_date != '') { + $query->whereDate('created_at', '<=', $request->end_date); + } + + $transaksis = $query->paginate(20); + + // Statistics + $stats = [ + 'total' => Transaksi::count(), + 'pending' => Transaksi::pending()->count(), + 'processing' => Transaksi::processing()->count(), + 'shipped' => Transaksi::shipped()->count(), + 'delivered' => Transaksi::delivered()->count(), + 'cancelled' => Transaksi::cancelled()->count(), + 'unpaid' => Transaksi::unpaid()->count(), + 'paid' => Transaksi::paid()->count(), + 'total_revenue' => Transaksi::paid()->sum('total_amount'), + ]; + + return view('admin.transaksis.index', compact('transaksis', 'stats')); + } + + /** + * Display the specified transaction. + */ + public function show($id) + { + $transaksi = Transaksi::with(['details.product', 'user'])->findOrFail($id); + return view('admin.transaksis.show', compact('transaksi')); + } + + /** + * Show the form for editing the specified transaction. + */ + public function edit($id) + { + $transaksi = Transaksi::with('details.product')->findOrFail($id); + return view('admin.transaksis.edit', compact('transaksi')); + } + + /** + * Update the specified transaction in storage. + * UPDATED: Menambahkan validasi dan update untuk customer info dan shipping + */ + public function update(Request $request, $id) + { + $request->validate([ + 'customer_name' => 'required|string|max:255', + 'customer_phone' => 'required|string|max:20', + 'customer_email' => 'nullable|email|max:255', + 'shipping_address' => 'required|string', + 'city' => 'required|string|max:100', + 'province' => 'required|string|max:100', + 'postal_code' => 'required|string|max:10', + 'order_status' => 'required|in:pending,processing,shipped,delivered,cancelled', + 'payment_status' => 'required|in:pending,paid,failed', + 'tracking_number' => 'nullable|string|max:100', + 'notes' => 'nullable|string' + ]); + + try { + $transaksi = Transaksi::findOrFail($id); + + $updateData = [ + 'customer_name' => $request->customer_name, + 'customer_phone' => $request->customer_phone, + 'customer_email' => $request->customer_email, + 'shipping_address' => $request->shipping_address, + 'city' => $request->city, + 'province' => $request->province, + 'postal_code' => $request->postal_code, + 'order_status' => $request->order_status, + 'payment_status' => $request->payment_status, + 'tracking_number' => $request->tracking_number, + 'notes' => $request->notes + ]; + + // If payment status changed to paid, set paid_at + if ($request->payment_status === 'paid' && $transaksi->payment_status !== 'paid') { + $updateData['paid_at'] = now(); + } + + $transaksi->update($updateData); + + return redirect() + ->route('admin.transaksis.show', $id) + ->with('success', 'Transaksi berhasil diupdate!'); + + } catch (\Exception $e) { + return redirect() + ->back() + ->with('error', 'Terjadi kesalahan: ' . $e->getMessage()) + ->withInput(); + } + } + + /** + * Update order status via AJAX or regular request. + * UPDATED: Menerima field 'order_status' selain 'status' + */ + public function updateStatus(Request $request, $id) + { + // Accept both 'status' and 'order_status' field names + $statusField = $request->has('order_status') ? 'order_status' : 'status'; + + $request->validate([ + $statusField => 'required|in:pending,processing,shipped,delivered,cancelled', + ]); + + try { + $transaksi = Transaksi::findOrFail($id); + $newStatus = $request->input($statusField); + + // Use model method if exists, otherwise direct update + if (method_exists($transaksi, 'updateOrderStatus')) { + $transaksi->updateOrderStatus($newStatus); + } else { + $transaksi->update(['order_status' => $newStatus]); + } + + if ($request->ajax()) { + return response()->json([ + 'success' => true, + 'message' => 'Status berhasil diupdate!' + ]); + } + + return redirect() + ->back() + ->with('success', 'Status berhasil diupdate!'); + + } catch (\Exception $e) { + if ($request->ajax()) { + return response()->json([ + 'success' => false, + 'message' => 'Gagal update status: ' . $e->getMessage() + ], 500); + } + + return redirect() + ->back() + ->with('error', 'Gagal update status: ' . $e->getMessage()); + } + } + + /** + * Update payment status. + */ + public function updatePaymentStatus(Request $request, $id) + { + $request->validate([ + 'payment_status' => 'required|in:pending,paid,failed', + ]); + + try { + $transaksi = Transaksi::findOrFail($id); + + if ($request->payment_status === 'paid') { + // Use model method if exists + if (method_exists($transaksi, 'markAsPaid')) { + $transaksi->markAsPaid(); + } else { + $transaksi->update([ + 'payment_status' => 'paid', + 'paid_at' => now() + ]); + } + } else { + $transaksi->update([ + 'payment_status' => $request->payment_status + ]); + } + + if ($request->ajax()) { + return response()->json([ + 'success' => true, + 'message' => 'Status pembayaran berhasil diupdate!' + ]); + } + + return redirect() + ->back() + ->with('success', 'Status pembayaran berhasil diupdate!'); + + } catch (\Exception $e) { + if ($request->ajax()) { + return response()->json([ + 'success' => false, + 'message' => 'Gagal update status pembayaran: ' . $e->getMessage() + ], 500); + } + + return redirect() + ->back() + ->with('error', 'Gagal update status pembayaran: ' . $e->getMessage()); + } + } + + /** + * Cancel the transaction. + */ + public function cancel($id) + { + DB::beginTransaction(); + + try { + $transaksi = Transaksi::with('details')->findOrFail($id); + + // Check if can be cancelled (use model method if exists) + if (method_exists($transaksi, 'canBeCancelled') && !$transaksi->canBeCancelled()) { + throw new \Exception('Transaksi tidak dapat dibatalkan'); + } + + // Return stock + foreach ($transaksi->details as $detail) { + $product = Product::find($detail->product_id); + if ($product) { + $product->increment('stock', $detail->quantity); + } + } + + // Update status + $transaksi->update([ + 'order_status' => 'cancelled', + 'payment_status' => 'failed' + ]); + + DB::commit(); + + return redirect() + ->back() + ->with('success', 'Transaksi berhasil dibatalkan dan stok dikembalikan!'); + + } catch (\Exception $e) { + DB::rollBack(); + + return redirect() + ->back() + ->with('error', 'Gagal membatalkan transaksi: ' . $e->getMessage()); + } + } + + /** + * Remove the specified transaction from storage. + */ + public function destroy($id) + { + DB::beginTransaction(); + + try { + $transaksi = Transaksi::with('details')->findOrFail($id); + + // If order is not cancelled, return stock first + if ($transaksi->order_status !== 'cancelled') { + foreach ($transaksi->details as $detail) { + $product = Product::find($detail->product_id); + if ($product) { + $product->increment('stock', $detail->quantity); + } + } + } + + // Delete transaction (details will be deleted automatically due to cascade) + $transaksi->delete(); + + DB::commit(); + + return redirect() + ->route('admin.orders') // Redirect ke halaman orders + ->with('success', 'Transaksi berhasil dihapus!'); + + } catch (\Exception $e) { + DB::rollBack(); + + return redirect() + ->back() + ->with('error', 'Gagal menghapus transaksi: ' . $e->getMessage()); + } + } + + /** + * Export transactions to CSV. + */ + public function export(Request $request) + { + $query = Transaksi::with('details.product') + ->orderBy('created_at', 'desc'); + + // Apply same filters as index + if ($request->has('status') && $request->status != '') { + $query->where('order_status', $request->status); + } + if ($request->has('payment_status') && $request->payment_status != '') { + $query->where('payment_status', $request->payment_status); + } + if ($request->has('start_date') && $request->start_date != '') { + $query->whereDate('created_at', '>=', $request->start_date); + } + if ($request->has('end_date') && $request->end_date != '') { + $query->whereDate('created_at', '<=', $request->end_date); + } + + $transaksis = $query->get(); + + $filename = 'transaksi_' . date('Y-m-d_His') . '.csv'; + + header('Content-Type: text/csv'); + header('Content-Disposition: attachment; filename="' . $filename . '"'); + + $output = fopen('php://output', 'w'); + + // Header - UPDATED dengan info shipping + fputcsv($output, [ + 'Invoice', + 'Tanggal', + 'Customer', + 'Email', + 'Phone', + 'Shipping Address', + 'City', + 'Province', + 'Postal Code', + 'Total', + 'Payment Method', + 'Payment Status', + 'Order Status', + 'Tracking Number' + ]); + + // Data - UPDATED dengan info shipping + foreach ($transaksis as $transaksi) { + fputcsv($output, [ + $transaksi->invoice_number, + $transaksi->created_at->format('Y-m-d H:i:s'), + $transaksi->customer_name, + $transaksi->customer_email, + $transaksi->customer_phone, + $transaksi->shipping_address, + $transaksi->city, + $transaksi->province, + $transaksi->postal_code, + $transaksi->total_amount, + $transaksi->payment_method_label ?? $transaksi->payment_method, + $transaksi->payment_status, + $transaksi->order_status, + $transaksi->tracking_number ?? '-' + ]); + } + + fclose($output); + exit(); + } + + /** + * Print invoice. + */ + public function printInvoice($id) + { + $transaksi = Transaksi::with(['details.product', 'user'])->findOrFail($id); + return view('admin.transaksis.print', compact('transaksi')); + } +} \ No newline at end of file diff --git a/app/Http/Controllers/UserController.php b/app/Http/Controllers/UserController.php new file mode 100644 index 0000000..da07f1c --- /dev/null +++ b/app/Http/Controllers/UserController.php @@ -0,0 +1,169 @@ +paginate(15); + + // Hitung statistik + $totalUsers = User::count(); + $totalAdmins = User::where('is_admin', 1)->count(); + $verifiedUsers = User::whereNotNull('email_verified_at')->count(); + $activeUsers = User::where('created_at', '>=', now()->subDays(30))->count(); + + // Debug: Log jumlah users + \Log::info('Total users in database: ' . $totalUsers); + \Log::info('Users retrieved: ' . $users->count()); + + // Data yang akan dikirim ke view + $data = [ + 'users' => $users, + 'totalUsers' => $totalUsers, + 'totalAdmins' => $totalAdmins, + 'verifiedUsers' => $verifiedUsers, + 'activeUsers' => $activeUsers + ]; + + // Coba cari view di lokasi yang berbeda + if (view()->exists('admin.users.index')) { + return view('admin.users.index', $data); + } + + return view('admin.users', $data); + + } catch (\Exception $e) { + \Log::error('Error in UserController@index: ' . $e->getMessage()); + + // Jika error, kirim data kosong + return view('admin.users', [ + 'users' => collect()->paginate(15), + 'totalUsers' => 0, + 'totalAdmins' => 0, + 'verifiedUsers' => 0, + 'activeUsers' => 0, + 'error' => $e->getMessage() + ]); + } + } + + /** + * Show the form for creating a new user. + */ + public function create() + { + return view('admin.users.create'); + } + + /** + * Store a newly created user in database. + */ + public function store(Request $request) + { + $validated = $request->validate([ + 'name' => ['required', 'string', 'max:255'], + 'email' => ['required', 'string', 'lowercase', 'email', 'max:255', 'unique:'.User::class], + 'password' => ['required', 'confirmed', Rules\Password::defaults()], + 'phone' => ['nullable', 'string', 'max:20'], + 'address' => ['nullable', 'string'], + 'is_admin' => ['boolean'] + ]); + + $user = User::create([ + 'name' => $validated['name'], + 'email' => $validated['email'], + 'password' => Hash::make($validated['password']), + 'phone' => $validated['phone'] ?? null, + 'address' => $validated['address'] ?? null, + 'is_admin' => $request->has('is_admin') ? 1 : 0, + ]); + + return redirect()->route('admin.users.index') + ->with('success', 'Pengguna berhasil ditambahkan'); + } + + /** + * Display the specified user. + */ + public function show(User $user) + { + return view('admin.users.show', [ + 'user' => $user + ]); + } + + /** + * Show the form for editing the specified user. + */ + public function edit(User $user) + { + return view('admin.users.edit', [ + 'user' => $user + ]); + } + + /** + * Update the specified user in database. + */ + public function update(Request $request, User $user) + { + $validated = $request->validate([ + 'name' => ['required', 'string', 'max:255'], + 'email' => ['required', 'string', 'lowercase', 'email', 'max:255', 'unique:users,email,'.$user->id], + 'phone' => ['nullable', 'string', 'max:20'], + 'address' => ['nullable', 'string'], + 'is_admin' => ['boolean'] + ]); + + $updateData = [ + 'name' => $validated['name'], + 'email' => $validated['email'], + 'phone' => $validated['phone'] ?? null, + 'address' => $validated['address'] ?? null, + 'is_admin' => $request->has('is_admin') ? 1 : 0, + ]; + + // Update password jika diisi + if ($request->filled('password')) { + $request->validate([ + 'password' => ['confirmed', Rules\Password::defaults()] + ]); + $updateData['password'] = Hash::make($request->password); + } + + $user->update($updateData); + + return redirect()->route('admin.users.index') + ->with('success', 'Pengguna berhasil diperbarui'); + } + + /** + * Remove the specified user from database. + */ + public function destroy(User $user) + { + // Prevent deleting yourself + if (auth()->id() === $user->id) { + return back()->with('error', 'Anda tidak dapat menghapus akun sendiri'); + } + + $user->delete(); + + return redirect()->route('admin.users.index') + ->with('success', 'Pengguna berhasil dihapus'); + } +} \ No newline at end of file diff --git a/app/Models/Contact.php b/app/Models/Contact.php new file mode 100644 index 0000000..eb8f9bd --- /dev/null +++ b/app/Models/Contact.php @@ -0,0 +1,28 @@ + 'datetime', + 'updated_at' => 'datetime', + ]; + } +} \ No newline at end of file diff --git a/app/Models/Order.php b/app/Models/Order.php new file mode 100644 index 0000000..56b87a8 --- /dev/null +++ b/app/Models/Order.php @@ -0,0 +1,33 @@ + 'decimal:2', + ]; + } + + public function orderDetails(): HasMany + { + return $this->hasMany(OrderDetail::class); + } +} \ No newline at end of file diff --git a/app/Models/OrderDetail.php b/app/Models/OrderDetail.php new file mode 100644 index 0000000..e526e30 --- /dev/null +++ b/app/Models/OrderDetail.php @@ -0,0 +1,39 @@ + 'integer', + 'unit_price' => 'decimal:2', + 'subtotal' => 'decimal:2', + ]; + } + + public function order(): BelongsTo + { + return $this->belongsTo(Order::class); + } + + public function product(): BelongsTo + { + return $this->belongsTo(Product::class); + } +} \ No newline at end of file diff --git a/app/Models/Product.php b/app/Models/Product.php new file mode 100644 index 0000000..6d9db35 --- /dev/null +++ b/app/Models/Product.php @@ -0,0 +1,129 @@ + 'decimal:2', + 'stock' => 'integer', + 'weight' => 'integer', + 'harvest_time' => 'integer', + 'sold' => 'integer' + ]; + + // Accessor untuk format harga - DIPERBAIKI + public function getFormattedPriceAttribute() + { + return 'Rp ' . number_format($this->price, 0, ',', '.'); + } + + // NEW: Accessor untuk URL gambar + public function getImageUrlAttribute() + { + if ($this->image) { + // Cek apakah file gambar ada di storage + if (Storage::disk('public')->exists($this->image)) { + return asset('storage/' . $this->image); + } + } + + // Return placeholder jika gambar tidak ada + return 'https://via.placeholder.com/60x60?text=No+Image&color=6c757d&background=f8f9fa'; + } + + // Accessor untuk status badge + public function getStatusBadgeAttribute() + { + return $this->status === 'aktif' + ? 'Aktif' + : 'Non-aktif'; + } + + // NEW: Accessor untuk status badge class (untuk styling CSS) + public function getStatusBadgeClassAttribute() + { + return $this->status === 'aktif' ? 'status-badge success' : 'status-badge danger'; + } + + // NEW: Accessor untuk label badge class + public function getLabelBadgeClassAttribute() + { + if (!$this->label) { + return 'label-badge bg-secondary'; + } + + switch (strtolower($this->label)) { + case 'terlaris': + return 'label-badge bg-danger'; + case 'tersedia': + return 'label-badge bg-success'; + case 'habis': + return 'label-badge bg-secondary'; + case 'baru': + return 'label-badge bg-primary'; + default: + return 'label-badge bg-secondary'; + } + } + + // NEW: Method untuk mendapatkan label berdasarkan stok + public function updateLabelBasedOnStock() + { + if ($this->stock <= 0) { + $this->label = 'habis'; + } elseif ($this->stock > 1000) { + $this->label = 'terlaris'; + } else { + $this->label = 'tersedia'; + } + return $this; + } + + // Scope untuk produk aktif + public function scopeActive($query) + { + return $query->where('status', 'aktif'); + } + + // Scope untuk produk dengan stok rendah - DIPERBAIKI + public function scopeLowStock($query, $threshold = 10) + { + return $query->where('stock', '<=', $threshold); + } + + // NEW: Scope untuk search + public function scopeSearch($query, $term) + { + return $query->where('name', 'like', "%{$term}%") + ->orWhere('description', 'like', "%{$term}%"); + } + + // NEW: Scope untuk filter kategori + public function scopeByCategory($query, $category) + { + return $query->where('category', $category); + } +} \ No newline at end of file diff --git a/app/Models/Transaksi.php b/app/Models/Transaksi.php new file mode 100644 index 0000000..b29049f --- /dev/null +++ b/app/Models/Transaksi.php @@ -0,0 +1,112 @@ + 'datetime', + 'subtotal' => 'decimal:2', + 'shipping_cost' => 'decimal:2', + 'total_amount' => 'decimal:2', + ]; + + // Relationships + public function user() + { + return $this->belongsTo(User::class); + } + + public function details() + { + return $this->hasMany(TransaksiDetail::class); + } + + // Scopes + public function scopePending($query) + { + return $query->where('order_status', 'pending'); + } + + public function scopeProcessing($query) + { + return $query->where('order_status', 'processing'); + } + + public function scopeShipped($query) + { + return $query->where('order_status', 'shipped'); + } + + public function scopeDelivered($query) + { + return $query->where('order_status', 'delivered'); + } + + public function scopeCancelled($query) + { + return $query->where('order_status', 'cancelled'); + } + + public function scopePaid($query) + { + return $query->where('payment_status', 'paid'); + } + + public function scopeUnpaid($query) + { + return $query->where('payment_status', 'pending'); + } + + // Methods + public function canBeCancelled() + { + return in_array($this->order_status, ['pending', 'processing']); + } + + public function markAsPaid() + { + return $this->update([ + 'payment_status' => 'paid', + 'paid_at' => now() + ]); + } + + public function updateOrderStatus($status) + { + return $this->update(['order_status' => $status]); + } + + // Accessor + public function getPaymentMethodLabelAttribute() + { + return $this->payment_method === 'transfer' ? 'Transfer Bank' : 'COD'; + } +} \ No newline at end of file diff --git a/app/Models/TransaksiDetail.php b/app/Models/TransaksiDetail.php new file mode 100644 index 0000000..38e4b6d --- /dev/null +++ b/app/Models/TransaksiDetail.php @@ -0,0 +1,39 @@ + 'integer', + 'price' => 'decimal:2', + 'subtotal' => 'decimal:2', + ]; + + // Relationships + public function transaksi() + { + return $this->belongsTo(Transaksi::class); + } + + public function product() + { + return $this->belongsTo(Product::class); + } +} \ No newline at end of file diff --git a/app/Models/User.php b/app/Models/User.php new file mode 100644 index 0000000..5db1fa4 --- /dev/null +++ b/app/Models/User.php @@ -0,0 +1,51 @@ + + */ + protected $fillable = [ + 'name', + 'email', + 'phone', + 'address', + 'password', + 'is_admin', // Tambahkan ini + ]; + + /** + * The attributes that should be hidden for serialization. + * + * @var array + */ + protected $hidden = [ + 'password', + 'remember_token', + ]; + + /** + * Get the attributes that should be cast. + * + * @return array + */ + protected function casts(): array + { + return [ + 'email_verified_at' => 'datetime', + 'password' => 'hashed', + 'is_admin' => 'boolean', // Tambahkan ini + ]; + } +} \ No newline at end of file diff --git a/app/Providers/AppServiceProvider.php b/app/Providers/AppServiceProvider.php new file mode 100644 index 0000000..452e6b6 --- /dev/null +++ b/app/Providers/AppServiceProvider.php @@ -0,0 +1,24 @@ +leftJoin('order_details', 'products.id', '=', 'order_details.product_id') + ->leftJoin('orders', function($join) { + $join->on('order_details.order_id', '=', 'orders.id') + ->where('orders.status', '=', 'completed'); + }) + ->where('products.is_active', true) + ->where('products.stock', '>', 0) + ->groupBy([ + 'products.id', + 'products.name', + 'products.price', + 'products.image', + 'products.stock' + ]) + ->orderBy('total_sold', 'desc') + ->orderBy('total_orders', 'desc') + ->limit($limit) + ->get(); + }); + } + + /** + * Mendapatkan statistik penjualan untuk dashboard + */ + public function getSalesStatistics(): array + { + return Cache::remember('sales_statistics', 1800, function () { + return [ + 'total_products_sold' => DB::table('order_details') + ->join('orders', 'order_details.order_id', '=', 'orders.id') + ->where('orders.status', 'completed') + ->sum('order_details.quantity'), + + 'total_completed_orders' => DB::table('orders') + ->where('status', 'completed') + ->count(), + + 'most_popular_product' => Product::select([ + 'products.name', + DB::raw('SUM(order_details.quantity) as total_sold') + ]) + ->join('order_details', 'products.id', '=', 'order_details.product_id') + ->join('orders', 'order_details.order_id', '=', 'orders.id') + ->where('orders.status', 'completed') + ->groupBy('products.id', 'products.name') + ->orderBy('total_sold', 'desc') + ->first() + ]; + }); + } + + /** + * Clear cache ketika ada transaksi baru + */ + public function clearCache(): void + { + Cache::forget('best_selling_products'); + Cache::forget('sales_statistics'); + } +} \ No newline at end of file diff --git a/artisan b/artisan new file mode 100644 index 0000000..c35e31d --- /dev/null +++ b/artisan @@ -0,0 +1,18 @@ +#!/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..c183276 --- /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): void { + // + }) + ->withExceptions(function (Exceptions $exceptions): void { + // + })->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": "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": "v12.20.0", + "source": { + "type": "git", + "url": "https://github.com/laravel/framework.git", + "reference": "1b9a00f8caf5503c92aa436279172beae1a484ff" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/framework/zipball/1b9a00f8caf5503c92aa436279172beae1a484ff", + "reference": "1b9a00f8caf5503c92aa436279172beae1a484ff", + "shasum": "" + }, + "require": { + "brick/math": "^0.11|^0.12|^0.13", + "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.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": "^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.2.0", + "symfony/error-handler": "^7.2.0", + "symfony/finder": "^7.2.0", + "symfony/http-foundation": "^7.2.0", + "symfony/http-kernel": "^7.2.0", + "symfony/mailer": "^7.2.0", + "symfony/mime": "^7.2.0", + "symfony/polyfill-php83": "^1.31", + "symfony/process": "^7.2.0", + "symfony/routing": "^7.2.0", + "symfony/uid": "^7.2.0", + "symfony/var-dumper": "^7.2.0", + "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": "^10.0.0", + "pda/pheanstalk": "^5.0.6|^7.0.0", + "php-http/discovery": "^1.15", + "phpstan/phpstan": "^2.0", + "phpunit/phpunit": "^10.5.35|^11.5.3|^12.0.1", + "predis/predis": "^2.3|^3.0", + "resend/resend-php": "^0.10.0", + "symfony/cache": "^7.2.0", + "symfony/http-client": "^7.2.0", + "symfony/psr-http-message-bridge": "^7.2.0", + "symfony/translation": "^7.2.0" + }, + "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.5.3|^12.0.1).", + "predis/predis": "Required to use the predis connector (^2.3|^3.0).", + "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.2).", + "symfony/filesystem": "Required to enable support for relative symbolic links (^7.2).", + "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.2).", + "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.2).", + "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.2).", + "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.2)." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "12.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-07-08T15:02:21+00:00" + }, + { + "name": "laravel/prompts", + "version": "v0.3.6", + "source": { + "type": "git", + "url": "https://github.com/laravel/prompts.git", + "reference": "86a8b692e8661d0fb308cec64f3d176821323077" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/prompts/zipball/86a8b692e8661d0fb308cec64f3d176821323077", + "reference": "86a8b692e8661d0fb308cec64f3d176821323077", + "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.6" + }, + "time": "2025-07-07T14:17:42+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": "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.30.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/flysystem.git", + "reference": "2203e3151755d874bb2943649dae1eb8533ac93e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/2203e3151755d874bb2943649dae1eb8533ac93e", + "reference": "2203e3151755d874bb2943649dae1eb8533ac93e", + "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|^2", + "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|^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.30.0" + }, + "time": "2025-06-25T13:29:59+00:00" + }, + { + "name": "league/flysystem-local", + "version": "3.30.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/flysystem-local.git", + "reference": "6691915f77c7fb69adfb87dcd550052dc184ee10" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/6691915f77c7fb69adfb87dcd550052dc184ee10", + "reference": "6691915f77c7fb69adfb87dcd550052dc184ee10", + "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.30.0" + }, + "time": "2025-05-21T10:34:19+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": "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.10.1", + "source": { + "type": "git", + "url": "https://github.com/CarbonPHP/carbon.git", + "reference": "1fd1935b2d90aef2f093c5e35f7ae1257c448d00" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/1fd1935b2d90aef2f093c5e35f7ae1257c448d00", + "reference": "1fd1935b2d90aef2f093c5e35f7ae1257c448d00", + "shasum": "" + }, + "require": { + "carbonphp/carbon-doctrine-types": "<100.0", + "ext-json": "*", + "php": "^8.1", + "psr/clock": "^1.0", + "symfony/clock": "^6.3.12 || ^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.75.0", + "kylekatarnls/multi-tester": "^2.5.3", + "phpmd/phpmd": "^2.15.0", + "phpstan/extension-installer": "^1.4.3", + "phpstan/phpstan": "^2.1.17", + "phpunit/phpunit": "^10.5.46", + "squizlabs/php_codesniffer": "^3.13.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-06-21T15:19:35+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.7", + "source": { + "type": "git", + "url": "https://github.com/nette/utils.git", + "reference": "e67c4061eb40b9c113b218214e42cb5a0dda28f2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nette/utils/zipball/e67c4061eb40b9c113b218214e42cb5a0dda28f2", + "reference": "e67c4061eb40b9c113b218214e42cb5a0dda28f2", + "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.7" + }, + "time": "2025-06-03T04:55:08+00:00" + }, + { + "name": "nikic/php-parser", + "version": "v5.5.0", + "source": { + "type": "git", + "url": "https://github.com/nikic/PHP-Parser.git", + "reference": "ae59794362fe85e051a58ad36b289443f57be7a9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/ae59794362fe85e051a58ad36b289443f57be7a9", + "reference": "ae59794362fe85e051a58ad36b289443f57be7a9", + "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.5.0" + }, + "time": "2025-05-31T08:24:38+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": "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.9", + "source": { + "type": "git", + "url": "https://github.com/bobthecow/psysh.git", + "reference": "1b801844becfe648985372cb4b12ad6840245ace" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/1b801844becfe648985372cb4b12ad6840245ace", + "reference": "1b801844becfe648985372cb4b12ad6840245ace", + "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.9" + }, + "time": "2025-06-23T02:35:06+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.9.0", + "source": { + "type": "git", + "url": "https://github.com/ramsey/uuid.git", + "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/4e0e23cc785f0724a0e838279a9eb03f28b092a0", + "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0", + "shasum": "" + }, + "require": { + "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13", + "php": "^8.0", + "ramsey/collection": "^1.2 || ^2.0" + }, + "replace": { + "rhumsaa/uuid": "self.version" + }, + "require-dev": { + "captainhook/captainhook": "^5.25", + "captainhook/plugin-composer": "^5.3", + "dealerdirect/phpcodesniffer-composer-installer": "^1.0", + "ergebnis/composer-normalize": "^2.47", + "mockery/mockery": "^1.6", + "paragonie/random-lib": "^2", + "php-mock/php-mock": "^2.6", + "php-mock/php-mock-mockery": "^1.5", + "php-parallel-lint/php-parallel-lint": "^1.4.0", + "phpbench/phpbench": "^1.2.14", + "phpstan/extension-installer": "^1.4", + "phpstan/phpstan": "^2.1", + "phpstan/phpstan-mockery": "^2.0", + "phpstan/phpstan-phpunit": "^2.0", + "phpunit/phpunit": "^9.6", + "slevomat/coding-standard": "^8.18", + "squizlabs/php_codesniffer": "^3.13" + }, + "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.9.0" + }, + "time": "2025-06-25T14:20:11+00:00" + }, + { + "name": "symfony/clock", + "version": "v7.3.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.3.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.3.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/console.git", + "reference": "9e27aecde8f506ba0fd1d9989620c04a87697101" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/console/zipball/9e27aecde8f506ba0fd1d9989620c04a87697101", + "reference": "9e27aecde8f506ba0fd1d9989620c04a87697101", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/string": "^7.2" + }, + "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.3.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": "2025-06-27T19:55:54+00:00" + }, + { + "name": "symfony/css-selector", + "version": "v7.3.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.3.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.6.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/deprecation-contracts.git", + "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62", + "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, + "branch-alias": { + "dev-main": "3.6-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.6.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/error-handler", + "version": "v7.3.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/error-handler.git", + "reference": "35b55b166f6752d6aaf21aa042fc5ed280fce235" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/35b55b166f6752d6aaf21aa042fc5ed280fce235", + "reference": "35b55b166f6752d6aaf21aa042fc5ed280fce235", + "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/console": "^6.4|^7.0", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/serializer": "^6.4|^7.0", + "symfony/webpack-encore-bundle": "^1.0|^2.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.3.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": "2025-06-13T07:48:40+00:00" + }, + { + "name": "symfony/event-dispatcher", + "version": "v7.3.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "497f73ac996a598c92409b44ac43b6690c4f666d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/497f73ac996a598c92409b44ac43b6690c4f666d", + "reference": "497f73ac996a598c92409b44ac43b6690c4f666d", + "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.3.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-04-22T09:11:45+00:00" + }, + { + "name": "symfony/event-dispatcher-contracts", + "version": "v3.6.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher-contracts.git", + "reference": "59eb412e93815df44f05f342958efa9f46b1e586" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586", + "reference": "59eb412e93815df44f05f342958efa9f46b1e586", + "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.6-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.6.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/finder", + "version": "v7.3.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/finder.git", + "reference": "ec2344cf77a48253bbca6939aa3d2477773ea63d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/finder/zipball/ec2344cf77a48253bbca6939aa3d2477773ea63d", + "reference": "ec2344cf77a48253bbca6939aa3d2477773ea63d", + "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.3.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-30T19:00:26+00:00" + }, + { + "name": "symfony/http-foundation", + "version": "v7.3.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-foundation.git", + "reference": "23dd60256610c86a3414575b70c596e5deff6ed9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/23dd60256610c86a3414575b70c596e5deff6ed9", + "reference": "23dd60256610c86a3414575b70c596e5deff6ed9", + "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/clock": "^6.4|^7.0", + "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.3.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": "2025-06-23T15:07:14+00:00" + }, + { + "name": "symfony/http-kernel", + "version": "v7.3.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-kernel.git", + "reference": "1644879a66e4aa29c36fe33dfa6c54b450ce1831" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/1644879a66e4aa29c36fe33dfa6c54b450ce1831", + "reference": "1644879a66e4aa29c36fe33dfa6c54b450ce1831", + "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": "^7.3", + "symfony/http-foundation": "^7.3", + "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.3.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": "2025-06-28T08:24:55+00:00" + }, + { + "name": "symfony/mailer", + "version": "v7.3.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/mailer.git", + "reference": "b5db5105b290bdbea5ab27b89c69effcf1cb3368" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/mailer/zipball/b5db5105b290bdbea5ab27b89c69effcf1cb3368", + "reference": "b5db5105b290bdbea5ab27b89c69effcf1cb3368", + "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.3.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": "2025-06-27T19:55:54+00:00" + }, + { + "name": "symfony/mime", + "version": "v7.3.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/mime.git", + "reference": "0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/mime/zipball/0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9", + "reference": "0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9", + "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.3.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-02-19T08:51:26+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.3.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/process.git", + "reference": "40c295f2deb408d5e9d2d32b8ba1dd61e36f05af" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/process/zipball/40c295f2deb408d5e9d2d32b8ba1dd61e36f05af", + "reference": "40c295f2deb408d5e9d2d32b8ba1dd61e36f05af", + "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.3.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-04-17T09:11:12+00:00" + }, + { + "name": "symfony/routing", + "version": "v7.3.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/routing.git", + "reference": "8e213820c5fea844ecea29203d2a308019007c15" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/routing/zipball/8e213820c5fea844ecea29203d2a308019007c15", + "reference": "8e213820c5fea844ecea29203d2a308019007c15", + "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.3.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-05-24T20:43:28+00:00" + }, + { + "name": "symfony/service-contracts", + "version": "v3.6.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/service-contracts.git", + "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f021b05a130d35510bd6b25fe9053c2a8a15d5d4", + "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4", + "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.6-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.6.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-04-25T09:37:31+00:00" + }, + { + "name": "symfony/string", + "version": "v7.3.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/string.git", + "reference": "f3570b8c61ca887a9e2938e85cb6458515d2b125" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/string/zipball/f3570b8c61ca887a9e2938e85cb6458515d2b125", + "reference": "f3570b8c61ca887a9e2938e85cb6458515d2b125", + "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.3.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-04-20T20:19:01+00:00" + }, + { + "name": "symfony/translation", + "version": "v7.3.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation.git", + "reference": "241d5ac4910d256660238a7ecf250deba4c73063" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation/zipball/241d5ac4910d256660238a7ecf250deba4c73063", + "reference": "241d5ac4910d256660238a7ecf250deba4c73063", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.0", + "symfony/translation-contracts": "^2.5|^3.0" + }, + "conflict": { + "nikic/php-parser": "<5.0", + "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": "^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.3.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": "2025-06-27T19:55:54+00:00" + }, + { + "name": "symfony/translation-contracts", + "version": "v3.6.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation-contracts.git", + "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/df210c7a2573f1913b2d17cc95f90f53a73d8f7d", + "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, + "branch-alias": { + "dev-main": "3.6-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.6.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-27T08:32:26+00:00" + }, + { + "name": "symfony/uid", + "version": "v7.3.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/uid.git", + "reference": "a69f69f3159b852651a6bf45a9fdd149520525bb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/uid/zipball/a69f69f3159b852651a6bf45a9fdd149520525bb", + "reference": "a69f69f3159b852651a6bf45a9fdd149520525bb", + "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.3.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": "2025-06-27T19:55:54+00:00" + }, + { + "name": "symfony/var-dumper", + "version": "v7.3.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/var-dumper.git", + "reference": "6e209fbe5f5a7b6043baba46fe5735a4b85d0d42" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6e209fbe5f5a7b6043baba46fe5735a4b85d0d42", + "reference": "6e209fbe5f5a7b6043baba46fe5735a4b85d0d42", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3", + "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.3.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": "2025-06-27T19:55:54+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.3", + "source": { + "type": "git", + "url": "https://github.com/filp/whoops.git", + "reference": "59a123a3d459c5a23055802237cb317f609867e5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/filp/whoops/zipball/59a123a3d459c5a23055802237cb317f609867e5", + "reference": "59a123a3d459c5a23055802237cb317f609867e5", + "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.3" + }, + "funding": [ + { + "url": "https://github.com/denis-sokolov", + "type": "github" + } + ], + "time": "2025-06-16T00:02:10+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.3", + "source": { + "type": "git", + "url": "https://github.com/laravel/pail.git", + "reference": "8cc3d575c1f0e57eeb923f366a37528c50d2385a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/pail/zipball/8cc3d575c1f0e57eeb923f366a37528c50d2385a", + "reference": "8cc3d575c1f0e57eeb923f366a37528c50d2385a", + "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.12.27", + "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": [ + "dev", + "laravel", + "logs", + "php", + "tail" + ], + "support": { + "issues": "https://github.com/laravel/pail/issues", + "source": "https://github.com/laravel/pail" + }, + "time": "2025-06-05T13:55:57+00:00" + }, + { + "name": "laravel/pint", + "version": "v1.24.0", + "source": { + "type": "git", + "url": "https://github.com/laravel/pint.git", + "reference": "0345f3b05f136801af8c339f9d16ef29e6b4df8a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/pint/zipball/0345f3b05f136801af8c339f9d16ef29e6b4df8a", + "reference": "0345f3b05f136801af8c339f9d16ef29e6b4df8a", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-mbstring": "*", + "ext-tokenizer": "*", + "ext-xml": "*", + "php": "^8.2.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.82.2", + "illuminate/view": "^11.45.1", + "larastan/larastan": "^3.5.0", + "laravel-zero/framework": "^11.45.0", + "mockery/mockery": "^1.6.12", + "nunomaduro/termwind": "^2.3.1", + "pestphp/pest": "^2.36.0" + }, + "bin": [ + "builds/pint" + ], + "type": "project", + "autoload": { + "files": [ + "overrides/Runner/Parallel/ProcessFactory.php" + ], + "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-07-10T18:09:32+00:00" + }, + { + "name": "laravel/sail", + "version": "v1.43.1", + "source": { + "type": "git", + "url": "https://github.com/laravel/sail.git", + "reference": "3e7d899232a8c5e3ea4fc6dee7525ad583887e72" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/sail/zipball/3e7d899232a8c5e3ea4fc6dee7525ad583887e72", + "reference": "3e7d899232a8c5e3ea4fc6dee7525ad583887e72", + "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-19T13:19:21+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.3", + "source": { + "type": "git", + "url": "https://github.com/myclabs/DeepCopy.git", + "reference": "faed855a7b5f4d4637717c2b3863e277116beb36" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/faed855a7b5f4d4637717c2b3863e277116beb36", + "reference": "faed855a7b5f4d4637717c2b3863e277116beb36", + "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.3" + }, + "funding": [ + { + "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", + "type": "tidelift" + } + ], + "time": "2025-07-05T12:25:42+00:00" + }, + { + "name": "nunomaduro/collision", + "version": "v8.8.2", + "source": { + "type": "git", + "url": "https://github.com/nunomaduro/collision.git", + "reference": "60207965f9b7b7a4ce15a0f75d57f9dadb105bdb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nunomaduro/collision/zipball/60207965f9b7b7a4ce15a0f75d57f9dadb105bdb", + "reference": "60207965f9b7b7a4ce15a0f75d57f9dadb105bdb", + "shasum": "" + }, + "require": { + "filp/whoops": "^2.18.1", + "nunomaduro/termwind": "^2.3.1", + "php": "^8.2.0", + "symfony/console": "^7.3.0" + }, + "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.4.2", + "laravel/framework": "^11.44.2 || ^12.18", + "laravel/pint": "^1.22.1", + "laravel/sail": "^1.43.1", + "laravel/sanctum": "^4.1.1", + "laravel/tinker": "^2.10.1", + "orchestra/testbench-core": "^9.12.0 || ^10.4", + "pestphp/pest": "^3.8.2", + "sebastian/environment": "^7.2.1 || ^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-06-25T02:12:12+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.10", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-code-coverage.git", + "reference": "1a800a7446add2d79cc6b3c01c45381810367d76" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/1a800a7446add2d79cc6b3c01c45381810367d76", + "reference": "1a800a7446add2d79cc6b3c01c45381810367d76", + "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/show" + }, + "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/phpunit/php-code-coverage", + "type": "tidelift" + } + ], + "time": "2025-06-18T08:56:18+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.27", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/phpunit.git", + "reference": "446d43867314781df7e9adf79c3ec7464956fd8f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/446d43867314781df7e9adf79c3ec7464956fd8f", + "reference": "446d43867314781df7e9adf79c3ec7464956fd8f", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-json": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-xml": "*", + "ext-xmlwriter": "*", + "myclabs/deep-copy": "^1.13.3", + "phar-io/manifest": "^2.0.4", + "phar-io/version": "^3.2.1", + "php": ">=8.2", + "phpunit/php-code-coverage": "^11.0.10", + "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.27" + }, + "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-07-11T04:10:06+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": "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.3.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/yaml.git", + "reference": "0c3555045a46ab3cd4cc5a69d161225195230edb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/yaml/zipball/0c3555045a46ab3cd4cc5a69d161225195230edb", + "reference": "0c3555045a46ab3cd4cc5a69d161225195230edb", + "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.3.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": "2025-06-03T06:57:57+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..423eed5 --- /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' => '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(',', (string) 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..7d1eb0d --- /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 number 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..c2d927d --- /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((string) env('APP_NAME', 'laravel')).'-cache-'), + +]; diff --git a/config/database.php b/config/database.php new file mode 100644 index 0000000..5b318f5 --- /dev/null +++ b/config/database.php @@ -0,0 +1,174 @@ + 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', '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'), + ]) : [], + ], + + '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((string) env('APP_NAME', 'laravel')).'-database-'), + 'persistent' => env('REDIS_PERSISTENT', false), + ], + + '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..9e998a4 --- /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(',', (string) 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, + 'handler_with' => [ + 'stream' => 'php://stderr', + ], + 'formatter' => env('LOG_STDERR_FORMATTER'), + '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..522b284 --- /dev/null +++ b/config/mail.php @@ -0,0 +1,118 @@ + env('MAIL_MAILER', 'log'), + + /* + |-------------------------------------------------------------------------- + | Mailer Configurations + |-------------------------------------------------------------------------- + | + | Here you may configure all of the mailers used by your application plus + | their respective settings. Several examples have been configured for + | you and you are free to add your own as your application requires. + | + | Laravel supports a variety of mail "transport" drivers that can be used + | when delivering an email. You may specify which one you're using for + | your mailers below. You may also add additional mailers if needed. + | + | Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2", + | "postmark", "resend", "log", "array", + | "failover", "roundrobin" + | + */ + + 'mailers' => [ + + 'smtp' => [ + 'transport' => 'smtp', + 'scheme' => env('MAIL_SCHEME'), + 'url' => env('MAIL_URL'), + 'host' => env('MAIL_HOST', '127.0.0.1'), + 'port' => env('MAIL_PORT', 2525), + 'username' => env('MAIL_USERNAME'), + 'password' => env('MAIL_PASSWORD'), + 'timeout' => null, + 'local_domain' => env('MAIL_EHLO_DOMAIN', parse_url((string) env('APP_URL', 'http://localhost'), PHP_URL_HOST)), + ], + + 'ses' => [ + 'transport' => 'ses', + ], + + 'postmark' => [ + 'transport' => 'postmark', + // 'message_stream_id' => env('POSTMARK_MESSAGE_STREAM_ID'), + // 'client' => [ + // 'timeout' => 5, + // ], + ], + + 'resend' => [ + 'transport' => 'resend', + ], + + 'sendmail' => [ + 'transport' => 'sendmail', + 'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -bs -i'), + ], + + 'log' => [ + 'transport' => 'log', + 'channel' => env('MAIL_LOG_CHANNEL'), + ], + + 'array' => [ + 'transport' => 'array', + ], + + 'failover' => [ + 'transport' => 'failover', + 'mailers' => [ + 'smtp', + 'log', + ], + 'retry_after' => 60, + ], + + 'roundrobin' => [ + 'transport' => 'roundrobin', + 'mailers' => [ + 'ses', + 'postmark', + ], + 'retry_after' => 60, + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Global "From" Address + |-------------------------------------------------------------------------- + | + | You may wish for all emails sent by your application to be sent from + | the same address. Here you may specify a name and address that is + | used globally for all emails that are sent by your application. + | + */ + + 'from' => [ + 'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'), + 'name' => env('MAIL_FROM_NAME', 'Example'), + ], + +]; 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..6182e4b --- /dev/null +++ b/config/services.php @@ -0,0 +1,38 @@ + [ + 'token' => env('POSTMARK_TOKEN'), + ], + + 'resend' => [ + 'key' => env('RESEND_KEY'), + ], + + 'ses' => [ + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), + ], + + 'slack' => [ + 'notifications' => [ + 'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'), + 'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'), + ], + ], + +]; diff --git a/config/session.php b/config/session.php new file mode 100644 index 0000000..f348f5f --- /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' => (int) env('SESSION_LIFETIME', 120), + + 'expire_on_close' => env('SESSION_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' => env('SESSION_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' => env('SESSION_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: "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::snake((string) 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' => env('SESSION_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' => env('SESSION_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' => env('SESSION_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_000000_create_users_table.php b/database/migrations/0001_01_01_000000_create_users_table.php new file mode 100644 index 0000000..540261a --- /dev/null +++ b/database/migrations/0001_01_01_000000_create_users_table.php @@ -0,0 +1,33 @@ +id(); + $table->string('name'); + $table->string('email')->unique(); + $table->timestamp('email_verified_at')->nullable(); + $table->string('password'); + $table->string('phone')->nullable(); + $table->text('address')->nullable(); + $table->rememberToken(); + $table->timestamps(); + }); + } + + public function down(): void + { + Schema::dropIfExists('users'); + } + + +}; 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/2025_07_20_042441_create_products_table.php b/database/migrations/2025_07_20_042441_create_products_table.php new file mode 100644 index 0000000..5f14214 --- /dev/null +++ b/database/migrations/2025_07_20_042441_create_products_table.php @@ -0,0 +1,36 @@ +id(); + $table->string('name'); + $table->text('description')->nullable(); + $table->string('category'); + $table->decimal('price', 10, 2); + $table->integer('stock'); + $table->integer('sold')->default(0); + $table->string('image')->nullable(); + $table->enum('status', ['aktif', 'nonaktif'])->default('aktif'); + $table->enum('label', ['terlaris', 'tersedia'])->default('tersedia'); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('products'); + } +}; \ No newline at end of file diff --git a/database/migrations/2025_07_20_042551_create_orders_table.php b/database/migrations/2025_07_20_042551_create_orders_table.php new file mode 100644 index 0000000..9167964 --- /dev/null +++ b/database/migrations/2025_07_20_042551_create_orders_table.php @@ -0,0 +1,33 @@ +id(); + $table->string('customer_name'); + $table->string('customer_email'); + $table->string('customer_phone'); + $table->text('customer_address'); + $table->decimal('total_amount', 10, 2); + $table->enum('status', ['pending', 'processing', 'completed', 'cancelled'])->default('pending'); + $table->timestamps(); + }); +} + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('orders'); + } +}; diff --git a/database/migrations/2025_07_20_042630_create_order_details_table.php b/database/migrations/2025_07_20_042630_create_order_details_table.php new file mode 100644 index 0000000..c16e8e7 --- /dev/null +++ b/database/migrations/2025_07_20_042630_create_order_details_table.php @@ -0,0 +1,32 @@ +id(); + $table->foreignId('order_id')->constrained()->onDelete('cascade'); + $table->foreignId('product_id')->constrained()->onDelete('cascade'); + $table->integer('quantity'); + $table->decimal('unit_price', 10, 2); + $table->decimal('subtotal', 10, 2); + $table->timestamps(); + }); +} + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('order_details'); + } +}; diff --git a/database/migrations/2025_08_03_042203_create_contacts_table.php b/database/migrations/2025_08_03_042203_create_contacts_table.php new file mode 100644 index 0000000..a5915d9 --- /dev/null +++ b/database/migrations/2025_08_03_042203_create_contacts_table.php @@ -0,0 +1,27 @@ +id(); + $table->string('name'); + $table->string('email'); + $table->string('phone')->nullable(); + $table->string('subject'); + $table->text('message'); + $table->enum('status', ['pending', 'read', 'replied'])->default('pending'); + $table->timestamps(); + }); + } + + public function down(): void + { + Schema::dropIfExists('contacts'); + } +}; \ No newline at end of file diff --git a/database/migrations/2025_08_13_070809_add_is_admin_to_users_table.php b/database/migrations/2025_08_13_070809_add_is_admin_to_users_table.php new file mode 100644 index 0000000..31513ea --- /dev/null +++ b/database/migrations/2025_08_13_070809_add_is_admin_to_users_table.php @@ -0,0 +1,32 @@ +boolean('is_admin')->default(false)->after('email_verified_at'); + } + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('users', function (Blueprint $table) { + if (Schema::hasColumn('users', 'is_admin')) { + $table->dropColumn('is_admin'); + } + }); + } +}; \ No newline at end of file diff --git a/database/migrations/2025_11_26_054606_transaksis.php b/database/migrations/2025_11_26_054606_transaksis.php new file mode 100644 index 0000000..bab167b --- /dev/null +++ b/database/migrations/2025_11_26_054606_transaksis.php @@ -0,0 +1,42 @@ +id(); + $table->string('invoice_number')->unique(); + $table->foreignId('user_id')->nullable()->constrained()->nullOnDelete(); + $table->string('customer_name'); + $table->string('customer_phone'); + $table->string('customer_email'); + $table->text('shipping_address'); + $table->string('province'); + $table->string('city'); + $table->string('postal_code'); + $table->decimal('subtotal', 12, 2); + $table->decimal('shipping_cost', 12, 2)->default(0); + $table->decimal('total_amount', 12, 2); + $table->enum('payment_method', ['transfer', 'cod']); + $table->enum('payment_status', ['pending', 'paid', 'failed'])->default('pending'); + $table->enum('order_status', ['pending', 'processing', 'shipped', 'delivered', 'cancelled'])->default('pending'); + $table->text('notes')->nullable(); + $table->timestamp('paid_at')->nullable(); + $table->timestamps(); + + $table->index(['invoice_number']); + $table->index(['payment_status']); + $table->index(['order_status']); + }); + } + + public function down(): void + { + Schema::dropIfExists('transaksis'); + } +}; \ No newline at end of file diff --git a/database/migrations/2025_11_26_062544_create_transaksi_details_table.php b/database/migrations/2025_11_26_062544_create_transaksi_details_table.php new file mode 100644 index 0000000..768ca6f --- /dev/null +++ b/database/migrations/2025_11_26_062544_create_transaksi_details_table.php @@ -0,0 +1,31 @@ +id(); + $table->unsignedBigInteger('transaksi_id'); + $table->unsignedBigInteger('product_id'); + $table->string('product_name'); + $table->integer('quantity'); + $table->decimal('price', 10, 2); + $table->decimal('subtotal', 10, 2); + $table->timestamps(); + + // Foreign keys + $table->foreign('transaksi_id')->references('id')->on('transaksis')->onDelete('cascade'); + $table->foreign('product_id')->references('id')->on('products')->onDelete('cascade'); + }); + } + + public function down() + { + Schema::dropIfExists('transaksi_details'); + } +}; \ No newline at end of file diff --git a/database/seeders/DatabaseSeeder.php b/database/seeders/DatabaseSeeder.php new file mode 100644 index 0000000..d01a0ef --- /dev/null +++ b/database/seeders/DatabaseSeeder.php @@ -0,0 +1,23 @@ +create(); + + User::factory()->create([ + 'name' => 'Test User', + 'email' => 'test@example.com', + ]); + } +} diff --git a/database/seeders/ProductSeeder.php b/database/seeders/ProductSeeder.php new file mode 100644 index 0000000..bef6b8d --- /dev/null +++ b/database/seeders/ProductSeeder.php @@ -0,0 +1,88 @@ + 'Bibit Cabai Merah Super', + 'description' => 'Premium Quality - Bibit cabai merah unggul dengan hasil panen melimpah. Tahan terhadap hama dan penyakit, cocok untuk berbagai cuaca.', + 'category' => 'Sayuran', + 'price' => 15000, + 'stock' => 100, + 'sold' => 250, + 'status' => 'aktif', + 'label' => 'terlaris', + 'image' => null // You can add image path here + ], + [ + 'name' => 'Bibit Cabai Hijau Jumbo', + 'description' => 'Varietas cabai hijau dengan ukuran besar dan rasa pedas yang pas. Ideal untuk masakan rumahan dan komersial.', + 'category' => 'Sayuran', + 'price' => 12000, + 'stock' => 85, + 'sold' => 180, + 'status' => 'aktif', + 'label' => 'terlaris', + 'image' => null + ], + [ + 'name' => 'Bibit Cabai Rawit Super Pedas', + 'description' => 'Cabai rawit dengan tingkat kepedasan tinggi. Cocok untuk penggemar makanan pedas dan industri bumbu.', + 'category' => 'Sayuran', + 'price' => 8000, + 'stock' => 150, + 'sold' => 320, + 'status' => 'aktif', + 'label' => 'terlaris', + 'image' => null + ], + [ + 'name' => 'Bibit Cabai Keriting Premium', + 'description' => 'Cabai keriting dengan tekstur unik dan rasa yang khas. Sangat diminati pasar lokal dan ekspor.', + 'category' => 'Sayuran', + 'price' => 18000, + 'stock' => 75, + 'sold' => 120, + 'status' => 'aktif', + 'label' => 'tersedia', + 'image' => null + ], + [ + 'name' => 'Bibit Cabai Hias Ornamental', + 'description' => 'Cabai hias dengan warna-warni menarik. Cocok untuk dekorasi taman dan dapat dikonsumsi.', + 'category' => 'Hias', + 'price' => 25000, + 'stock' => 50, + 'sold' => 45, + 'status' => 'aktif', + 'label' => 'tersedia', + 'image' => null + ], + [ + 'name' => 'Bibit Cabai Paprika Mini', + 'description' => 'Paprika mini dengan rasa manis dan warna cerah. Kaya vitamin dan cocok untuk salad.', + 'category' => 'Sayuran', + 'price' => 22000, + 'stock' => 60, + 'sold' => 90, + 'status' => 'aktif', + 'label' => 'tersedia', + 'image' => null + ] + ]; + + foreach ($products as $product) { + Product::create($product); + } + } +} \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..ef47e42 --- /dev/null +++ b/package.json @@ -0,0 +1,17 @@ +{ + "$schema": "https://json.schemastore.org/package.json", + "private": true, + "type": "module", + "scripts": { + "build": "vite build", + "dev": "vite" + }, + "devDependencies": { + "@tailwindcss/vite": "^4.0.0", + "axios": "^1.8.2", + "concurrently": "^9.0.1", + "laravel-vite-plugin": "^1.2.0", + "tailwindcss": "^4.0.0", + "vite": "^6.2.4" + } +} diff --git a/phpunit.xml b/phpunit.xml new file mode 100644 index 0000000..5fd5bcf --- /dev/null +++ b/phpunit.xml @@ -0,0 +1,34 @@ + + + + + tests/Unit + + + tests/Feature + + + + + app + + + + + + + + + + + + + + + + + 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/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000..e69de29 diff --git a/public/images/bibit-cabai-1.jpg b/public/images/bibit-cabai-1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..02d373370626ba787125c8f0542c76b17d8a78de GIT binary patch literal 8611 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 V+Tdv7L2d{Q;|MsJO5$z#e*mcoDHi|$ literal 0 HcmV?d00001 diff --git a/public/images/bibit-cabai-2.jpg b/public/images/bibit-cabai-2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..de70949a791e36fd4fc147ee403b868d73ffb052 GIT binary patch literal 18220 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 A0RR91 literal 0 HcmV?d00001 diff --git a/public/images/bibit-cabai-3.jpg b/public/images/bibit-cabai-3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..930fcafec2f0e306f4b95965455ed5e556e8300a GIT binary patch literal 11245 zcma)hXH*kRuyztcNfd;H-lPObf}r$Xr6p2BZ_+zRZ(^ZKuL;s?LI*`Df^?83Aci7M zs({j@2r3q??|07kiF z6*U|VV}irs%*;$IY#gkttSqeT96apo?5zLfAGo=YJnS3-T&(PTV!Q%qVNp?0uIm!A z5;tU!BBH`TC=^OZOUFS^&mkgkT|neN+`Re!hW}f4*$ZHx0jvYoDS&(c5Cf2c0eCqG z-~<3b6u^G~{C|KcK@?N~AT`ZDttLGHNCBdt{0Ay9CFOq;0#Pskc)>6+N;M+~e>h)M zW*L=uQ{Q_=b=>+96Th)zK$b*w`7yKPZ4VIa~fq?(*<3BS1FeTMLoiGCc z1Oifk|H*&${{s-jKmp?w1H;vf_#86DaZ&32WlepImy3X_6u^I>|BFBc@UwVgh-hml zvh(oj1FvzjVuc!- z+0CjJf(JbElr~SwGQBxHDh1A;vX}2p(cpB{0C^t;WelwDipl99Z!x)}sMR5-Ne%~& z{LG~VI;v#tS2Ajw*g`iH8>WW=?0+KJ;C&-!letN53kvWmdk*8H#Ifo-rh*cp!@X2Q zTON(|$zJqx0O~NCLyE{@X@5g1^=LJKyLT|LR$RBZZ%FQmjX=1p)z~L3Lgzw3coieQ zTO1j+s-IN!Vdqt}@U}NkTvqu_N7*z9-6<0qN^v7E^n!k5ZbIvBbHIep8aCvi=CFwWbve*q~0$Nuk3#OGGt>Bhl?iBuw}gTkcnl>pzJ1) zdVQ`c^JK&Un!r`+LXVZp8@MF?+|AW#H7N59?(b`M3IcJ#g<`V7d}Nh#YgD*XJZQjHj7Hu1ho>@(9v~CzyT@hb2{|fNdKhsJSBDji0_-JaQ1hgNWj-~fSNF+bn)zT>VUT+X5 zG#0^Iga98dr_$oa#I6-@Fh2XhzPw*zZ=nkHb5s15KPwigLywP?1=`Yo=?O%fTquV& zJxuWTtC};s_L2SPVZ$Zh<;v)~1q$gR_hi*P>>bA!Jq~Yxh~^9XSxzS=3{AoF@}jfP z&w$Tho&w%ERwrGJ_3#r8T^cE#Wc{B>vkoV+d9;{<$)<*c#y{!tSy{~4d>Wa1U4rj^Y36|)f%-5J4=zho{xbYXUsSM{D;!(-Z6%~{8L^*-+U@J{xb z2+2=vij0pyS&q`iHJu=-!;+llr3I-mnz4kcg?3Qj&jOL9BA7(CK4;-O_i=N@-?h$)CU zD4h>9BnZgh-z4y=GHmIHSuiIj-SNa}{5kB1R$3p+6l~1`BMiwp3~X(Ixj&4CX$icB z#5(od0>mKK=EGVGb!%Ld1s_J2hW;^AOF6keI=aAYgYoKW+Uqy2?{m>&cVa&kNwO?^ z3y}irQQGp?ocsb4Ax&Mq2rhTmyCXZUWn3FLwQpav9K?jt#+c@Lt-r1hR~y_sym`x= zmQ2OdR}qRCO5dsx8Ez<^-Gup=z6NwA`^4iLMtFQtWqKHyZ?u$9k;DwA6Gc+O<-+brJzn4_!{>x7- zmh*-3!Ok;ff6IrdQ9hnJJZkzz@~$`?hDk@c53{Y01|70RBx8#pQOZF_v6YQ)u_o^d zq*Gjx1KzJneey6Uont;eq|&okW14;2Xkwli-}bSR@PTd?U(gTpw-4L29$5EMd<81O zl=1Ci)n!eXR=G>S&uv=b%Oz*F)7l-2NMRqm?s5Gk;6<+ZEg#OFgmsGa7e;Pw zE(Ugrkg>H6f(W$F`hB*5jTBGsY@&M_7lhsx>&&>NTc3f6hq{da{6eX&u3!u^2MazFC_jTGk)t>huN3x4 zx42=WEFx*ZjH_MtH~VR!DQGMnw}IhVo_sk?oZcU>`Lcn~m>8c>!=NZ`fXAZ&5{lG2 z#!pQaYo%XZz@5xaaz&oPC3q$36WaN${P*u4%{$*d1Z-RAsC^H_m~N;g>oDC;ZO;Ma zFiCubcWdl%2@>%z0S(r_)~k1&8oVD`#VkXOx}i+TckCB|Je8kRG2^~dW~&Rn-uZrI zZKim979qP@*H(MjYD5GAhQUhd?3H+q^0~rTgOuaThdcD0Ga3d#{FBd;YXcT3-K0d` zpU+h5bjH|8Ey)ZjhSgud?}S`y^>vt`-%AwHBNIh<*%#0;J~upKb|+sv8^oM;*(u-A zd8XgyHWdO2SYNz8b~U(Xvg^%SGxFrZEI76E$VDlKb_W;rRN9qXe2@aG`9_>y^%47% zZ{tg|NMEjQQYB%-sxWPfdZV=<`0?faN%yi>vn997a!KX%&~-0M?XmYk~Y5d zORWX8*?>|BXYS!hj+y*c^qIox%hn=k7{$%8*eRZH#m=?y3ZKertY@1uHlSLwbRwwl z&5`bw3RTxNLn2H-9nH2$2trnhP==h%NIMLgn~_r<`Sm@2bp_MDrg2i2BVjxAwOv*7 z=g{9Eh1YU}0B&rC<8;sOMI#PGHJZXQpP(I?q$4ssX#1HdKGMAj_Am(K^U}azg2OQ z-N-PEE^COI@^q9nBc;1h*|$M3kVrVEtL|Kk%bFI~tRnO28%#`rMjGEEv&w6ZnL_vAHo>{{^ryQDi z-NC8v{}`z`!U7Y(GT&#EzsOt11vrn+$k*8YU}$~EG2gJ@F~(Tto(|9pxe4e@!iGn@ ztll)=xV50=L8)xI`KqvHED|oCCx6W6X+k~#Ndu(kvDI05tsTb_a4J%ayDKcBblmHq#*g=f#KMPQyR?4!s|82RKrgGS7v{`C zRwu+%@x3|9FEMp!r7uF$U(|bYWiePs9tfD*RZ^iDg*ewc$}?$@cTTQ;6%DAx7(}Qvb1DGx?RBQlk{r-UmS-LB``-;_@+` zxqVD`nf^%Z(rq@}zctChV#JP;(=qX5IjdlD=MU|#ld1X?uWsWCxkn>HqENl+Dpr$Q zB5!YVSZ+$VoubBWb?WK5c)Qw40}c~1bXxP0ClpTEqY$Bb7aB?A2@%w)V1U2iFMYcv z>!^PHKM@D{$GXz)4# zvzws|iZ`2ln9DmwSL&kB7Q?iZTo=879lCcjX73{*_(8;9q2b5Nmw@t)j@O@O?l?I$ z-O(~PwDBv(D3xVpk7hosV1GAGfBd9$Rx@Fzs=P# zN4nni8c#bw0&FCLYY`klJDPd}?nj=I9*eh)9bKoz#%j$_h{-O%GikFCebtSpyygIR zAv^YGjAX-?IRiIR2E8KKBs$s!$kQ`WP6z31=c`{#PV^53(@6~H-?Abks~JEhJPhQ_ zeO)yq)G82d&}k3s=-+t^{U*C+G=Zn>y;eBEb_P#+&)oVuZ=a!s)i~21e!q#h_&wQR zk`y1t-AQ*rs(dN{0Vm4SQp>Lg7Hi@@amI;n+r7@ca`+?vUVjF0jPDw17s6Ed#vw2i zW0*RyqgGaU8;q)g;o&Q2Y$8QC5}q$yM;f(bliWyT3bpA*-?I0b$N?Ca`ue~-DpxcMx{O(_OJPJOY!*4LKsKx2V^n5sL zfSsPG0SxSvyl#ssf0PHg%nP{5nFo{vec^v%q~UnvBJu^oKR@*s&=y0J zMcuHT&)iIIaKgKX{x%P|?FSSzh*Vz!G_>a$xJv}4=OJt%cX5SdiJM|&7fHd1{S7lI zZ{dL}?8DsLOywvs_cV2+jXJ1arvry*_RUcn?vFUuh_lY8jCV!@-r0@WV78 zyme)PGnwEY_l>EQ@^P7&%etfOG&9;TpSjAFVJEsdv(ch$a%i^0h{=nfGcJQ(^`loe z&{G-4gg(c>x~~4|2DJ!1o-InGzE^#!0dM!R2eUx<+Q0QcqOa`@bq?JW$C=m*j`0_t zuAzm6Jp@K>xRa#I0sd~sfKvRZV&ueJz5hAf51KAf#rxCDqtKa&1fZGBlKKiJAl^~n z$tenlC@oBJlax7|R8VG{)O=e#^D@bLa6Vxsx7pN!nYpx$lYmT6V*&VaUL}XD1X+0c zK$%qt^8F1%ycmiuw&+C2kq}OnJOt0G0l2*I6XmFZkb8;O#eH!@BI2qJu2*4^O8lW# zUw@=>eeBATI)xa;eH~d`y>S_`WVO(D6qDru7>Jjc`_7qWNd*Qp1 z81s|ti%mP_p@X^CYKxREs~Hf^MvqMe8%Cly37>JbJ~Z}_xv}v6=9S`2LB*g*I(Gv; z=byNzEO3@05u*blyrzV`iAFwCiVf4&RDCR3fEkm~uPohNzEkuD$?L3dNiB88cf2_i zwU~aD?5x@0TfX?FT2kFK552-ix@urrrCxZrU}0v`U;`x%9`4PRB^;Q4RcwqbX#i|g z`JE)4EeHJFr!$hAl(5!}l&kvaW0|qh`&&L8?Jj)`A)w&Bao3DI$6qHI8FYcYsK3%` zH}F1uS)aEl_-tCP?{{8J#p6o=gVb-WOF)+$cK2tM{SM{D2lKLJsr<^WS}P{P_DjUF z2m0+@tK`;ga@}XY8lNkpVc#fgC-{`J*pPt~X z9yIe+C~pmY6HykD!n{3amBOneTS729pTN%M4f0}BF+CV6(o0K|ES~{_gimaYe9@x#lk3FlG65yV{t4gX2L#|8VF14kQwXTDxfC$+Q6C!he7fX4RBX@(|r$q=BI(9UVx zd0O#2?76iO3N2xe3POD0fhrXaR4Z?LAuN7yFbtnc-sNzt`pT!fBv!)89{wH@rtOh~ zhF~y?vc$+AH~7@L2(Gg=C_cir?%AU?=zaJ;Tzo4#@_CA& zI|k{Hb!dvV7lMq!(v`h;;1VjK2iTn7?}3pEza$*Z?d8o-66yS_r!Z6H3DToi(XSyi=^% zbuJz@@sw*n{@3^eR5mnPJWr5^cB3V1oDWNjHe;%nzd~HPbG%F$_~~^8Lmvo&9#<66 zWlzqk0R0xR#2>^qH}2v|qCed_ge(=2+vnxtAXB--sQSrW@31dRQ1rn-n#dhyqvmu?MX9v4d;aW@M|2D@fbK_~?5^w7aA*61+ z?$2k?xemk#zNc@Ld|M<^jlJJE;K5(X)EpDQ+hz9oL}i4HdG2=`jJ_j{DapFs>Sciq zztpQ$*8}y<*r*KfVA030V#ZO{+Y-0rqLdYdkqi;)u85=K$^v6A0(~sfnHkqsJ>2hk zfBMttl#{hfY}Z0aG$uLO;LJngAhnX!SGrbOXX6nec`-cD9nzMN`Vm=FmUNKA^j%%m z06BA(?-L9MQr2M6Mg%zG{liGZomZ)zdNLX!Q?WZnkt&A5MN1JJm}@HnTt7@Gu1qB| zY~FePT7%b^>KyF#^FvSbX?^8YwKQ%M1s8Zw1~Bh;?dYA0__9M5W)p%dAlkSC@}gzO zT$nYIg9iyFVi*J^XiVS4Mk|K1o1f3{0i|up+6+A><#t-%@I{V3^$ZPdAM|Bjummae zZsO>Hliq4=8xs-rhvwE^ca@smUX_+-L}ygP1$gBth@P@!gzOsEhQUB@vN8CDDtoa^ z1;3}urpKf^y*P;{QX&)^+#_(`Gv@BRGISdcsy%&l%@doQ!sPFq!SNLVOTmf5} z>5WP+J1&C@ri_pJ3mn3J8+yAc?*fIM?an3-IX#+c{O!`7I=Zar_K@K~d1kV(v|p`c zH~A;dh8?0~NYP1*d8OK}R}WY!`^rnZ*JeFeU+J(Rn@56uGJtsMO%Ypxs%>TDE} z%oFr!h@`NRxYE2Z25SS)>#_()4Lmd;1Z{(*=Asryo1ptXoTwZ5y*U?Zt<9Vy?o>a8<-em0JbNXvy+%4M_^h^SRIL(TLEyKam zcJKnS$9SlH`^!Ch&8$*D?c%@)x}9f;sMp3ViPJD(Wngmh0MdtM8%8#Rb0k3boYG3O znbcx4;g7kFJ5q-_jk8f~IT~L|dxi+FqXt<=B8gFO{*cZM*T$yR8xQ$)g`)+7e$Gay z@j42X*4|2`UzpTL<4m=TwhHV|O@XZcH1RBW2IQNY6wd;*wzeOyYe+REwFnwqo88ll zc0nbq)@<6QhDpcW&`70*zn*()L;OiC^zN5N9Ah@Jkobt{iq6_2nabSLr*t!UojNO2 znd^*Y%Z!{ufx6kRj>$=H3uslM26k1@`=g|3U0>k5NF{zejxN6C$Bo9;IATn$Uhju6 zgxXxUXA5i8j@2_4=}0%47W7Y(YEJK~xaN%ph*mOvY-<*Ykw|CvQ_m@+dnNeJ{vySV zUA=?Piozeu(yb3c6~A6h;!}AbJ#q}{-gA9HfhF=RRiUrkgNDdpKob>TC_Argu8)qv zinz{7F(dl9>3VOP(@?wA(7rz4yj-C@YHC?y3XSNPN6?FZWgjmvn%@Db>5b2?p4~Ty z@e_uHVY`4A=B^@Z^ShrtVg}NF8p`3z!vXG})~%Au5aZF>v}e}t%bpu0$W^0o+em88 z5uJCpgp7KBU!C$<@6&hv>d)t^FtWL>?MQd8L|Kx8^>AY7kcQWI2okBSV0ye{P0Q8q z|K@{@y17#R4H5gyK*a;~1IiB56=-xs=@lUSHNhj_yub8UjgEjbu%{&cLT78GnhJwt z3^U?E+YjpA4Yiw#@=)5+*lMS8E|}-0O7D$?7ij>2M!iE%$aM+{i&o%Y9IJzNRpgF_ zKjqIhD#kyU&Eh4w2g<0l#Z_0r&MF~qNG>vBeD`t9f*(LcymTx;oI(a|M0L?yT@@jQ z3~n|CGkzBNc03oSUQc=T`~%d^u_OeNMLV*Jd$?cIbNzeuE9}h}Lq1T>w=DslD4+hP zn_^dd#S@J^aOpv=RND_cm!0}JopTwwAEWBntv6scpdjp|?>9B7*`=htfD8rdWYI`1 z_Ys`$_bj)rIl<7;Ix3W=JqZ;}tm^nzt+G3k2V&#WKehs!%b*wuuSj*BRT9NHBego& zBzXbK%rb?1@VTR{$rkCcUpYHV7(o@bH+V>wNq5f~hSg|UjRCI5e{xNS)-~Ibs3ixZ z_}|4Dutg$TOG{zE%%M+FyPjf3#sN>Wg7=xm13e=N7{&TUYA(0KUKj{)q#LA0#Iu=YW%_Ae ziw}|>x;N^KwFe@8Eh8uJ&9cu88(jnk!_1X6W_v)Ao>r>2w4ql#Hz+XKZ0Q}c`E7JZ zsunY`BNX9l!dwSb9P}iXe}98CdHkh~k4j*pH?vE%P$vxM-=SGFdb1I<)W~Xka;c4x z4@E~gW0784Itdbkn_0`WC+H?fXC6s;$r8YdFS06}hmHL?dCbe#v6)uiSYDnJ`xyy> z)ZLoxbSC=meUW)+p^q>n8M6mv21t5FI1dUDKFr?6(85eQcfjbVrx}BnqP9FOgT9Q) zUIKW+zRwp-iuj4kW-EOAR%eE1QP+{n0?^B0ib0-)&X%;jM9i{kl%k-n5!ds{3`S6| z{KGxp>+%gaHm!J8r8+`gRj0lQh5R1)kYthKnZQ*MK2w*Wv9-Rb2QO(_X@LiF#)&>e z`vZ9`Ia&Ch!op_!hL{)csxiUNjq_>nr|m^gIIJi2$}dfH<=;->#b@VPj}wnC%uN*n&P5X=So!HQ z9m~j`^&xDcf?DOVkHLjEyKQ31Q~|}cf*&cvwiVG6A^EQ8aT*QR?Dq# zx^+AWgdmeo+vd_2>*PLt1_%7ngTxLe7>T+ebytD~0jYdBf6Au3v*kJ9Lj478DC~kM z$EW*mQ4@u^8KS;ms};UyPA(vl>{E3-4u~eNLMv!C=E#AOGzfZGj`Sk8>ywN%dEnIW znN3K$B*_HfxbJt8LqPEv`#IN%-SVYUTH*4_A-_*Ra4_l8uH|(Zzj*%6;MI#Xuucy| zS_##0v9AhadLu#vZKh9F#j8gJRvCBYw$<%- zygeXT{X$Hgw3+?xzYCF%85LEm@0vSRbWwDv1OtBZ*L<4)QF&MX0K(CM(h`?duJ`N` zkg#rwH?e<{BX7-F$jmhz%1rR+zXZs~yykq4!AAc|A`ilNbaw7af>!-xTt~$y9y4re zN<~@)qM%SYdl#8@_Lxo&OVmw;`!2kxQ$?26peI4-sGSsC&{2RKDyogV#^gv+{t+r-4a*UNsN90pCORlgtCfn_K>B{Bhm~vDat#i;w-g{KD6a6U8a-uc z!q2HC1J(^FE>2_Q7S-ok+n$8!%)eD)97vFqIGjisw-QRh^rA#L*6^HldkTFo@Drso1h9l`sU7l%yoKuD^C2!j z)+cN;=t)mey1x~4Mvg{t`g%G#02=oF;rT(!270QZ7+zS0V^X6R39dlO`Cij z*9LQOuJ@Skmqkzm3bGEq@2Ft+ES(-mOoip;x_JTO7+>IvcOCd~ZgFs&hD5crVXw^>6iHcL3kN= zu;Y2f$XkNtj2@Zl&*I(iX{W>iAe-%GpbC3Uyx*u?R@^@tt|ZRuf=$)nAUJ11E(!@n zK@())jLg?qGYH$1exTCcso}}yS1EAO?>TRinlVPq><_%MWBW@P&Vy|4+vK5O12NKZrH)WnzwbN`S?5e3{ocCnR8s#P5AS>Tcqda*?9|c1JuxEy08vMLX_%1m(TxHi{iDlHpRv;>BeYBAS}tTf z5*HV)MLWmQ9VSh8Lq23kTAf?HR!sYDVpd)-*_KOPT!hN9)%tmM@gZ*^Z_F+AZ?hCf z%ehP5!q|j=P^L0;`ZO%%(B#LMS^yCt8)*B zmQkgOcr||=XxxzdhJ2WpMMKlek5`};KzZHy2NOO`qRlM=o<3+pW;96qc0=I&&@99l zW4MN+6@_3KFqZ&CMZD?g>Gxaf7&)FF%ikCW9C%w=E&auv@skw^)WKfb3zvX{rAxr3 zUcjSCQ8rbTDas(lB|jCX{ZWOcWgROGlpyq;pju0ZUc^hQ@ODZn8ISAiAL^J_*9-`d zgg4UO^oli7t+kOye=^Ve>ZI_?h+!O{#29nShsq)t%B$u~!Od+}m0M_KgA&#e;JX=d zvTo+RJw>|yk&kjB&VZ|*akTTkS><@u{=Z~|*nPCMKAg^Itor)0pwpE@ddj4~!|-Nn zW$$=XL&!UUEk#`(3=ip8>0uS`IT$a=mqQQ?=u6GyV;{MJdqRlN*U}%~gn6mz-S& zja{ulC1-`+|DrbJpa*+9;$fJE$9I0BhwulKuI@0pauMX{KkJQ0(@g38G@9o3ybWBp zF~FL%yc(aX0tEqzpED!<(34)wF~h-JFi?ht5hr?H;=6~|^jQ2@@?avWB_;L! zo~r$M-*Yo}L4;<<^bH)-1bf=}iIQ;ts*06nvvd-ijZ@ehSh^cjwz#ONn)~XbQc%TW zhE#=arK51N;xL!y&4qWQ!GC25rrKe?Z9nzQ5yu2EbNJE59sjg-pfSGI&%$oU-cK=p$VPUQzo|&0Tz&$w+ zKq~T_c+;PKhB5Wj$dZ$i&y4JyNEs2yz%VoMm0Y7QN5-o5y!B`7s^lL_Ww6qQhQ3^g zy<%%Fl|3(P-AF=D8~Y5L?OFM>q|=I<@}O*I&ZIaqe|AgQf6%hqM$ zfYgAIOF(#wNbm+Gmov^x4UiZ^+AEhjD#HM~-ln0#6%?F57!*N?CUdo1v-9sIq$40+ zcOYacM}&UmiYb1`ab_ba$L;LZy@u{lM+h8 z$|wR)VUHv~vLf1nRx}JllKJg3;8>z3I1H-bI+&DFyk!n*d+yE*Lh17ZS@aUy;@tgf zFeb})|Kj-*D|KPY{*eR1ExZWJ@X`~hdh97=ip-UhH~9KD$&UU0R8qL~eCFEZFN>H= zDm?sntPeud$yVk;BZv17zGgxTI6}W?$VbkEcd&Q|CDE=ZE^_V!W&rPleVK z%>$(9TbNSNrnw{m0Hrb1+k8mVWX?;bY`A~*Y7)sjBlPF*y`fpEdnz`JQki;y!hp@KDFN0;x~I5P|*d-z&j0 zzV44<4<8X`muh0$t-|ta-i6zG)m3YJIf+RB)kSM$YpWTpk=+p=VSLxzOiP*2)YIp6 z0sqH#nh9M3%>Oapmw>~Ljw(9KSy6^>ZGXN(Wn4WUc-7SkJOFJ-mKA=y*tE5^;u{(E z_B}pUnRyg6@?fv7_FbkqfWzsx)T38sauZB5=H{lQfuBCbm>V5NrG>mEAL(cY}`e5&bm7~o)>F#(4{O~KmC0CgZ;dtLPcdBlmFOLWh?!x e^2O3k(;xqQ)D=|y;Twpu4Gs-C) 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

G-PME#$m6MH*uA(mF%IaVy*8(TG1P9J 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—pCH^(}ATC_R-X9h)~ZbV*1r_ujor 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 literal 0 HcmV?d00001 diff --git a/public/index.php b/public/index.php new file mode 100644 index 0000000..ee8f07e --- /dev/null +++ b/public/index.php @@ -0,0 +1,20 @@ +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..3e6abea --- /dev/null +++ b/resources/css/app.css @@ -0,0 +1,11 @@ +@import 'tailwindcss'; + +@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php'; +@source '../../storage/framework/views/*.php'; +@source '../**/*.blade.php'; +@source '../**/*.js'; + +@theme { + --font-sans: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', + 'Segoe UI Symbol', 'Noto Color Emoji'; +} 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/views/admin/dashboard.blade.php b/resources/views/admin/dashboard.blade.php new file mode 100644 index 0000000..a06aac9 --- /dev/null +++ b/resources/views/admin/dashboard.blade.php @@ -0,0 +1,329 @@ + + + + + + Dashboard Admin - Bibit Cabai + + + + + + + + + + + + + + + Kembali ke Website + + +

+ + + + +
+
+

Dashboard

+

Selamat datang di dashboard admin!

+
+ +
+
+
+
{{ $totalProducts ?? 0 }}
+
Total Produk
+ +
+
+
{{ $activeProducts ?? 0 }}
+
Produk Aktif
+ +
+
+
{{ $totalSold ?? 0 }}
+
Total Terjual
+ +
+
+
{{ $lowStock ?? 0 }}
+
Stok Menipis
+ +
+
+ +
+
+
+
+
📈 Grafik Penjualan
+
+
+
+ +

Belum Ada Data

+

Grafik penjualan akan ditampilkan setelah ada transaksi

+
+
+
+
+
+
+
+
⚡ Aktivitas Terbaru
+
+
+
+ +

Belum Ada Aktivitas

+

Aktivitas terbaru akan ditampilkan di sini

+
+
+
+
+
+
+
+
+ + + + + \ No newline at end of file diff --git a/resources/views/admin/layouts/app.blade.php b/resources/views/admin/layouts/app.blade.php new file mode 100644 index 0000000..44d7268 --- /dev/null +++ b/resources/views/admin/layouts/app.blade.php @@ -0,0 +1,237 @@ + + + + + + @yield('title', 'Admin Dashboard') - Bibit Cabai + + + + + + + + + + + + @yield('additional_styles') + + + +
+ + + + @yield('content') +
+ + + + + @yield('additional_scripts') + + \ No newline at end of file diff --git a/resources/views/admin/login.blade.php b/resources/views/admin/login.blade.php new file mode 100644 index 0000000..83c6af5 --- /dev/null +++ b/resources/views/admin/login.blade.php @@ -0,0 +1,192 @@ + + + + + + Admin Login - TA Bibit Cabal + + + + +
+
+
+ +
+
+
+ + + + + \ No newline at end of file diff --git a/resources/views/admin/orders.blade.php b/resources/views/admin/orders.blade.php new file mode 100644 index 0000000..17e6dd8 --- /dev/null +++ b/resources/views/admin/orders.blade.php @@ -0,0 +1,269 @@ +@extends('layouts.app') + +@section('title', 'Orders Management') + +@section('content') +
+ +
+

Orders Management

+ +
+ + +
+
+
+
+
+
+
+ Total Orders +
+
+ {{ $orders->total() }} +
+
+
+ +
+
+
+
+
+ +
+
+
+
+
+
+ Pending Orders +
+
+ {{ \App\Models\Transaksi::where('order_status', 'pending')->count() }} +
+
+
+ +
+
+
+
+
+ +
+
+
+
+
+
+ Processing Orders +
+
+ {{ \App\Models\Transaksi::where('order_status', 'processing')->count() }} +
+
+
+ +
+
+
+
+
+ +
+
+
+
+
+
+ Delivered Orders +
+
+ {{ \App\Models\Transaksi::where('order_status', 'delivered')->count() }} +
+
+
+ +
+
+
+
+
+
+ + +
+
+
Orders List
+
+ + +
+
+
+
+ + + + + + + + + + + + + + + + + + + @forelse($orders as $order) + + + + + + + + + + + + + + + @empty + + + + @endforelse + +
Invoice NumberCustomerPhoneShipping AddressCityProvincePostal CodeOrder StatusPayment StatusTotalOrder DateActions
+ {{ $order->invoice_number }} + {{ $order->customer_name }}{{ $order->customer_phone }} + {{ \Illuminate\Support\Str::limit($order->shipping_address, 30) }} + {{ $order->city }}{{ $order->province }}{{ $order->postal_code }} + @php + $statusClass = [ + 'pending' => 'warning', + 'processing' => 'info', + 'shipped' => 'primary', + 'delivered' => 'success', + 'cancelled' => 'danger' + ][$order->order_status] ?? 'secondary'; + @endphp + + {{ ucfirst($order->order_status) }} + + + @php + $paymentClass = [ + 'pending' => 'warning', + 'paid' => 'success', + 'failed' => 'danger' + ][$order->payment_status] ?? 'secondary'; + @endphp + + {{ ucfirst($order->payment_status) }} + + + Rp {{ number_format($order->total_amount, 0, ',', '.') }} + + {{ $order->created_at->format('d M Y H:i') }} + + +
+ +

No orders found

+
+
+ + +
+
+ Showing {{ $orders->firstItem() ?? 0 }} to {{ $orders->lastItem() ?? 0 }} + of {{ $orders->total() }} orders +
+
+ {{ $orders->links() }} +
+
+
+
+
+ +@push('styles') + +@endpush + +@push('scripts') + +@endpush +@endsection \ No newline at end of file diff --git a/resources/views/admin/products/create.blade.php b/resources/views/admin/products/create.blade.php new file mode 100644 index 0000000..c13bfbe --- /dev/null +++ b/resources/views/admin/products/create.blade.php @@ -0,0 +1,496 @@ + + + + + + Tambah Produk - Bibit Cabai + + + + + + + + + + + + + + + + Kembali ke Produk + + +
+ + + + +
+
+

Tambah Produk Baru

+

Tambah produk baru ke dalam sistem bibit cabai

+
+ +
+
+
+ +

Tambah Produk Baru

+

Lengkapi formulir di bawah ini untuk menambah produk baru

+
+ + + @if ($errors->any()) +
+
    + @foreach ($errors->all() as $error) +
  • {{ $error }}
  • + @endforeach +
+
+ @endif + + + @if (session('success')) +
+ {{ session('success') }} +
+ @endif + +
+ @csrf +
+ +
+ +
+ + +
+ @error('name') +
{{ $message }}
+ @enderror +
+ + +
+ +
+ + +
+ @error('category') +
{{ $message }}
+ @enderror +
+ + +
+ +
+ Rp + +
+ @error('price') +
{{ $message }}
+ @enderror +
+ + +
+ +
+ + +
+ @error('stock') +
{{ $message }}
+ @enderror +
+ + +
+ +
+ + +
+ @error('status') +
{{ $message }}
+ @enderror +
+ + +
+ + + Jelaskan keunggulan dan cara perawatan bibit + @error('description') +
{{ $message }}
+ @enderror +
+ + +
+ + + Format: JPG, PNG, GIF. Maksimal 2MB. Disarankan ukuran 500x500 pixel. + @error('image') +
{{ $message }}
+ @enderror + + + +
+
+ + + + + +
+ + Batal + + + +
+
+
+
+
+
+ + + + + + + \ No newline at end of file diff --git a/resources/views/admin/products/edit.blade.php b/resources/views/admin/products/edit.blade.php new file mode 100644 index 0000000..822982f --- /dev/null +++ b/resources/views/admin/products/edit.blade.php @@ -0,0 +1,238 @@ +@extends('admin.layouts.app') + +@section('title', 'Edit Produk') + +@section('content') + + + Kembali ke Daftar Produk + + +
+
+ +

Edit Produk

+

Edit informasi produk {{ $product->name }}

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

+ + Form Edit Produk +

+
+
+
+ @csrf + @method('PUT') + +
+ +
+ + + @error('name') +
{{ $message }}
+ @enderror +
+ + +
+ + + @error('category') +
{{ $message }}
+ @enderror +
+ + +
+ +
+ Rp + +
+ @error('price') +
{{ $message }}
+ @enderror +
+ + +
+ + + @error('stock') +
{{ $message }}
+ @enderror +
+ + +
+ + + @error('status') +
{{ $message }}
+ @enderror +
+ + +
+ + + @error('label') +
{{ $message }}
+ @enderror +
+ + +
+ + + @error('description') +
{{ $message }}
+ @enderror +
+ + + @if($product->image_url) +
+ +
+ {{ $product->name }} +
+
+ @endif + + +
+ + +
Format: JPG, PNG, JPEG. Maksimal 2MB. Kosongkan jika tidak ingin mengubah gambar.
+ @error('image') +
{{ $message }}
+ @enderror +
+
+ + +
+ + Kembali + +
+ + +
+
+
+
+
+
+ + + +@endsection \ No newline at end of file diff --git a/resources/views/admin/products/index.blade.php b/resources/views/admin/products/index.blade.php new file mode 100644 index 0000000..de71351 --- /dev/null +++ b/resources/views/admin/products/index.blade.php @@ -0,0 +1,746 @@ + + + + + + Kelola Produk - Bibit Cabai Admin + + + + + + + + + + + + + + + + Kembali ke Website + + +
+ + + + +
+
+ +

Kelola Produk

+

Kelola semua produk bibit cabai Anda di sini!

+
+ +
+ + @if (session('success')) + + @endif + + @if (session('error')) + + @endif + + +
+
+
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/views/admin/transaksis/edit.blade.php b/resources/views/admin/transaksis/edit.blade.php new file mode 100644 index 0000000..c20d306 --- /dev/null +++ b/resources/views/admin/transaksis/edit.blade.php @@ -0,0 +1,258 @@ +@extends('layouts.app') + +@section('title', 'Edit Order') + +@section('content') +
+ +
+
+

Edit Order

+ +
+ + Back + +
+ + @if ($errors->any()) + + @endif + +
+ @csrf + @method('PUT') + +
+ +
+
+
+
Order Details
+
+
+
+ + +
+ +
+
+
+ + + @error('order_status') +
{{ $message }}
+ @enderror +
+
+ +
+
+ + + @error('payment_status') +
{{ $message }}
+ @enderror +
+
+
+ +
+ + + @error('tracking_number') +
{{ $message }}
+ @enderror +
+ +
+ + + @error('notes') +
{{ $message }}
+ @enderror +
+
+
+ + +
+
+
Customer Information
+
+
+
+ + + @error('customer_name') +
{{ $message }}
+ @enderror +
+ +
+
+
+ + + @error('customer_phone') +
{{ $message }}
+ @enderror +
+
+ +
+
+ + + @error('customer_email') +
{{ $message }}
+ @enderror +
+
+
+
+
+ + +
+
+
Shipping Information
+
+
+
+ + + @error('shipping_address') +
{{ $message }}
+ @enderror +
+ +
+
+
+ + + @error('city') +
{{ $message }}
+ @enderror +
+
+ +
+
+ + + @error('province') +
{{ $message }}
+ @enderror +
+
+ +
+
+ + + @error('postal_code') +
{{ $message }}
+ @enderror +
+
+
+
+
+
+ + +
+
+
+
Order Summary
+
+
+
{{ $transaksi->invoice_number }}
+

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

+ + + + @foreach($transaksi->details as $detail) + + + + + + @endforeach + + + + + + + +
{{ $detail->product->name ?? 'N/A' }}x{{ $detail->quantity }}Rp {{ number_format($detail->subtotal, 0, ',', '.') }}
Total:Rp {{ number_format($transaksi->total_amount, 0, ',', '.') }}
+
+
+ + +
+
+ + + Cancel + +
+
+
+
+
+
+@endsection \ No newline at end of file diff --git a/resources/views/admin/transaksis/print.blade.php b/resources/views/admin/transaksis/print.blade.php new file mode 100644 index 0000000..89ffbbb --- /dev/null +++ b/resources/views/admin/transaksis/print.blade.php @@ -0,0 +1,349 @@ + + + + + + Invoice {{ $transaksi->invoice_number }} + + + + + +
+ +
+
+

🌱 TA Bibit Cabai

+

Jl. Contoh Alamat No. 123

+

Jember, Jawa Timur 68100

+

Phone: (0331) 123-4567

+

Email: info@tabibitcabai.com

+
+
+

INVOICE

+

{{ $transaksi->invoice_number }}

+

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

+
+
+ + +
+
+

Bill To:

+

Name: {{ $transaksi->customer_name }}

+

Phone: {{ $transaksi->customer_phone }}

+ @if($transaksi->customer_email) +

Email: {{ $transaksi->customer_email }}

+ @endif +
+ +
+

Ship To:

+

{{ $transaksi->shipping_address }}

+

{{ $transaksi->city }}, {{ $transaksi->province }}

+

{{ $transaksi->postal_code }}

+
+
+ + +
+

+ Order Status: + + {{ ucfirst($transaksi->order_status) }} + +

+

+ Payment Status: + + {{ ucfirst($transaksi->payment_status) }} + +

+ @if($transaksi->tracking_number) +

+ Tracking Number: {{ $transaksi->tracking_number }} +

+ @endif +
+ + + + + + + + + + + + + + @foreach($transaksi->details as $index => $detail) + + + + + + + + @endforeach + +
#ProductPriceQtySubtotal
{{ $index + 1 }} + {{ $detail->product->name ?? 'Product Not Found' }} + @if($detail->product && $detail->product->description) +
{{ \Illuminate\Support\Str::limit($detail->product->description, 80) }} + @endif +
Rp {{ number_format($detail->price, 0, ',', '.') }}{{ $detail->quantity }}Rp {{ number_format($detail->subtotal, 0, ',', '.') }}
+ + +
+
+ Subtotal: + Rp {{ number_format($transaksi->total_amount, 0, ',', '.') }} +
+ @if($transaksi->shipping_cost ?? 0 > 0) +
+ Shipping Cost: + Rp {{ number_format($transaksi->shipping_cost, 0, ',', '.') }} +
+ @endif +
+ TOTAL: + Rp {{ number_format($transaksi->total_amount + ($transaksi->shipping_cost ?? 0), 0, ',', '.') }} +
+
+ + + @if($transaksi->notes) +
+

Notes:

+

{{ $transaksi->notes }}

+
+ @endif + + + +
+ + + + \ No newline at end of file diff --git a/resources/views/admin/transaksis/show.blade.php b/resources/views/admin/transaksis/show.blade.php new file mode 100644 index 0000000..bc932ab --- /dev/null +++ b/resources/views/admin/transaksis/show.blade.php @@ -0,0 +1,297 @@ +@extends('layouts.app') + +@section('title', 'Order Details') + +@section('content') +
+ +
+
+

Order Details

+ +
+ +
+ +
+ +
+ +
+
+
Order Information
+
+ @php + $statusClass = [ + 'pending' => 'warning', + 'processing' => 'info', + 'shipped' => 'primary', + 'delivered' => 'success', + 'cancelled' => 'danger' + ][$transaksi->order_status] ?? 'secondary'; + @endphp + + {{ ucfirst($transaksi->order_status) }} + +
+
+
+
+
+
Invoice Details
+ + + + + + + + + + + + + +
Invoice Number:{{ $transaksi->invoice_number }}
Order Date:{{ $transaksi->created_at->format('d M Y, H:i') }}
Payment Status: + @php + $paymentClass = [ + 'pending' => 'warning', + 'paid' => 'success', + 'failed' => 'danger' + ][$transaksi->payment_status] ?? 'secondary'; + @endphp + + {{ ucfirst($transaksi->payment_status) }} + +
+
+
+
Update Status
+
+ @csrf +
+ + +
+ +
+ +
+ @csrf +
+ + +
+ +
+
+
+
+
+ + +
+
+
Order Items
+
+
+
+ + + + + + + + + + + + @foreach($transaksi->details as $index => $detail) + + + + + + + + @endforeach + + + + + + + +
#ProductPriceQuantitySubtotal
{{ $index + 1 }} + {{ $detail->product->name ?? 'Product Not Found' }} + Rp {{ number_format($detail->price, 0, ',', '.') }}{{ $detail->quantity }}Rp {{ number_format($detail->subtotal, 0, ',', '.') }}
Total Amount:Rp {{ number_format($transaksi->total_amount, 0, ',', '.') }}
+
+
+
+
+ + +
+ +
+
+
Customer Information
+
+
+ + + + + + + + + + + + + + + + +
Name:{{ $transaksi->customer_name }}
Phone:{{ $transaksi->customer_phone }}
Email:{{ $transaksi->customer_email ?? '-' }}
+
+
+ + +
+
+
Shipping Information
+
+
+

Shipping Address:

+
+ {{ $transaksi->shipping_address }}
+ {{ $transaksi->city }}, {{ $transaksi->province }}
+ {{ $transaksi->postal_code }} +
+ + @if($transaksi->shipping_method) +

Shipping Method:

+

{{ $transaksi->shipping_method }}

+ @endif + + @if($transaksi->tracking_number) +

Tracking Number:

+

{{ $transaksi->tracking_number }}

+ @endif +
+
+ + + @if($transaksi->notes) +
+
+
Notes
+
+
+

{{ $transaksi->notes }}

+
+
+ @endif +
+
+
+ + + + +@push('styles') + +@endpush + +@push('scripts') + +@endpush +@endsection \ No newline at end of file diff --git a/resources/views/admin/users.blade.php b/resources/views/admin/users.blade.php new file mode 100644 index 0000000..61c1ab6 --- /dev/null +++ b/resources/views/admin/users.blade.php @@ -0,0 +1,491 @@ + + + + + + + Kelola Pengguna - Admin + + + +
+ +
+
+

👥 Kelola Pengguna

+

Dashboard Admin - TA Bibit Cabai

+
+
+ + Tambah Pengguna + ← Dashboard +
+ @csrf + +
+
+
+ + + @if(session('success')) +
+ ✓ {{ session('success') }} +
+ @endif + + @if(session('error')) +
+ ✗ {{ session('error') }} +
+ @endif + + +
+
+

Total Pengguna

+
{{ $totalUsers ?? 0 }}
+
+
+

Admin

+
{{ $totalAdmins ?? 0 }}
+
+
+

Email Terverifikasi

+
{{ $verifiedUsers ?? 0 }}
+
+
+

Pengguna Aktif (30 Hari)

+
{{ $activeUsers ?? 0 }}
+
+
+ + +
+ + + + + @if(isset($users) && $users->count() > 0) +
+ + + + + + + + + + + + + + + @foreach($users as $user) + + + + + + + + + + + @endforeach + +
IDNamaEmailTeleponAlamatStatusVerifikasiAksi
{{ $user->id }}{{ $user->name }}{{ $user->email }}{{ $user->phone ?? '-' }}{{ Str::limit($user->address ?? '-', 30) }} + @if($user->is_admin == 1) + Admin + @else + User + @endif + + @if($user->email_verified_at) + ✓ Terverifikasi + @else + Belum Verifikasi + @endif + + Detail + Edit +
+ @csrf + @method('DELETE') + +
+
+
+ + + @if(isset($users)) + + @endif + @else +
+
📭
+

Tidak ada data pengguna

+

Belum ada pengguna terdaftar dalam sistem

+
+ @endif +
+
+ + + + \ 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..bde1619 --- /dev/null +++ b/resources/views/auth/login.blade.php @@ -0,0 +1,250 @@ +@extends('layouts.app') + +@section('title', 'Login - Shop Bibit Cabai Bondowoso') + +@section('content') +
+
+
+
+
+

+ Masuk ke Akun Anda +

+
+ +
+ @if(session('success')) + + @endif + +
+ @csrf + +
+ +
+ + +
+
+ Harus menggunakan email @gmail.com +
+ @error('email') +
{{ $message }}
+ @enderror + +
+ +
+ +
+ + + +
+
+ Password minimal 8 karakter, tanpa spasi +
+ @error('password') +
{{ $message }}
+ @enderror + +
+ +
+ + + @error('remember') +
{{ $message }}
+ @enderror + +
+ +
+ +
+
+ +
+ +
+

Belum punya akun? + + Daftar di sini + +

+
+
+
+
+
+
+ + +@endsection \ 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..eb2d329 --- /dev/null +++ b/resources/views/auth/register.blade.php @@ -0,0 +1,388 @@ +@extends('layouts.app') + +@section('title', 'Register - Shop Bibit Cabai Bondowoso') + +@section('content') +
+
+
+
+
+

+ Daftar Akun Baru +

+
+ +
+
+ @csrf + +
+
+ +
+ + +
+
+ Nama minimal harus 12 karakter +
+ @error('name') +
{{ $message }}
+ @enderror + +
+ +
+ +
+ + +
+
+ Harus menggunakan email @gmail.com +
+ @error('email') +
{{ $message }}
+ @enderror + +
+ +
+ +
+ + +
+
+ Hanya angka, minimal 12 karakter +
+ @error('phone') +
{{ $message }}
+ @enderror + +
+ +
+ +
+ + +
+
+ Alamat minimal 12 karakter +
+ @error('address') +
{{ $message }}
+ @enderror + +
+ +
+ +
+ + + +
+
+ Password minimal 8 karakter +
+ @error('password') +
{{ $message }}
+ @enderror + +
+ +
+ +
+ + + +
+ +
+ +
+
+ + +
+ @error('agree') +
{{ $message }}
+ @enderror + +
+ +
+
+ +
+
+
+
+ +
+ +
+

Sudah punya akun? + + Masuk di sini + +

+
+
+
+
+
+
+ + +@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..be84c82 --- /dev/null +++ b/resources/views/checkout/index.blade.php @@ -0,0 +1,479 @@ +@extends('layouts.app') + +@section('title', 'Checkout - Shop Bibit Cabai Bondowoso') + +@section('styles') + +@endsection + +@section('content') +
+
+
+
+
+

Form Checkout

+
+
+ +
+
{{ $product->name }}
+

Harga: Rp {{ number_format($product->price, 0, ',', '.') }} /bibit

+

Jumlah: {{ $quantity }} bibit

+
+ + +
+ @csrf + + + + +
Data Pembeli
+ +
+ + + @error('name') +
{{ $message }}
+ @enderror +
+ +
+ + + @error('phone') +
{{ $message }}
+ @enderror +
+ +
+ + + @error('email') +
{{ $message }}
+ @enderror +
+ +
Alamat Pengiriman
+ +
+ + Pengiriman hanya untuk wilayah Bondowoso +
+ +
+ + + @error('city') +
{{ $message }}
+ @enderror + +
+ Menghitung ongkir... +
+ +
+ + Ongkir ke : + Rp 0 + +
+
+
+ +
+ + + @error('address') +
{{ $message }}
+ @enderror +
+ + + +
+ + + @error('postal_code') +
{{ $message }}
+ @enderror +
+ +
Metode Pembayaran
+ +
+ + + @error('payment_method') +
{{ $message }}
+ @enderror +
+ + + + +
+ + Konfirmasi Pembayaran: Setelah pembayaran berhasil, mohon konfirmasi melalui WhatsApp ke 081331830561 dengan menyertakan bukti pembayaran dan nomor invoice. +
+ +
+ + +
+ + +
+
Ringkasan Pembayaran
+ +
+ Subtotal ({{ $quantity }} bibit) + Rp {{ number_format($product->price * $quantity, 0, ',', '.') }} +
+ +
+ Ongkos Kirim + Rp 0 +
+ +
+ +
+
Total Pembayaran
+
Rp {{ number_format($product->price * $quantity, 0, ',', '.') }}
+
+
+ +
+ + + Kembali + +
+
+
+
+
+
+
+ + +@endsection \ No newline at end of file diff --git a/resources/views/checkout/success.blade.php b/resources/views/checkout/success.blade.php new file mode 100644 index 0000000..071293a --- /dev/null +++ b/resources/views/checkout/success.blade.php @@ -0,0 +1,358 @@ +@extends('layouts.app') + +@section('title', 'Pesanan Berhasil - Shop Bibit Cabai Bondowoso') + +@section('styles') + +@endsection + +@section('content') +
+
+
+
+
+
+ +
+ +

Pesanan Berhasil!

+

Terima kasih atas pesanan Anda. Pesanan Anda sedang diproses.

+ + +
+
+ + +
+
+
+ Detail Pesanan +
+ +
+
+
Invoice:
+
{{ $transaksi->invoice_number }}
+
+
+ +
+
+
Tanggal:
+
{{ $transaksi->created_at->format('d M Y H:i') }}
+
+
+ +
+
+
Status Pesanan:
+
+ Menunggu Pembayaran +
+
+
+
+
+
Metode Pembayaran:
+
+ @if($transaksi->payment_method == 'qris') + QRIS + @elseif($transaksi->payment_method == 'bri') + Transfer Bank BRI + @elseif($transaksi->payment_method == 'dana') + DANA + @elseif($transaksi->payment_method == 'seabank') + SeaBank + @elseif($transaksi->payment_method == 'shopee') + ShopeePay + @else + COD + @endif +
+
+
+ +
+
+
+ Data Pembeli +
+ +
+
+
Nama:
+
{{ $transaksi->customer_name }}
+
+
+ +
+
+
Telepon:
+
{{ $transaksi->customer_phone }}
+
+
+ +
+
+
Email:
+
{{ $transaksi->customer_email }}
+
+
+ +
+
+
Alamat Pengiriman:
+
+ {{ $transaksi->shipping_address }}
+ {{ $transaksi->city }}, {{ $transaksi->province }} {{ $transaksi->postal_code }} +
+
+
+
+
+ + +
+
+
+ Produk yang Dipesan +
+ + @foreach($transaksi->details as $detail) +
+ {{ $detail->product_name }} +
+
{{ $detail->product_name }}
+

{{ number_format($detail->quantity) }} bibit × Rp {{ number_format($detail->price, 0, ',', '.') }}

+
+
+ Rp {{ number_format($detail->subtotal, 0, ',', '.') }} +
+
+ @endforeach + +
+ +
+ Subtotal + Rp {{ number_format($transaksi->subtotal, 0, ',', '.') }} +
+ +
+ Ongkos Kirim + Rp {{ number_format($transaksi->shipping_cost, 0, ',', '.') }} +
+ +
+ +
+
Total
+
Rp {{ number_format($transaksi->total_amount, 0, ',', '.') }}
+
+
+
+ + + +@if(in_array($transaksi->payment_method, ['qris', 'bri', 'dana', 'seabank', 'shopee'])) +
+
+
+ Informasi Pembayaran +
+ +
+ + Silakan lakukan pembayaran sesuai metode yang Anda pilih +
+ + @if($transaksi->payment_method == 'qris') + +
+

📌 Data QRIS:

+

Nama: ACHMAD BAYU AL GHOZALI

+

NMID: ID1025440155548

+
+
+
+ +
+ + + QRIS DANA +

Total Pembayaran:

+

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

+
+ GoPay + OVO + DANA + ShopeePay + LinkAja +
+ + Scan QR Code dengan aplikasi pembayaran digital apa saja yang mendukung QRIS + +
+ + @elseif($transaksi->payment_method == 'bri') + + + @elseif($transaksi->payment_method == 'dana') + + + @elseif($transaksi->payment_method == 'seabank') + + + @elseif($transaksi->payment_method == 'shopee') + + @endif + +
+ + Setelah pembayaran berhasil, mohon konfirmasi melalui WhatsApp ke 0813-3183-0561 dengan menyertakan bukti pembayaran dan nomor invoice: {{ $transaksi->invoice_number }} +
+
+
+@endif + +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+ + +@endsection \ No newline at end of file diff --git a/resources/views/contact.blade.php b/resources/views/contact.blade.php new file mode 100644 index 0000000..0ebf8d6 --- /dev/null +++ b/resources/views/contact.blade.php @@ -0,0 +1,178 @@ +@extends('layouts.app') + +@section('title', 'Contact Us - Shop Bibit Cabai Bondowoso') + +@section('content') +
+ +
+

Contact Us

+

Hubungi kami untuk informasi lebih lanjut tentang bibit cabai berkualitas

+
+ +
+ +
+
+
+

+ Shop Bibit Cabai Bondowoso +

+ +
+
+
Alamat
+

Jl. Raya Bondowoso No. 123
Bondowoso, Jawa Timur 68211

+
+ +
+
Telepon
+

+ +62 338 421 234 +

+
+ + + +
+
WhatsApp
+

+ + +62 812 3456 7890 + +

+
+ +
+
Jam Operasional
+

Senin - Jumat: 08:00 - 17:00

+

Sabtu: 08:00 - 15:00

+

Minggu: Tutup

+
+
+
+
+
+ + +
+
+
+

+ Kirim Pesan +

+ + @if(session('success')) + + @endif + +
+ @csrf +
+
+ + + @error('name') +
{{ $message }}
+ @enderror +
+ +
+ + + @error('email') +
{{ $message }}
+ @enderror +
+ +
+ + + @error('phone') +
{{ $message }}
+ @enderror +
+ +
+ + + @error('subject') +
{{ $message }}
+ @enderror +
+ +
+ + + @error('message') +
{{ $message }}
+ @enderror +
+ +
+ +
+
+
+
+
+
+
+ + +
+
+
+
+
Lokasi Kami
+
+
+
+ +
+
+
+
+
+
+@endsection \ No newline at end of file diff --git a/resources/views/home.blade.php b/resources/views/home.blade.php new file mode 100644 index 0000000..422ecbe --- /dev/null +++ b/resources/views/home.blade.php @@ -0,0 +1,265 @@ +@extends('layouts.app') + +@section('title', 'Home - Shop Bibit Cabai Bondowoso') + +@section('styles') + +@endsection + +@section('content') +
+ +
+
+
+
+

Bibit Cabai Berkualitas

+

Dapatkan bibit cabai terbaik dari Bondowoso untuk hasil panen yang optimal.

+ + Lihat Produk Terlaris + +
+
+ Bibit Cabai +
+
+
+
+ + +
+
+
+

BIBIT TERLARIS

+

Produk pilihan petani Bondowoso

+
+ + @if($featuredProducts->count() > 0) +
+ @foreach($featuredProducts as $product) +
+
+ @if($product->total_sold > 0) +
+ Terlaris +
+ @endif + +
+ {{ $product->name }} +
+ +
+
{{ $product->name }}
+
{{ $product->formatted_price }}
+ + @if($product->total_sold > 0) + + + Terjual: {{ number_format($product->total_sold) }} bibit + + @endif + +
+
+ + + Stok: {{ number_format($product->stock) }} + + @if($product->stock > 0) + Tersedia + @else + Habis + @endif +
+ + @if($product->stock > 0) +
+ + + +
+ + + @else + + @endif +
+
+
+
+ @endforeach +
+ + + @else +
+
+ + Belum ada data penjualan. Produk terlaris akan muncul setelah ada transaksi. +
+ + +
+
+
+ Sample Product +
+
Bibit Cabai Merah (Sample)
+
Rp 15.000
+ +
+
+
+
+
+ @endif +
+
+ + +
+
+
+
+
+
+ +
+
Bibit Berkualitas
+

Bibit pilihan dengan kualitas terjamin dan hasil optimal.

+
+
+
+
+
+ +
+
Pengiriman Cepat
+

Pengiriman ke seluruh Indonesia dengan packaging aman.

+
+
+
+
+
+ +
+
Garansi Tumbuh
+

Garansi bibit tumbuh atau uang kembali 100%.

+
+
+
+
+
+ +
+
Support 24/7
+

Tim support siap membantu Anda kapan saja.

+
+
+
+
+
+
+ + +@endsection \ No newline at end of file diff --git a/resources/views/layouts/app.blade.php b/resources/views/layouts/app.blade.php new file mode 100644 index 0000000..e75179d --- /dev/null +++ b/resources/views/layouts/app.blade.php @@ -0,0 +1,284 @@ + + + + + + @yield('title', 'TA-Bibit') + + + + + + + + + + + @yield('styles') + + + + + + + + @if(session('success')) + + @endif + + @if(session('error')) + + @endif + + + @auth + + @endauth + + +
+ @yield('content') +
+ + +
+
+
+
+
Bibit Cabai
+

Platform terbaik untuk kebutuhan bibit dan tanaman Anda.

+
+ @auth + + Admin Panel + + @else + + Admin Panel + + @endauth +
+
+
+
Hubungi Kami
+

info@tabibit.com

+

+62 123 456 789

+

Admin: admin@tabibit.com

+
+
+
+
+

© {{ date('Y') }} Bibit Cabai. All rights reserved. | + @auth + Admin Panel + @else + Admin Panel + @endauth +

+
+
+
+ + + + + + + + @yield('scripts') + + \ No newline at end of file diff --git a/resources/views/products/best-selling.blade.php b/resources/views/products/best-selling.blade.php new file mode 100644 index 0000000..b11e0e2 --- /dev/null +++ b/resources/views/products/best-selling.blade.php @@ -0,0 +1,271 @@ +@extends('layouts.app') + +@section('title', 'Produk Terlaris - Shop Bibit Cabai Bondowoso') + +@section('content') +
+ +
+

+ BIBIT TERLARIS +

+

Bibit cabai paling diminati petani di Bondowoso

+
+ + + @if(isset($statistics) && $statistics['total_products_sold'] > 0) +
+
+
+ +

{{ number_format($statistics['total_products_sold']) }}

+

Total Bibit Terjual

+
+
+
+
+ +

{{ number_format($statistics['total_completed_orders']) }}

+

Pesanan Selesai

+
+
+
+
+ +

{{ $statistics['most_popular_product']->name ?? 'Belum Ada' }}

+

Produk Terpopuler

+
+
+
+ @endif + + + @if($bestSellingProducts->count() > 0) +
+ @foreach($bestSellingProducts as $index => $product) +
+
+ + @if($index < 3) +
+ + #{{ $index + 1 }} + +
+ @endif + + +
+ + {{ number_format($product->total_sold) }} terjual + +
+ + + {{ $product->name }} + +
+ +
{{ $product->name }}
+ + +
+ Rp {{ number_format($product->price, 0, ',', '.') }} +
+ + +
+ + Stok: {{ number_format($product->stock) }} + + + {{ $product->stock > 0 ? 'Tersedia' : 'Habis' }} + +
+ + +
+ + {{ number_format($product->total_sold) }} terjual + {{ number_format($product->total_orders) }} pembeli + +
+ + +
+ @if($product->stock > 0) +
+ + + +
+ + + @else + + @endif +
+
+
+
+ @endforeach +
+ @else + +
+
+ +
+

Belum Ada Produk Terlaris

+

+ Produk terlaris akan muncul setelah ada transaksi yang selesai.
+ Saat ini belum ada produk yang terjual. +

+ + Kembali ke Beranda + +
+ @endif +
+@endsection + +@push('styles') + +@endpush + +@push('scripts') + +@endpush \ 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..c893b80 --- /dev/null +++ b/resources/views/welcome.blade.php @@ -0,0 +1,277 @@ + + + + + + + Laravel + + + + + + + @if (file_exists(public_path('build/manifest.json')) || file_exists(public_path('hot'))) + @vite(['resources/css/app.css', 'resources/js/app.js']) + @else + + @endif + + +
+ @if (Route::has('login')) + + @endif +
+
+
+
+

Let's get started

+

Laravel has an incredibly rich ecosystem.
We suggest starting with the following.

+ + +
+
+ {{-- Laravel Logo --}} + + + + + + + + + + + {{-- Light Mode 12 SVG --}} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {{-- Dark Mode 12 SVG --}} + +
+
+
+
+ + @if (Route::has('login')) + + @endif + + 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..ae75339 --- /dev/null +++ b/routes/web.php @@ -0,0 +1,143 @@ +name('home'); + +// Produk terlaris +Route::get('/produk-terlaris', [ProductRecommendationController::class, 'index']) + ->name('products.best-selling'); + + +// Contact Us +Route::get('/contact', [ContactController::class, 'index'])->name('contact'); +Route::post('/contact', [ContactController::class, 'store'])->name('contact.store'); + +/* +|-------------------------------------------------------------------------- +| Checkout Routes - PINDAH KE SINI (di luar admin group) +|-------------------------------------------------------------------------- +*/ + +Route::prefix('checkout')->name('checkout.')->group(function () { + Route::get('/', [CheckoutController::class, 'index'])->name('index'); + Route::post('/process', [CheckoutController::class, 'process'])->name('process'); + Route::get('/success/{id}', [CheckoutController::class, 'success'])->name('success'); +}); + +/* +|-------------------------------------------------------------------------- +| Authentication Routes +|-------------------------------------------------------------------------- +*/ + +Route::middleware('guest')->group(function () { + Route::get('/login', [LoginController::class, 'showLoginForm'])->name('login'); + Route::post('/login', [LoginController::class, 'login']); + Route::get('/register', [RegisterController::class, 'showRegistrationForm'])->name('register'); + Route::post('/register', [RegisterController::class, 'register']); +}); + +Route::post('/logout', [LoginController::class, 'logout'])->name('logout')->middleware('auth'); + +/* +|-------------------------------------------------------------------------- +| API Routes +|-------------------------------------------------------------------------- +*/ + +Route::prefix('api')->name('api.')->group(function () { + Route::get('/best-selling-products', [ProductRecommendationController::class, 'apiGetBestSelling']) + ->name('best-selling-products'); +}); + +/* +|-------------------------------------------------------------------------- +| Admin Routes +|-------------------------------------------------------------------------- +*/ + +Route::prefix('admin')->name('admin.')->group(function () { + + // Admin login routes (accessible to guests) + Route::middleware('guest')->group(function () { + Route::get('/login', function () { + return view('admin.login'); + })->name('login.form'); + + Route::post('/login', [AdminController::class, 'login'])->name('login'); + }); + + // Protected admin routes (requires authentication) + Route::middleware(['auth', 'web'])->group(function () { + + // Dashboard + Route::get('/dashboard', function () { + $totalProducts = \App\Models\Product::count(); + $activeProducts = \App\Models\Product::where('status', 'aktif')->count(); + $totalSold = \App\Models\Product::sum('sold') ?? 0; + $lowStock = \App\Models\Product::where('stock', '<=', 10)->count(); + + return view('admin.dashboard', compact('totalProducts', 'activeProducts', 'totalSold', 'lowStock')); + })->name('dashboard'); + + // Product CRUD Routes + Route::get('/products', [ProductController::class, 'index'])->name('products.index'); + Route::get('/products/create', [ProductController::class, 'create'])->name('products.create'); + Route::post('/products', [ProductController::class, 'store'])->name('products.store'); + Route::get('/products/{product}', [ProductController::class, 'show'])->name('products.show'); + Route::get('/products/{product}/edit', [ProductController::class, 'edit'])->name('products.edit'); + Route::put('/products/{product}', [ProductController::class, 'update'])->name('products.update'); + Route::delete('/products/{product}', [ProductController::class, 'destroy'])->name('products.delete'); + + // Transaksi Management Routes + Route::get('/transaksis', [TransaksiController::class, 'index'])->name('transaksis.index'); + Route::get('/transaksis/{id}', [TransaksiController::class, 'show'])->name('transaksis.show'); + Route::get('/transaksis/{id}/edit', [TransaksiController::class, 'edit'])->name('transaksis.edit'); + Route::put('/transaksis/{id}', [TransaksiController::class, 'update'])->name('transaksis.update'); + Route::delete('/transaksis/{id}', [TransaksiController::class, 'destroy'])->name('transaksis.destroy'); + Route::post('/transaksis/{id}/update-status', [TransaksiController::class, 'updateStatus'])->name('transaksis.update-status'); + Route::post('/transaksis/{id}/update-payment-status', [TransaksiController::class, 'updatePaymentStatus'])->name('transaksis.update-payment-status'); + Route::post('/transaksis/{id}/cancel', [TransaksiController::class, 'cancel'])->name('transaksis.cancel'); + Route::get('/transaksis-export', [TransaksiController::class, 'export'])->name('transaksis.export'); + Route::get('/transaksis/{id}/print', [TransaksiController::class, 'printInvoice'])->name('transaksis.print'); + + + Route::get('/users', [UserController::class, 'index'])->name('users.index'); + Route::get('/users/create', [UserController::class, 'create'])->name('users.create'); + Route::post('/users', [UserController::class, 'store'])->name('users.store'); + Route::get('/users/{user}', [UserController::class, 'show'])->name('users.show'); + Route::get('/users/{user}/edit', [UserController::class, 'edit'])->name('users.edit'); + Route::put('/users/{user}', [UserController::class, 'update'])->name('users.update'); + Route::delete('/users/{user}', [UserController::class, 'destroy'])->name('users.destroy'); + + + // Other admin routes + Route::get('/orders', [AdminController::class, 'orders'])->name('orders'); + Route::get('/users', [AdminController::class, 'users'])->name('users'); + Route::get('/reports', [AdminController::class, 'reports'])->name('reports'); + Route::get('/settings', [AdminController::class, 'settings'])->name('settings'); + + // Admin logout + Route::post('/logout', [AdminController::class, 'logout'])->name('logout'); + }); +}); // ← Penutup admin group yang benar (HANYA SATU) + + 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/ta_bibit_cabai b/ta_bibit_cabai new file mode 100644 index 0000000..e69de29 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); + } +} diff --git a/vite.config.js b/vite.config.js new file mode 100644 index 0000000..29fbfe9 --- /dev/null +++ b/vite.config.js @@ -0,0 +1,13 @@ +import { defineConfig } from 'vite'; +import laravel from 'laravel-vite-plugin'; +import tailwindcss from '@tailwindcss/vite'; + +export default defineConfig({ + plugins: [ + laravel({ + input: ['resources/css/app.css', 'resources/js/app.js'], + refresh: true, + }), + tailwindcss(), + ], +});