From 981dbe45244d1ecc307df5452bd5f264e44ba136 Mon Sep 17 00:00:00 2001 From: Dimas <124556325+Diz09@users.noreply.github.com> Date: Sun, 22 Jun 2025 08:57:22 +0700 Subject: [PATCH] first --- .editorconfig | 19 + .env.example | 59 + .gitattributes | 12 + .gitignore | 20 + .vs/slnx.sqlite | Bin 0 -> 90112 bytes README.md | 67 + app/Console/Kernel.php | 27 + app/Exceptions/Handler.php | 30 + app/Exports/GajiKloterExport.php | 49 + app/Exports/LaporanBarangExport.php | 35 + app/Exports/LaporanKaryawanExport.php | 48 + app/Exports/LaporanSupplierExport.php | 30 + app/Exports/LaporanTransaksiExport.php | 89 + .../Auth/AuthenticatedSessionController.php | 45 + .../Controllers/Auth/RegisterController.php | 35 + app/Http/Controllers/BarangController.php | 246 + app/Http/Controllers/Controller.php | 12 + app/Http/Controllers/DashboardController.php | 171 + app/Http/Controllers/GajiController.php | 263 + app/Http/Controllers/KaryawanController.php | 74 + app/Http/Controllers/LaporanController.php | 326 + app/Http/Controllers/PresensiController.php | 161 + app/Http/Controllers/SupplierController.php | 154 + app/Http/Controllers/TonIkanController.php | 28 + app/Http/Controllers/TransaksiController.php | 367 + app/Http/Kernel.php | 69 + app/Http/Middleware/Authenticate.php | 17 + app/Http/Middleware/CheckRole.php | 26 + app/Http/Middleware/EncryptCookies.php | 17 + .../PreventRequestsDuringMaintenance.php | 17 + .../Middleware/RedirectIfAuthenticated.php | 30 + app/Http/Middleware/TrimStrings.php | 19 + app/Http/Middleware/TrustHosts.php | 20 + app/Http/Middleware/TrustProxies.php | 28 + app/Http/Middleware/ValidateSignature.php | 22 + app/Http/Middleware/VerifyCsrfToken.php | 17 + app/Models/Barang.php | 45 + app/Models/BarangPendukung.php | 21 + app/Models/BarangProduk.php | 21 + app/Models/HistoryGajiKloter.php | 52 + app/Models/Karyawan.php | 29 + app/Models/Kloter.php | 42 + app/Models/KloterKaryawan.php | 22 + app/Models/Konsumen.php | 18 + app/Models/Pemasok.php | 18 + app/Models/Pemasukan.php | 18 + app/Models/Pengeluaran.php | 18 + app/Models/Presensi.php | 31 + app/Models/Supplier.php | 34 + app/Models/TonIkan.php | 22 + app/Models/Transaksi.php | 65 + app/Models/User.php | 30 + app/Providers/AppServiceProvider.php | 24 + app/Providers/AuthServiceProvider.php | 26 + app/Providers/BroadcastServiceProvider.php | 19 + app/Providers/EventServiceProvider.php | 38 + app/Providers/RouteServiceProvider.php | 65 + artisan | 54 + bootstrap/app.php | 56 + bootstrap/cache/.gitignore | 3 + composer.json | 68 + composer.lock | 8776 +++++++++++++++++ config/app.php | 189 + config/auth.php | 115 + config/broadcasting.php | 71 + config/cache.php | 111 + config/cors.php | 34 + config/database.php | 151 + config/filesystems.php | 76 + config/hashing.php | 54 + config/logging.php | 131 + config/mail.php | 134 + config/queue.php | 109 + config/sanctum.php | 83 + config/services.php | 34 + config/session.php | 214 + config/view.php | 36 + database/.gitignore | 1 + database/factories/UserFactory.php | 44 + .../2014_10_12_000000_create_users_table.php | 33 + ...000_create_password_reset_tokens_table.php | 28 + ..._08_19_000000_create_failed_jobs_table.php | 32 + ...01_create_personal_access_tokens_table.php | 33 + .../2025_04_18_132130_create_karyawan.php | 30 + ...2025_04_24_002921_create_kloters_table.php | 28 + .../2025_04_24_132131_create_presensis.php | 32 + ...25_04_24_224135_create_ton_ikans_table.php | 30 + .../2025_04_28_003550_create_barang_table.php | 31 + ..._005428_create_barang_pendukungs_table.php | 29 + ..._28_020024_create_barang_produks_table.php | 22 + ...025_04_28_081752_create_supliers_table.php | 24 + ...025_04_28_081753_create_pemasoks_table.php | 29 + ...25_04_28_081754_create_konsumens_table.php | 29 + ...5_04_28_081907_create_pemasukans_table.php | 21 + ...04_28_082004_create_pengeluarans_table.php | 21 + ...5_132952_create_kloter_karyawans_table.php | 29 + ...3105_create_history_gaji_kloters_table.php | 34 + ...5_06_02_165255_create_transaksis_table.php | 29 + database/seeders/BarangPendukungSeeder.php | 24 + database/seeders/BarangProdukSeeder.php | 24 + database/seeders/BarangSeeder.php | 80 + database/seeders/DatabaseSeeder.php | 55 + database/seeders/KaryawanSeeder.php | 34 + database/seeders/KloterSeeder.php | 35 + database/seeders/KonsumenSeeder.php | 21 + database/seeders/PemasokSeeder.php | 21 + database/seeders/PemasukanSeeder.php | 18 + database/seeders/PengeluaranSeeder.php | 18 + database/seeders/PresensiSeeder.php | 224 + database/seeders/SupplierSeeder.php | 23 + database/seeders/TonIkanSeeder.php | 55 + database/seeders/TransaksiSeeder.php | 45 + database/seeders/UserSeeder.php | 38 + package.json | 14 + phpunit.xml | 34 + public/.htaccess | 22 + public/css/extra.css | 29 + public/css/operator.css | 316 + public/css/pimpinan.css | 276 + public/favicon.ico | Bin 0 -> 270398 bytes public/favicon_old.ico | 0 public/index.php | 56 + public/js/barang.js | 179 + public/js/dashboardPimpinan.js | 63 + public/js/gaji.js | 87 + public/js/karyawan.js | 59 + public/js/laporanTransaksi.js | 49 + public/js/presensi.js | 130 + public/js/supplier.js | 60 + public/js/transaksi.js | 261 + public/robots.txt | 3 + resources/css/app.css | 0 resources/js/app.js | 1 + resources/js/bootstrap.js | 32 + resources/views/dashboard/operator.blade.php | 96 + resources/views/dashboard/pimpinan.blade.php | 151 + .../views/layouts/app_operator.blade.php | 115 + .../views/layouts/app_pimpinan.blade.php | 83 + resources/views/login.blade.php | 58 + .../views/operator/barang/create.blade.php | 67 + .../views/operator/barang/edit.blade.php | 55 + .../views/operator/barang/index.blade.php | 145 + .../views/operator/dashboard/index.blade.php | 89 + .../views/operator/gaji/detailGaji.blade.php | 95 + resources/views/operator/gaji/index.blade.php | 88 + .../views/operator/gaji/modal-edit.blade.php | 33 + .../views/operator/karyawan/create.blade.php | 81 + .../views/operator/karyawan/edit.blade.php | 83 + .../views/operator/karyawan/index.blade.php | 87 + .../presensi/_pilihKaryawan.blade.php | 31 + .../views/operator/presensi/edit.blade.php | 40 + .../views/operator/presensi/index.blade.php | 152 + .../views/operator/supplier/create.blade.php | 50 + .../views/operator/supplier/edit.blade.php | 50 + .../views/operator/supplier/index.blade.php | 126 + .../views/operator/transaksi/create.blade.php | 101 + .../views/operator/transaksi/edit.blade.php | 94 + .../views/operator/transaksi/index.blade.php | 129 + .../views/pimpinan/dashboard/index.blade.php | 77 + .../pimpinan/laporan_barang/_table.blade.php | 27 + .../pimpinan/laporan_barang/index.blade.php | 78 + .../laporan_karyawan/_table.blade.php | 40 + .../pimpinan/laporan_karyawan/index.blade.php | 89 + .../laporan_supplier/_table.blade.php | 28 + .../pimpinan/laporan_supplier/index.blade.php | 79 + .../laporan_transaksi/_table.blade.php | 32 + .../laporan_transaksi/index.blade.php | 33 + .../pimpinan/laporan_transaksi/pdf.blade.php | 88 + resources/views/register.blade.php | 63 + resources/views/welcome.blade.php | 133 + routes/api.php | 19 + routes/channels.php | 18 + routes/console.php | 19 + routes/web.php | 169 + start_laravel.bat | 3 + storage/app/.gitignore | 4 + storage/app/public/.gitignore | 3 + storage/framework/.gitignore | 10 + storage/framework/cache/.gitignore | 4 + storage/framework/cache/data/.gitignore | 3 + storage/framework/sessions/.gitignore | 3 + storage/framework/testing/.gitignore | 3 + storage/framework/views/.gitignore | 3 + storage/logs/.gitignore | 3 + tests/CreatesApplication.php | 22 + tests/Feature/ExampleTest.php | 20 + tests/TestCase.php | 11 + tests/Unit/ExampleTest.php | 17 + vite.config.js | 12 + 189 files changed, 19993 insertions(+) create mode 100644 .editorconfig create mode 100644 .env.example create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 .vs/slnx.sqlite create mode 100644 README.md create mode 100644 app/Console/Kernel.php create mode 100644 app/Exceptions/Handler.php create mode 100644 app/Exports/GajiKloterExport.php create mode 100644 app/Exports/LaporanBarangExport.php create mode 100644 app/Exports/LaporanKaryawanExport.php create mode 100644 app/Exports/LaporanSupplierExport.php create mode 100644 app/Exports/LaporanTransaksiExport.php create mode 100644 app/Http/Controllers/Auth/AuthenticatedSessionController.php create mode 100644 app/Http/Controllers/Auth/RegisterController.php create mode 100644 app/Http/Controllers/BarangController.php create mode 100644 app/Http/Controllers/Controller.php create mode 100644 app/Http/Controllers/DashboardController.php create mode 100644 app/Http/Controllers/GajiController.php create mode 100644 app/Http/Controllers/KaryawanController.php create mode 100644 app/Http/Controllers/LaporanController.php create mode 100644 app/Http/Controllers/PresensiController.php create mode 100644 app/Http/Controllers/SupplierController.php create mode 100644 app/Http/Controllers/TonIkanController.php create mode 100644 app/Http/Controllers/TransaksiController.php create mode 100644 app/Http/Kernel.php create mode 100644 app/Http/Middleware/Authenticate.php create mode 100644 app/Http/Middleware/CheckRole.php create mode 100644 app/Http/Middleware/EncryptCookies.php create mode 100644 app/Http/Middleware/PreventRequestsDuringMaintenance.php create mode 100644 app/Http/Middleware/RedirectIfAuthenticated.php create mode 100644 app/Http/Middleware/TrimStrings.php create mode 100644 app/Http/Middleware/TrustHosts.php create mode 100644 app/Http/Middleware/TrustProxies.php create mode 100644 app/Http/Middleware/ValidateSignature.php create mode 100644 app/Http/Middleware/VerifyCsrfToken.php create mode 100644 app/Models/Barang.php create mode 100644 app/Models/BarangPendukung.php create mode 100644 app/Models/BarangProduk.php create mode 100644 app/Models/HistoryGajiKloter.php create mode 100644 app/Models/Karyawan.php create mode 100644 app/Models/Kloter.php create mode 100644 app/Models/KloterKaryawan.php create mode 100644 app/Models/Konsumen.php create mode 100644 app/Models/Pemasok.php create mode 100644 app/Models/Pemasukan.php create mode 100644 app/Models/Pengeluaran.php create mode 100644 app/Models/Presensi.php create mode 100644 app/Models/Supplier.php create mode 100644 app/Models/TonIkan.php create mode 100644 app/Models/Transaksi.php create mode 100644 app/Models/User.php create mode 100644 app/Providers/AppServiceProvider.php create mode 100644 app/Providers/AuthServiceProvider.php create mode 100644 app/Providers/BroadcastServiceProvider.php create mode 100644 app/Providers/EventServiceProvider.php create mode 100644 app/Providers/RouteServiceProvider.php create mode 100644 artisan create mode 100644 bootstrap/app.php create mode 100644 bootstrap/cache/.gitignore 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/broadcasting.php create mode 100644 config/cache.php create mode 100644 config/cors.php create mode 100644 config/database.php create mode 100644 config/filesystems.php create mode 100644 config/hashing.php create mode 100644 config/logging.php create mode 100644 config/mail.php create mode 100644 config/queue.php create mode 100644 config/sanctum.php create mode 100644 config/services.php create mode 100644 config/session.php create mode 100644 config/view.php create mode 100644 database/.gitignore create mode 100644 database/factories/UserFactory.php create mode 100644 database/migrations/2014_10_12_000000_create_users_table.php create mode 100644 database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php create mode 100644 database/migrations/2019_08_19_000000_create_failed_jobs_table.php create mode 100644 database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php create mode 100644 database/migrations/2025_04_18_132130_create_karyawan.php create mode 100644 database/migrations/2025_04_24_002921_create_kloters_table.php create mode 100644 database/migrations/2025_04_24_132131_create_presensis.php create mode 100644 database/migrations/2025_04_24_224135_create_ton_ikans_table.php create mode 100644 database/migrations/2025_04_28_003550_create_barang_table.php create mode 100644 database/migrations/2025_04_28_005428_create_barang_pendukungs_table.php create mode 100644 database/migrations/2025_04_28_020024_create_barang_produks_table.php create mode 100644 database/migrations/2025_04_28_081752_create_supliers_table.php create mode 100644 database/migrations/2025_04_28_081753_create_pemasoks_table.php create mode 100644 database/migrations/2025_04_28_081754_create_konsumens_table.php create mode 100644 database/migrations/2025_04_28_081907_create_pemasukans_table.php create mode 100644 database/migrations/2025_04_28_082004_create_pengeluarans_table.php create mode 100644 database/migrations/2025_05_25_132952_create_kloter_karyawans_table.php create mode 100644 database/migrations/2025_05_25_143105_create_history_gaji_kloters_table.php create mode 100644 database/migrations/2025_06_02_165255_create_transaksis_table.php create mode 100644 database/seeders/BarangPendukungSeeder.php create mode 100644 database/seeders/BarangProdukSeeder.php create mode 100644 database/seeders/BarangSeeder.php create mode 100644 database/seeders/DatabaseSeeder.php create mode 100644 database/seeders/KaryawanSeeder.php create mode 100644 database/seeders/KloterSeeder.php create mode 100644 database/seeders/KonsumenSeeder.php create mode 100644 database/seeders/PemasokSeeder.php create mode 100644 database/seeders/PemasukanSeeder.php create mode 100644 database/seeders/PengeluaranSeeder.php create mode 100644 database/seeders/PresensiSeeder.php create mode 100644 database/seeders/SupplierSeeder.php create mode 100644 database/seeders/TonIkanSeeder.php create mode 100644 database/seeders/TransaksiSeeder.php create mode 100644 database/seeders/UserSeeder.php create mode 100644 package.json create mode 100644 phpunit.xml create mode 100644 public/.htaccess create mode 100644 public/css/extra.css create mode 100644 public/css/operator.css create mode 100644 public/css/pimpinan.css create mode 100644 public/favicon.ico create mode 100644 public/favicon_old.ico create mode 100644 public/index.php create mode 100644 public/js/barang.js create mode 100644 public/js/dashboardPimpinan.js create mode 100644 public/js/gaji.js create mode 100644 public/js/karyawan.js create mode 100644 public/js/laporanTransaksi.js create mode 100644 public/js/presensi.js create mode 100644 public/js/supplier.js create mode 100644 public/js/transaksi.js 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/dashboard/operator.blade.php create mode 100644 resources/views/dashboard/pimpinan.blade.php create mode 100644 resources/views/layouts/app_operator.blade.php create mode 100644 resources/views/layouts/app_pimpinan.blade.php create mode 100644 resources/views/login.blade.php create mode 100644 resources/views/operator/barang/create.blade.php create mode 100644 resources/views/operator/barang/edit.blade.php create mode 100644 resources/views/operator/barang/index.blade.php create mode 100644 resources/views/operator/dashboard/index.blade.php create mode 100644 resources/views/operator/gaji/detailGaji.blade.php create mode 100644 resources/views/operator/gaji/index.blade.php create mode 100644 resources/views/operator/gaji/modal-edit.blade.php create mode 100644 resources/views/operator/karyawan/create.blade.php create mode 100644 resources/views/operator/karyawan/edit.blade.php create mode 100644 resources/views/operator/karyawan/index.blade.php create mode 100644 resources/views/operator/presensi/_pilihKaryawan.blade.php create mode 100644 resources/views/operator/presensi/edit.blade.php create mode 100644 resources/views/operator/presensi/index.blade.php create mode 100644 resources/views/operator/supplier/create.blade.php create mode 100644 resources/views/operator/supplier/edit.blade.php create mode 100644 resources/views/operator/supplier/index.blade.php create mode 100644 resources/views/operator/transaksi/create.blade.php create mode 100644 resources/views/operator/transaksi/edit.blade.php create mode 100644 resources/views/operator/transaksi/index.blade.php create mode 100644 resources/views/pimpinan/dashboard/index.blade.php create mode 100644 resources/views/pimpinan/laporan_barang/_table.blade.php create mode 100644 resources/views/pimpinan/laporan_barang/index.blade.php create mode 100644 resources/views/pimpinan/laporan_karyawan/_table.blade.php create mode 100644 resources/views/pimpinan/laporan_karyawan/index.blade.php create mode 100644 resources/views/pimpinan/laporan_supplier/_table.blade.php create mode 100644 resources/views/pimpinan/laporan_supplier/index.blade.php create mode 100644 resources/views/pimpinan/laporan_transaksi/_table.blade.php create mode 100644 resources/views/pimpinan/laporan_transaksi/index.blade.php create mode 100644 resources/views/pimpinan/laporan_transaksi/pdf.blade.php create mode 100644 resources/views/register.blade.php create mode 100644 resources/views/welcome.blade.php create mode 100644 routes/api.php create mode 100644 routes/channels.php create mode 100644 routes/console.php create mode 100644 routes/web.php create mode 100644 start_laravel.bat create mode 100644 storage/app/.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 tests/CreatesApplication.php 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..74ce001 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,19 @@ +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..4247273 --- /dev/null +++ b/.env.example @@ -0,0 +1,59 @@ +APP_NAME=Laravel +APP_ENV=local +APP_KEY= +APP_DEBUG=true +APP_URL=http://localhost + +LOG_CHANNEL=stack +LOG_DEPRECATIONS_CHANNEL=null +LOG_LEVEL=debug + +DB_CONNECTION=mysql +DB_HOST=127.0.0.1 +DB_PORT=3306 +DB_DATABASE=ikan_kering +DB_USERNAME=root +DB_PASSWORD= + +BROADCAST_DRIVER=log +CACHE_DRIVER=file +FILESYSTEM_DISK=local +QUEUE_CONNECTION=sync +SESSION_DRIVER=file +SESSION_LIFETIME=120 + +MEMCACHED_HOST=127.0.0.1 + +REDIS_HOST=127.0.0.1 +REDIS_PASSWORD=null +REDIS_PORT=6379 + +MAIL_MAILER=smtp +MAIL_HOST=mailpit +MAIL_PORT=1025 +MAIL_USERNAME=null +MAIL_PASSWORD=null +MAIL_ENCRYPTION=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 + +PUSHER_APP_ID= +PUSHER_APP_KEY= +PUSHER_APP_SECRET= +PUSHER_HOST= +PUSHER_PORT=443 +PUSHER_SCHEME=https +PUSHER_APP_CLUSTER=mt1 + +VITE_APP_NAME="${APP_NAME}" +VITE_PUSHER_APP_KEY="${PUSHER_APP_KEY}" +VITE_PUSHER_HOST="${PUSHER_HOST}" +VITE_PUSHER_PORT="${PUSHER_PORT}" +VITE_PUSHER_SCHEME="${PUSHER_SCHEME}" +VITE_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}" diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9d777ca --- /dev/null +++ b/.gitattributes @@ -0,0 +1,12 @@ +* 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..f739b1b --- /dev/null +++ b/.gitignore @@ -0,0 +1,20 @@ +/.phpunit.cache +/node_modules +/public/build +/public/hot +/public/storage +/storage/*.key +/vendor +.env +.env.backup +.env.production +.phpunit.result.cache +Homestead.json +Homestead.yaml +auth.json +npm-debug.log +yarn-error.log +/.fleet +/.idea +/.vscode + diff --git a/.vs/slnx.sqlite b/.vs/slnx.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..3c1b9860f925b761fcc99c06cfd781da63e8fa3f GIT binary patch literal 90112 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 Logo

+ +

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

+ +## About Laravel + +Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as: + +- [Simple, fast routing engine](https://laravel.com/docs/routing). +- [Powerful dependency injection container](https://laravel.com/docs/container). +- Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage. +- Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent). +- Database agnostic [schema migrations](https://laravel.com/docs/migrations). +- [Robust background job processing](https://laravel.com/docs/queues). +- [Real-time event broadcasting](https://laravel.com/docs/broadcasting). + +Laravel is accessible, powerful, and provides tools required for large, robust applications. + +## Learning Laravel + +Laravel has the most extensive and thorough [documentation](https://laravel.com/docs) and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework. + +You may also try the [Laravel Bootcamp](https://bootcamp.laravel.com), where you will be guided through building a modern Laravel application from scratch. + +If you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains thousands of video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library. + +## Laravel Sponsors + +We would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the [Laravel Partners program](https://partners.laravel.com). + +### Premium Partners + +- **[Vehikl](https://vehikl.com/)** +- **[Tighten Co.](https://tighten.co)** +- **[WebReinvent](https://webreinvent.com/)** +- **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)** +- **[64 Robots](https://64robots.com)** +- **[Curotec](https://www.curotec.com/services/technologies/laravel/)** +- **[Cyber-Duck](https://cyber-duck.co.uk)** +- **[DevSquad](https://devsquad.com/hire-laravel-developers)** +- **[Jump24](https://jump24.co.uk)** +- **[Redberry](https://redberry.international/laravel/)** +- **[Active Logic](https://activelogic.com)** +- **[byte5](https://byte5.de)** +- **[OP.GG](https://op.gg)** + +## Contributing + +Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions). + +## Code of Conduct + +In order to ensure that the Laravel community is welcoming to all, please review and abide by the [Code of Conduct](https://laravel.com/docs/contributions#code-of-conduct). + +## Security Vulnerabilities + +If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [taylor@laravel.com](mailto:taylor@laravel.com). All security vulnerabilities will be promptly addressed. + +## License + +The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT). + diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php new file mode 100644 index 0000000..e6b9960 --- /dev/null +++ b/app/Console/Kernel.php @@ -0,0 +1,27 @@ +command('inspire')->hourly(); + } + + /** + * Register the commands for the application. + */ + protected function commands(): void + { + $this->load(__DIR__.'/Commands'); + + require base_path('routes/console.php'); + } +} diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php new file mode 100644 index 0000000..56af264 --- /dev/null +++ b/app/Exceptions/Handler.php @@ -0,0 +1,30 @@ + + */ + protected $dontFlash = [ + 'current_password', + 'password', + 'password_confirmation', + ]; + + /** + * Register the exception handling callbacks for the application. + */ + public function register(): void + { + $this->reportable(function (Throwable $e) { + // + }); + } +} diff --git a/app/Exports/GajiKloterExport.php b/app/Exports/GajiKloterExport.php new file mode 100644 index 0000000..125da7e --- /dev/null +++ b/app/Exports/GajiKloterExport.php @@ -0,0 +1,49 @@ +data = $data; + $this->tanggalUnik = $tanggalUnik; + } + + public function collection() + { + return collect($this->data)->map(function ($item) { + $row = [ + 'Nama' => $item['karyawan']->nama, + 'Jenis Kelamin' => $item['karyawan']->jenis_kelamin, + ]; + + foreach ($this->tanggalUnik as $tanggal) { + $key = \Carbon\Carbon::parse($tanggal)->format('Y-m-d'); + $label = \Carbon\Carbon::parse($tanggal)->format('d-m-Y'); + $row[$label] = number_format($item['jam_per_tanggal'][$key] ?? 0, 2); + } + + $row['Total Jam Kerja'] = number_format($item['total_jam'], 2); + $row['Gaji per Jam'] = $item['gaji_per_jam']; + $row['Total Gaji'] = $item['total_gaji']; + + return $row; + }); + } + + public function headings(): array + { + $headings = ['Nama', 'Jenis Kelamin']; + foreach ($this->tanggalUnik as $tanggal) { + $headings[] = \Carbon\Carbon::parse($tanggal)->format('d-m-Y'); + } + return array_merge($headings, ['Total Jam Kerja', 'Gaji per Jam', 'Total Gaji']); + } +} diff --git a/app/Exports/LaporanBarangExport.php b/app/Exports/LaporanBarangExport.php new file mode 100644 index 0000000..33c854c --- /dev/null +++ b/app/Exports/LaporanBarangExport.php @@ -0,0 +1,35 @@ +barangs = $barangs; + } + + public function collection() + { + return $this->barangs->map(function ($b) { + return [ + 'kode' => $b->produk->kode ?? $b->pendukung->kode ?? '-', + 'nama_barang' => $b->nama_barang, + 'exp' => optional($b->exp)->format('d-m-Y'), + 'harga' => $b->harga, + 'qty' => $b->qty, + ]; + }); + } + + public function headings(): array + { + return ['Kode', 'Nama Barang', 'Exp', 'Harga', 'Qty']; + } +} diff --git a/app/Exports/LaporanKaryawanExport.php b/app/Exports/LaporanKaryawanExport.php new file mode 100644 index 0000000..3a2324b --- /dev/null +++ b/app/Exports/LaporanKaryawanExport.php @@ -0,0 +1,48 @@ +data = $data; + } + + public function collection() + { + return collect($this->data)->map(function ($item, $index) { + $gajiPerKloter = collect($item['gaji_per_kloter'])->map(function ($gpk) { + return "Kloter ID {$gpk['kloter_id']}: Rp " . number_format($gpk['gaji'], 0, ',', '.') . " ({$gpk['total_jam']} jam)"; + })->implode("\n"); // dipisah baris di Excel + + return [ + 'No' => $index + 1, + 'Nama' => $item['karyawan']->nama, + 'Jenis Kelamin' => $item['karyawan']->jenis_kelamin === 'L' ? 'Laki-laki' : 'Perempuan', + 'No Telepon' => $item['karyawan']->no_telepon, + 'Total Jam Kerja' => $item['total_jam_kerja'] . ' Jam', + 'Gaji per Kloter' => $gajiPerKloter, + 'Total Gaji' => 'Rp ' . number_format($item['total_gaji'], 0, ',', '.'), + ]; + }); + } + + public function headings(): array + { + return [ + 'No', + 'Nama Pekerja', + 'Jenis Kelamin', + 'No Telepon', + 'Total Jam Kerja', + 'Gaji per Kloter', + 'Total Gaji', + ]; + } +} diff --git a/app/Exports/LaporanSupplierExport.php b/app/Exports/LaporanSupplierExport.php new file mode 100644 index 0000000..b74e7ba --- /dev/null +++ b/app/Exports/LaporanSupplierExport.php @@ -0,0 +1,30 @@ +data = $data; + } + + public function collection() + { + return $this->data->map(function ($supplier) { + return [ + 'Nama' => $supplier->nama, + 'Kategori' => $supplier->pemasok ? 'Pemasok' : 'Konsumen', + 'Alamat' => $supplier->alamat, + 'No Telepon' => $supplier->no_tlp, + 'No Rekening' => $supplier->no_rekening ?? '-', + ]; + }); + } +} diff --git a/app/Exports/LaporanTransaksiExport.php b/app/Exports/LaporanTransaksiExport.php new file mode 100644 index 0000000..fe8ce82 --- /dev/null +++ b/app/Exports/LaporanTransaksiExport.php @@ -0,0 +1,89 @@ +tanggalMulai = $tanggalMulai; + $this->tanggalAkhir = $tanggalAkhir; + $this->q = $q; + } + + public function collection() + { + $query = Transaksi::with([ + 'barang.produk', + 'barang.pendukung', + 'supplier', + 'pemasukan', + 'pengeluaran' + ]); + + if ($this->tanggalMulai && $this->tanggalAkhir) { + $query->whereBetween('waktu_transaksi', [ + $this->tanggalMulai . ' 00:00:00', + $this->tanggalAkhir . ' 23:59:59' + ]); + } + + if ($this->q) { + $search = $this->q; + $query->where(function ($q) use ($search) { + $q->whereHas('barang', fn($q1) => $q1->where('nama_barang', 'like', "%$search%")) + ->orWhereHas('supplier', fn($q2) => $q2->where('nama', 'like', "%$search%")) + ->orWhereHas('barang.produk', fn($q3) => $q3->where('kode', 'like', "%$search%")) + ->orWhereHas('barang.pendukung', fn($q4) => $q4->where('kode', 'like', "%$search%")) + ->orWhereHas('pemasukan', fn($q5) => $q5->where('kode', 'like', "%$search%")) + ->orWhereHas('pengeluaran', fn($q6) => $q6->where('kode', 'like', "%$search%")); + }); + } + + $transaksis = $query->orderBy('waktu_transaksi')->get(); + + $totalSebelumnya = 0; + + return $transaksis->map(function ($trx) use (&$totalSebelumnya) { + $kodeBarang = $trx->barang->produk->kode ?? $trx->barang->pendukung->kode ?? '-'; + $masuk = $trx->pemasukan_id ? $trx->jumlahRp : 0; + $keluar = $trx->pengeluaran_id ? $trx->jumlahRp : 0; + + $totalSekarang = $totalSebelumnya + $masuk - $keluar; + $totalSebelumnya = $totalSekarang; + + return [ + 'Waktu' => $trx->waktu_transaksi, + 'Kode Transaksi' => $trx->pemasukan->kode ?? $trx->pengeluaran->kode ?? '-', + 'Kode Barang' => $kodeBarang, + 'Supplier' => $trx->supplier->nama ?? '-', + 'Nama Barang' => $trx->barang->nama_barang ?? '-', + 'Qty' => $trx->qtyHistori ?? 0, + 'Masuk' => $masuk, + 'Keluar' => $keluar, + 'Total' => $totalSekarang, + ]; + }); + } + + public function headings(): array + { + return [ + 'Waktu', + 'Kode Transaksi', + 'Kode Barang', + 'Supplier', + 'Nama Barang', + 'Qty', + 'Masuk', + 'Keluar', + 'Total' + ]; + } +} diff --git a/app/Http/Controllers/Auth/AuthenticatedSessionController.php b/app/Http/Controllers/Auth/AuthenticatedSessionController.php new file mode 100644 index 0000000..36c7fad --- /dev/null +++ b/app/Http/Controllers/Auth/AuthenticatedSessionController.php @@ -0,0 +1,45 @@ +validate([ + 'email' => ['required', 'email'], + 'password' => ['required'], + ]); + + // Proses login + if (Auth::attempt($request->only('email', 'password'))) { + $request->session()->regenerate(); + + // Redirect berdasarkan role user + return redirect()->intended(RouteServiceProvider::redirectToByRole(Auth::user())); + } + + // Jika login gagal + return back()->withErrors([ + 'email' => 'The provided credentials do not match our records.', + ]); + } + + // Fungsi logout + public function destroy(Request $request) + { + Auth::logout(); + + $request->session()->invalidate(); + $request->session()->regenerateToken(); + + return redirect('/'); + } +} diff --git a/app/Http/Controllers/Auth/RegisterController.php b/app/Http/Controllers/Auth/RegisterController.php new file mode 100644 index 0000000..a68b49a --- /dev/null +++ b/app/Http/Controllers/Auth/RegisterController.php @@ -0,0 +1,35 @@ +validate([ + 'name' => 'required|string|max:255', + 'email' => 'required|string|email|max:255|unique:users', + 'password' => 'required|string|min:6|confirmed', + 'role' => 'required|in:operator,pimpinan', + ]); + + User::create([ + 'name' => $request->name, + 'email' => $request->email, + 'password' => Hash::make($request->password), + 'role' => $request->role, + ]); + + return redirect()->route('login')->with('success', 'Registrasi berhasil. Silakan login.'); + } +} diff --git a/app/Http/Controllers/BarangController.php b/app/Http/Controllers/BarangController.php new file mode 100644 index 0000000..46b5fb1 --- /dev/null +++ b/app/Http/Controllers/BarangController.php @@ -0,0 +1,246 @@ +query('filter'); + $nama = $request->query('nama'); + + $barangs = Barang::with(['produk', 'pendukung'])->get(); + + $barangSudahAda = session('barangSudahAda', false); + $namaBarang = session('nama_barang', ''); + + // Filter hanya jika $filter ada dan valid + if (in_array($filter, ['produk', 'pendukung'])) { + $barangs = $barangs->filter(function ($barang) use ($filter) { + return $barang->{$filter}; // hanya tampilkan yang memiliki relasi produk/pendukung + }); + $newKode = $this->generateKodeBaru($filter); + } else { + // Jika tidak ada filter atau tidak valid, tampilkan semua data dan jangan generate kode + $newKode = null; + } + + // Filter berdasarkan nama (jika ada) + if ($nama) { + $barangs = $barangs->filter(function ($barang) use ($nama) { + return stripos($barang->nama_barang, $nama) !== false; + }); + } + + // Urutkan: produk (kode PRD) lebih dulu, lalu pendukung (kode PND) + $barangs = $barangs->sortBy(function ($barang) { + return $barang->produk ? '1' . $barang->produk->kode + : ($barang->pendukung ? '2' . $barang->pendukung->kode : '9'); + })->values(); + + return view('operator.barang.index', + compact('barangs', 'filter', 'newKode', 'barangSudahAda', 'namaBarang') + ); + } + + public function store(Request $request) + { + $request->validate([ + 'filter' => 'required|in:produk,pendukung', + 'nama_barang' => 'required|string|max:255', + 'qty' => 'required|integer|min:0', + 'harga' => 'required|numeric|min:0', + 'exp' => $request->filter === 'produk' ? 'required|date|after:today' : 'nullable|date', + ]); + + // Cari apakah barang dengan nama dan kategori yang sama sudah ada + $existingBarang = Barang::whereRaw('LOWER(nama_barang) = ?', [strtolower($request->nama_barang)]) // case-insensitive search + ->whereHas($request->filter) // produk atau pendukung + ->first(); + + $barangSudahAda = $existingBarang !== null; + + if ($existingBarang) { + // Update qty dan harga terakhir + $existingBarang->qty += $request->qty; + $existingBarang->harga = $request->harga; + $existingBarang->exp = $request->filter === 'produk' ? $request->exp : null; + $existingBarang->save(); + + return redirect()->route('barang.index', [ + 'filter' => $request->filter, + ])->with('warning', 'Barang sudah ada, data akan digabungkan!') // flash session + ->with('barangSudahAda', true) + ->with('nama_barang', $request->nama_barang); + } + + $barang = Barang::create([ + 'nama_barang' => $request->nama_barang, + 'qty' => $request->qty, + 'harga' => $request->harga, + 'exp' => $request->exp, + ]); + + // Generate kode baru untuk produk atau pendukung + $kodeBaru = $this->generateKodeBaru($request->filter); + + // Tambahkan sebagai produk dengan kode auto + if ($request->filter === 'produk') { + BarangProduk::create([ + 'barang_id' => $barang->id, + 'kode' => $kodeBaru, + ]); + } else { + BarangPendukung::create([ + 'barang_id' => $barang->id, + 'kode' => $kodeBaru, + ]); + } + + return redirect()->route('barang.index', ['filter' => $request->filter]) + ->with('success', 'Barang ' . $request->filter . ' berhasil ditambahkan'); + + } + + public function update(Request $request, $id) + { + $barang = Barang::with(['produk', 'pendukung'])->findOrFail($id); + + $request->validate([ + 'nama_barang' => 'required|string|max:255', + 'kategori' => 'required|in:produk,pendukung', + 'exp' => 'nullable|date', + 'harga' => 'required|numeric|min:0', + ]); + + $kategori_lama = $barang->produk ? 'produk' : 'pendukung'; + $kategori_baru = $request->kategori; + + // Cek apakah melibatkan 'produk' + $melibatkanProduk = $kategori_lama === 'produk' || $kategori_baru === 'produk'; + + // Jika kategori berubah dan melibatkan produk, tapi tidak ada konfirmasi, maka tolak + if ($kategori_lama !== $kategori_baru && $melibatkanProduk && !$request->has('confirm_produk')) { + return back()->with('error', 'Perpindahan kategori ke/dari Produk perlu konfirmasi.'); + } + + // Update barang utama + $barang->nama_barang = $request->nama_barang; + $barang->exp = $request->exp; + $barang->harga = $request->harga; + $barang->save(); + + // Hapus relasi lama + if ($kategori_lama === 'pendukung' && $barang->pendukung) { + $barang->pendukung->delete(); + } elseif ($kategori_lama === 'produk' && $barang->produk) { + $barang->produk->delete(); + } + + // Tambah relasi baru sesuai kategori + $kodeBaru = $this->generateKodeBaru($kategori_baru); + + if ($kategori_baru === 'produk') { + BarangProduk::create([ + 'barang_id' => $barang->id, + 'kode' => $kodeBaru, + ]); + } else { + BarangPendukung::create([ + 'barang_id' => $barang->id, + 'kode' => $kodeBaru, + ]); + } + + return redirect()->route('barang.index', ['filter' => $kategori_baru]) + ->with('success', 'Barang berhasil diperbarui.'); + } + + public function updateQty(Request $request, $id) + { + $request->validate([ + 'qty' => 'required|integer|min:0', + ]); + + $barang = Barang::findOrFail($id); + $barang->qty = $request->qty; + $barang->save(); + + return back()->with('success', 'Stok barang berhasil diperbarui.'); + } + + public function destroy($id) + { + $barang = Barang::with(['produk', 'pendukung'])->findOrFail($id); + + if ($barang->produk) { + $barang->produk->delete(); + } elseif ($barang->pendukung) { + $barang->pendukung->delete(); + } + + $barang->delete(); + + return back()->with('success', 'Barang berhasil dihapus.'); + } + + public function stokPimpinan() + { + $barang = Barang::with(['produk', 'pendukung'])->get(); + return view('pimpinan.stock_barang.index', compact('barang')); + } + + public function check(Request $request) + { + $request->validate([ + 'nama_barang' => 'required|string', + 'filter' => 'required|in:produk,pendukung', + ]); + + $barang = Barang::whereRaw('LOWER(nama_barang) = ?', [strtolower($request->nama_barang)]) + ->whereHas($request->filter) // produk atau pendukung + ->with($request->filter) + ->first(); + + if ($barang) { + return response()->json([ + 'barang_sudah_ada' => true, + 'nama_barang' => $barang->nama_barang, + 'kode' => $barang->{$request->filter}->kode ?? null, + ]); + } else { + $kodeBaru = $this->generateKodeBaru($request->filter); + return response()->json([ + 'barang_sudah_ada' => false, + 'nama_barang' => $request->nama_barang, + 'kode' => $kodeBaru, + ]); + } + } + + private function generateKodeBaru($kategori) + { + switch ($kategori) { + case 'produk': + $prefix = 'PRD'; + $model = BarangProduk::class; + break; + case 'pendukung': + $prefix = 'PDN'; + $model = BarangPendukung::class; + break; + default: + throw new \Exception("Kategori tidak valid"); + } + + $lastKode = $model::orderBy('id', 'desc')->first(); + $lastNumber = $lastKode ? (int)substr($lastKode->kode, 3) : 0; + return $prefix . str_pad($lastNumber + 1, 3, '0', STR_PAD_LEFT); + } +} diff --git a/app/Http/Controllers/Controller.php b/app/Http/Controllers/Controller.php new file mode 100644 index 0000000..77ec359 --- /dev/null +++ b/app/Http/Controllers/Controller.php @@ -0,0 +1,12 @@ +year; + $start = $request->get('start_date') + ? Carbon::parse($request->get('start_date')) + : Carbon::create($currentYear, 1, 1)->startOfDay(); + $end = $request->get('end_date') + ? Carbon::parse($request->get('end_date')) + : Carbon::create($currentYear, 12, 31)->endOfDay(); + + $kloters = HistoryGajiKloter::whereNotNull('tanggal_awal') + ->whereNotNull('tanggal_akhir') + ->orderBy('id', 'desc') + ->get(); + + $query = Transaksi::whereBetween('waktu_transaksi', [$start, $end]); + + $dates = CarbonPeriod::create($start, $end); + + $labels = []; + $pendapatanBulanan = []; + $pengeluaranBulanan = []; + + foreach ($dates as $date) { + $labels[] = $date->format('d M'); + + $pendapatan = Transaksi::whereDate('waktu_transaksi', $date) + ->whereNotNull('pemasukan_id') + ->sum('jumlahRp'); + + $pengeluaran = Transaksi::whereDate('waktu_transaksi', $date) + ->where(function ($q) { + $q->whereNotNull('pengeluaran_id') + ->orWhereNotNull('history_gaji_kloter_id'); + }) + ->sum('jumlahRp'); + + $pendapatanBulanan[] = $pendapatan; + $pengeluaranBulanan[] = $pengeluaran; + } + + $bulanAktif = $start->translatedFormat('d M Y') . ' - ' . $end->translatedFormat('d M Y'); + + $totalPendapatan = Transaksi::whereBetween('waktu_transaksi', [$start, $end]) + ->whereNotNull('pemasukan_id') + ->sum('jumlahRp'); + + $totalPengeluaran = Transaksi::whereBetween('waktu_transaksi', [$start, $end]) + ->where(function ($q) { + $q->whereNotNull('pengeluaran_id') + ->orWhereNotNull('history_gaji_kloter_id'); + }) + ->sum('jumlahRp'); + + $keuangan = [ + 'pendapatan' => $totalPendapatan, + 'pengeluaran' => $totalPengeluaran + ]; + + return view('dashboard.pimpinan', compact( + 'labels', + 'pendapatanBulanan', + 'pengeluaranBulanan', + 'keuangan', + 'bulanAktif', + 'kloters' + )); + } + + // Menampilkan dashboard operator + public function operator() + { + // Ambil 5 data barang terbaru + $barangTerbaru = Barang::with(['produk', 'pendukung']) + ->latest() + ->take(5) + ->get(); + + // Ambil 5 transaksi terbaru + $transaksiTerbaru = Transaksi::with(['barang', 'pemasukan', 'pengeluaran', 'historyGajiKloter']) + ->orderBy('waktu_transaksi', 'desc') + ->take(5) + ->get() + ->map(function ($trx) { + $kategori = $trx->pengeluaran_id === null ? 'Masuk' : 'Keluar'; + $harga = ($kategori === 'Masuk' ? '+ ' : '- ') . 'Rp ' . number_format($trx->jumlahRp, 0, ',', '.'); + + // Tentukan nama transaksi + $namaTransaksi = $trx->historyGajiKloter + ? 'Pembayaran Gaji Kloter #' . $trx->historyGajiKloter->id + : ($trx->barang->nama_barang ?? '-'); + + return [ + 'waktu' => $trx->waktu_transaksi, + 'nama_barang' => $namaTransaksi, + 'kategori' => $kategori, + 'harga' => $harga, + ]; + }); + + // Jumlah total barang + $jBarang = Barang::sum('qty'); + $jumlahBarang = number_format($jBarang, 0, ',', '.') . ' kg'; + + return view('dashboard.operator', compact('barangTerbaru', 'transaksiTerbaru', 'jumlahBarang')); + } + + public function tambahUangMakanHarian() + { + try { + DB::beginTransaction(); + + // Ambil barang uang makan + $barang = Barang::where('nama_barang', 'like', '%uang makan%')->first(); + + if (!$barang) { + return back()->with('error', 'Barang uang makan tidak ditemukan.'); + } + + // Cek apakah stok mencukupi + if ($barang->qty < 1) { + return back()->with('error', 'Stok uang makan tidak mencukupi.'); + } + + // Kurangi stok + $barang->qty -= 1; + $barang->save(); + + $pengeluaran = Pengeluaran::create([ + 'kode' => 'KLR' . str_pad(Pengeluaran::max('id') + 1, 3, '0', STR_PAD_LEFT), + ]); + + Transaksi::create([ + 'barang_id' => $barang->id, + 'pengeluaran_id' => $pengeluaran->id, + 'qtyHistori' => 1, + 'satuan' => 'paket', // satuan statis + 'jumlahRp' => $barang->harga, + 'waktu_transaksi' => now(), + 'supplier_id' => null, + ]); + + DB::commit(); + + return back()->with('success', 'Transaksi uang makan berhasil ditambahkan.'); + } catch (\Exception $e) { + DB::rollBack(); + return back()->with('error', 'Gagal menambahkan uang makan: ' . $e->getMessage()); + } + } + +} diff --git a/app/Http/Controllers/GajiController.php b/app/Http/Controllers/GajiController.php new file mode 100644 index 0000000..f3b1383 --- /dev/null +++ b/app/Http/Controllers/GajiController.php @@ -0,0 +1,263 @@ +input('tahun'); + $status = $request->input('status'); + + // $klotersQuery = Kloter::with(['presensis', 'tonIkan'])->orderBy('id', 'desc'); + $klotersQuery = Kloter::with(['presensis', 'tonIkan'])->orderByDesc('id'); + $kloterSelesaiIds = HistoryGajiKloter::pluck('kloter_id')->toArray(); + + if ($tahun) { + $klotersQuery->whereHas('presensis', function ($query) use ($tahun) { + $query->whereYear('tanggal', $tahun); + }); + } + + $kloters = $klotersQuery->get(); + + // Filter manual untuk status + if ($status === 'selesai') { + $kloters = $kloters->filter(fn($kloter) => + HistoryGajiKloter::where('kloter_id', $kloter->id)->exists() + ); + } elseif ($status === 'belum') { + $kloters = $kloters->filter(fn($kloter) => + !HistoryGajiKloter::where('kloter_id', $kloter->id)->exists() + ); + } + + $tahunList = Presensi::selectRaw('YEAR(tanggal) as tahun')->distinct()->pluck('tahun'); + + return view('operator.gaji.index', + compact('kloters', 'tahun', 'tahunList', 'status', 'kloterSelesaiIds') + ); + } + + public function detail($id) + { + $search = request('search'); + + $kloter = Kloter::with(['presensis.karyawan', 'tonIkan'])->findOrFail($id); + $tanggalUnik = $kloter->presensis->pluck('tanggal')->unique()->sort()->values(); + $dataKaryawan = $kloter->presensis->groupBy('karyawan_id'); + $banyakPekerja = $dataKaryawan->count(); + + $jumlahTon = $kloter->tonIkan->jumlah_ton ?? 0; + $hargaPerTon = $kloter->tonIkan->harga_ikan_per_ton ?? 1000000; + $gajiPerJam = $banyakPekerja > 0 ? ($jumlahTon * $hargaPerTon) / $banyakPekerja : 0; + + $karyawanWithGaji = []; + + foreach ($dataKaryawan as $karyawanId => $presensis) { + $karyawan = $presensis->first()->karyawan; + $jamPerTanggal = []; + $totalJam = 0; + + foreach ($tanggalUnik as $tanggal) { + $presensi = $presensis->firstWhere('tanggal', $tanggal); + $jamKerja = 0; + + if ($presensi && $presensi->jam_masuk && $presensi->jam_pulang) { + $jamMasuk = strtotime($presensi->jam_masuk); + $jamPulang = strtotime($presensi->jam_pulang); + $jamKerja = ($jamPulang - $jamMasuk) / 3600; + } + + $jamPerTanggal[$tanggal] = $jamKerja; + $totalJam += $jamKerja; + } + + $totalGaji = $gajiPerJam * $totalJam; + if ($karyawan->jenis_kelamin === 'P') { + $totalGaji *= 0.6; // potongan 40% + } + + $karyawanWithGaji[] = [ + 'karyawan' => $karyawan, + 'jam_per_tanggal' => $jamPerTanggal, + 'total_jam' => $totalJam, + 'gaji_per_jam' => $gajiPerJam, + 'total_gaji' => $totalGaji, + ]; + } + + if ($search) { + $karyawanWithGaji = array_filter($karyawanWithGaji, function ($data) use ($search) { + return stripos($data['karyawan']->nama, $search) !== false; + }); + } + + return view('operator.gaji.detailGaji', compact( + 'kloter', + 'tanggalUnik', + 'dataKaryawan', + 'gajiPerJam', + 'jumlahTon', + 'hargaPerTon', + 'karyawanWithGaji' + ))->with('selectedKloter', $kloter); + } + + public function kloterSelesai($id) + { + $kloter = Kloter::with(['presensis.karyawan', 'tonIkan'])->findOrFail($id); + + if (HistoryGajiKloter::where('kloter_id', $kloter->id)->exists()) { + return redirect()->route('gaji.index')->with('error', 'Kloter ini sudah ditandai selesai sebelumnya.'); + } + + // Ambil data tanggal awal dan akhir dari presensi kloter + $tanggalUnik = $kloter->presensis->pluck('tanggal')->unique()->sort()->values(); + $tanggalAwal = $tanggalUnik->first(); + $tanggalAkhir = $tanggalUnik->last(); + + $dataKaryawan = $kloter->presensis->groupBy('karyawan_id'); + $banyakPekerja = $dataKaryawan->count(); + + $jumlahTon = $kloter->tonIkan->jumlah_ton ?? 0; + $hargaPerTon = $kloter->tonIkan->harga_ikan_per_ton ?? 1000000; + $gajiPerJam = $banyakPekerja > 0 ? ($jumlahTon * $hargaPerTon) / $banyakPekerja : 0; + + $totalGaji = 0; + + foreach ($dataKaryawan as $presensis) { + $karyawan = $presensis->first()->karyawan; + + $totalJam = $presensis->sum(function ($presensi) { + return (strtotime($presensi->jam_pulang) - strtotime($presensi->jam_masuk)) / 3600; + }); + + $gaji = $gajiPerJam * $totalJam; + + if ($karyawan->jenis_kelamin === 'P') { + $gaji *= 0.6; // potongan 40% + } + + $totalGaji += $gaji; + } + + // 1. Simpan ke History Gaji Kloter + $historyGaji = HistoryGajiKloter::create([ + 'kloter_id' => $kloter->id, + 'kode' => 'GK-' . strtoupper(uniqid()), + 'jml_karyawan' => $banyakPekerja, + 'total_gaji' => $totalGaji, + 'waktu' => now(), + 'tanggal_awal' => $tanggalAwal, + 'tanggal_akhir' => $tanggalAkhir, + ]); + + // 2. Buat entri Pengeluaran jika belum ada (PGJxxx) + $lastKode = Pengeluaran::where('kode', 'like', 'PGJ%')->orderByDesc('id')->value('kode'); + $nextNumber = $lastKode && preg_match('/PGJ(\d+)/', $lastKode, $m) + ? str_pad($m[1] + 1, 3, '0', STR_PAD_LEFT) + : '001'; + + $kodePengeluaran = 'PGJ' . $nextNumber; + + $pengeluaran = Pengeluaran::create([ + 'kode' => $kodePengeluaran, + 'nama' => 'Gaji Karyawan', + 'keterangan' => 'Pembayaran gaji untuk kloter #' . $kloter->id, + 'tanggal' => now(), + ]); + + // 3. Simpan ke Transaksi, kaitkan dengan history_gaji_kloter dan pengeluaran + Transaksi::create([ + 'pengeluaran_id' => $pengeluaran->id, + 'history_gaji_kloter_id' => $historyGaji->id, + 'qtyHistori' => 1, + 'satuan' => 'kloter', + 'jumlahRp' => $totalGaji, + 'waktu_transaksi' => now(), + ]); + + return redirect()->route('gaji.kloter')->with('success', 'Kloter berhasil diselesaikan dan transaksi gaji dicatat.'); + } + + + public function export($id) + { + $kloter = \App\Models\Kloter::with('tonIkan')->findOrFail($id); + + $presensis = \App\Models\Presensi::with('karyawan') + ->where('kloter_id', $id) + ->get(); + + $tanggalUnik = $presensis->pluck('tanggal')->unique()->sort()->values(); + + $gajiPerJam = 0; + $jumlahPekerja = $presensis->pluck('karyawan_id')->unique()->count(); + + $jumlahTon = $kloter->tonIkan->jumlah_ton ?? 0; + $hargaPerTon = $kloter->tonIkan->harga_ikan_per_ton ?? 1000000; + + if ($jumlahPekerja > 0) { + $gajiPerJam = ($jumlahTon * $hargaPerTon) / $jumlahPekerja; + } + + $data = []; + + foreach ($presensis->groupBy('karyawan_id') as $karyawanId => $presensiKaryawan) { + $karyawan = $presensiKaryawan->first()->karyawan; + $jamPerTanggal = []; + + foreach ($presensiKaryawan as $p) { + $key = \Carbon\Carbon::parse($p->tanggal)->format('Y-m-d'); + + $jamKerja = 0; + if ($p->jam_masuk && $p->jam_pulang) { + $jamMasuk = strtotime($p->jam_masuk); + $jamPulang = strtotime($p->jam_pulang); + $jamKerja = ($jamPulang - $jamMasuk) / 3600; + } + + $jamPerTanggal[$key] = $jamKerja; + } + + $totalJam = array_sum($jamPerTanggal); + + $gajiPerJamKaryawan = $karyawan->jenis_kelamin == 'Perempuan' + ? $gajiPerJam * 0.6 + : $gajiPerJam; + + $totalGaji = $gajiPerJamKaryawan * $totalJam; + + $data[] = [ + 'karyawan' => $karyawan, + 'jam_per_tanggal' => $jamPerTanggal, + 'total_jam' => $totalJam, + 'gaji_per_jam' => round($gajiPerJamKaryawan), + 'total_gaji' => round($totalGaji), + ]; + + // dd($data, $tanggalUnik); + + } + + return Excel::download(new GajiKloterExport($data, $tanggalUnik), 'detail_gaji_' . $kloter->nama_kloter . '.xlsx'); + } +} diff --git a/app/Http/Controllers/KaryawanController.php b/app/Http/Controllers/KaryawanController.php new file mode 100644 index 0000000..7f77ade --- /dev/null +++ b/app/Http/Controllers/KaryawanController.php @@ -0,0 +1,74 @@ +query('nama'); + $gender = $request->query('gender'); + + $karyawans = Karyawan::query(); + + // Filter nama + if ($nama) { + $karyawans->where('nama', 'like', '%' . $nama . '%'); + } + + // Filter jenis kelamin + if ($gender) { + $karyawans->where('jenis_kelamin', $gender); + } + + $karyawans = $karyawans->get(); + + return view('operator.karyawan.index', compact('karyawans')); + } + + public function store(Request $request) + { + $request->validate([ + 'nama' => 'required|string|max:255', + 'jenis_kelamin' => 'required|in:L,P', + 'no_telepon' => 'nullable|string|max:20', + ]); + + Karyawan::create([ + 'nama' => $request->nama, + 'jenis_kelamin' => $request->jenis_kelamin, + 'no_telepon' => $request->no_telepon, + ]); + + return redirect()->route('karyawan.index')->with('success', 'Karyawan berhasil ditambahkan.'); + } + + public function update(Request $request, $id) + { + $request->validate([ + 'nama' => 'required|string|max:255', + 'jenis_kelamin' => 'required|in:L,P', + 'no_telepon' => 'nullable|string|max:20', + ]); + + $karyawan = Karyawan::findOrFail($id); + $karyawan->update([ + 'nama' => $request->nama, + 'jenis_kelamin' => $request->jenis_kelamin, + 'no_telepon' => $request->no_telepon, + ]); + + return redirect()->route('karyawan.index')->with('success', 'Karyawan berhasil diperbarui.'); + } + + public function destroy($id) + { + $karyawan = Karyawan::findOrFail($id); + $karyawan->delete(); + + return redirect()->route('karyawan.index')->with('success', 'Karyawan berhasil dihapus.'); + } +} diff --git a/app/Http/Controllers/LaporanController.php b/app/Http/Controllers/LaporanController.php new file mode 100644 index 0000000..01d0510 --- /dev/null +++ b/app/Http/Controllers/LaporanController.php @@ -0,0 +1,326 @@ +query('filter'); + $nama = $request->query('nama'); + $isAjax = $request->ajax(); + $isExport = $request->query('export') === 'excel'; + + $barangs = Barang::with(['produk', 'pendukung']); + + if (in_array($filter, ['produk', 'pendukung'])) { + $barangs->whereHas($filter); + } + + if ($nama) { + $barangs->where('nama_barang', 'like', '%' . $nama . '%'); + } + + $barangs = $barangs->get()->sortBy(function ($barang) { + if ($barang->produk) { + return '1' . $barang->produk->kode; + } elseif ($barang->pendukung) { + return '2' . $barang->pendukung->kode; + } else { + return '9'; + } + })->values(); + + if ($isExport) { + return Excel::download(new LaporanBarangExport($barangs), 'laporan-barang.xlsx'); + } + + if ($isAjax) { + return view('pimpinan.laporan_barang._table', compact('barangs'))->render(); + } + + return view('pimpinan.laporan_barang.index', compact('barangs', 'filter', 'nama')); + } + + public function karyawan(Request $request) + { + $filter = $request->input('filter', 'minggu_ini'); + $nama = $request->input('nama'); + + switch ($filter) { + case 'kloter_terbaru': + // Ambil kloter yang memiliki presensi dengan tanggal paling akhir + $presensiTerbaru = Presensi::latest('tanggal')->first(); + + if ($presensiTerbaru && $presensiTerbaru->kloter) { + $kloterTerbaru = $presensiTerbaru->kloter; + + // Gunakan accessor dari model Kloter + $startDate = Carbon::parse($kloterTerbaru->tanggal_mulai); + $endDate = Carbon::parse($kloterTerbaru->tanggal_akhir); + } else { + $startDate = $endDate = null; + } + break; + case 'hari_ini': + $startDate = Carbon::today(); + $endDate = Carbon::today(); + break; + case 'bulan_ini': + $startDate = Carbon::now()->startOfMonth(); + $endDate = Carbon::now()->endOfMonth(); + break; + case 'semua': + $startDate = null; + $endDate = null; + break; + case 'minggu_ini': + default: + $startDate = Carbon::now()->startOfWeek(); + $endDate = Carbon::now()->endOfWeek(); + break; + } + + // Ambil semua kloter yang memiliki ton ikan + $kloters = Kloter::with(['tonIkan', 'presensis']) + ->get() + ->filter(fn($kloter) => $kloter->tonIkan); + + // Hitung gaji per jam tiap kloter + // $gajiPerJamKloter = []; + + $gajiPerHariKloter = []; + + foreach ($kloters as $kloter) { + $tonIkan = $kloter->tonIkan; + $jumlahTon = $tonIkan->jumlah_ton ?? 0; + $hargaPerTon = $tonIkan->harga_ikan_per_ton ?? 0; + + $karyawanUnik = Presensi::where('kloter_id', $kloter->id) + ->distinct('karyawan_id') + ->pluck('karyawan_id'); + + $jumlahPekerjaKloter = $karyawanUnik->count(); + + $gajiPerHariKloter[$kloter->id] = $jumlahPekerjaKloter > 0 + ? ($jumlahTon * $hargaPerTon) / $jumlahPekerjaKloter + : 0; + } + + + $karyawans = Karyawan::with('presensis.kloter') + ->when($nama, fn($query) => $query->where('nama', 'like', '%' . $nama . '%')) + ->get(); + + $data = []; + + foreach ($karyawans as $karyawan) { + $totalJamKerja = 0; + $totalGaji = 0; + + // Ambil semua presensi karyawan, filter sesuai tanggal (misal filter minggu ini/hari ini) + $presensis = $karyawan->presensis() + ->when($startDate && $endDate, fn($query) => $query->whereBetween('tanggal', [$startDate, $endDate])) + ->with('kloter') + ->get(); + + // Kelompokkan presensi per kloter + $presensiPerKloter = $presensis->groupBy('kloter_id'); + + $gajiPerKloter = []; // Hitung gaji per kloter + + foreach ($presensiPerKloter as $kloterId => $presensiKloter) { + // Hitung total jam kerja karyawan di kloter ini + $totalJamKerjaKloter = 0; + foreach ($presensiKloter as $presensi) { + $jamMasuk = Carbon::parse($presensi->jam_masuk); + $jamPulang = Carbon::parse($presensi->jam_pulang); + $jamKerja = $jamPulang->diffInSeconds($jamMasuk) / 3600; + $totalJamKerjaKloter += $jamKerja; + } + + $totalJamKerja += $totalJamKerjaKloter; + + // Gaji per hari kloter (dari hasil sebelumnya) + $gajiPerHari = $gajiPerHariKloter[$kloterId] ?? 0; // Variabel ini perlu kamu hitung sebelum loop karyawan + + // Hitung gaji per jam untuk karyawan di kloter ini + $gajiPerJam = $totalJamKerjaKloter > 0 ? ($gajiPerHari / $totalJamKerjaKloter) : 0; + + // Hitung gaji kloter ini + $gajiKloterIni = $gajiPerJam * $totalJamKerjaKloter; + + // Simpan detail per kloter + $gajiPerKloter[] = [ + 'kloter_id' => $kloterId, + 'total_jam' => round($totalJamKerjaKloter, 2), + 'gaji' => round($gajiKloterIni, 0), + ]; + + // Tambah total gaji karyawan + $totalGaji += $gajiKloterIni; + } + + // Potong 20% jika karyawan perempuan + if ($karyawan->jenis_kelamin === 'P') { + $totalGaji *= 0.8; + } + + $data[] = [ + 'karyawan' => $karyawan, + 'total_jam_kerja' => round($totalJamKerja, 2), + 'gaji_per_kloter' => $gajiPerKloter, + 'total_gaji' => round($totalGaji, 0), + ]; + } + + if ($request->ajax()) { + return view('pimpinan.laporan_karyawan._table', compact('data')); + } + + if ($request->has('export') && $request->export === 'excel') { + return Excel::download(new LaporanKaryawanExport($data), 'laporan_karyawan.xlsx'); + } + + return view('pimpinan.laporan_karyawan.index', compact('data', 'filter', 'nama')); + } + + public function supplier(Request $request) + { + $query = Supplier::with(['pemasok', 'konsumen']); + + if ($request->filled('keyword')) { + $query->where(function ($q) use ($request) { + $q->where('nama', 'like', '%' . $request->keyword . '%') + ->orWhere('alamat', 'like', '%' . $request->keyword . '%'); + }); + } + + + if ($request->filled('kategori')) { + if ($request->kategori === 'pemasok') { + $query->whereHas('pemasok'); + } elseif ($request->kategori === 'konsumen') { + $query->whereHas('konsumen'); + } + } + + $suppliers = $query->get(); + + if ($request->has('export') && $request->export === 'excel') { + return Excel::download(new LaporanSupplierExport($suppliers), 'laporan_supplier.xlsx'); + } + + if ($request->ajax()) { + return view('pimpinan.laporan_supplier._table', compact('suppliers'))->render(); + } + + return view('pimpinan.laporan_supplier.index', compact('suppliers')); + } + + public function transaksi(Request $request) + { + $query = Transaksi::with([ + 'barang.produk', + 'barang.pendukung', + 'supplier', + 'pemasukan', + 'pengeluaran' + ]); + + if ($request->filled('q')) { + $search = $request->q; + $query->where(function ($q) use ($search) { + $q->whereHas('barang', function ($q1) use ($search) { + $q1->where('nama_barang', 'like', '%' . $search . '%'); + })->orWhereHas('supplier', function ($q2) use ($search) { + $q2->where('nama', 'like', '%' . $search . '%'); + })->orWhereHas('barang.produk', function ($q3) use ($search) { + $q3->where('kode', 'like', '%' . $search . '%'); + })->orWhereHas('barang.pendukung', function ($q4) use ($search) { + $q4->where('kode', 'like', '%' . $search . '%'); + })->orWhereHas('pemasukan', function ($q5) use ($search) { + $q5->where('kode', 'like', '%' . $search . '%'); + })->orWhereHas('pengeluaran', function ($q6) use ($search) { + $q6->where('kode', 'like', '%' . $search . '%'); + }); + }); + } + + // Filter tanggal jika ada input + if ($request->filled('tanggal_mulai') && $request->filled('tanggal_akhir')) { + $query->whereBetween('waktu_transaksi', [ + $request->tanggal_mulai . ' 00:00:00', + $request->tanggal_akhir . ' 23:59:59' + ]); + } + + $transaksis = $query->orderBy('waktu_transaksi')->get(); + + $totalSebelumnya = 0; + + $data = $transaksis->map(function ($trx) use (&$totalSebelumnya) { + $kodeBarang = $trx->barang->produk->kode ?? $trx->barang->pendukung->kode ?? '-'; + $masuk = $trx->pemasukan_id ? $trx->jumlahRp : 0; + $keluar = $trx->pengeluaran_id ? $trx->jumlahRp : 0; + + $totalSekarang = $totalSebelumnya + $masuk - $keluar; + $totalSebelumnya = $totalSekarang; + + return [ + 'waktu' => $trx->waktu_transaksi, + 'kode_transaksi' => $trx->pemasukan->kode ?? $trx->pengeluaran->kode ?? '-', + 'kode_barang' => $kodeBarang, + 'supplier' => $trx->supplier->nama ?? '-', + 'nama_barang' => $trx->barang->nama_barang ?? '-', + 'qty' => $trx->qtyHistori ?? 0, + 'masuk' => $masuk, + 'keluar' => $keluar, + 'total' => $totalSekarang, + ]; + })->reverse()->values(); + + if ($request->has('export')) { + if ($request->export === 'excel') { + return Excel::download(new LaporanTransaksiExport( + $request->tanggal_mulai, + $request->tanggal_akhir, + $request->q + ), 'laporan_transaksi.xlsx'); + } + + if ($request->export === 'pdf') { + $daterange = $request->daterange ?? '-'; + $pdf = PDF::loadView('pimpinan.laporan_transaksi.pdf', compact('data', 'daterange')) + ->setPaper('A4', 'landscape'); + return $pdf->download('laporan_transaksi.pdf'); + } + } + + if ($request->ajax()) { + return view('pimpinan.laporan_transaksi._table', compact('data')); + } + + return view('pimpinan.laporan_transaksi.index', compact('data')); + } + +} diff --git a/app/Http/Controllers/PresensiController.php b/app/Http/Controllers/PresensiController.php new file mode 100644 index 0000000..746048f --- /dev/null +++ b/app/Http/Controllers/PresensiController.php @@ -0,0 +1,161 @@ +toDateString(); + $kloters = Kloter::orderBy('id', 'desc')->get(); + + // Tombol buat kloter baru + if ($request->get('buat_kloter')) { + $selectedKloter = Kloter::create([ + 'nama_kloter' => 'Kloter-' . (Kloter::count() + 1) + ]); + return redirect()->route('presensi.index', ['kloter_id' => $selectedKloter->id]); + } + + // Tombol pilih kloter + $selectedKloter = $kloter_id + ? Kloter::with('tonIkan')->find($kloter_id) + : Kloter::latest()->first(); + + if (!$selectedKloter) { + $selectedKloter = Kloter::create([ + 'nama_kloter' => 'Kloter-' . (Kloter::count() + 1) + ]); + } + + $semuaKaryawan = Karyawan::all(); + + $karyawanIds = KloterKaryawan::where('kloter_id', $selectedKloter->id) + ->pluck('karyawan_id'); + + $karyawans = Karyawan::whereIn('id', $karyawanIds)->get(); + + $presensis = Presensi::where('kloter_id', $selectedKloter->id) + ->whereDate('tanggal', $tanggal) + ->get() + ->keyBy('karyawan_id'); + + $jumlahTonHariIni = TonIkan::where('kloter_id', $selectedKloter->id) + ->value('jumlah_ton') ?? 0; + + $hargaIkanPerTon = TonIkan::where('kloter_id', $selectedKloter->id) + ->value('harga_ikan_per_ton') ?? 1000000; + + return view('operator.presensi.index', + compact('karyawans', 'presensis', 'tanggal', 'kloters', 'selectedKloter', 'jumlahTonHariIni', 'hargaIkanPerTon', 'semuaKaryawan') + ); + } + + public function inputMasuk(Request $request, $id) + { + $kloterId = $request->input('kloter_id'); + $tanggal = now()->toDateString(); + $jamInput = $request->input('jam') ?? Carbon::now()->format('H:i:s'); // <- ambil jam dari request jika ada + + // Validasi: jam tidak boleh lebih dari waktu sekarang + $sekarang = now()->format('H:i:s'); + if ($jamInput > $sekarang) { + return redirect()->back()->with('error', 'Jam masuk tidak boleh lebih dari waktu saat ini.'); + } + + $presensi = Presensi::where('karyawan_id', $id) + ->whereDate('tanggal', $tanggal) + ->first(); + + if (!$presensi) { + $presensi = Presensi::create([ + 'karyawan_id' => $id, + 'kloter_id' => $kloterId, + 'tanggal' => $tanggal, + 'jam_masuk' => $jamInput + ]); + } elseif (!$presensi->jam_masuk) { + $presensi->jam_masuk = $jamInput; + $presensi->kloter_id = $kloterId; + $presensi->save(); + } + + return redirect()->back()->with('success', 'Jam masuk berhasil disimpan.'); + } + + public function inputPulang(Request $request, $id) + { + $kloterId = $request->input('kloter_id'); + $tanggal = now()->toDateString(); + $jamInput = $request->input('jam') ?? Carbon::now()->format('H:i:s'); + + // Validasi: jam tidak boleh lebih dari waktu sekarang + $sekarang = now()->format('H:i:s'); + if ($jamInput > $sekarang) { + return redirect()->back()->with('error', 'Jam pulang tidak boleh lebih dari waktu saat ini.'); + } + + $presensi = Presensi::where('karyawan_id', $id) + ->whereDate('tanggal', $tanggal) + ->first(); + + if ($presensi && !$presensi->jam_pulang) { + $presensi->jam_pulang = $jamInput; + $presensi->kloter_id = $kloterId; + $presensi->save(); + } + + return redirect()->back()->with('success', 'Jam pulang berhasil disimpan.'); + } + + public function simpanTonIkan(Request $request) + { + $request->validate([ + 'kloter_id' => 'required|exists:kloters,id', + 'jumlah_ton' => 'required|numeric', + 'harga_ikan_per_ton' => 'required|numeric', + ]); + + TonIkan::updateOrCreate( + ['kloter_id' => $request->kloter_id/*, 'tanggal' => $request->tanggal*/], + [ + 'jumlah_ton' => $request->jumlah_ton ?? 0, + 'harga_ikan_per_ton' => $request->harga_ikan_per_ton + ], + ); + + return redirect()->back()->with('success', 'Data ton ikan berhasil disimpan.'); + } + + public function pilihKaryawan(Request $request) + { + $request->validate([ + 'kloter_id' => 'required|exists:kloters,id', + 'karyawan_ids' => 'array' + ]); + + // Hapus dulu data lama + KloterKaryawan::where('kloter_id', $request->kloter_id)->delete(); + + // Simpan baru + foreach ($request->karyawan_ids ?? [] as $id) { + KloterKaryawan::create([ + 'kloter_id' => $request->kloter_id, + 'karyawan_id' => $id + ]); + } + + return redirect()->route('presensi.index', ['kloter_id' => $request->kloter_id]) + ->with('success', 'Karyawan berhasil dipilih untuk kloter ini.'); + } + +} diff --git a/app/Http/Controllers/SupplierController.php b/app/Http/Controllers/SupplierController.php new file mode 100644 index 0000000..94d88ea --- /dev/null +++ b/app/Http/Controllers/SupplierController.php @@ -0,0 +1,154 @@ +query('keyword'); + $kategori = $request->query('kategori'); + + $suppliers = Supplier::with(['pemasok', 'konsumen']); + + // filter berdasarkan keyword + if ($keyword) { + $suppliers = $suppliers->where(function ($query) use ($keyword) { + $query->where('nama', 'like', '%' . $keyword . '%') + ->orWhere('alamat', 'like', '%' . $keyword . '%'); + }); + } + + // Filter berdasarkan kategori mitra + if ($kategori === 'pemasok') { + $suppliers = $suppliers->whereHas('pemasok'); + } elseif ($kategori === 'konsumen') { + $suppliers = $suppliers->whereHas('konsumen'); + } + + $suppliers = $suppliers->get(); + + return view('operator.supplier.index', compact('suppliers')); + } + + public function create() + { + $pemasoks = Pemasok::all(); + $konsumens = Konsumen::all(); + + return view('operator.supplier.create', compact('pemasoks', 'konsumens')); + } + + public function store(Request $request) + { + $request->validate([ + 'kategori' => 'required|in:pemasok,konsumen', + 'nama' => 'required|string|max:255', + 'alamat' => 'required|string|max:255', + 'no_tlp' => 'required|string|max:15', + 'no_rekening' => 'nullable|string|max:50', + ]); + + // 1. Buat supplier dulu + $supplier = Supplier::create([ + 'nama' => $request->nama, + 'alamat' => $request->alamat, + 'no_tlp' => $request->no_tlp, + 'no_rekening' => $request->no_rekening, + ]); + + // 2. Buat entri di pemasoks / konsumens tergantung kategori + $kode = $this->generateKode($request->kategori); + + if ($request->kategori === 'pemasok') { + Pemasok::create([ + 'kode' => $kode, + 'supplier_id' => $supplier->id, + ]); + } else { + Konsumen::create([ + 'kode' => $kode, + 'supplier_id' => $supplier->id, + ]); + } + + return redirect()->route('supplier.index')->with('success', 'Supplier berhasil ditambahkan.'); + } + + public function update(Request $request, $id) + { + $request->validate([ + 'kategori' => 'required|in:pemasok,konsumen', + 'nama' => 'required|string|max:255', + 'alamat' => 'required|string|max:255', + 'no_tlp' => 'required|string|max:15', + 'no_rekening' => 'nullable|string|max:50', + ]); + + $supplier = Supplier::with(['pemasok', 'konsumen'])->findOrFail($id); + + // Update data utama + $supplier->update([ + 'nama' => $request->nama, + 'alamat' => $request->alamat, + 'no_tlp' => $request->no_tlp, + 'no_rekening' => $request->no_rekening, + ]); + + $kategori_lama = $supplier->pemasok ? 'pemasok' : ($supplier->konsumen ? 'konsumen' : null); + $kategori_baru = $request->kategori; + + // Jika kategori berubah, hapus relasi lama dan buat yang baru + if ($kategori_lama !== $kategori_baru) { + if ($kategori_lama === 'pemasok') { + $supplier->pemasok->delete(); + } elseif ($kategori_lama === 'konsumen') { + $supplier->konsumen->delete(); + } + + $kodeBaru = $this->generateKode($kategori_baru); + + if ($kategori_baru === 'pemasok') { + Pemasok::create([ + 'supplier_id' => $supplier->id, + 'kode' => $kodeBaru, + ]); + } elseif ($kategori_baru === 'konsumen') { + Konsumen::create([ + 'supplier_id' => $supplier->id, + 'kode' => $kodeBaru, + ]); + } + } + + return redirect()->route('supplier.index')->with('success', 'Supplier berhasil diperbarui.'); + } + + + + public function destroy($id) + { + $supplier = Supplier::findOrFail($id); + $supplier->delete(); + + return redirect()->route('supplier.index')->with('success', 'Supplier berhasil dihapus.'); + } + + private function generateKode($kategori) + { + $prefix = $kategori === 'pemasok' ? 'PMK' : 'KSM'; + $model = $kategori === 'pemasok' ? Pemasok::class : Konsumen::class; + + $last = $model::orderBy('id', 'desc')->first(); + $lastNumber = $last ? (int)substr($last->kode, 3) : 0; + + return $prefix . str_pad($lastNumber + 1, 3, '0', STR_PAD_LEFT); + } + + +} \ No newline at end of file diff --git a/app/Http/Controllers/TonIkanController.php b/app/Http/Controllers/TonIkanController.php new file mode 100644 index 0000000..e54d3c3 --- /dev/null +++ b/app/Http/Controllers/TonIkanController.php @@ -0,0 +1,28 @@ +validate([ + 'tanggal' => 'required|date', + 'jumlah_ton' => 'required|numeric|min:0', + 'harga_ikan_per_ton' => 'required|numeric|min:0', + ]); + + TonIkan::updateOrCreate( + ['tanggal' => $request->tanggal], + ['jumlah_ton' => $request->jumlah_ton], + ['harga_ikan_per_ton' => $request->harga_ikan_per_ton] + ); + + return redirect()->back()->with('success', 'Jumlah ton ikan berhasil disimpan.'); + } + +} diff --git a/app/Http/Controllers/TransaksiController.php b/app/Http/Controllers/TransaksiController.php new file mode 100644 index 0000000..b317c4a --- /dev/null +++ b/app/Http/Controllers/TransaksiController.php @@ -0,0 +1,367 @@ +filled('tanggal_mulai') && $request->filled('tanggal_akhir')) { + $query->whereBetween('waktu_transaksi', [ + $request->tanggal_mulai . ' 00:00:00', + $request->tanggal_akhir . ' 23:59:59' + ]); + // lanjutkan kebawah nya jika ingin menganti default dengan bulan ini + // } else { + // // Default: bulan ini + // $query->whereBetween('waktu_transaksi', [ + // now()->startOfMonth(), + // now()->endOfMonth() + // ]); + } + + $transaksis = $query->orderBy('waktu_transaksi')->get(); // Di urut dari terlama ke terbaru + // $transaksis = $query->latest('waktu_transaksi')->get(); // Di urut dari terbaru ke terlama + + $totalSebelumnya = 0; + + $data = $transaksis->map(function ($trx) use (&$totalSebelumnya) { + $kodeBarang = $trx->barang->produk->kode ?? $trx->barang->pendukung->kode ?? '-'; + $masuk = $trx->pemasukan_id ? $trx->jumlahRp : 0; + $keluar = $trx->pengeluaran_id ? $trx->jumlahRp : 0; + + $totalSekarang = $totalSebelumnya + $masuk - $keluar; + $totalSebelumnya = $totalSekarang; + + // Jika transaksi berasal dari history gaji kloter + $namaTransaksi = $trx->historyGajiKloter + ? 'Pembayaran Gaji Kloter #' . $trx->historyGajiKloter->id + : ($trx->barang->nama_barang ?? '-'); + + return [ + 'id' => $trx->id, + 'barang_id' => $trx->barang_id, + // 'transaksi_id' => $trx->id, + 'supplier_id' => $trx->supplier_id, + 'pemasukan_id' => $trx->pemasukan_id, + 'pengeluaran_id' => $trx->pengeluaran_id, + 'kategori' => $trx->kategori, + 'waktu' => $trx->waktu_transaksi, + 'kode_transaksi' => $trx->pemasukan->kode ?? $trx->pengeluaran->kode ?? '-', + 'kode_barang' => $kodeBarang, + 'supplier' => $trx->supplier->nama ?? '-', + 'barangs' => $namaTransaksi, + 'nama_barang' => $namaTransaksi, + 'qty' => $trx->qtyHistori ?? 0, // akan mengambil dari qtyHistori pada tb transaksi + 'masuk' => $masuk, + 'keluar' => $keluar, + 'total' => $totalSekarang, + 'jumlahRp' => $trx->jumlahRp, + 'satuan' => $trx->satuan, + 'waktu_transaksi' => $trx->waktu_transaksi, + ]; + })->reverse()->values(); //akan membalik urutan perhitungan total data transaksi + + // kategori dan tipe barang + $kategori = $request->input('kategori', 'pengeluaran'); // default ke pemasukan + $tipe = $kategori === 'pengeluaran' ? 'pendukung' : 'produk'; // otomatis + // $barangs = Barang::with($tipe)->whereHas($tipe)->get(); // ambil semua barang sesuai tipe + $barangs = Barang::with(['produk', 'pendukung'])->get()->map(function ($b) { + // Tentukan tipe berdasarkan relasi yang ada + if ($b->produk) { + $b->tipe = 'produk'; + } elseif ($b->pendukung) { + $b->tipe = 'pendukung'; + } else { + $b->tipe = null; + } + return $b; + }); + $suppliers = Supplier::with(['pemasok', 'konsumen'])->get(); // ambil semua supplier + $pemasoks = Supplier::whereHas('pemasok')->get(); + $konsumens = Supplier::whereHas('konsumen')->get(); + + $kardusList = Barang::with('kardus')->get()->flatMap(function ($barang) { + return $barang->kardus; + }); + + + // dd($kategori, $tipe, $barangs->pluck('nama_barang')); // debug untuk melihat kategori, tipe, dan nama barang + + return view('operator.transaksi.index', [ + 'data' => $data, + 'barangs' => $barangs, + 'suppliers' => $suppliers, + 'pemasoks' => $pemasoks, + 'konsumens' => $konsumens, + 'kardusList' => $kardusList, + ]); + } + + public function store(Request $request) + { + $request->validate([ + 'kategori' => 'required|in:pemasukan,pengeluaran', + 'barang_id' => 'required|exists:barangs,id', + 'supplier_id' => 'required|exists:suppliers,id', + 'qtyHistori' => 'required|numeric|min:1', + 'jumlahRp' => 'nullable|numeric|min:0', + 'satuan' => 'required|in:ton,kg,g,liter,paket', + 'jenis_kardus' => 'nullable|exists:barangs,id', + 'jumlah_kardus' => 'nullable|numeric|min:0', + ]); + + DB::beginTransaction(); + try { + $barang = Barang::findOrFail($request->barang_id); + $kategori = $request->kategori; + $qtyHistori = $request->qtyHistori; + $jumlahRp = $request->jumlahRp; + $satuan = $request->satuan; + $waktu = Carbon::now(); + + // Konversi satuan ke KG + $qty_kg = match($satuan) { + 'ton' => $qtyHistori * 1000, + 'kg' => $qtyHistori, + 'g' => $qtyHistori / 1000, + default => $qtyHistori // liter dan paket tidak dikonversi + }; + + $hargaKardus = 0; + if ($request->filled('jenis_kardus') && $request->jumlah_kardus > 0) { + $kardus = Barang::find($request->jenis_kardus); + if ($kardus) { + $hargaKardus = $kardus->harga * $request->jumlah_kardus; + + // Kurangi stok kardus + $kardus->qty -= $request->jumlah_kardus; + $kardus->save(); + } + } + + // Variabel untuk ID + $pemasukan_id = null; + $pengeluaran_id = null; + + if ($kategori === 'pemasukan') { + // Buat kode pemasukan + $last = Pemasukan::latest('id')->first(); + $nextNumber = $last ? $last->id + 1 : 1; + $kode = 'MSK' . str_pad($nextNumber, 3, '0', STR_PAD_LEFT); + $pemasukan = Pemasukan::create(['kode' => $kode]); + $pemasukan_id = $pemasukan->id; + + // Barang dikurangi + $barang->qty -= $qty_kg; + $barang->save(); + + // Cek stok cukup + if ($barang->qty < $qty_kg) { + return back()->withInput()->withErrors(['qtyHistori' => 'Stok barang tidak mencukupi.']); + } + + // Hitung jumlahRp jika kosong + $jumlahRp = $jumlahRp ?: ($barang->harga * $qty_kg); + $jumlahRp += $hargaKardus; + + } elseif ($kategori === 'pengeluaran') { + // Buat kode pengeluaran + $last = Pengeluaran::latest('id')->first(); + $nextNumber = $last ? $last->id + 1 : 1; + $kode = 'KLR' . str_pad($nextNumber, 3, '0', STR_PAD_LEFT); + $pengeluaran = Pengeluaran::create(['kode' => $kode]); + $pengeluaran_id = $pengeluaran->id; + + // Barang dikurangi + $barang->qty += $qty_kg; + $barang->save(); + + // if ($jumlahRp && $qty_kg > 0) { + // $barang->harga = $jumlahRp / $qty_kg; + // $barang->save(); + // } + + if ($jumlahRp && $qty_kg > 0) { + $hargaBarangSaja = $jumlahRp - $hargaKardus; + + if ($hargaBarangSaja > 0) { + $barang->harga = $hargaBarangSaja / $qty_kg; + $barang->save(); + } + } + } + + // Simpan transaksi + Transaksi::create([ + 'kategori' => $kategori, + 'barang_id' => $barang->id, + 'supplier_id' => $request->supplier_id, + 'pemasukan_id' => $pemasukan_id, + 'pengeluaran_id' => $pengeluaran_id, + 'qtyHistori' => $qty_kg, + 'jumlahRp' => $jumlahRp, + 'satuan' => $satuan, + 'waktu_transaksi' => $waktu, + 'keterangan' => json_encode([ + 'jenis_kardus_id' => $request->jenis_kardus, + 'jumlah_kardus' => $request->jumlah_kardus, + ]), + ]); + + DB::commit(); + return redirect()->route('operator.transaksi.index')->with('success', 'Transaksi berhasil disimpan.'); + + } catch (\Throwable $th) { + DB::rollBack(); + return back()->withInput()->withErrors(['error' => 'Gagal menyimpan transaksi: ' . $th->getMessage()]); + } + } + + public function update(Request $request, $id) + { + $request->validate([ + 'kategori' => 'required|in:pemasukan,pengeluaran', + 'barang_id' => 'required|exists:barangs,id', + 'supplier_id' => 'required|exists:suppliers,id', + 'qtyHistori' => 'required|numeric|min:1', + 'jumlahRp' => 'nullable|numeric|min:0', + 'waktu_transaksi' => 'nullable|date', + 'satuan' => 'required|in:ton,kg,g,liter,paket', + 'jenis_kardus' => 'nullable|exists:barangs,id', + 'jumlah_kardus' => 'nullable|numeric|min:0', + ]); + + DB::beginTransaction(); + try { + $transaksi = Transaksi::findOrFail($id); + $barang = Barang::findOrFail($request->barang_id); + + // Kembalikan stok barang sebelumnya + if ($transaksi->kategori === 'pengeluaran') { + $barang->qty -= $transaksi->qtyHistori; + } else { + $barang->qty += $transaksi->qtyHistori; + } + + // Ambil data kardus lama dari keterangan dan kembalikan stok + $keteranganLama = json_decode($transaksi->keterangan, true) ?? []; + $jenisKardusLamaId = $keteranganLama['jenis_kardus_id'] ?? null; + $jumlahKardusLama = $keteranganLama['jumlah_kardus'] ?? 0; + + if ($jenisKardusLamaId && $jumlahKardusLama > 0) { + Barang::where('id', $jenisKardusLamaId)->increment('qty', $jumlahKardusLama); + } + + // Hitung qty dalam kg + $qty = $request->qtyHistori; + $satuan = $request->satuan; + $qty_kg = match($satuan) { + 'ton' => $qty * 1000, + 'kg' => $qty, + 'g' => $qty / 1000, + default => $qty, + }; + + // Hitung harga kardus baru + $hargaKardus = 0; + if ($request->filled('jenis_kardus') && $request->jumlah_kardus > 0) { + $kardusBaru = Barang::find($request->jenis_kardus); + if ($kardusBaru) { + $hargaKardus = $kardusBaru->harga * $request->jumlah_kardus; + $kardusBaru->qty -= $request->jumlah_kardus; + $kardusBaru->save(); + } + } + + // Hitung ulang stok & harga barang + if ($request->kategori === 'pengeluaran') { + $barang->qty += $qty_kg; + } else { + if ($barang->qty < $qty_kg) { + return back()->withErrors(['qtyHistori' => 'Stok barang tidak mencukupi untuk pemasukan.']); + } + $barang->qty -= $qty_kg; + + // Hitung harga barang (tidak termasuk kardus) + if ($request->jumlahRp && $qty_kg > 0) { + $hargaBarangSaja = $request->jumlahRp - $hargaKardus; + if ($hargaBarangSaja > 0) { + $barang->harga = $hargaBarangSaja / $qty_kg; + } + } + } + + $barang->save(); + + // Hitung total jumlah Rp termasuk kardus + $jumlahRp = $request->jumlahRp ?: ($barang->harga * $qty_kg); + $jumlahRp += $hargaKardus; + + // Simpan perubahan transaksi + $transaksi->update([ + 'barang_id' => $barang->id, + 'supplier_id' => $request->supplier_id, + 'kategori' => $request->kategori, + 'jumlahRp' => $jumlahRp, + 'qtyHistori' => $qty, + 'satuan' => $satuan, + 'waktu_transaksi' => $request->waktu_transaksi, + 'keterangan' => json_encode([ + 'jenis_kardus_id' => $request->jenis_kardus, + 'jumlah_kardus' => $request->jumlah_kardus, + ]) + ]); + + DB::commit(); + return redirect()->route('operator.transaksi.index')->with('success', 'Transaksi berhasil diperbarui.'); + } catch (\Throwable $th) { + DB::rollBack(); + return back()->withInput()->withErrors(['error' => 'Gagal memperbarui transaksi: ' . $th->getMessage()]); + } + } + + public function destroy($id) + { + $transaksi = Transaksi::findOrFail($id); + $transaksi->delete(); + + return redirect()->route('operator.transaksi.index')->with('success', 'Data transaksi berhasil dihapus.'); + } + + public function exportExcel(Request $request) + { + $tanggalMulai = $request->tanggal_mulai; + $tanggalAkhir = $request->tanggal_akhir; + $q = $request->q; // Optional, untuk pencarian + + $filename = 'laporan_transaksi_operator_' . now()->format('Ymd_His') . '.xlsx'; + return Excel::download(new LaporanTransaksiExport($tanggalMulai, $tanggalAkhir, $q), $filename); + } + +} + diff --git a/app/Http/Kernel.php b/app/Http/Kernel.php new file mode 100644 index 0000000..487c55c --- /dev/null +++ b/app/Http/Kernel.php @@ -0,0 +1,69 @@ + + */ + protected $middleware = [ + // \App\Http\Middleware\TrustHosts::class, + \App\Http\Middleware\TrustProxies::class, + \Illuminate\Http\Middleware\HandleCors::class, + \App\Http\Middleware\PreventRequestsDuringMaintenance::class, + \Illuminate\Foundation\Http\Middleware\ValidatePostSize::class, + \App\Http\Middleware\TrimStrings::class, + \Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull::class, + ]; + + /** + * The application's route middleware groups. + * + * @var array> + */ + protected $middlewareGroups = [ + 'web' => [ + \App\Http\Middleware\EncryptCookies::class, + \Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class, + \Illuminate\Session\Middleware\StartSession::class, + \Illuminate\View\Middleware\ShareErrorsFromSession::class, + \App\Http\Middleware\VerifyCsrfToken::class, + \Illuminate\Routing\Middleware\SubstituteBindings::class, + ], + + 'api' => [ + // \Laravel\Sanctum\Http\Middleware\EnsureFrontendRequestsAreStateful::class, + \Illuminate\Routing\Middleware\ThrottleRequests::class.':api', + \Illuminate\Routing\Middleware\SubstituteBindings::class, + ], + ]; + + /** + * The application's middleware aliases. + * + * Aliases may be used instead of class names to conveniently assign middleware to routes and groups. + * + * @var array + */ + protected $middlewareAliases = [ + 'auth' => \App\Http\Middleware\Authenticate::class, + 'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class, + 'auth.session' => \Illuminate\Session\Middleware\AuthenticateSession::class, + 'cache.headers' => \Illuminate\Http\Middleware\SetCacheHeaders::class, + 'can' => \Illuminate\Auth\Middleware\Authorize::class, + 'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class, + 'password.confirm' => \Illuminate\Auth\Middleware\RequirePassword::class, + 'precognitive' => \Illuminate\Foundation\Http\Middleware\HandlePrecognitiveRequests::class, + 'signed' => \App\Http\Middleware\ValidateSignature::class, + 'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class, + 'verified' => \Illuminate\Auth\Middleware\EnsureEmailIsVerified::class, + 'role' => \App\Http\Middleware\CheckRole::class, + ]; +} diff --git a/app/Http/Middleware/Authenticate.php b/app/Http/Middleware/Authenticate.php new file mode 100644 index 0000000..d4ef644 --- /dev/null +++ b/app/Http/Middleware/Authenticate.php @@ -0,0 +1,17 @@ +expectsJson() ? null : route('login'); + } +} diff --git a/app/Http/Middleware/CheckRole.php b/app/Http/Middleware/CheckRole.php new file mode 100644 index 0000000..5d54ea9 --- /dev/null +++ b/app/Http/Middleware/CheckRole.php @@ -0,0 +1,26 @@ +role === $role) { + return $next($request); + } + + return redirect('/')->with('error', 'Anda tidak memiliki akses!'); + } +} diff --git a/app/Http/Middleware/EncryptCookies.php b/app/Http/Middleware/EncryptCookies.php new file mode 100644 index 0000000..867695b --- /dev/null +++ b/app/Http/Middleware/EncryptCookies.php @@ -0,0 +1,17 @@ + + */ + protected $except = [ + // + ]; +} diff --git a/app/Http/Middleware/PreventRequestsDuringMaintenance.php b/app/Http/Middleware/PreventRequestsDuringMaintenance.php new file mode 100644 index 0000000..74cbd9a --- /dev/null +++ b/app/Http/Middleware/PreventRequestsDuringMaintenance.php @@ -0,0 +1,17 @@ + + */ + protected $except = [ + // + ]; +} diff --git a/app/Http/Middleware/RedirectIfAuthenticated.php b/app/Http/Middleware/RedirectIfAuthenticated.php new file mode 100644 index 0000000..afc78c4 --- /dev/null +++ b/app/Http/Middleware/RedirectIfAuthenticated.php @@ -0,0 +1,30 @@ +check()) { + return redirect(RouteServiceProvider::HOME); + } + } + + return $next($request); + } +} diff --git a/app/Http/Middleware/TrimStrings.php b/app/Http/Middleware/TrimStrings.php new file mode 100644 index 0000000..88cadca --- /dev/null +++ b/app/Http/Middleware/TrimStrings.php @@ -0,0 +1,19 @@ + + */ + protected $except = [ + 'current_password', + 'password', + 'password_confirmation', + ]; +} diff --git a/app/Http/Middleware/TrustHosts.php b/app/Http/Middleware/TrustHosts.php new file mode 100644 index 0000000..c9c58bd --- /dev/null +++ b/app/Http/Middleware/TrustHosts.php @@ -0,0 +1,20 @@ + + */ + public function hosts(): array + { + return [ + $this->allSubdomainsOfApplicationUrl(), + ]; + } +} diff --git a/app/Http/Middleware/TrustProxies.php b/app/Http/Middleware/TrustProxies.php new file mode 100644 index 0000000..3391630 --- /dev/null +++ b/app/Http/Middleware/TrustProxies.php @@ -0,0 +1,28 @@ +|string|null + */ + protected $proxies; + + /** + * The headers that should be used to detect proxies. + * + * @var int + */ + protected $headers = + Request::HEADER_X_FORWARDED_FOR | + Request::HEADER_X_FORWARDED_HOST | + Request::HEADER_X_FORWARDED_PORT | + Request::HEADER_X_FORWARDED_PROTO | + Request::HEADER_X_FORWARDED_AWS_ELB; +} diff --git a/app/Http/Middleware/ValidateSignature.php b/app/Http/Middleware/ValidateSignature.php new file mode 100644 index 0000000..093bf64 --- /dev/null +++ b/app/Http/Middleware/ValidateSignature.php @@ -0,0 +1,22 @@ + + */ + protected $except = [ + // 'fbclid', + // 'utm_campaign', + // 'utm_content', + // 'utm_medium', + // 'utm_source', + // 'utm_term', + ]; +} diff --git a/app/Http/Middleware/VerifyCsrfToken.php b/app/Http/Middleware/VerifyCsrfToken.php new file mode 100644 index 0000000..9e86521 --- /dev/null +++ b/app/Http/Middleware/VerifyCsrfToken.php @@ -0,0 +1,17 @@ + + */ + protected $except = [ + // + ]; +} diff --git a/app/Models/Barang.php b/app/Models/Barang.php new file mode 100644 index 0000000..1b2cff1 --- /dev/null +++ b/app/Models/Barang.php @@ -0,0 +1,45 @@ +hasOne(BarangProduk::class); + } + + public function pendukung() + { + return $this->hasOne(BarangPendukung::class); + } + + public function transaksis() + { + return $this->hasMany(Transaksi::class); + } + + public function kardus() + { + return $this->hasMany(BarangPendukung::class)->whereHas('barang', function ($query) { + $query->where('nama_barang', 'like', '%kardus%'); + }); + } + + public static function uangMakanHarian() + { + return self::where('nama_barang', 'like', '%makan%')->first(); + } +} diff --git a/app/Models/BarangPendukung.php b/app/Models/BarangPendukung.php new file mode 100644 index 0000000..981e9f7 --- /dev/null +++ b/app/Models/BarangPendukung.php @@ -0,0 +1,21 @@ +belongsTo(Barang::class); + } +} \ No newline at end of file diff --git a/app/Models/BarangProduk.php b/app/Models/BarangProduk.php new file mode 100644 index 0000000..e1a162d --- /dev/null +++ b/app/Models/BarangProduk.php @@ -0,0 +1,21 @@ +belongsTo(Barang::class); + } +} diff --git a/app/Models/HistoryGajiKloter.php b/app/Models/HistoryGajiKloter.php new file mode 100644 index 0000000..b1cff71 --- /dev/null +++ b/app/Models/HistoryGajiKloter.php @@ -0,0 +1,52 @@ +kode)) { + $last = self::orderBy('id', 'desc')->first(); + $nextId = $last ? $last->id + 1 : 1; + $model->kode = 'PGJ' . str_pad($nextId, 3, '0', STR_PAD_LEFT); + } + }); + } + + public function kloter() + { + return $this->belongsTo(Kloter::class); + } + + public function pengeluaranGaji() + { + return $this->hasOne(PengeluaranGaji::class); + } + + public function transaksis() + { + return $this->hasMany(Transaksi::class); + } +} diff --git a/app/Models/Karyawan.php b/app/Models/Karyawan.php new file mode 100644 index 0000000..3750d50 --- /dev/null +++ b/app/Models/Karyawan.php @@ -0,0 +1,29 @@ +hasMany(Presensi::class); + } + + public function kloterKaryawans() + { + return $this->hasMany(KloterKaryawan::class); + } +} +?> \ No newline at end of file diff --git a/app/Models/Kloter.php b/app/Models/Kloter.php new file mode 100644 index 0000000..16c10d3 --- /dev/null +++ b/app/Models/Kloter.php @@ -0,0 +1,42 @@ +hasMany(Presensi::class); + } + + public function tonIkan() + { + return $this->hasOne(TonIkan::class); + } + + public function kloterKaryawans() + { + return $this->hasMany(KloterKaryawan::class); + } + + public function getTanggalMulaiAttribute() + { + return $this->presensis()->orderBy('tanggal', 'asc')->value('tanggal'); + } + + public function getTanggalAkhirAttribute() + { + return $this->presensis()->orderBy('tanggal', 'desc')->value('tanggal'); + } + + public function getJumlahTonAttribute() + { + return $this->tonIkan()->value('jumlah_ton') ?? 0; + } + +} diff --git a/app/Models/KloterKaryawan.php b/app/Models/KloterKaryawan.php new file mode 100644 index 0000000..d2fcd1f --- /dev/null +++ b/app/Models/KloterKaryawan.php @@ -0,0 +1,22 @@ +belongsTo(Kloter::class); + } + + public function karyawan() + { + return $this->belongsTo(Karyawan::class); + } +} + diff --git a/app/Models/Konsumen.php b/app/Models/Konsumen.php new file mode 100644 index 0000000..9a6da46 --- /dev/null +++ b/app/Models/Konsumen.php @@ -0,0 +1,18 @@ +belongsTo(Supplier::class); + } +} diff --git a/app/Models/Pemasok.php b/app/Models/Pemasok.php new file mode 100644 index 0000000..2a1f9dc --- /dev/null +++ b/app/Models/Pemasok.php @@ -0,0 +1,18 @@ +belongsTo(Supplier::class); + } +} diff --git a/app/Models/Pemasukan.php b/app/Models/Pemasukan.php new file mode 100644 index 0000000..c60d8d2 --- /dev/null +++ b/app/Models/Pemasukan.php @@ -0,0 +1,18 @@ +hasMany(Transaksi::class); + } +} diff --git a/app/Models/Pengeluaran.php b/app/Models/Pengeluaran.php new file mode 100644 index 0000000..3f406c6 --- /dev/null +++ b/app/Models/Pengeluaran.php @@ -0,0 +1,18 @@ +hasMany(Transaksi::class); + } +} diff --git a/app/Models/Presensi.php b/app/Models/Presensi.php new file mode 100644 index 0000000..bac9cbb --- /dev/null +++ b/app/Models/Presensi.php @@ -0,0 +1,31 @@ +belongsTo(Karyawan::class); + } + + public function kloter() + { + return $this->belongsTo(Kloter::class); + } + +} diff --git a/app/Models/Supplier.php b/app/Models/Supplier.php new file mode 100644 index 0000000..faac9ba --- /dev/null +++ b/app/Models/Supplier.php @@ -0,0 +1,34 @@ +hasOne(Pemasok::class); + } + + public function konsumen() + { + return $this->hasOne(Konsumen::class); + } + + public function transaksis() + { + return $this->hasMany(Transaksi::class); + } +} diff --git a/app/Models/TonIkan.php b/app/Models/TonIkan.php new file mode 100644 index 0000000..a3d2825 --- /dev/null +++ b/app/Models/TonIkan.php @@ -0,0 +1,22 @@ +belongsTo(Kloter::class); + } + +} diff --git a/app/Models/Transaksi.php b/app/Models/Transaksi.php new file mode 100644 index 0000000..8267b38 --- /dev/null +++ b/app/Models/Transaksi.php @@ -0,0 +1,65 @@ +pemasukan_id xor $transaksi->pengeluaran_id)) { + throw new \Exception('Transaksi harus punya salah satu: pemasukan atau pengeluaran.'); + } + }); + } + + public function getKategoriAttribute() + { + return $this->pemasukan_id ? 'pemasukan' : 'pengeluaran'; + } + + + public function barang() + { + return $this->belongsTo(Barang::class); + } + + public function supplier() + { + return $this->belongsTo(Supplier::class); + } + + public function pengeluaran() + { + return $this->belongsTo(Pengeluaran::class); + } + + public function pemasukan() + { + return $this->belongsTo(Pemasukan::class); + } + + public function historyGajiKloter() + { + return $this->belongsTo(HistoryGajiKloter::class); + } + + public function getKodeGajiAttribute() + { + return $this->historyGajiKloter?->kode; + } +} diff --git a/app/Models/User.php b/app/Models/User.php new file mode 100644 index 0000000..3bf1151 --- /dev/null +++ b/app/Models/User.php @@ -0,0 +1,30 @@ + 'datetime', + 'password' => 'hashed', + ]; +} 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 @@ + + */ + protected $policies = [ + // + ]; + + /** + * Register any authentication / authorization services. + */ + public function boot(): void + { + // + } +} diff --git a/app/Providers/BroadcastServiceProvider.php b/app/Providers/BroadcastServiceProvider.php new file mode 100644 index 0000000..2be04f5 --- /dev/null +++ b/app/Providers/BroadcastServiceProvider.php @@ -0,0 +1,19 @@ +> + */ + protected $listen = [ + Registered::class => [ + SendEmailVerificationNotification::class, + ], + ]; + + /** + * Register any events for your application. + */ + public function boot(): void + { + // + } + + /** + * Determine if events and listeners should be automatically discovered. + */ + public function shouldDiscoverEvents(): bool + { + return false; + } +} diff --git a/app/Providers/RouteServiceProvider.php b/app/Providers/RouteServiceProvider.php new file mode 100644 index 0000000..fe496fc --- /dev/null +++ b/app/Providers/RouteServiceProvider.php @@ -0,0 +1,65 @@ +by($request->user()?->id ?: $request->ip()); + }); + + $this->routes(function () { + Route::middleware('api') + ->prefix('api') + ->group(base_path('routes/api.php')); + + Route::middleware('web') + ->group(base_path('routes/web.php')); + }); + } + + /** + * Redirect user based on their role + */ + // public static function redirectToByRole($user) + // { + // return match ($user->role) { + // 'pimpinan' => '/dashboard-pimpinan', + // 'operator' => '/dashboard-operator', + // default => '/dashboard', + // }; + // } + + public static function redirectToByRole($user) + { + if ($user->role === 'pimpinan') { + return '/pimpinan/dashboard'; + } elseif ($user->role === 'operator') { + return '/operator/dashboard'; + } + + // Default redirect jika role tidak dikenal + return '/'; + } + +} diff --git a/artisan b/artisan new file mode 100644 index 0000000..875a144 --- /dev/null +++ b/artisan @@ -0,0 +1,54 @@ +#!/usr/bin/env php +make(Illuminate\Contracts\Console\Kernel::class); + +$status = $kernel->handle( + $input = new Symfony\Component\Console\Input\ArgvInput, + new Symfony\Component\Console\Output\ConsoleOutput +); + +/* +|-------------------------------------------------------------------------- +| Shutdown The Application +|-------------------------------------------------------------------------- +| +| Once Artisan has finished running, we will fire off the shutdown events +| so that any final work may be done by the application before we shut +| down the process. This is the last thing to happen to the request. +| +*/ + +$kernel->terminate($input, $status); + +exit($status); + diff --git a/bootstrap/app.php b/bootstrap/app.php new file mode 100644 index 0000000..e989a42 --- /dev/null +++ b/bootstrap/app.php @@ -0,0 +1,56 @@ +singleton( + Illuminate\Contracts\Http\Kernel::class, + App\Http\Kernel::class +); + +$app->singleton( + Illuminate\Contracts\Console\Kernel::class, + App\Console\Kernel::class +); + +$app->singleton( + Illuminate\Contracts\Debug\ExceptionHandler::class, + App\Exceptions\Handler::class +); + +/* +|-------------------------------------------------------------------------- +| Return The Application +|-------------------------------------------------------------------------- +| +| This script returns the application instance. The instance is given to +| the calling script so we can separate the building of the instances +| from the actual running of the application and sending responses. +| +*/ + +return $app; + diff --git a/bootstrap/cache/.gitignore b/bootstrap/cache/.gitignore new file mode 100644 index 0000000..a5baada --- /dev/null +++ b/bootstrap/cache/.gitignore @@ -0,0 +1,3 @@ +* +!.gitignore + diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..f426241 --- /dev/null +++ b/composer.json @@ -0,0 +1,68 @@ +{ + "name": "laravel/laravel", + "type": "project", + "description": "The skeleton application for the Laravel framework.", + "keywords": ["laravel", "framework"], + "license": "MIT", + "require": { + "php": "^8.1", + "guzzlehttp/guzzle": "^7.2", + "laravel/framework": "^10.10", + "laravel/sanctum": "^3.3", + "laravel/tinker": "^2.8", + "maatwebsite/excel": "^3.1" + }, + "require-dev": { + "fakerphp/faker": "^1.9.1", + "laravel/breeze": "^1.29", + "laravel/pint": "^1.0", + "laravel/sail": "^1.18", + "mockery/mockery": "^1.4.4", + "nunomaduro/collision": "^7.0", + "phpunit/phpunit": "^10.1", + "spatie/laravel-ignition": "^2.0" + }, + "autoload": { + "psr-4": { + "App\\": "app/", + "Database\\Factories\\": "database/factories/", + "Database\\Seeders\\": "database/seeders/" + } + }, + "autoload-dev": { + "psr-4": { + "Tests\\": "tests/" + } + }, + "scripts": { + "post-autoload-dump": [ + "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", + "@php artisan package:discover --ansi" + ], + "post-update-cmd": [ + "@php artisan vendor:publish --tag=laravel-assets --ansi --force" + ], + "post-root-package-install": [ + "@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" + ], + "post-create-project-cmd": [ + "@php artisan key:generate --ansi" + ] + }, + "extra": { + "laravel": { + "dont-discover": [] + } + }, + "config": { + "optimize-autoloader": true, + "preferred-install": "dist", + "sort-packages": true, + "allow-plugins": { + "pestphp/pest-plugin": true, + "php-http/discovery": true + } + }, + "minimum-stability": "stable", + "prefer-stable": true +} diff --git a/composer.lock b/composer.lock new file mode 100644 index 0000000..b1d21a9 --- /dev/null +++ b/composer.lock @@ -0,0 +1,8776 @@ +{ + "_readme": [ + "This file locks the dependencies of your project to a known state", + "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", + "This file is @generated automatically" + ], + "content-hash": "cf129d58fa9a70571645e78a68230150", + "packages": [ + { + "name": "brick/math", + "version": "0.12.3", + "source": { + "type": "git", + "url": "https://github.com/brick/math.git", + "reference": "866551da34e9a618e64a819ee1e01c20d8a588ba" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/brick/math/zipball/866551da34e9a618e64a819ee1e01c20d8a588ba", + "reference": "866551da34e9a618e64a819ee1e01c20d8a588ba", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "require-dev": { + "php-coveralls/php-coveralls": "^2.2", + "phpunit/phpunit": "^10.1", + "vimeo/psalm": "6.8.8" + }, + "type": "library", + "autoload": { + "psr-4": { + "Brick\\Math\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Arbitrary-precision arithmetic library", + "keywords": [ + "Arbitrary-precision", + "BigInteger", + "BigRational", + "arithmetic", + "bigdecimal", + "bignum", + "bignumber", + "brick", + "decimal", + "integer", + "math", + "mathematics", + "rational" + ], + "support": { + "issues": "https://github.com/brick/math/issues", + "source": "https://github.com/brick/math/tree/0.12.3" + }, + "funding": [ + { + "url": "https://github.com/BenMorel", + "type": "github" + } + ], + "time": "2025-02-28T13:11:00+00:00" + }, + { + "name": "carbonphp/carbon-doctrine-types", + "version": "2.1.0", + "source": { + "type": "git", + "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git", + "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb", + "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb", + "shasum": "" + }, + "require": { + "php": "^7.4 || ^8.0" + }, + "conflict": { + "doctrine/dbal": "<3.7.0 || >=4.0.0" + }, + "require-dev": { + "doctrine/dbal": "^3.7.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/2.1.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": "2023-12-11T17:09:12+00:00" + }, + { + "name": "composer/pcre", + "version": "3.3.2", + "source": { + "type": "git", + "url": "https://github.com/composer/pcre.git", + "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e", + "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e", + "shasum": "" + }, + "require": { + "php": "^7.4 || ^8.0" + }, + "conflict": { + "phpstan/phpstan": "<1.11.10" + }, + "require-dev": { + "phpstan/phpstan": "^1.12 || ^2", + "phpstan/phpstan-strict-rules": "^1 || ^2", + "phpunit/phpunit": "^8 || ^9" + }, + "type": "library", + "extra": { + "phpstan": { + "includes": [ + "extension.neon" + ] + }, + "branch-alias": { + "dev-main": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Composer\\Pcre\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + } + ], + "description": "PCRE wrapping library that offers type-safe preg_* replacements.", + "keywords": [ + "PCRE", + "preg", + "regex", + "regular expression" + ], + "support": { + "issues": "https://github.com/composer/pcre/issues", + "source": "https://github.com/composer/pcre/tree/3.3.2" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2024-11-12T16:29:46+00:00" + }, + { + "name": "composer/semver", + "version": "3.4.3", + "source": { + "type": "git", + "url": "https://github.com/composer/semver.git", + "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12", + "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12", + "shasum": "" + }, + "require": { + "php": "^5.3.2 || ^7.0 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^1.11", + "symfony/phpunit-bridge": "^3 || ^7" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Composer\\Semver\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nils Adermann", + "email": "naderman@naderman.de", + "homepage": "http://www.naderman.de" + }, + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + }, + { + "name": "Rob Bast", + "email": "rob.bast@gmail.com", + "homepage": "http://robbast.nl" + } + ], + "description": "Semver library that offers utilities, version constraint parsing and validation.", + "keywords": [ + "semantic", + "semver", + "validation", + "versioning" + ], + "support": { + "irc": "ircs://irc.libera.chat:6697/composer", + "issues": "https://github.com/composer/semver/issues", + "source": "https://github.com/composer/semver/tree/3.4.3" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2024-09-19T14:15:21+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": "ezyang/htmlpurifier", + "version": "v4.18.0", + "source": { + "type": "git", + "url": "https://github.com/ezyang/htmlpurifier.git", + "reference": "cb56001e54359df7ae76dc522d08845dc741621b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/cb56001e54359df7ae76dc522d08845dc741621b", + "reference": "cb56001e54359df7ae76dc522d08845dc741621b", + "shasum": "" + }, + "require": { + "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0" + }, + "require-dev": { + "cerdic/css-tidy": "^1.7 || ^2.0", + "simpletest/simpletest": "dev-master" + }, + "suggest": { + "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.", + "ext-bcmath": "Used for unit conversion and imagecrash protection", + "ext-iconv": "Converts text to and from non-UTF-8 encodings", + "ext-tidy": "Used for pretty-printing HTML" + }, + "type": "library", + "autoload": { + "files": [ + "library/HTMLPurifier.composer.php" + ], + "psr-0": { + "HTMLPurifier": "library/" + }, + "exclude-from-classmap": [ + "/library/HTMLPurifier/Language/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "LGPL-2.1-or-later" + ], + "authors": [ + { + "name": "Edward Z. Yang", + "email": "admin@htmlpurifier.org", + "homepage": "http://ezyang.com" + } + ], + "description": "Standards compliant HTML filter written in PHP", + "homepage": "http://htmlpurifier.org/", + "keywords": [ + "html" + ], + "support": { + "issues": "https://github.com/ezyang/htmlpurifier/issues", + "source": "https://github.com/ezyang/htmlpurifier/tree/v4.18.0" + }, + "time": "2024-11-01T03:51:45+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": "v10.48.29", + "source": { + "type": "git", + "url": "https://github.com/laravel/framework.git", + "reference": "8f7f9247cb8aad1a769d6b9815a6623d89b46b47" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/framework/zipball/8f7f9247cb8aad1a769d6b9815a6623d89b46b47", + "reference": "8f7f9247cb8aad1a769d6b9815a6623d89b46b47", + "shasum": "" + }, + "require": { + "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12", + "composer-runtime-api": "^2.2", + "doctrine/inflector": "^2.0.5", + "dragonmantank/cron-expression": "^3.3.2", + "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.2", + "guzzlehttp/uri-template": "^1.0", + "laravel/prompts": "^0.1.9", + "laravel/serializable-closure": "^1.3", + "league/commonmark": "^2.2.1", + "league/flysystem": "^3.8.0", + "monolog/monolog": "^3.0", + "nesbot/carbon": "^2.67", + "nunomaduro/termwind": "^1.13", + "php": "^8.1", + "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": "^6.2", + "symfony/error-handler": "^6.2", + "symfony/finder": "^6.2", + "symfony/http-foundation": "^6.4", + "symfony/http-kernel": "^6.2", + "symfony/mailer": "^6.2", + "symfony/mime": "^6.2", + "symfony/process": "^6.2", + "symfony/routing": "^6.2", + "symfony/uid": "^6.2", + "symfony/var-dumper": "^6.2", + "tijsverkoyen/css-to-inline-styles": "^2.2.5", + "vlucas/phpdotenv": "^5.4.1", + "voku/portable-ascii": "^2.0" + }, + "conflict": { + "carbonphp/carbon-doctrine-types": ">=3.0", + "doctrine/dbal": ">=4.0", + "mockery/mockery": "1.6.8", + "phpunit/phpunit": ">=11.0.0", + "tightenco/collect": "<5.5.33" + }, + "provide": { + "psr/container-implementation": "1.1|2.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/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" + }, + "require-dev": { + "ably/ably-php": "^1.0", + "aws/aws-sdk-php": "^3.235.5", + "doctrine/dbal": "^3.5.1", + "ext-gmp": "*", + "fakerphp/faker": "^1.21", + "guzzlehttp/guzzle": "^7.5", + "league/flysystem-aws-s3-v3": "^3.0", + "league/flysystem-ftp": "^3.0", + "league/flysystem-path-prefixing": "^3.3", + "league/flysystem-read-only": "^3.3", + "league/flysystem-sftp-v3": "^3.0", + "mockery/mockery": "^1.5.1", + "nyholm/psr7": "^1.2", + "orchestra/testbench-core": "^8.23.4", + "pda/pheanstalk": "^4.0", + "phpstan/phpstan": "~1.11.11", + "phpunit/phpunit": "^10.0.7", + "predis/predis": "^2.0.2", + "symfony/cache": "^6.2", + "symfony/http-client": "^6.2.4", + "symfony/psr-http-message-bridge": "^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.235.5).", + "brianium/paratest": "Required to run tests in parallel (^6.0).", + "doctrine/dbal": "Required to rename columns and drop SQLite columns (^3.5.1).", + "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).", + "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).", + "filp/whoops": "Required for friendly error pages in development (^2.14.3).", + "guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.5).", + "laravel/tinker": "Required to use the tinker console command (^2.0).", + "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).", + "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).", + "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).", + "league/flysystem-read-only": "Required to use read-only disks (^3.3)", + "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).", + "mockery/mockery": "Required to use mocking (^1.5.1).", + "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).", + "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).", + "phpunit/phpunit": "Required to use assertions and run tests (^9.5.8|^10.0.7).", + "predis/predis": "Required to use the predis connector (^2.0.2).", + "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).", + "symfony/cache": "Required to PSR-6 cache bridge (^6.2).", + "symfony/filesystem": "Required to enable support for relative symbolic links (^6.2).", + "symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.2).", + "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.2).", + "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.2).", + "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "10.x-dev" + } + }, + "autoload": { + "files": [ + "src/Illuminate/Collections/helpers.php", + "src/Illuminate/Events/functions.php", + "src/Illuminate/Filesystem/functions.php", + "src/Illuminate/Foundation/helpers.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-03-12T14:42:01+00:00" + }, + { + "name": "laravel/prompts", + "version": "v0.1.25", + "source": { + "type": "git", + "url": "https://github.com/laravel/prompts.git", + "reference": "7b4029a84c37cb2725fc7f011586e2997040bc95" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/prompts/zipball/7b4029a84c37cb2725fc7f011586e2997040bc95", + "reference": "7b4029a84c37cb2725fc7f011586e2997040bc95", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "illuminate/collections": "^10.0|^11.0", + "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": { + "mockery/mockery": "^1.5", + "pestphp/pest": "^2.3", + "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.1.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.1.25" + }, + "time": "2024-08-12T22:06:33+00:00" + }, + { + "name": "laravel/sanctum", + "version": "v3.3.3", + "source": { + "type": "git", + "url": "https://github.com/laravel/sanctum.git", + "reference": "8c104366459739f3ada0e994bcd3e6fd681ce3d5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/sanctum/zipball/8c104366459739f3ada0e994bcd3e6fd681ce3d5", + "reference": "8c104366459739f3ada0e994bcd3e6fd681ce3d5", + "shasum": "" + }, + "require": { + "ext-json": "*", + "illuminate/console": "^9.21|^10.0", + "illuminate/contracts": "^9.21|^10.0", + "illuminate/database": "^9.21|^10.0", + "illuminate/support": "^9.21|^10.0", + "php": "^8.0.2" + }, + "require-dev": { + "mockery/mockery": "^1.0", + "orchestra/testbench": "^7.28.2|^8.8.3", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^9.6" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Laravel\\Sanctum\\SanctumServiceProvider" + ] + }, + "branch-alias": { + "dev-master": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Laravel\\Sanctum\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.", + "keywords": [ + "auth", + "laravel", + "sanctum" + ], + "support": { + "issues": "https://github.com/laravel/sanctum/issues", + "source": "https://github.com/laravel/sanctum" + }, + "time": "2023-12-19T18:44:48+00:00" + }, + { + "name": "laravel/serializable-closure", + "version": "v1.3.7", + "source": { + "type": "git", + "url": "https://github.com/laravel/serializable-closure.git", + "reference": "4f48ade902b94323ca3be7646db16209ec76be3d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/4f48ade902b94323ca3be7646db16209ec76be3d", + "reference": "4f48ade902b94323ca3be7646db16209ec76be3d", + "shasum": "" + }, + "require": { + "php": "^7.3|^8.0" + }, + "require-dev": { + "illuminate/support": "^8.0|^9.0|^10.0|^11.0", + "nesbot/carbon": "^2.61|^3.0", + "pestphp/pest": "^1.21.3", + "phpstan/phpstan": "^1.8.2", + "symfony/var-dumper": "^5.4.11|^6.2.0|^7.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.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": "2024-11-14T18:34:49+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.29.1", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/flysystem.git", + "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/edc1bb7c86fab0776c3287dbd19b5fa278347319", + "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319", + "shasum": "" + }, + "require": { + "league/flysystem-local": "^3.0.0", + "league/mime-type-detection": "^1.0.0", + "php": "^8.0.2" + }, + "conflict": { + "async-aws/core": "<1.19.0", + "async-aws/s3": "<1.14.0", + "aws/aws-sdk-php": "3.209.31 || 3.210.0", + "guzzlehttp/guzzle": "<7.0", + "guzzlehttp/ringphp": "<1.1.1", + "phpseclib/phpseclib": "3.0.15", + "symfony/http-client": "<5.2" + }, + "require-dev": { + "async-aws/s3": "^1.5 || ^2.0", + "async-aws/simple-s3": "^1.1 || ^2.0", + "aws/aws-sdk-php": "^3.295.10", + "composer/semver": "^3.0", + "ext-fileinfo": "*", + "ext-ftp": "*", + "ext-mongodb": "^1.3", + "ext-zip": "*", + "friendsofphp/php-cs-fixer": "^3.5", + "google/cloud-storage": "^1.23", + "guzzlehttp/psr7": "^2.6", + "microsoft/azure-storage-blob": "^1.1", + "mongodb/mongodb": "^1.2", + "phpseclib/phpseclib": "^3.0.36", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^9.5.11|^10.0", + "sabre/dav": "^4.6.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\Flysystem\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "File storage abstraction for PHP", + "keywords": [ + "WebDAV", + "aws", + "cloud", + "file", + "files", + "filesystem", + "filesystems", + "ftp", + "s3", + "sftp", + "storage" + ], + "support": { + "issues": "https://github.com/thephpleague/flysystem/issues", + "source": "https://github.com/thephpleague/flysystem/tree/3.29.1" + }, + "time": "2024-10-08T08:58:34+00:00" + }, + { + "name": "league/flysystem-local", + "version": "3.29.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/flysystem-local.git", + "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/e0e8d52ce4b2ed154148453d321e97c8e931bd27", + "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", + "league/flysystem": "^3.0.0", + "league/mime-type-detection": "^1.0.0", + "php": "^8.0.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\Flysystem\\Local\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "Local filesystem adapter for Flysystem.", + "keywords": [ + "Flysystem", + "file", + "files", + "filesystem", + "local" + ], + "support": { + "source": "https://github.com/thephpleague/flysystem-local/tree/3.29.0" + }, + "time": "2024-08-09T21:24:39+00:00" + }, + { + "name": "league/mime-type-detection", + "version": "1.16.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/mime-type-detection.git", + "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9", + "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.2", + "phpstan/phpstan": "^0.12.68", + "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\MimeTypeDetection\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "Mime-type detection for Flysystem", + "support": { + "issues": "https://github.com/thephpleague/mime-type-detection/issues", + "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0" + }, + "funding": [ + { + "url": "https://github.com/frankdejonge", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/league/flysystem", + "type": "tidelift" + } + ], + "time": "2024-09-21T08:32:55+00:00" + }, + { + "name": "maatwebsite/excel", + "version": "3.1.64", + "source": { + "type": "git", + "url": "https://github.com/SpartnerNL/Laravel-Excel.git", + "reference": "e25d44a2d91da9179cd2d7fec952313548597a79" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/SpartnerNL/Laravel-Excel/zipball/e25d44a2d91da9179cd2d7fec952313548597a79", + "reference": "e25d44a2d91da9179cd2d7fec952313548597a79", + "shasum": "" + }, + "require": { + "composer/semver": "^3.3", + "ext-json": "*", + "illuminate/support": "5.8.*||^6.0||^7.0||^8.0||^9.0||^10.0||^11.0||^12.0", + "php": "^7.0||^8.0", + "phpoffice/phpspreadsheet": "^1.29.9", + "psr/simple-cache": "^1.0||^2.0||^3.0" + }, + "require-dev": { + "laravel/scout": "^7.0||^8.0||^9.0||^10.0", + "orchestra/testbench": "^6.0||^7.0||^8.0||^9.0||^10.0", + "predis/predis": "^1.1" + }, + "type": "library", + "extra": { + "laravel": { + "aliases": { + "Excel": "Maatwebsite\\Excel\\Facades\\Excel" + }, + "providers": [ + "Maatwebsite\\Excel\\ExcelServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Maatwebsite\\Excel\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Patrick Brouwers", + "email": "patrick@spartner.nl" + } + ], + "description": "Supercharged Excel exports and imports in Laravel", + "keywords": [ + "PHPExcel", + "batch", + "csv", + "excel", + "export", + "import", + "laravel", + "php", + "phpspreadsheet" + ], + "support": { + "issues": "https://github.com/SpartnerNL/Laravel-Excel/issues", + "source": "https://github.com/SpartnerNL/Laravel-Excel/tree/3.1.64" + }, + "funding": [ + { + "url": "https://laravel-excel.com/commercial-support", + "type": "custom" + }, + { + "url": "https://github.com/patrickbrouwers", + "type": "github" + } + ], + "time": "2025-02-24T11:12:50+00:00" + }, + { + "name": "maennchen/zipstream-php", + "version": "3.1.2", + "source": { + "type": "git", + "url": "https://github.com/maennchen/ZipStream-PHP.git", + "reference": "aeadcf5c412332eb426c0f9b4485f6accba2a99f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/aeadcf5c412332eb426c0f9b4485f6accba2a99f", + "reference": "aeadcf5c412332eb426c0f9b4485f6accba2a99f", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "ext-zlib": "*", + "php-64bit": "^8.2" + }, + "require-dev": { + "brianium/paratest": "^7.7", + "ext-zip": "*", + "friendsofphp/php-cs-fixer": "^3.16", + "guzzlehttp/guzzle": "^7.5", + "mikey179/vfsstream": "^1.6", + "php-coveralls/php-coveralls": "^2.5", + "phpunit/phpunit": "^11.0", + "vimeo/psalm": "^6.0" + }, + "suggest": { + "guzzlehttp/psr7": "^2.4", + "psr/http-message": "^2.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "ZipStream\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Paul Duncan", + "email": "pabs@pablotron.org" + }, + { + "name": "Jonatan Männchen", + "email": "jonatan@maennchen.ch" + }, + { + "name": "Jesse Donat", + "email": "donatj@gmail.com" + }, + { + "name": "András Kolesár", + "email": "kolesar@kolesar.hu" + } + ], + "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.", + "keywords": [ + "stream", + "zip" + ], + "support": { + "issues": "https://github.com/maennchen/ZipStream-PHP/issues", + "source": "https://github.com/maennchen/ZipStream-PHP/tree/3.1.2" + }, + "funding": [ + { + "url": "https://github.com/maennchen", + "type": "github" + } + ], + "time": "2025-01-27T12:07:53+00:00" + }, + { + "name": "markbaker/complex", + "version": "3.0.2", + "source": { + "type": "git", + "url": "https://github.com/MarkBaker/PHPComplex.git", + "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9", + "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "dealerdirect/phpcodesniffer-composer-installer": "dev-master", + "phpcompatibility/php-compatibility": "^9.3", + "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0", + "squizlabs/php_codesniffer": "^3.7" + }, + "type": "library", + "autoload": { + "psr-4": { + "Complex\\": "classes/src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mark Baker", + "email": "mark@lange.demon.co.uk" + } + ], + "description": "PHP Class for working with complex numbers", + "homepage": "https://github.com/MarkBaker/PHPComplex", + "keywords": [ + "complex", + "mathematics" + ], + "support": { + "issues": "https://github.com/MarkBaker/PHPComplex/issues", + "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2" + }, + "time": "2022-12-06T16:21:08+00:00" + }, + { + "name": "markbaker/matrix", + "version": "3.0.1", + "source": { + "type": "git", + "url": "https://github.com/MarkBaker/PHPMatrix.git", + "reference": "728434227fe21be27ff6d86621a1b13107a2562c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c", + "reference": "728434227fe21be27ff6d86621a1b13107a2562c", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "dealerdirect/phpcodesniffer-composer-installer": "dev-master", + "phpcompatibility/php-compatibility": "^9.3", + "phpdocumentor/phpdocumentor": "2.*", + "phploc/phploc": "^4.0", + "phpmd/phpmd": "2.*", + "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0", + "sebastian/phpcpd": "^4.0", + "squizlabs/php_codesniffer": "^3.7" + }, + "type": "library", + "autoload": { + "psr-4": { + "Matrix\\": "classes/src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mark Baker", + "email": "mark@demon-angel.eu" + } + ], + "description": "PHP Class for working with matrices", + "homepage": "https://github.com/MarkBaker/PHPMatrix", + "keywords": [ + "mathematics", + "matrix", + "vector" + ], + "support": { + "issues": "https://github.com/MarkBaker/PHPMatrix/issues", + "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1" + }, + "time": "2022-12-02T22:17:43+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": "2.73.0", + "source": { + "type": "git", + "url": "https://github.com/CarbonPHP/carbon.git", + "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/9228ce90e1035ff2f0db84b40ec2e023ed802075", + "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075", + "shasum": "" + }, + "require": { + "carbonphp/carbon-doctrine-types": "*", + "ext-json": "*", + "php": "^7.1.8 || ^8.0", + "psr/clock": "^1.0", + "symfony/polyfill-mbstring": "^1.0", + "symfony/polyfill-php80": "^1.16", + "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0" + }, + "provide": { + "psr/clock-implementation": "1.0" + }, + "require-dev": { + "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0", + "doctrine/orm": "^2.7 || ^3.0", + "friendsofphp/php-cs-fixer": "^3.0", + "kylekatarnls/multi-tester": "^2.0", + "ondrejmirtes/better-reflection": "<6", + "phpmd/phpmd": "^2.9", + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "^0.12.99 || ^1.7.14", + "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6", + "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20", + "squizlabs/php_codesniffer": "^3.4" + }, + "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/briannesbitt/Carbon/issues", + "source": "https://github.com/briannesbitt/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-01-08T20:10:23+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": "v1.17.0", + "source": { + "type": "git", + "url": "https://github.com/nunomaduro/termwind.git", + "reference": "5369ef84d8142c1d87e4ec278711d4ece3cbf301" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/5369ef84d8142c1d87e4ec278711d4ece3cbf301", + "reference": "5369ef84d8142c1d87e4ec278711d4ece3cbf301", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "php": "^8.1", + "symfony/console": "^6.4.15" + }, + "require-dev": { + "illuminate/console": "^10.48.24", + "illuminate/support": "^10.48.24", + "laravel/pint": "^1.18.2", + "pestphp/pest": "^2.36.0", + "pestphp/pest-plugin-mock": "2.0.0", + "phpstan/phpstan": "^1.12.11", + "phpstan/phpstan-strict-rules": "^1.6.1", + "symfony/var-dumper": "^6.4.15", + "thecodingmachine/phpstan-strict-rules": "^1.0.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Termwind\\Laravel\\TermwindServiceProvider" + ] + } + }, + "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/v1.17.0" + }, + "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": "2024-11-21T10:36:35+00:00" + }, + { + "name": "phpoffice/phpspreadsheet", + "version": "1.29.10", + "source": { + "type": "git", + "url": "https://github.com/PHPOffice/PhpSpreadsheet.git", + "reference": "c80041b1628c4f18030407134fe88303661d4e4e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/c80041b1628c4f18030407134fe88303661d4e4e", + "reference": "c80041b1628c4f18030407134fe88303661d4e4e", + "shasum": "" + }, + "require": { + "composer/pcre": "^1||^2||^3", + "ext-ctype": "*", + "ext-dom": "*", + "ext-fileinfo": "*", + "ext-gd": "*", + "ext-iconv": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-simplexml": "*", + "ext-xml": "*", + "ext-xmlreader": "*", + "ext-xmlwriter": "*", + "ext-zip": "*", + "ext-zlib": "*", + "ezyang/htmlpurifier": "^4.15", + "maennchen/zipstream-php": "^2.1 || ^3.0", + "markbaker/complex": "^3.0", + "markbaker/matrix": "^3.0", + "php": "^7.4 || ^8.0", + "psr/http-client": "^1.0", + "psr/http-factory": "^1.0", + "psr/simple-cache": "^1.0 || ^2.0 || ^3.0" + }, + "require-dev": { + "dealerdirect/phpcodesniffer-composer-installer": "dev-main", + "dompdf/dompdf": "^1.0 || ^2.0 || ^3.0", + "friendsofphp/php-cs-fixer": "^3.2", + "mitoteam/jpgraph": "^10.3", + "mpdf/mpdf": "^8.1.1", + "phpcompatibility/php-compatibility": "^9.3", + "phpstan/phpstan": "^1.1", + "phpstan/phpstan-phpunit": "^1.0", + "phpunit/phpunit": "^8.5 || ^9.0", + "squizlabs/php_codesniffer": "^3.7", + "tecnickcom/tcpdf": "^6.5" + }, + "suggest": { + "dompdf/dompdf": "Option for rendering PDF with PDF Writer", + "ext-intl": "PHP Internationalization Functions", + "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers", + "mpdf/mpdf": "Option for rendering PDF with PDF Writer", + "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer" + }, + "type": "library", + "autoload": { + "psr-4": { + "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Maarten Balliauw", + "homepage": "https://blog.maartenballiauw.be" + }, + { + "name": "Mark Baker", + "homepage": "https://markbakeruk.net" + }, + { + "name": "Franck Lefevre", + "homepage": "https://rootslabs.net" + }, + { + "name": "Erik Tilt" + }, + { + "name": "Adrien Crivelli" + } + ], + "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine", + "homepage": "https://github.com/PHPOffice/PhpSpreadsheet", + "keywords": [ + "OpenXML", + "excel", + "gnumeric", + "ods", + "php", + "spreadsheet", + "xls", + "xlsx" + ], + "support": { + "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues", + "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.29.10" + }, + "time": "2025-02-08T02:56:14+00:00" + }, + { + "name": "phpoption/phpoption", + "version": "1.9.3", + "source": { + "type": "git", + "url": "https://github.com/schmittjoh/php-option.git", + "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54", + "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + }, + "branch-alias": { + "dev-master": "1.9-dev" + } + }, + "autoload": { + "psr-4": { + "PhpOption\\": "src/PhpOption/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Johannes M. Schmitt", + "email": "schmittjoh@gmail.com", + "homepage": "https://github.com/schmittjoh" + }, + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + } + ], + "description": "Option Type for PHP", + "keywords": [ + "language", + "option", + "php", + "type" + ], + "support": { + "issues": "https://github.com/schmittjoh/php-option/issues", + "source": "https://github.com/schmittjoh/php-option/tree/1.9.3" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption", + "type": "tidelift" + } + ], + "time": "2024-07-20T21:41:07+00:00" + }, + { + "name": "psr/clock", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/clock.git", + "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d", + "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d", + "shasum": "" + }, + "require": { + "php": "^7.0 || ^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Psr\\Clock\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for reading the clock.", + "homepage": "https://github.com/php-fig/clock", + "keywords": [ + "clock", + "now", + "psr", + "psr-20", + "time" + ], + "support": { + "issues": "https://github.com/php-fig/clock/issues", + "source": "https://github.com/php-fig/clock/tree/1.0.0" + }, + "time": "2022-11-25T14:36:26+00:00" + }, + { + "name": "psr/container", + "version": "2.0.2", + "source": { + "type": "git", + "url": "https://github.com/php-fig/container.git", + "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963", + "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963", + "shasum": "" + }, + "require": { + "php": ">=7.4.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Container\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common Container Interface (PHP FIG PSR-11)", + "homepage": "https://github.com/php-fig/container", + "keywords": [ + "PSR-11", + "container", + "container-interface", + "container-interop", + "psr" + ], + "support": { + "issues": "https://github.com/php-fig/container/issues", + "source": "https://github.com/php-fig/container/tree/2.0.2" + }, + "time": "2021-11-05T16:47:00+00:00" + }, + { + "name": "psr/event-dispatcher", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/event-dispatcher.git", + "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0", + "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0", + "shasum": "" + }, + "require": { + "php": ">=7.2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\EventDispatcher\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Standard interfaces for event handling.", + "keywords": [ + "events", + "psr", + "psr-14" + ], + "support": { + "issues": "https://github.com/php-fig/event-dispatcher/issues", + "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0" + }, + "time": "2019-01-08T18:20:26+00:00" + }, + { + "name": "psr/http-client", + "version": "1.0.3", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-client.git", + "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90", + "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90", + "shasum": "" + }, + "require": { + "php": "^7.0 || ^8.0", + "psr/http-message": "^1.0 || ^2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Client\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for HTTP clients", + "homepage": "https://github.com/php-fig/http-client", + "keywords": [ + "http", + "http-client", + "psr", + "psr-18" + ], + "support": { + "source": "https://github.com/php-fig/http-client" + }, + "time": "2023-09-23T14:17:50+00:00" + }, + { + "name": "psr/http-factory", + "version": "1.1.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-factory.git", + "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a", + "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a", + "shasum": "" + }, + "require": { + "php": ">=7.1", + "psr/http-message": "^1.0 || ^2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Message\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories", + "keywords": [ + "factory", + "http", + "message", + "psr", + "psr-17", + "psr-7", + "request", + "response" + ], + "support": { + "source": "https://github.com/php-fig/http-factory" + }, + "time": "2024-04-15T12:06:14+00:00" + }, + { + "name": "psr/http-message", + "version": "2.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-message.git", + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71", + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Message\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for HTTP messages", + "homepage": "https://github.com/php-fig/http-message", + "keywords": [ + "http", + "http-message", + "psr", + "psr-7", + "request", + "response" + ], + "support": { + "source": "https://github.com/php-fig/http-message/tree/2.0" + }, + "time": "2023-04-04T09:54:51+00:00" + }, + { + "name": "psr/log", + "version": "3.0.2", + "source": { + "type": "git", + "url": "https://github.com/php-fig/log.git", + "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", + "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", + "shasum": "" + }, + "require": { + "php": ">=8.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Log\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for logging libraries", + "homepage": "https://github.com/php-fig/log", + "keywords": [ + "log", + "psr", + "psr-3" + ], + "support": { + "source": "https://github.com/php-fig/log/tree/3.0.2" + }, + "time": "2024-09-11T13:17:53+00:00" + }, + { + "name": "psr/simple-cache", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/simple-cache.git", + "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865", + "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865", + "shasum": "" + }, + "require": { + "php": ">=8.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\SimpleCache\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interfaces for simple caching", + "keywords": [ + "cache", + "caching", + "psr", + "psr-16", + "simple-cache" + ], + "support": { + "source": "https://github.com/php-fig/simple-cache/tree/3.0.0" + }, + "time": "2021-10-29T13:26:27+00:00" + }, + { + "name": "psy/psysh", + "version": "v0.12.8", + "source": { + "type": "git", + "url": "https://github.com/bobthecow/psysh.git", + "reference": "85057ceedee50c49d4f6ecaff73ee96adb3b3625" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/85057ceedee50c49d4f6ecaff73ee96adb3b3625", + "reference": "85057ceedee50c49d4f6ecaff73ee96adb3b3625", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-tokenizer": "*", + "nikic/php-parser": "^5.0 || ^4.0", + "php": "^8.0 || ^7.4", + "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4", + "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4" + }, + "conflict": { + "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.2" + }, + "suggest": { + "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)", + "ext-pdo-sqlite": "The doc command requires SQLite to work.", + "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well." + }, + "bin": [ + "bin/psysh" + ], + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": false, + "forward-command": false + }, + "branch-alias": { + "dev-main": "0.12.x-dev" + } + }, + "autoload": { + "files": [ + "src/functions.php" + ], + "psr-4": { + "Psy\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Justin Hileman", + "email": "justin@justinhileman.info", + "homepage": "http://justinhileman.com" + } + ], + "description": "An interactive shell for modern PHP.", + "homepage": "http://psysh.org", + "keywords": [ + "REPL", + "console", + "interactive", + "shell" + ], + "support": { + "issues": "https://github.com/bobthecow/psysh/issues", + "source": "https://github.com/bobthecow/psysh/tree/v0.12.8" + }, + "time": "2025-03-16T03:05:19+00:00" + }, + { + "name": "ralouphie/getallheaders", + "version": "3.0.3", + "source": { + "type": "git", + "url": "https://github.com/ralouphie/getallheaders.git", + "reference": "120b605dfeb996808c31b6477290a714d356e822" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822", + "reference": "120b605dfeb996808c31b6477290a714d356e822", + "shasum": "" + }, + "require": { + "php": ">=5.6" + }, + "require-dev": { + "php-coveralls/php-coveralls": "^2.1", + "phpunit/phpunit": "^5 || ^6.5" + }, + "type": "library", + "autoload": { + "files": [ + "src/getallheaders.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ralph Khattar", + "email": "ralph.khattar@gmail.com" + } + ], + "description": "A polyfill for getallheaders.", + "support": { + "issues": "https://github.com/ralouphie/getallheaders/issues", + "source": "https://github.com/ralouphie/getallheaders/tree/develop" + }, + "time": "2019-03-08T08:55:37+00:00" + }, + { + "name": "ramsey/collection", + "version": "2.1.1", + "source": { + "type": "git", + "url": "https://github.com/ramsey/collection.git", + "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ramsey/collection/zipball/344572933ad0181accbf4ba763e85a0306a8c5e2", + "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "require-dev": { + "captainhook/plugin-composer": "^5.3", + "ergebnis/composer-normalize": "^2.45", + "fakerphp/faker": "^1.24", + "hamcrest/hamcrest-php": "^2.0", + "jangregor/phpstan-prophecy": "^2.1", + "mockery/mockery": "^1.6", + "php-parallel-lint/php-console-highlighter": "^1.0", + "php-parallel-lint/php-parallel-lint": "^1.4", + "phpspec/prophecy-phpunit": "^2.3", + "phpstan/extension-installer": "^1.4", + "phpstan/phpstan": "^2.1", + "phpstan/phpstan-mockery": "^2.0", + "phpstan/phpstan-phpunit": "^2.0", + "phpunit/phpunit": "^10.5", + "ramsey/coding-standard": "^2.3", + "ramsey/conventional-commits": "^1.6", + "roave/security-advisories": "dev-latest" + }, + "type": "library", + "extra": { + "captainhook": { + "force-install": true + }, + "ramsey/conventional-commits": { + "configFile": "conventional-commits.json" + } + }, + "autoload": { + "psr-4": { + "Ramsey\\Collection\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ben Ramsey", + "email": "ben@benramsey.com", + "homepage": "https://benramsey.com" + } + ], + "description": "A PHP library for representing and manipulating collections.", + "keywords": [ + "array", + "collection", + "hash", + "map", + "queue", + "set" + ], + "support": { + "issues": "https://github.com/ramsey/collection/issues", + "source": "https://github.com/ramsey/collection/tree/2.1.1" + }, + "time": "2025-03-22T05:38:12+00:00" + }, + { + "name": "ramsey/uuid", + "version": "4.8.1", + "source": { + "type": "git", + "url": "https://github.com/ramsey/uuid.git", + "reference": "fdf4dd4e2ff1813111bd0ad58d7a1ddbb5b56c28" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/fdf4dd4e2ff1813111bd0ad58d7a1ddbb5b56c28", + "reference": "fdf4dd4e2ff1813111bd0ad58d7a1ddbb5b56c28", + "shasum": "" + }, + "require": { + "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13", + "ext-json": "*", + "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.8.1" + }, + "time": "2025-06-01T06:28:46+00:00" + }, + { + "name": "symfony/console", + "version": "v6.4.22", + "source": { + "type": "git", + "url": "https://github.com/symfony/console.git", + "reference": "7d29659bc3c9d8e9a34e2c3414ef9e9e003e6cf3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/console/zipball/7d29659bc3c9d8e9a34e2c3414ef9e9e003e6cf3", + "reference": "7d29659bc3c9d8e9a34e2c3414ef9e9e003e6cf3", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/string": "^5.4|^6.0|^7.0" + }, + "conflict": { + "symfony/dependency-injection": "<5.4", + "symfony/dotenv": "<5.4", + "symfony/event-dispatcher": "<5.4", + "symfony/lock": "<5.4", + "symfony/process": "<5.4" + }, + "provide": { + "psr/log-implementation": "1.0|2.0|3.0" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^5.4|^6.0|^7.0", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/event-dispatcher": "^5.4|^6.0|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/lock": "^5.4|^6.0|^7.0", + "symfony/messenger": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.0|^7.0", + "symfony/stopwatch": "^5.4|^6.0|^7.0", + "symfony/var-dumper": "^5.4|^6.0|^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/v6.4.22" + }, + "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-07T07:05:04+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": "v6.4.22", + "source": { + "type": "git", + "url": "https://github.com/symfony/error-handler.git", + "reference": "ce765a2d28b3cce61de1fb916e207767a73171d1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/ce765a2d28b3cce61de1fb916e207767a73171d1", + "reference": "ce765a2d28b3cce61de1fb916e207767a73171d1", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/log": "^1|^2|^3", + "symfony/var-dumper": "^5.4|^6.0|^7.0" + }, + "conflict": { + "symfony/deprecation-contracts": "<2.5", + "symfony/http-kernel": "<6.4" + }, + "require-dev": { + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/serializer": "^5.4|^6.0|^7.0" + }, + "bin": [ + "Resources/bin/patch-type-declarations" + ], + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\ErrorHandler\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides tools to manage errors and ease debugging PHP code", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/error-handler/tree/v6.4.22" + }, + "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-28T12:00:15+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": "v6.4.17", + "source": { + "type": "git", + "url": "https://github.com/symfony/finder.git", + "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/finder/zipball/1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7", + "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "symfony/filesystem": "^6.0|^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/v6.4.17" + }, + "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-29T13:51:37+00:00" + }, + { + "name": "symfony/http-foundation", + "version": "v6.4.22", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-foundation.git", + "reference": "6b7c97fe1ddac8df3cc9ba6410c8abc683e148ae" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/6b7c97fe1ddac8df3cc9ba6410c8abc683e148ae", + "reference": "6b7c97fe1ddac8df3cc9ba6410c8abc683e148ae", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.1", + "symfony/polyfill-php83": "^1.27" + }, + "conflict": { + "symfony/cache": "<6.4.12|>=7.0,<7.1.5" + }, + "require-dev": { + "doctrine/dbal": "^2.13.1|^3|^4", + "predis/predis": "^1.1|^2.0", + "symfony/cache": "^6.4.12|^7.1.5", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/expression-language": "^5.4|^6.0|^7.0", + "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0", + "symfony/mime": "^5.4|^6.0|^7.0", + "symfony/rate-limiter": "^5.4|^6.0|^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/v6.4.22" + }, + "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-11T15:36:20+00:00" + }, + { + "name": "symfony/http-kernel", + "version": "v6.4.22", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-kernel.git", + "reference": "15c105b839a7cfa1bc0989c091bfb6477f23b673" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/15c105b839a7cfa1bc0989c091bfb6477f23b673", + "reference": "15c105b839a7cfa1bc0989c091bfb6477f23b673", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/log": "^1|^2|^3", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/error-handler": "^6.4|^7.0", + "symfony/event-dispatcher": "^5.4|^6.0|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/polyfill-ctype": "^1.8" + }, + "conflict": { + "symfony/browser-kit": "<5.4", + "symfony/cache": "<5.4", + "symfony/config": "<6.1", + "symfony/console": "<5.4", + "symfony/dependency-injection": "<6.4", + "symfony/doctrine-bridge": "<5.4", + "symfony/form": "<5.4", + "symfony/http-client": "<5.4", + "symfony/http-client-contracts": "<2.5", + "symfony/mailer": "<5.4", + "symfony/messenger": "<5.4", + "symfony/translation": "<5.4", + "symfony/translation-contracts": "<2.5", + "symfony/twig-bridge": "<5.4", + "symfony/validator": "<6.4", + "symfony/var-dumper": "<6.3", + "twig/twig": "<2.13" + }, + "provide": { + "psr/log-implementation": "1.0|2.0|3.0" + }, + "require-dev": { + "psr/cache": "^1.0|^2.0|^3.0", + "symfony/browser-kit": "^5.4|^6.0|^7.0", + "symfony/clock": "^6.2|^7.0", + "symfony/config": "^6.1|^7.0", + "symfony/console": "^5.4|^6.0|^7.0", + "symfony/css-selector": "^5.4|^6.0|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/dom-crawler": "^5.4|^6.0|^7.0", + "symfony/expression-language": "^5.4|^6.0|^7.0", + "symfony/finder": "^5.4|^6.0|^7.0", + "symfony/http-client-contracts": "^2.5|^3", + "symfony/process": "^5.4|^6.0|^7.0", + "symfony/property-access": "^5.4.5|^6.0.5|^7.0", + "symfony/routing": "^5.4|^6.0|^7.0", + "symfony/serializer": "^6.4.4|^7.0.4", + "symfony/stopwatch": "^5.4|^6.0|^7.0", + "symfony/translation": "^5.4|^6.0|^7.0", + "symfony/translation-contracts": "^2.5|^3", + "symfony/uid": "^5.4|^6.0|^7.0", + "symfony/validator": "^6.4|^7.0", + "symfony/var-dumper": "^5.4|^6.4|^7.0", + "symfony/var-exporter": "^6.2|^7.0", + "twig/twig": "^2.13|^3.0.4" + }, + "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/v6.4.22" + }, + "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-29T07:23:40+00:00" + }, + { + "name": "symfony/mailer", + "version": "v6.4.21", + "source": { + "type": "git", + "url": "https://github.com/symfony/mailer.git", + "reference": "ada2809ccd4ec27aba9fc344e3efdaec624c6438" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/mailer/zipball/ada2809ccd4ec27aba9fc344e3efdaec624c6438", + "reference": "ada2809ccd4ec27aba9fc344e3efdaec624c6438", + "shasum": "" + }, + "require": { + "egulias/email-validator": "^2.1.10|^3|^4", + "php": ">=8.1", + "psr/event-dispatcher": "^1", + "psr/log": "^1|^2|^3", + "symfony/event-dispatcher": "^5.4|^6.0|^7.0", + "symfony/mime": "^6.2|^7.0", + "symfony/service-contracts": "^2.5|^3" + }, + "conflict": { + "symfony/http-client-contracts": "<2.5", + "symfony/http-kernel": "<5.4", + "symfony/messenger": "<6.2", + "symfony/mime": "<6.2", + "symfony/twig-bridge": "<6.2.1" + }, + "require-dev": { + "symfony/console": "^5.4|^6.0|^7.0", + "symfony/http-client": "^5.4|^6.0|^7.0", + "symfony/messenger": "^6.2|^7.0", + "symfony/twig-bridge": "^6.2|^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/v6.4.21" + }, + "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-26T23:47:35+00:00" + }, + { + "name": "symfony/mime", + "version": "v6.4.21", + "source": { + "type": "git", + "url": "https://github.com/symfony/mime.git", + "reference": "fec8aa5231f3904754955fad33c2db50594d22d1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/mime/zipball/fec8aa5231f3904754955fad33c2db50594d22d1", + "reference": "fec8aa5231f3904754955fad33c2db50594d22d1", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "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": "<5.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": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.4|^7.0", + "symfony/property-access": "^5.4|^6.0|^7.0", + "symfony/property-info": "^5.4|^6.0|^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/v6.4.21" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-04-27T13:27:38+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": "v6.4.20", + "source": { + "type": "git", + "url": "https://github.com/symfony/process.git", + "reference": "e2a61c16af36c9a07e5c9906498b73e091949a20" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/process/zipball/e2a61c16af36c9a07e5c9906498b73e091949a20", + "reference": "e2a61c16af36c9a07e5c9906498b73e091949a20", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "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/v6.4.20" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-03-10T17:11:00+00:00" + }, + { + "name": "symfony/routing", + "version": "v6.4.22", + "source": { + "type": "git", + "url": "https://github.com/symfony/routing.git", + "reference": "1f5234e8457164a3a0038a4c0a4ba27876a9c670" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/routing/zipball/1f5234e8457164a3a0038a4c0a4ba27876a9c670", + "reference": "1f5234e8457164a3a0038a4c0a4ba27876a9c670", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3" + }, + "conflict": { + "doctrine/annotations": "<1.12", + "symfony/config": "<6.2", + "symfony/dependency-injection": "<5.4", + "symfony/yaml": "<5.4" + }, + "require-dev": { + "doctrine/annotations": "^1.12|^2", + "psr/log": "^1|^2|^3", + "symfony/config": "^6.2|^7.0", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/expression-language": "^5.4|^6.0|^7.0", + "symfony/http-foundation": "^5.4|^6.0|^7.0", + "symfony/yaml": "^5.4|^6.0|^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/v6.4.22" + }, + "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-27T16:08:38+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": "v6.4.22", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation.git", + "reference": "7e3b3b7146c6fab36ddff304a8041174bf6e17ad" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation/zipball/7e3b3b7146c6fab36ddff304a8041174bf6e17ad", + "reference": "7e3b3b7146c6fab36ddff304a8041174bf6e17ad", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.0", + "symfony/translation-contracts": "^2.5|^3.0" + }, + "conflict": { + "symfony/config": "<5.4", + "symfony/console": "<5.4", + "symfony/dependency-injection": "<5.4", + "symfony/http-client-contracts": "<2.5", + "symfony/http-kernel": "<5.4", + "symfony/service-contracts": "<2.5", + "symfony/twig-bundle": "<5.4", + "symfony/yaml": "<5.4" + }, + "provide": { + "symfony/translation-implementation": "2.3|3.0" + }, + "require-dev": { + "nikic/php-parser": "^4.18|^5.0", + "psr/log": "^1|^2|^3", + "symfony/config": "^5.4|^6.0|^7.0", + "symfony/console": "^5.4|^6.0|^7.0", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/finder": "^5.4|^6.0|^7.0", + "symfony/http-client-contracts": "^2.5|^3.0", + "symfony/http-kernel": "^5.4|^6.0|^7.0", + "symfony/intl": "^5.4|^6.0|^7.0", + "symfony/polyfill-intl-icu": "^1.21", + "symfony/routing": "^5.4|^6.0|^7.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/yaml": "^5.4|^6.0|^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/v6.4.22" + }, + "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-29T07:06:44+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": "v6.4.13", + "source": { + "type": "git", + "url": "https://github.com/symfony/uid.git", + "reference": "18eb207f0436a993fffbdd811b5b8fa35fa5e007" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/uid/zipball/18eb207f0436a993fffbdd811b5b8fa35fa5e007", + "reference": "18eb207f0436a993fffbdd811b5b8fa35fa5e007", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/polyfill-uuid": "^1.15" + }, + "require-dev": { + "symfony/console": "^5.4|^6.0|^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/v6.4.13" + }, + "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:18:03+00:00" + }, + { + "name": "symfony/var-dumper", + "version": "v6.4.21", + "source": { + "type": "git", + "url": "https://github.com/symfony/var-dumper.git", + "reference": "22560f80c0c5cd58cc0bcaf73455ffd81eb380d5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/22560f80c0c5cd58cc0bcaf73455ffd81eb380d5", + "reference": "22560f80c0c5cd58cc0bcaf73455ffd81eb380d5", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/console": "<5.4" + }, + "require-dev": { + "ext-iconv": "*", + "symfony/console": "^5.4|^6.0|^7.0", + "symfony/error-handler": "^6.3|^7.0", + "symfony/http-kernel": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.0|^7.0", + "symfony/uid": "^5.4|^6.0|^7.0", + "twig/twig": "^2.13|^3.0.4" + }, + "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/v6.4.21" + }, + "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-09T07:34:50+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/breeze", + "version": "v1.29.1", + "source": { + "type": "git", + "url": "https://github.com/laravel/breeze.git", + "reference": "22c53b84b7fff91b01a318d71a10dfc251e92849" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/breeze/zipball/22c53b84b7fff91b01a318d71a10dfc251e92849", + "reference": "22c53b84b7fff91b01a318d71a10dfc251e92849", + "shasum": "" + }, + "require": { + "illuminate/console": "^10.17", + "illuminate/filesystem": "^10.17", + "illuminate/support": "^10.17", + "illuminate/validation": "^10.17", + "php": "^8.1.0" + }, + "require-dev": { + "orchestra/testbench": "^8.0", + "phpstan/phpstan": "^1.10" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Laravel\\Breeze\\BreezeServiceProvider" + ] + }, + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Laravel\\Breeze\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Minimal Laravel authentication scaffolding with Blade and Tailwind.", + "keywords": [ + "auth", + "laravel" + ], + "support": { + "issues": "https://github.com/laravel/breeze/issues", + "source": "https://github.com/laravel/breeze" + }, + "time": "2024-03-04T14:35:21+00:00" + }, + { + "name": "laravel/pint", + "version": "v1.22.1", + "source": { + "type": "git", + "url": "https://github.com/laravel/pint.git", + "reference": "941d1927c5ca420c22710e98420287169c7bcaf7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/pint/zipball/941d1927c5ca420c22710e98420287169c7bcaf7", + "reference": "941d1927c5ca420c22710e98420287169c7bcaf7", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-mbstring": "*", + "ext-tokenizer": "*", + "ext-xml": "*", + "php": "^8.2.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.75.0", + "illuminate/view": "^11.44.7", + "larastan/larastan": "^3.4.0", + "laravel-zero/framework": "^11.36.1", + "mockery/mockery": "^1.6.12", + "nunomaduro/termwind": "^2.3.1", + "pestphp/pest": "^2.36.0" + }, + "bin": [ + "builds/pint" + ], + "type": "project", + "autoload": { + "psr-4": { + "App\\": "app/", + "Database\\Seeders\\": "database/seeders/", + "Database\\Factories\\": "database/factories/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "An opinionated code formatter for PHP.", + "homepage": "https://laravel.com", + "keywords": [ + "format", + "formatter", + "lint", + "linter", + "php" + ], + "support": { + "issues": "https://github.com/laravel/pint/issues", + "source": "https://github.com/laravel/pint" + }, + "time": "2025-05-08T08:38:12+00:00" + }, + { + "name": "laravel/sail", + "version": "v1.43.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.1", + "source": { + "type": "git", + "url": "https://github.com/myclabs/DeepCopy.git", + "reference": "1720ddd719e16cf0db4eb1c6eca108031636d46c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/1720ddd719e16cf0db4eb1c6eca108031636d46c", + "reference": "1720ddd719e16cf0db4eb1c6eca108031636d46c", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "conflict": { + "doctrine/collections": "<1.6.8", + "doctrine/common": "<2.13.3 || >=3 <3.2.2" + }, + "require-dev": { + "doctrine/collections": "^1.6.8", + "doctrine/common": "^2.13.3 || ^3.2.2", + "phpspec/prophecy": "^1.10", + "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13" + }, + "type": "library", + "autoload": { + "files": [ + "src/DeepCopy/deep_copy.php" + ], + "psr-4": { + "DeepCopy\\": "src/DeepCopy/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Create deep copies (clones) of your objects", + "keywords": [ + "clone", + "copy", + "duplicate", + "object", + "object graph" + ], + "support": { + "issues": "https://github.com/myclabs/DeepCopy/issues", + "source": "https://github.com/myclabs/DeepCopy/tree/1.13.1" + }, + "funding": [ + { + "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", + "type": "tidelift" + } + ], + "time": "2025-04-29T12:36:36+00:00" + }, + { + "name": "nunomaduro/collision", + "version": "v7.12.0", + "source": { + "type": "git", + "url": "https://github.com/nunomaduro/collision.git", + "reference": "995245421d3d7593a6960822063bdba4f5d7cf1a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nunomaduro/collision/zipball/995245421d3d7593a6960822063bdba4f5d7cf1a", + "reference": "995245421d3d7593a6960822063bdba4f5d7cf1a", + "shasum": "" + }, + "require": { + "filp/whoops": "^2.17.0", + "nunomaduro/termwind": "^1.17.0", + "php": "^8.1.0", + "symfony/console": "^6.4.17" + }, + "conflict": { + "laravel/framework": ">=11.0.0" + }, + "require-dev": { + "brianium/paratest": "^7.4.8", + "laravel/framework": "^10.48.29", + "laravel/pint": "^1.21.2", + "laravel/sail": "^1.41.0", + "laravel/sanctum": "^3.3.3", + "laravel/tinker": "^2.10.1", + "nunomaduro/larastan": "^2.10.0", + "orchestra/testbench-core": "^8.35.0", + "pestphp/pest": "^2.36.0", + "phpunit/phpunit": "^10.5.36", + "sebastian/environment": "^6.1.0", + "spatie/laravel-ignition": "^2.9.1" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider" + ] + } + }, + "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", + "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-03-14T22:35:49+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": "10.1.16", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-code-coverage.git", + "reference": "7e308268858ed6baedc8704a304727d20bc07c77" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77", + "reference": "7e308268858ed6baedc8704a304727d20bc07c77", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "ext-xmlwriter": "*", + "nikic/php-parser": "^4.19.1 || ^5.1.0", + "php": ">=8.1", + "phpunit/php-file-iterator": "^4.1.0", + "phpunit/php-text-template": "^3.0.1", + "sebastian/code-unit-reverse-lookup": "^3.0.0", + "sebastian/complexity": "^3.2.0", + "sebastian/environment": "^6.1.0", + "sebastian/lines-of-code": "^2.0.2", + "sebastian/version": "^4.0.1", + "theseer/tokenizer": "^1.2.3" + }, + "require-dev": { + "phpunit/phpunit": "^10.1" + }, + "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": "10.1.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/10.1.16" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-08-22T04:31:57+00:00" + }, + { + "name": "phpunit/php-file-iterator", + "version": "4.1.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-file-iterator.git", + "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c", + "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.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": "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/4.1.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-08-31T06:24:48+00:00" + }, + { + "name": "phpunit/php-invoker", + "version": "4.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-invoker.git", + "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7", + "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "ext-pcntl": "*", + "phpunit/phpunit": "^10.0" + }, + "suggest": { + "ext-pcntl": "*" + }, + "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": "Invoke callables with a timeout", + "homepage": "https://github.com/sebastianbergmann/php-invoker/", + "keywords": [ + "process" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-invoker/issues", + "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T06:56:09+00:00" + }, + { + "name": "phpunit/php-text-template", + "version": "3.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-text-template.git", + "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748", + "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.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": "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/3.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-08-31T14:07:24+00:00" + }, + { + "name": "phpunit/php-timer", + "version": "6.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-timer.git", + "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d", + "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.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", + "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", + "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T06:57:52+00:00" + }, + { + "name": "phpunit/phpunit", + "version": "10.5.47", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/phpunit.git", + "reference": "3637b3e50d32ab3a0d1a33b3b6177169ec3d95a3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/3637b3e50d32ab3a0d1a33b3b6177169ec3d95a3", + "reference": "3637b3e50d32ab3a0d1a33b3b6177169ec3d95a3", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-json": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-xml": "*", + "ext-xmlwriter": "*", + "myclabs/deep-copy": "^1.13.1", + "phar-io/manifest": "^2.0.4", + "phar-io/version": "^3.2.1", + "php": ">=8.1", + "phpunit/php-code-coverage": "^10.1.16", + "phpunit/php-file-iterator": "^4.1.0", + "phpunit/php-invoker": "^4.0.0", + "phpunit/php-text-template": "^3.0.1", + "phpunit/php-timer": "^6.0.0", + "sebastian/cli-parser": "^2.0.1", + "sebastian/code-unit": "^2.0.0", + "sebastian/comparator": "^5.0.3", + "sebastian/diff": "^5.1.1", + "sebastian/environment": "^6.1.0", + "sebastian/exporter": "^5.1.2", + "sebastian/global-state": "^6.0.2", + "sebastian/object-enumerator": "^5.0.0", + "sebastian/recursion-context": "^5.0.0", + "sebastian/type": "^4.0.0", + "sebastian/version": "^4.0.1" + }, + "suggest": { + "ext-soap": "To be able to generate mocks based on WSDL files" + }, + "bin": [ + "phpunit" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "10.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/10.5.47" + }, + "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-06-20T11:29:11+00:00" + }, + { + "name": "sebastian/cli-parser", + "version": "2.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/cli-parser.git", + "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084", + "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.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/2.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-02T07:12:49+00:00" + }, + { + "name": "sebastian/code-unit", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit.git", + "reference": "a81fee9eef0b7a76af11d121767abc44c104e503" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503", + "reference": "a81fee9eef0b7a76af11d121767abc44c104e503", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.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", + "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T06:58:43+00:00" + }, + { + "name": "sebastian/code-unit-reverse-lookup", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", + "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d", + "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.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" + } + ], + "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", + "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T06:59:15+00:00" + }, + { + "name": "sebastian/comparator", + "version": "5.0.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/comparator.git", + "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e", + "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-mbstring": "*", + "php": ">=8.1", + "sebastian/diff": "^5.0", + "sebastian/exporter": "^5.0" + }, + "require-dev": { + "phpunit/phpunit": "^10.5" + }, + "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" + }, + { + "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/5.0.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-10-18T14:56:07+00:00" + }, + { + "name": "sebastian/complexity", + "version": "3.2.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/complexity.git", + "reference": "68ff824baeae169ec9f2137158ee529584553799" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799", + "reference": "68ff824baeae169ec9f2137158ee529584553799", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^4.18 || ^5.0", + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.2-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/3.2.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-12-21T08:37:17+00:00" + }, + { + "name": "sebastian/diff", + "version": "5.1.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/diff.git", + "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e", + "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0", + "symfony/process": "^6.4" + }, + "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" + }, + { + "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/5.1.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-02T07:15:17+00:00" + }, + { + "name": "sebastian/environment", + "version": "6.1.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/environment.git", + "reference": "8074dbcd93529b357029f5cc5058fd3e43666984" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984", + "reference": "8074dbcd93529b357029f5cc5058fd3e43666984", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "suggest": { + "ext-posix": "*" + }, + "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" + } + ], + "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/6.1.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-23T08:47:14+00:00" + }, + { + "name": "sebastian/exporter", + "version": "5.1.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/exporter.git", + "reference": "955288482d97c19a372d3f31006ab3f37da47adf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf", + "reference": "955288482d97c19a372d3f31006ab3f37da47adf", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "php": ">=8.1", + "sebastian/recursion-context": "^5.0" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "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" + }, + { + "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/5.1.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-02T07:17:12+00:00" + }, + { + "name": "sebastian/global-state", + "version": "6.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/global-state.git", + "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9", + "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "sebastian/object-reflector": "^3.0", + "sebastian/recursion-context": "^5.0" + }, + "require-dev": { + "ext-dom": "*", + "phpunit/phpunit": "^10.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": "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/6.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-02T07:19:19+00:00" + }, + { + "name": "sebastian/lines-of-code", + "version": "2.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/lines-of-code.git", + "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0", + "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^4.18 || ^5.0", + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.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/2.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-12-21T08:38:20+00:00" + }, + { + "name": "sebastian/object-enumerator", + "version": "5.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-enumerator.git", + "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906", + "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "sebastian/object-reflector": "^3.0", + "sebastian/recursion-context": "^5.0" + }, + "require-dev": { + "phpunit/phpunit": "^10.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" + } + ], + "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", + "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T07:08:32+00:00" + }, + { + "name": "sebastian/object-reflector", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-reflector.git", + "reference": "24ed13d98130f0e7122df55d06c5c4942a577957" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957", + "reference": "24ed13d98130f0e7122df55d06c5c4942a577957", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.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" + } + ], + "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", + "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T07:06:18+00:00" + }, + { + "name": "sebastian/recursion-context", + "version": "5.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/recursion-context.git", + "reference": "05909fb5bc7df4c52992396d0116aed689f93712" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712", + "reference": "05909fb5bc7df4c52992396d0116aed689f93712", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.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" + }, + { + "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", + "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T07:05:40+00:00" + }, + { + "name": "sebastian/type", + "version": "4.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/type.git", + "reference": "462699a16464c3944eefc02ebdd77882bd3925bf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf", + "reference": "462699a16464c3944eefc02ebdd77882bd3925bf", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.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": "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", + "source": "https://github.com/sebastianbergmann/type/tree/4.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T07:10:45+00:00" + }, + { + "name": "sebastian/version", + "version": "4.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/version.git", + "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17", + "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "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 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", + "source": "https://github.com/sebastianbergmann/version/tree/4.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-07T11:34:05+00:00" + }, + { + "name": "spatie/backtrace", + "version": "1.7.4", + "source": { + "type": "git", + "url": "https://github.com/spatie/backtrace.git", + "reference": "cd37a49fce7137359ac30ecc44ef3e16404cccbe" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/backtrace/zipball/cd37a49fce7137359ac30ecc44ef3e16404cccbe", + "reference": "cd37a49fce7137359ac30ecc44ef3e16404cccbe", + "shasum": "" + }, + "require": { + "php": "^7.3 || ^8.0" + }, + "require-dev": { + "ext-json": "*", + "laravel/serializable-closure": "^1.3 || ^2.0", + "phpunit/phpunit": "^9.3 || ^11.4.3", + "spatie/phpunit-snapshot-assertions": "^4.2 || ^5.1.6", + "symfony/var-dumper": "^5.1 || ^6.0 || ^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Spatie\\Backtrace\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Freek Van de Herten", + "email": "freek@spatie.be", + "homepage": "https://spatie.be", + "role": "Developer" + } + ], + "description": "A better backtrace", + "homepage": "https://github.com/spatie/backtrace", + "keywords": [ + "Backtrace", + "spatie" + ], + "support": { + "source": "https://github.com/spatie/backtrace/tree/1.7.4" + }, + "funding": [ + { + "url": "https://github.com/sponsors/spatie", + "type": "github" + }, + { + "url": "https://spatie.be/open-source/support-us", + "type": "other" + } + ], + "time": "2025-05-08T15:41:09+00:00" + }, + { + "name": "spatie/error-solutions", + "version": "1.1.3", + "source": { + "type": "git", + "url": "https://github.com/spatie/error-solutions.git", + "reference": "e495d7178ca524f2dd0fe6a1d99a1e608e1c9936" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/error-solutions/zipball/e495d7178ca524f2dd0fe6a1d99a1e608e1c9936", + "reference": "e495d7178ca524f2dd0fe6a1d99a1e608e1c9936", + "shasum": "" + }, + "require": { + "php": "^8.0" + }, + "require-dev": { + "illuminate/broadcasting": "^10.0|^11.0|^12.0", + "illuminate/cache": "^10.0|^11.0|^12.0", + "illuminate/support": "^10.0|^11.0|^12.0", + "livewire/livewire": "^2.11|^3.5.20", + "openai-php/client": "^0.10.1", + "orchestra/testbench": "8.22.3|^9.0|^10.0", + "pestphp/pest": "^2.20|^3.0", + "phpstan/phpstan": "^2.1", + "psr/simple-cache": "^3.0", + "psr/simple-cache-implementation": "^3.0", + "spatie/ray": "^1.28", + "symfony/cache": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.0|^7.0", + "vlucas/phpdotenv": "^5.5" + }, + "suggest": { + "openai-php/client": "Require get solutions from OpenAI", + "simple-cache-implementation": "To cache solutions from OpenAI" + }, + "type": "library", + "autoload": { + "psr-4": { + "Spatie\\Ignition\\": "legacy/ignition", + "Spatie\\ErrorSolutions\\": "src", + "Spatie\\LaravelIgnition\\": "legacy/laravel-ignition" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ruben Van Assche", + "email": "ruben@spatie.be", + "role": "Developer" + } + ], + "description": "This is my package error-solutions", + "homepage": "https://github.com/spatie/error-solutions", + "keywords": [ + "error-solutions", + "spatie" + ], + "support": { + "issues": "https://github.com/spatie/error-solutions/issues", + "source": "https://github.com/spatie/error-solutions/tree/1.1.3" + }, + "funding": [ + { + "url": "https://github.com/Spatie", + "type": "github" + } + ], + "time": "2025-02-14T12:29:50+00:00" + }, + { + "name": "spatie/flare-client-php", + "version": "1.10.1", + "source": { + "type": "git", + "url": "https://github.com/spatie/flare-client-php.git", + "reference": "bf1716eb98bd689451b071548ae9e70738dce62f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/bf1716eb98bd689451b071548ae9e70738dce62f", + "reference": "bf1716eb98bd689451b071548ae9e70738dce62f", + "shasum": "" + }, + "require": { + "illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0|^12.0", + "php": "^8.0", + "spatie/backtrace": "^1.6.1", + "symfony/http-foundation": "^5.2|^6.0|^7.0", + "symfony/mime": "^5.2|^6.0|^7.0", + "symfony/process": "^5.2|^6.0|^7.0", + "symfony/var-dumper": "^5.2|^6.0|^7.0" + }, + "require-dev": { + "dms/phpunit-arraysubset-asserts": "^0.5.0", + "pestphp/pest": "^1.20|^2.0", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan-deprecation-rules": "^1.0", + "phpstan/phpstan-phpunit": "^1.0", + "spatie/pest-plugin-snapshots": "^1.0|^2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.3.x-dev" + } + }, + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Spatie\\FlareClient\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Send PHP errors to Flare", + "homepage": "https://github.com/spatie/flare-client-php", + "keywords": [ + "exception", + "flare", + "reporting", + "spatie" + ], + "support": { + "issues": "https://github.com/spatie/flare-client-php/issues", + "source": "https://github.com/spatie/flare-client-php/tree/1.10.1" + }, + "funding": [ + { + "url": "https://github.com/spatie", + "type": "github" + } + ], + "time": "2025-02-14T13:42:06+00:00" + }, + { + "name": "spatie/ignition", + "version": "1.15.1", + "source": { + "type": "git", + "url": "https://github.com/spatie/ignition.git", + "reference": "31f314153020aee5af3537e507fef892ffbf8c85" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/ignition/zipball/31f314153020aee5af3537e507fef892ffbf8c85", + "reference": "31f314153020aee5af3537e507fef892ffbf8c85", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-mbstring": "*", + "php": "^8.0", + "spatie/error-solutions": "^1.0", + "spatie/flare-client-php": "^1.7", + "symfony/console": "^5.4|^6.0|^7.0", + "symfony/var-dumper": "^5.4|^6.0|^7.0" + }, + "require-dev": { + "illuminate/cache": "^9.52|^10.0|^11.0|^12.0", + "mockery/mockery": "^1.4", + "pestphp/pest": "^1.20|^2.0", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan-deprecation-rules": "^1.0", + "phpstan/phpstan-phpunit": "^1.0", + "psr/simple-cache-implementation": "*", + "symfony/cache": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.0|^7.0", + "vlucas/phpdotenv": "^5.5" + }, + "suggest": { + "openai-php/client": "Require get solutions from OpenAI", + "simple-cache-implementation": "To cache solutions from OpenAI" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.5.x-dev" + } + }, + "autoload": { + "psr-4": { + "Spatie\\Ignition\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Spatie", + "email": "info@spatie.be", + "role": "Developer" + } + ], + "description": "A beautiful error page for PHP applications.", + "homepage": "https://flareapp.io/ignition", + "keywords": [ + "error", + "flare", + "laravel", + "page" + ], + "support": { + "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction", + "forum": "https://twitter.com/flareappio", + "issues": "https://github.com/spatie/ignition/issues", + "source": "https://github.com/spatie/ignition" + }, + "funding": [ + { + "url": "https://github.com/spatie", + "type": "github" + } + ], + "time": "2025-02-21T14:31:39+00:00" + }, + { + "name": "spatie/laravel-ignition", + "version": "2.9.1", + "source": { + "type": "git", + "url": "https://github.com/spatie/laravel-ignition.git", + "reference": "1baee07216d6748ebd3a65ba97381b051838707a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/1baee07216d6748ebd3a65ba97381b051838707a", + "reference": "1baee07216d6748ebd3a65ba97381b051838707a", + "shasum": "" + }, + "require": { + "ext-curl": "*", + "ext-json": "*", + "ext-mbstring": "*", + "illuminate/support": "^10.0|^11.0|^12.0", + "php": "^8.1", + "spatie/ignition": "^1.15", + "symfony/console": "^6.2.3|^7.0", + "symfony/var-dumper": "^6.2.3|^7.0" + }, + "require-dev": { + "livewire/livewire": "^2.11|^3.3.5", + "mockery/mockery": "^1.5.1", + "openai-php/client": "^0.8.1|^0.10", + "orchestra/testbench": "8.22.3|^9.0|^10.0", + "pestphp/pest": "^2.34|^3.7", + "phpstan/extension-installer": "^1.3.1", + "phpstan/phpstan-deprecation-rules": "^1.1.1|^2.0", + "phpstan/phpstan-phpunit": "^1.3.16|^2.0", + "vlucas/phpdotenv": "^5.5" + }, + "suggest": { + "openai-php/client": "Require get solutions from OpenAI", + "psr/simple-cache-implementation": "Needed to cache solutions from OpenAI" + }, + "type": "library", + "extra": { + "laravel": { + "aliases": { + "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare" + }, + "providers": [ + "Spatie\\LaravelIgnition\\IgnitionServiceProvider" + ] + } + }, + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Spatie\\LaravelIgnition\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Spatie", + "email": "info@spatie.be", + "role": "Developer" + } + ], + "description": "A beautiful error page for Laravel applications.", + "homepage": "https://flareapp.io/ignition", + "keywords": [ + "error", + "flare", + "laravel", + "page" + ], + "support": { + "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction", + "forum": "https://twitter.com/flareappio", + "issues": "https://github.com/spatie/laravel-ignition/issues", + "source": "https://github.com/spatie/laravel-ignition" + }, + "funding": [ + { + "url": "https://github.com/spatie", + "type": "github" + } + ], + "time": "2025-02-20T13:13:55+00:00" + }, + { + "name": "symfony/yaml", + "version": "v7.3.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/yaml.git", + "reference": "cea40a48279d58dc3efee8112634cb90141156c2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/yaml/zipball/cea40a48279d58dc3efee8112634cb90141156c2", + "reference": "cea40a48279d58dc3efee8112634cb90141156c2", + "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.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-04T10:10:33+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.1" + }, + "platform-dev": [], + "plugin-api-version": "2.6.0" +} diff --git a/config/app.php b/config/app.php new file mode 100644 index 0000000..20408c5 --- /dev/null +++ b/config/app.php @@ -0,0 +1,189 @@ + 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 + | your application so that it is used when running Artisan tasks. + | + */ + + 'url' => env('APP_URL', 'http://localhost'), + + 'asset_url' => env('ASSET_URL'), + + /* + |-------------------------------------------------------------------------- + | Application Timezone + |-------------------------------------------------------------------------- + | + | Here you may specify the default timezone for your application, which + | will be used by the PHP date and date-time functions. We have gone + | ahead and set this to a sensible default for you out of the box. + | + */ + + 'timezone' => 'Asia/Jakarta', + + /* + |-------------------------------------------------------------------------- + | Application Locale Configuration + |-------------------------------------------------------------------------- + | + | The application locale determines the default locale that will be used + | by the translation service provider. You are free to set this value + | to any of the locales which will be supported by the application. + | + */ + + 'locale' => 'en', + + /* + |-------------------------------------------------------------------------- + | Application Fallback Locale + |-------------------------------------------------------------------------- + | + | The fallback locale determines the locale to use when the current one + | is not available. You may change the value to correspond to any of + | the language folders that are provided through your application. + | + */ + + 'fallback_locale' => 'en', + + /* + |-------------------------------------------------------------------------- + | Faker Locale + |-------------------------------------------------------------------------- + | + | This locale will be used by the Faker PHP library when generating fake + | data for your database seeds. For example, this will be used to get + | localized telephone numbers, street address information and more. + | + */ + + 'faker_locale' => 'en_US', + + /* + |-------------------------------------------------------------------------- + | Encryption Key + |-------------------------------------------------------------------------- + | + | This key is used by the Illuminate encrypter service and should be set + | to a random, 32 character string, otherwise these encrypted strings + | will not be safe. Please do this before deploying an application! + | + */ + + 'key' => env('APP_KEY'), + + 'cipher' => 'AES-256-CBC', + + /* + |-------------------------------------------------------------------------- + | 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' => 'file', + // 'store' => 'redis', + ], + + /* + |-------------------------------------------------------------------------- + | Autoloaded Service Providers + |-------------------------------------------------------------------------- + | + | The service providers listed here will be automatically loaded on the + | request to your application. Feel free to add your own services to + | this array to grant expanded functionality to your applications. + | + */ + + 'providers' => ServiceProvider::defaultProviders()->merge([ + /* + * Package Service Providers... + */ + + /* + * Application Service Providers... + */ + App\Providers\AppServiceProvider::class, + App\Providers\AuthServiceProvider::class, + // App\Providers\BroadcastServiceProvider::class, + App\Providers\EventServiceProvider::class, + App\Providers\RouteServiceProvider::class, + ])->toArray(), + + /* + |-------------------------------------------------------------------------- + | Class Aliases + |-------------------------------------------------------------------------- + | + | This array of class aliases will be registered when this application + | is started. However, feel free to register as many as you wish as + | the aliases are "lazy" loaded so they don't hinder performance. + | + */ + + 'aliases' => Facade::defaultAliases()->merge([ + 'PDF' => Barryvdh\DomPDF\Facade\Pdf::class, + // 'Example' => App\Facades\Example::class, + ])->toArray(), + +]; diff --git a/config/auth.php b/config/auth.php new file mode 100644 index 0000000..9548c15 --- /dev/null +++ b/config/auth.php @@ -0,0 +1,115 @@ + [ + 'guard' => 'web', + 'passwords' => 'users', + ], + + /* + |-------------------------------------------------------------------------- + | Authentication Guards + |-------------------------------------------------------------------------- + | + | Next, you may define every authentication guard for your application. + | Of course, a great default configuration has been defined for you + | here which uses session storage and the Eloquent user provider. + | + | All authentication drivers have a user provider. This defines how the + | users are actually retrieved out of your database or other storage + | mechanisms used by this application to persist your user's data. + | + | Supported: "session" + | + */ + + 'guards' => [ + 'web' => [ + 'driver' => 'session', + 'provider' => 'users', + ], + ], + + /* + |-------------------------------------------------------------------------- + | User Providers + |-------------------------------------------------------------------------- + | + | All authentication drivers have a user provider. This defines how the + | users are actually retrieved out of your database or other storage + | mechanisms used by this application to persist your user's data. + | + | If you have multiple user tables or models you may configure multiple + | sources which represent each model / table. These sources may then + | be assigned to any extra authentication guards you have defined. + | + | Supported: "database", "eloquent" + | + */ + + 'providers' => [ + 'users' => [ + 'driver' => 'eloquent', + 'model' => App\Models\User::class, + ], + + // 'users' => [ + // 'driver' => 'database', + // 'table' => 'users', + // ], + ], + + /* + |-------------------------------------------------------------------------- + | Resetting Passwords + |-------------------------------------------------------------------------- + | + | You may specify multiple password reset configurations if you have more + | than one user table or model in the application and you want to have + | separate password reset settings based on the specific user types. + | + | 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' => 'password_reset_tokens', + 'expire' => 60, + 'throttle' => 60, + ], + ], + + /* + |-------------------------------------------------------------------------- + | Password Confirmation Timeout + |-------------------------------------------------------------------------- + | + | Here you may define the amount of seconds before a password confirmation + | times out and the user is prompted to re-enter their password via the + | confirmation screen. By default, the timeout lasts for three hours. + | + */ + + 'password_timeout' => 10800, + +]; diff --git a/config/broadcasting.php b/config/broadcasting.php new file mode 100644 index 0000000..2410485 --- /dev/null +++ b/config/broadcasting.php @@ -0,0 +1,71 @@ + env('BROADCAST_DRIVER', 'null'), + + /* + |-------------------------------------------------------------------------- + | Broadcast Connections + |-------------------------------------------------------------------------- + | + | Here you may define all of the broadcast connections that will be used + | to broadcast events to other systems or over websockets. Samples of + | each available type of connection are provided inside this array. + | + */ + + 'connections' => [ + + 'pusher' => [ + 'driver' => 'pusher', + 'key' => env('PUSHER_APP_KEY'), + 'secret' => env('PUSHER_APP_SECRET'), + 'app_id' => env('PUSHER_APP_ID'), + 'options' => [ + 'cluster' => env('PUSHER_APP_CLUSTER'), + 'host' => env('PUSHER_HOST') ?: 'api-'.env('PUSHER_APP_CLUSTER', 'mt1').'.pusher.com', + 'port' => env('PUSHER_PORT', 443), + 'scheme' => env('PUSHER_SCHEME', 'https'), + 'encrypted' => true, + 'useTLS' => env('PUSHER_SCHEME', 'https') === 'https', + ], + 'client_options' => [ + // Guzzle client options: https://docs.guzzlephp.org/en/stable/request-options.html + ], + ], + + 'ably' => [ + 'driver' => 'ably', + 'key' => env('ABLY_KEY'), + ], + + 'redis' => [ + 'driver' => 'redis', + 'connection' => 'default', + ], + + 'log' => [ + 'driver' => 'log', + ], + + 'null' => [ + 'driver' => 'null', + ], + + ], + +]; diff --git a/config/cache.php b/config/cache.php new file mode 100644 index 0000000..d4171e2 --- /dev/null +++ b/config/cache.php @@ -0,0 +1,111 @@ + env('CACHE_DRIVER', 'file'), + + /* + |-------------------------------------------------------------------------- + | 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: "apc", "array", "database", "file", + | "memcached", "redis", "dynamodb", "octane", "null" + | + */ + + 'stores' => [ + + 'apc' => [ + 'driver' => 'apc', + ], + + 'array' => [ + 'driver' => 'array', + 'serialize' => false, + ], + + 'database' => [ + 'driver' => 'database', + 'table' => 'cache', + 'connection' => null, + 'lock_connection' => null, + ], + + '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' => '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, or DynamoDB cache + | stores there might be other applications using the same cache. For + | that reason, you may prefix every cache key to avoid collisions. + | + */ + + 'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache_'), + +]; diff --git a/config/cors.php b/config/cors.php new file mode 100644 index 0000000..8a39e6d --- /dev/null +++ b/config/cors.php @@ -0,0 +1,34 @@ + ['api/*', 'sanctum/csrf-cookie'], + + 'allowed_methods' => ['*'], + + 'allowed_origins' => ['*'], + + 'allowed_origins_patterns' => [], + + 'allowed_headers' => ['*'], + + 'exposed_headers' => [], + + 'max_age' => 0, + + 'supports_credentials' => false, + +]; diff --git a/config/database.php b/config/database.php new file mode 100644 index 0000000..137ad18 --- /dev/null +++ b/config/database.php @@ -0,0 +1,151 @@ + env('DB_CONNECTION', 'mysql'), + + /* + |-------------------------------------------------------------------------- + | Database Connections + |-------------------------------------------------------------------------- + | + | Here are each of the database connections setup for your application. + | Of course, examples of configuring each database platform that is + | supported by Laravel is shown below to make development simple. + | + | + | All database work in Laravel is done through the PHP PDO facilities + | so make sure you have the driver for your particular database of + | choice installed on your machine before you begin development. + | + */ + + 'connections' => [ + + 'sqlite' => [ + 'driver' => 'sqlite', + 'url' => env('DATABASE_URL'), + 'database' => env('DB_DATABASE', database_path('database.sqlite')), + 'prefix' => '', + 'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true), + ], + + 'mysql' => [ + 'driver' => 'mysql', + 'url' => env('DATABASE_URL'), + 'host' => env('DB_HOST', '127.0.0.1'), + 'port' => env('DB_PORT', '3306'), + 'database' => env('DB_DATABASE', 'forge'), + 'username' => env('DB_USERNAME', 'forge'), + 'password' => env('DB_PASSWORD', ''), + 'unix_socket' => env('DB_SOCKET', ''), + 'charset' => 'utf8mb4', + '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('DATABASE_URL'), + 'host' => env('DB_HOST', '127.0.0.1'), + 'port' => env('DB_PORT', '5432'), + 'database' => env('DB_DATABASE', 'forge'), + 'username' => env('DB_USERNAME', 'forge'), + 'password' => env('DB_PASSWORD', ''), + 'charset' => 'utf8', + 'prefix' => '', + 'prefix_indexes' => true, + 'search_path' => 'public', + 'sslmode' => 'prefer', + ], + + 'sqlsrv' => [ + 'driver' => 'sqlsrv', + 'url' => env('DATABASE_URL'), + 'host' => env('DB_HOST', 'localhost'), + 'port' => env('DB_PORT', '1433'), + 'database' => env('DB_DATABASE', 'forge'), + 'username' => env('DB_USERNAME', 'forge'), + 'password' => env('DB_PASSWORD', ''), + '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 in the database. + | + */ + + 'migrations' => 'migrations', + + /* + |-------------------------------------------------------------------------- + | 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 APC or Memcached. Laravel makes it easy to dig right in. + | + */ + + 'redis' => [ + + 'client' => env('REDIS_CLIENT', 'phpredis'), + + 'options' => [ + 'cluster' => env('REDIS_CLUSTER', 'redis'), + 'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'), + ], + + 'default' => [ + 'url' => env('REDIS_URL'), + 'host' => env('REDIS_HOST', '127.0.0.1'), + 'username' => env('REDIS_USERNAME'), + 'password' => env('REDIS_PASSWORD'), + 'port' => env('REDIS_PORT', '6379'), + 'database' => env('REDIS_DB', '0'), + ], + + 'cache' => [ + 'url' => env('REDIS_URL'), + 'host' => env('REDIS_HOST', '127.0.0.1'), + 'username' => env('REDIS_USERNAME'), + 'password' => env('REDIS_PASSWORD'), + 'port' => env('REDIS_PORT', '6379'), + 'database' => env('REDIS_CACHE_DB', '1'), + ], + + ], + +]; diff --git a/config/filesystems.php b/config/filesystems.php new file mode 100644 index 0000000..e9d9dbd --- /dev/null +++ b/config/filesystems.php @@ -0,0 +1,76 @@ + env('FILESYSTEM_DISK', 'local'), + + /* + |-------------------------------------------------------------------------- + | Filesystem Disks + |-------------------------------------------------------------------------- + | + | Here you may configure as many filesystem "disks" as you wish, and you + | may even configure multiple disks of the same driver. Defaults have + | been set up for each driver as an example of the required values. + | + | Supported Drivers: "local", "ftp", "sftp", "s3" + | + */ + + 'disks' => [ + + 'local' => [ + 'driver' => 'local', + 'root' => storage_path('app'), + 'throw' => false, + ], + + 'public' => [ + 'driver' => 'local', + 'root' => storage_path('app/public'), + 'url' => env('APP_URL').'/storage', + 'visibility' => 'public', + 'throw' => 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, + ], + + ], + + /* + |-------------------------------------------------------------------------- + | 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/hashing.php b/config/hashing.php new file mode 100644 index 0000000..0e8a0bb --- /dev/null +++ b/config/hashing.php @@ -0,0 +1,54 @@ + 'bcrypt', + + /* + |-------------------------------------------------------------------------- + | Bcrypt Options + |-------------------------------------------------------------------------- + | + | Here you may specify the configuration options that should be used when + | passwords are hashed using the Bcrypt algorithm. This will allow you + | to control the amount of time it takes to hash the given password. + | + */ + + 'bcrypt' => [ + 'rounds' => env('BCRYPT_ROUNDS', 12), + 'verify' => true, + ], + + /* + |-------------------------------------------------------------------------- + | Argon Options + |-------------------------------------------------------------------------- + | + | Here you may specify the configuration options that should be used when + | passwords are hashed using the Argon algorithm. These will allow you + | to control the amount of time it takes to hash the given password. + | + */ + + 'argon' => [ + 'memory' => 65536, + 'threads' => 1, + 'time' => 4, + 'verify' => true, + ], + +]; diff --git a/config/logging.php b/config/logging.php new file mode 100644 index 0000000..c44d276 --- /dev/null +++ b/config/logging.php @@ -0,0 +1,131 @@ + 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' => false, + ], + + /* + |-------------------------------------------------------------------------- + | Log Channels + |-------------------------------------------------------------------------- + | + | Here you may configure the log channels for your application. Out of + | the box, Laravel uses the Monolog PHP logging library. This gives + | you a variety of powerful log handlers / formatters to utilize. + | + | Available Drivers: "single", "daily", "slack", "syslog", + | "errorlog", "monolog", + | "custom", "stack" + | + */ + + 'channels' => [ + 'stack' => [ + 'driver' => 'stack', + 'channels' => ['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' => 14, + 'replace_placeholders' => true, + ], + + 'slack' => [ + 'driver' => 'slack', + 'url' => env('LOG_SLACK_WEBHOOK_URL'), + 'username' => 'Laravel Log', + 'emoji' => ':boom:', + 'level' => env('LOG_LEVEL', 'critical'), + 'replace_placeholders' => true, + ], + + 'papertrail' => [ + 'driver' => 'monolog', + 'level' => env('LOG_LEVEL', 'debug'), + 'handler' => env('LOG_PAPERTRAIL_HANDLER', SyslogUdpHandler::class), + 'handler_with' => [ + 'host' => env('PAPERTRAIL_URL'), + 'port' => env('PAPERTRAIL_PORT'), + 'connectionString' => 'tls://'.env('PAPERTRAIL_URL').':'.env('PAPERTRAIL_PORT'), + ], + 'processors' => [PsrLogMessageProcessor::class], + ], + + 'stderr' => [ + 'driver' => 'monolog', + 'level' => env('LOG_LEVEL', 'debug'), + 'handler' => StreamHandler::class, + 'formatter' => env('LOG_STDERR_FORMATTER'), + 'with' => [ + 'stream' => 'php://stderr', + ], + 'processors' => [PsrLogMessageProcessor::class], + ], + + 'syslog' => [ + 'driver' => 'syslog', + 'level' => env('LOG_LEVEL', 'debug'), + 'facility' => 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..e894b2e --- /dev/null +++ b/config/mail.php @@ -0,0 +1,134 @@ + env('MAIL_MAILER', 'smtp'), + + /* + |-------------------------------------------------------------------------- + | 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 to be used while + | sending an e-mail. You will specify which one you are using for your + | mailers below. You are free to add additional mailers as required. + | + | Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2", + | "postmark", "log", "array", "failover", "roundrobin" + | + */ + + 'mailers' => [ + 'smtp' => [ + 'transport' => 'smtp', + 'url' => env('MAIL_URL'), + 'host' => env('MAIL_HOST', 'smtp.mailgun.org'), + 'port' => env('MAIL_PORT', 587), + 'encryption' => env('MAIL_ENCRYPTION', 'tls'), + 'username' => env('MAIL_USERNAME'), + 'password' => env('MAIL_PASSWORD'), + 'timeout' => null, + 'local_domain' => env('MAIL_EHLO_DOMAIN'), + ], + + 'ses' => [ + 'transport' => 'ses', + ], + + 'postmark' => [ + 'transport' => 'postmark', + // 'message_stream_id' => null, + // 'client' => [ + // 'timeout' => 5, + // ], + ], + + 'mailgun' => [ + 'transport' => 'mailgun', + // 'client' => [ + // 'timeout' => 5, + // ], + ], + + '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', + ], + ], + + 'roundrobin' => [ + 'transport' => 'roundrobin', + 'mailers' => [ + 'ses', + 'postmark', + ], + ], + ], + + /* + |-------------------------------------------------------------------------- + | Global "From" Address + |-------------------------------------------------------------------------- + | + | You may wish for all e-mails 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 e-mails that are sent by your application. + | + */ + + 'from' => [ + 'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'), + 'name' => env('MAIL_FROM_NAME', 'Example'), + ], + + /* + |-------------------------------------------------------------------------- + | Markdown Mail Settings + |-------------------------------------------------------------------------- + | + | If you are using Markdown based email rendering, you may configure your + | theme and component paths here, allowing you to customize the design + | of the emails. Or, you may simply stick with the Laravel defaults! + | + */ + + 'markdown' => [ + 'theme' => 'default', + + 'paths' => [ + resource_path('views/vendor/mail'), + ], + ], + +]; diff --git a/config/queue.php b/config/queue.php new file mode 100644 index 0000000..01c6b05 --- /dev/null +++ b/config/queue.php @@ -0,0 +1,109 @@ + env('QUEUE_CONNECTION', 'sync'), + + /* + |-------------------------------------------------------------------------- + | Queue Connections + |-------------------------------------------------------------------------- + | + | Here you may configure the connection information for each server that + | is used by your application. A default configuration has been added + | for each back-end shipped with Laravel. You are free to add more. + | + | Drivers: "sync", "database", "beanstalkd", "sqs", "redis", "null" + | + */ + + 'connections' => [ + + 'sync' => [ + 'driver' => 'sync', + ], + + 'database' => [ + 'driver' => 'database', + 'table' => 'jobs', + 'queue' => 'default', + 'retry_after' => 90, + 'after_commit' => false, + ], + + 'beanstalkd' => [ + 'driver' => 'beanstalkd', + 'host' => 'localhost', + 'queue' => 'default', + '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' => 'default', + 'queue' => env('REDIS_QUEUE', 'default'), + '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', 'mysql'), + 'table' => 'job_batches', + ], + + /* + |-------------------------------------------------------------------------- + | Failed Queue Jobs + |-------------------------------------------------------------------------- + | + | These options configure the behavior of failed queue job logging so you + | can control which database and table are used to store the jobs that + | have failed. You may change them to any database / table you wish. + | + */ + + 'failed' => [ + 'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'), + 'database' => env('DB_CONNECTION', 'mysql'), + 'table' => 'failed_jobs', + ], + +]; diff --git a/config/sanctum.php b/config/sanctum.php new file mode 100644 index 0000000..35d75b3 --- /dev/null +++ b/config/sanctum.php @@ -0,0 +1,83 @@ + explode(',', env('SANCTUM_STATEFUL_DOMAINS', sprintf( + '%s%s', + 'localhost,localhost:3000,127.0.0.1,127.0.0.1:8000,::1', + Sanctum::currentApplicationUrlWithPort() + ))), + + /* + |-------------------------------------------------------------------------- + | Sanctum Guards + |-------------------------------------------------------------------------- + | + | This array contains the authentication guards that will be checked when + | Sanctum is trying to authenticate a request. If none of these guards + | are able to authenticate the request, Sanctum will use the bearer + | token that's present on an incoming request for authentication. + | + */ + + 'guard' => ['web'], + + /* + |-------------------------------------------------------------------------- + | Expiration Minutes + |-------------------------------------------------------------------------- + | + | This value controls the number of minutes until an issued token will be + | considered expired. This will override any values set in the token's + | "expires_at" attribute, but first-party sessions are not affected. + | + */ + + 'expiration' => null, + + /* + |-------------------------------------------------------------------------- + | Token Prefix + |-------------------------------------------------------------------------- + | + | Sanctum can prefix new tokens in order to take advantage of numerous + | security scanning initiatives maintained by open source platforms + | that notify developers if they commit tokens into repositories. + | + | See: https://docs.github.com/en/code-security/secret-scanning/about-secret-scanning + | + */ + + 'token_prefix' => env('SANCTUM_TOKEN_PREFIX', ''), + + /* + |-------------------------------------------------------------------------- + | Sanctum Middleware + |-------------------------------------------------------------------------- + | + | When authenticating your first-party SPA with Sanctum you may need to + | customize some of the middleware Sanctum uses while processing the + | request. You may change the middleware listed below as required. + | + */ + + 'middleware' => [ + 'authenticate_session' => Laravel\Sanctum\Http\Middleware\AuthenticateSession::class, + 'encrypt_cookies' => App\Http\Middleware\EncryptCookies::class, + 'verify_csrf_token' => App\Http\Middleware\VerifyCsrfToken::class, + ], + +]; diff --git a/config/services.php b/config/services.php new file mode 100644 index 0000000..0ace530 --- /dev/null +++ b/config/services.php @@ -0,0 +1,34 @@ + [ + 'domain' => env('MAILGUN_DOMAIN'), + 'secret' => env('MAILGUN_SECRET'), + 'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'), + 'scheme' => 'https', + ], + + 'postmark' => [ + 'token' => env('POSTMARK_TOKEN'), + ], + + 'ses' => [ + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), + ], + +]; diff --git a/config/session.php b/config/session.php new file mode 100644 index 0000000..e738cb3 --- /dev/null +++ b/config/session.php @@ -0,0 +1,214 @@ + env('SESSION_DRIVER', 'file'), + + /* + |-------------------------------------------------------------------------- + | 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 immediately expire on the browser closing, set that option. + | + */ + + 'lifetime' => env('SESSION_LIFETIME', 120), + + 'expire_on_close' => false, + + /* + |-------------------------------------------------------------------------- + | Session Encryption + |-------------------------------------------------------------------------- + | + | This option allows you to easily specify that all of your session data + | should be encrypted before it is stored. All encryption will be run + | automatically by Laravel and you can use the Session like normal. + | + */ + + 'encrypt' => false, + + /* + |-------------------------------------------------------------------------- + | Session File Location + |-------------------------------------------------------------------------- + | + | When using the native session driver, we need a location where session + | files may be stored. A default has been set for you but a different + | location may be specified. This is only needed for file sessions. + | + */ + + '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 we + | should use to manage the sessions. Of course, a sensible default is + | provided for you; however, you are free to change this as needed. + | + */ + + 'table' => 'sessions', + + /* + |-------------------------------------------------------------------------- + | Session Cache Store + |-------------------------------------------------------------------------- + | + | While using one of the framework's cache driven session backends you may + | list a cache store that should be used for these sessions. This value + | must match with one of the application's configured cache "stores". + | + | Affects: "apc", "dynamodb", "memcached", "redis" + | + */ + + 'store' => env('SESSION_STORE'), + + /* + |-------------------------------------------------------------------------- + | Session Sweeping Lottery + |-------------------------------------------------------------------------- + | + | Some session drivers must manually sweep their storage location to get + | rid of old sessions from storage. Here are the chances that it will + | happen on a given request. By default, the odds are 2 out of 100. + | + */ + + 'lottery' => [2, 100], + + /* + |-------------------------------------------------------------------------- + | Session Cookie Name + |-------------------------------------------------------------------------- + | + | Here you may change the name of the cookie used to identify a session + | instance by ID. The name specified here will get used every time a + | new session cookie is created by the framework for every driver. + | + */ + + 'cookie' => env( + 'SESSION_COOKIE', + Str::slug(env('APP_NAME', 'laravel'), '_').'_session' + ), + + /* + |-------------------------------------------------------------------------- + | Session Cookie Path + |-------------------------------------------------------------------------- + | + | The session cookie path determines the path for which the cookie will + | be regarded as available. Typically, this will be the root path of + | your application but you are free to change this when necessary. + | + */ + + 'path' => '/', + + /* + |-------------------------------------------------------------------------- + | Session Cookie Domain + |-------------------------------------------------------------------------- + | + | Here you may change the domain of the cookie used to identify a session + | in your application. This will determine which domains the cookie is + | available to in your application. A sensible default has been set. + | + */ + + '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. You are free to modify this option if needed. + | + */ + + '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" since this is a secure default value. + | + | Supported: "lax", "strict", "none", null + | + */ + + 'same_site' => 'lax', + + /* + |-------------------------------------------------------------------------- + | Partitioned Cookies + |-------------------------------------------------------------------------- + | + | Setting this value to true will tie the cookie to the top-level site for + | a cross-site context. Partitioned cookies are accepted by the browser + | when flagged "secure" and the Same-Site attribute is set to "none". + | + */ + + 'partitioned' => false, + +]; diff --git a/config/view.php b/config/view.php new file mode 100644 index 0000000..22b8a18 --- /dev/null +++ b/config/view.php @@ -0,0 +1,36 @@ + [ + resource_path('views'), + ], + + /* + |-------------------------------------------------------------------------- + | Compiled View Path + |-------------------------------------------------------------------------- + | + | This option determines where all the compiled Blade templates will be + | stored for your application. Typically, this is within the storage + | directory. However, as usual, you are free to change this value. + | + */ + + 'compiled' => env( + 'VIEW_COMPILED_PATH', + realpath(storage_path('framework/views')) + ), + +]; 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/2014_10_12_000000_create_users_table.php b/database/migrations/2014_10_12_000000_create_users_table.php new file mode 100644 index 0000000..0949063 --- /dev/null +++ b/database/migrations/2014_10_12_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('role')->default('operator'); + $table->rememberToken(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('users'); + } +}; diff --git a/database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php b/database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php new file mode 100644 index 0000000..81a7229 --- /dev/null +++ b/database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php @@ -0,0 +1,28 @@ +string('email')->primary(); + $table->string('token'); + $table->timestamp('created_at')->nullable(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('password_reset_tokens'); + } +}; diff --git a/database/migrations/2019_08_19_000000_create_failed_jobs_table.php b/database/migrations/2019_08_19_000000_create_failed_jobs_table.php new file mode 100644 index 0000000..249da81 --- /dev/null +++ b/database/migrations/2019_08_19_000000_create_failed_jobs_table.php @@ -0,0 +1,32 @@ +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('failed_jobs'); + } +}; diff --git a/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php b/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php new file mode 100644 index 0000000..e828ad8 --- /dev/null +++ b/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php @@ -0,0 +1,33 @@ +id(); + $table->morphs('tokenable'); + $table->string('name'); + $table->string('token', 64)->unique(); + $table->text('abilities')->nullable(); + $table->timestamp('last_used_at')->nullable(); + $table->timestamp('expires_at')->nullable(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('personal_access_tokens'); + } +}; diff --git a/database/migrations/2025_04_18_132130_create_karyawan.php b/database/migrations/2025_04_18_132130_create_karyawan.php new file mode 100644 index 0000000..fbeaf6f --- /dev/null +++ b/database/migrations/2025_04_18_132130_create_karyawan.php @@ -0,0 +1,30 @@ +id(); + $table->string('nama'); + $table->enum('jenis_kelamin', ['L', 'P'])->default('L'); + $table->string('no_telepon')->nullable(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('karyawan'); + } +}; diff --git a/database/migrations/2025_04_24_002921_create_kloters_table.php b/database/migrations/2025_04_24_002921_create_kloters_table.php new file mode 100644 index 0000000..c0e534c --- /dev/null +++ b/database/migrations/2025_04_24_002921_create_kloters_table.php @@ -0,0 +1,28 @@ +id(); + $table->string('nama_kloter'); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('kloters'); + } +}; diff --git a/database/migrations/2025_04_24_132131_create_presensis.php b/database/migrations/2025_04_24_132131_create_presensis.php new file mode 100644 index 0000000..c4670dd --- /dev/null +++ b/database/migrations/2025_04_24_132131_create_presensis.php @@ -0,0 +1,32 @@ +id(); + $table->foreignId('karyawan_id')->nullable()->constrained()->onDelete('cascade'); + $table->foreignId('kloter_id')->nullable()->constrained()->onDelete('cascade'); + $table->date('tanggal'); + $table->time('jam_masuk')->nullable(); + $table->time('jam_pulang')->nullable(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('presensis'); + } +}; diff --git a/database/migrations/2025_04_24_224135_create_ton_ikans_table.php b/database/migrations/2025_04_24_224135_create_ton_ikans_table.php new file mode 100644 index 0000000..2bfec07 --- /dev/null +++ b/database/migrations/2025_04_24_224135_create_ton_ikans_table.php @@ -0,0 +1,30 @@ +id(); + $table->foreignId('kloter_id')->nullable()->constrained('kloters')->onDelete('set null'); + $table->decimal('jumlah_ton', 8, 2); + $table->bigInteger('harga_ikan_per_ton')->default(1000000); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('ton_ikans'); + } +}; diff --git a/database/migrations/2025_04_28_003550_create_barang_table.php b/database/migrations/2025_04_28_003550_create_barang_table.php new file mode 100644 index 0000000..645dbf8 --- /dev/null +++ b/database/migrations/2025_04_28_003550_create_barang_table.php @@ -0,0 +1,31 @@ +id(); + $table->string('nama_barang')->collation('utf8mb4_unicode_ci')->unique(); + $table->integer('qty')->nullable(); + $table->date('exp')->nullable(); + $table->integer('harga'); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('barang'); + } +}; diff --git a/database/migrations/2025_04_28_005428_create_barang_pendukungs_table.php b/database/migrations/2025_04_28_005428_create_barang_pendukungs_table.php new file mode 100644 index 0000000..53b9120 --- /dev/null +++ b/database/migrations/2025_04_28_005428_create_barang_pendukungs_table.php @@ -0,0 +1,29 @@ +id(); + $table->foreignId('barang_id')->constrained('barangs')->onDelete('cascade'); + $table->string('kode')->unique(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('barang_pendukungs'); + } +}; diff --git a/database/migrations/2025_04_28_020024_create_barang_produks_table.php b/database/migrations/2025_04_28_020024_create_barang_produks_table.php new file mode 100644 index 0000000..e74b763 --- /dev/null +++ b/database/migrations/2025_04_28_020024_create_barang_produks_table.php @@ -0,0 +1,22 @@ +id(); + $table->foreignId('barang_id')->constrained('barangs')->onDelete('cascade'); + $table->string('kode')->unique(); + $table->timestamps(); + }); + } + + public function down(): void + { + Schema::dropIfExists('barangs'); + } +}; diff --git a/database/migrations/2025_04_28_081752_create_supliers_table.php b/database/migrations/2025_04_28_081752_create_supliers_table.php new file mode 100644 index 0000000..1408fc0 --- /dev/null +++ b/database/migrations/2025_04_28_081752_create_supliers_table.php @@ -0,0 +1,24 @@ +id(); + $table->string('nama'); + $table->text('alamat'); + $table->string('no_tlp'); + $table->string('no_rekening')->nullable(); + $table->timestamps(); + }); + } + + public function down(): void + { + Schema::dropIfExists('suppliers'); + } +}; diff --git a/database/migrations/2025_04_28_081753_create_pemasoks_table.php b/database/migrations/2025_04_28_081753_create_pemasoks_table.php new file mode 100644 index 0000000..374ac16 --- /dev/null +++ b/database/migrations/2025_04_28_081753_create_pemasoks_table.php @@ -0,0 +1,29 @@ +id(); + $table->foreignId('supplier_id')->constrained('suppliers')->onDelete('cascade'); + $table->string('kode')->unique(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('pemasok'); + } +}; diff --git a/database/migrations/2025_04_28_081754_create_konsumens_table.php b/database/migrations/2025_04_28_081754_create_konsumens_table.php new file mode 100644 index 0000000..ad97bb8 --- /dev/null +++ b/database/migrations/2025_04_28_081754_create_konsumens_table.php @@ -0,0 +1,29 @@ +id(); + $table->foreignId('supplier_id')->constrained('suppliers')->onDelete('cascade'); + $table->string('kode')->unique(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('konsumen'); + } +}; diff --git a/database/migrations/2025_04_28_081907_create_pemasukans_table.php b/database/migrations/2025_04_28_081907_create_pemasukans_table.php new file mode 100644 index 0000000..ba6eaba --- /dev/null +++ b/database/migrations/2025_04_28_081907_create_pemasukans_table.php @@ -0,0 +1,21 @@ +id(); + $table->string('kode')->unique(); + $table->timestamps(); + }); + } + + public function down(): void + { + Schema::dropIfExists('pemasukans'); + } +}; diff --git a/database/migrations/2025_04_28_082004_create_pengeluarans_table.php b/database/migrations/2025_04_28_082004_create_pengeluarans_table.php new file mode 100644 index 0000000..05866f6 --- /dev/null +++ b/database/migrations/2025_04_28_082004_create_pengeluarans_table.php @@ -0,0 +1,21 @@ +id(); + $table->string('kode')->unique(); + $table->timestamps(); + }); + } + + public function down(): void + { + Schema::dropIfExists('pengeluarans'); + } +}; diff --git a/database/migrations/2025_05_25_132952_create_kloter_karyawans_table.php b/database/migrations/2025_05_25_132952_create_kloter_karyawans_table.php new file mode 100644 index 0000000..24303c2 --- /dev/null +++ b/database/migrations/2025_05_25_132952_create_kloter_karyawans_table.php @@ -0,0 +1,29 @@ +id(); + $table->foreignId('kloter_id')->constrained()->onDelete('cascade'); + $table->foreignId('karyawan_id')->constrained()->onDelete('cascade'); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('kloter_karyawans'); + } +}; diff --git a/database/migrations/2025_05_25_143105_create_history_gaji_kloters_table.php b/database/migrations/2025_05_25_143105_create_history_gaji_kloters_table.php new file mode 100644 index 0000000..1d654a3 --- /dev/null +++ b/database/migrations/2025_05_25_143105_create_history_gaji_kloters_table.php @@ -0,0 +1,34 @@ +id(); + $table->foreignId('kloter_id')->nullable()->constrained('kloters')->onDelete('cascade'); + $table->string('kode')->unique()->nullable(); + $table->integer('jml_karyawan'); + $table->double('total_gaji'); + $table->timestamp('waktu'); + $table->date('tanggal_awal')->nullable(); + $table->date('tanggal_akhir')->nullable(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('history_gaji_kloter'); + } +}; diff --git a/database/migrations/2025_06_02_165255_create_transaksis_table.php b/database/migrations/2025_06_02_165255_create_transaksis_table.php new file mode 100644 index 0000000..5f8f80a --- /dev/null +++ b/database/migrations/2025_06_02_165255_create_transaksis_table.php @@ -0,0 +1,29 @@ +id(); + $table->foreignId('barang_id')->nullable()->constrained('barangs')->onDelete('cascade'); + $table->foreignId('supplier_id')->nullable()->constrained('suppliers')->onDelete('cascade'); + $table->foreignId('pengeluaran_id')->nullable()->constrained('pengeluarans')->onDelete('cascade'); + $table->foreignId('pemasukan_id')->nullable()->constrained('pemasukans')->onDelete('cascade'); + $table->foreignId('history_gaji_kloter_id')->nullable()->constrained('history_gaji_kloters')->onDelete('set null'); + $table->double('jumlahRp'); + $table->integer('qtyHistori')->default(0); + $table->string('satuan')->default('kg'); + $table->dateTime('waktu_transaksi'); + $table->timestamps(); + }); + } + + public function down(): void + { + Schema::dropIfExists('transaksis'); + } +}; diff --git a/database/seeders/BarangPendukungSeeder.php b/database/seeders/BarangPendukungSeeder.php new file mode 100644 index 0000000..8590b29 --- /dev/null +++ b/database/seeders/BarangPendukungSeeder.php @@ -0,0 +1,24 @@ + 1, 'kode' => 'PDN001'], + ['barang_id' => 2, 'kode' => 'PDN002'], + ['barang_id' => 3, 'kode' => 'PDN003'], + ['barang_id' => 4, 'kode' => 'PDN004'], + ['barang_id' => 5, 'kode' => 'PDN005'], + ]); + } +} diff --git a/database/seeders/BarangProdukSeeder.php b/database/seeders/BarangProdukSeeder.php new file mode 100644 index 0000000..515cbea --- /dev/null +++ b/database/seeders/BarangProdukSeeder.php @@ -0,0 +1,24 @@ + 1, 'kode' => 'PRD001'], + ['barang_id' => 2, 'kode' => 'PRD002'], + ['barang_id' => 3, 'kode' => 'PRD003'], + ['barang_id' => 4, 'kode' => 'PRD004'], + ['barang_id' => 5, 'kode' => 'PRD005'], + ]); + } +} diff --git a/database/seeders/BarangSeeder.php b/database/seeders/BarangSeeder.php new file mode 100644 index 0000000..89775a7 --- /dev/null +++ b/database/seeders/BarangSeeder.php @@ -0,0 +1,80 @@ + 'JKS T', + 'qty' => 200, + 'exp' => '2025-06-01', + 'harga' => 36000 + ], + [ + 'nama_barang' => 'JKS B', + 'qty' => 150, + 'exp' => '2025-03-01', + 'harga' => 40000 + ], + [ + 'nama_barang' => 'LEMET T', + 'qty' => 150, + 'exp' => '2025-06-01', + 'harga' => 36000 + ], + [ + 'nama_barang' => 'LEMET B', + 'qty' => 200, + 'exp' => '2025-03-01', + 'harga' => 40000 + ], + [ + 'nama_barang' => 'PETEK B', + 'qty' => 200, + 'exp' => '2025-06-01', + 'harga' => 40000 + ], + [ + 'nama_barang' => 'Garam', + 'qty' => 950, + 'exp' => '2025-03-01', + 'harga' => 10000 + ], + [ + 'nama_barang' => 'Kayu', + 'qty' => 400, + 'exp' => '2025-06-01', + 'harga' => 950000 + ], + [ + 'nama_barang' => 'Batu Es', + 'qty' => 160, + 'exp' => '2025-03-01', + 'harga' => 10000 + ], + [ + 'nama_barang' => 'Kardus', + 'qty' => 3500, + 'exp' => '2025-06-01', + 'harga' => 1400 + ], + [ + 'nama_barang' => 'Uang Makan', + 'qty' => 1, + 'exp' => NULL, + 'harga' => 600000 + ], + ]); + } +} diff --git a/database/seeders/DatabaseSeeder.php b/database/seeders/DatabaseSeeder.php new file mode 100644 index 0000000..2b054dd --- /dev/null +++ b/database/seeders/DatabaseSeeder.php @@ -0,0 +1,55 @@ +call([ + // UserSeeder::class, + + // fungsi presensi dan penggajian + // KaryawanSeeder::class, + KloterSeeder::class, + TonIkanSeeder::class, + PresensiSeeder::class, + + // Gudang Barang + // BarangSeeder::class, + // BarangPendukungSeeder::class, + // BarangProdukSeeder::class, + + // Suppliers + // SupplierSeeder::class, + // KonsumenSeeder::class, + // PemasokSeeder::class, + + // Transaksi + // PengeluaranSeeder::class, + // PemasukanSeeder::class, + // TransaksiSeeder::class, + // TransaksiSeeder::class, + // TransaksiSeeder::class, + // TransaksiSeeder::class, + // TransaksiSeeder::class, + // TransaksiSeeder::class, + // TransaksiSeeder::class, + // TransaksiSeeder::class, + // TransaksiSeeder::class, + // TransaksiSeeder::class, + // TransaksiSeeder::class, + // TransaksiSeeder::class, + // TransaksiSeeder::class, + // TransaksiSeeder::class, + // TransaksiSeeder::class, + // TransaksiSeeder::class, + // TransaksiSeeder::class, + // TransaksiSeeder::class, + ]); + } +} diff --git a/database/seeders/KaryawanSeeder.php b/database/seeders/KaryawanSeeder.php new file mode 100644 index 0000000..e3c8b46 --- /dev/null +++ b/database/seeders/KaryawanSeeder.php @@ -0,0 +1,34 @@ + 'Andi', 'jenis_kelamin' => 'L', 'no_telepon' => '081234567890'], + ['nama' => 'Budi', 'jenis_kelamin' => 'L', 'no_telepon' => '081234567891'], + ['nama' => 'Citra', 'jenis_kelamin' => 'P', 'no_telepon' => '081234567892'], + ['nama' => 'Dewi', 'jenis_kelamin' => 'P', 'no_telepon' => '081234567893'], + ['nama' => 'Eka', 'jenis_kelamin' => 'L', 'no_telepon' => '081234567894'], + ['nama' => 'Fajar', 'jenis_kelamin' => 'L', 'no_telepon' => '081234567895'], + ['nama' => 'Gita', 'jenis_kelamin' => 'P', 'no_telepon' => '081234567896'], + ['nama' => 'Hana', 'jenis_kelamin' => 'P', 'no_telepon' => '085123456732'], + ['nama' => 'Iwan', 'jenis_kelamin' => 'L', 'no_telepon' => '085123456712'], + ['nama' => 'Joko', 'jenis_kelamin' => 'L', 'no_telepon' => '085123456129'], + ]; + + foreach ($data as $item) { + DB::table('karyawans')->insert([ + 'nama' => $item['nama'], + 'jenis_kelamin' => $item['jenis_kelamin'], + 'created_at' => now(), + 'updated_at' => now(), + ]); + } + } +} diff --git a/database/seeders/KloterSeeder.php b/database/seeders/KloterSeeder.php new file mode 100644 index 0000000..fc88493 --- /dev/null +++ b/database/seeders/KloterSeeder.php @@ -0,0 +1,35 @@ +insert([ + [ + 'nama_kloter' => 'Kloter-4', + 'created_at' => now(), + 'updated_at' => now(), + ], + [ + 'nama_kloter' => 'Kloter-5', + 'created_at' => now(), + 'updated_at' => now(), + ], + [ + 'nama_kloter' => 'Kloter-6', + 'created_at' => now(), + 'updated_at' => now(), + ], + ]); + } +} diff --git a/database/seeders/KonsumenSeeder.php b/database/seeders/KonsumenSeeder.php new file mode 100644 index 0000000..81303bf --- /dev/null +++ b/database/seeders/KonsumenSeeder.php @@ -0,0 +1,21 @@ + 1, 'kode' => 'KSM001'], + ]); + } +} diff --git a/database/seeders/PemasokSeeder.php b/database/seeders/PemasokSeeder.php new file mode 100644 index 0000000..be9b057 --- /dev/null +++ b/database/seeders/PemasokSeeder.php @@ -0,0 +1,21 @@ + 2, 'kode' => 'PMK001'], + ]); + } +} diff --git a/database/seeders/PemasukanSeeder.php b/database/seeders/PemasukanSeeder.php new file mode 100644 index 0000000..5bd6379 --- /dev/null +++ b/database/seeders/PemasukanSeeder.php @@ -0,0 +1,18 @@ + 'MSK001']); + Pemasukan::create(['kode' => 'MSK002']); + // Pemasukan::create(['kode' => 'MSK003']); + } +} diff --git a/database/seeders/PengeluaranSeeder.php b/database/seeders/PengeluaranSeeder.php new file mode 100644 index 0000000..f096b87 --- /dev/null +++ b/database/seeders/PengeluaranSeeder.php @@ -0,0 +1,18 @@ + 'KLR001']); + // Pengeluaran::create(['kode' => 'KLR002']); + // Pengeluaran::create(['kode' => 'KLR003']); + } +} diff --git a/database/seeders/PresensiSeeder.php b/database/seeders/PresensiSeeder.php new file mode 100644 index 0000000..043f50e --- /dev/null +++ b/database/seeders/PresensiSeeder.php @@ -0,0 +1,224 @@ + 1, + '2025-04-28' => 1, + '2025-04-29' => 1, + '2025-04-30' => 1, + '2025-05-01' => 2, + '2025-05-02' => 2, + '2025-05-03' => 2, + '2025-05-05' => 2, + '2025-05-06' => 2, + '2025-05-07' => 2, + '2025-05-10' => 3, + '2025-05-11' => 3, + '2025-05-12' => 3, + '2025-05-13' => 3, + '2025-05-17' => 3, + '2025-05-18' => 3, + '2025-05-19' => 4, + '2025-05-20' => 4, + '2025-05-21' => 4, + '2025-05-22' => 4, + '2025-05-26' => 4, + '2025-05-27' => 4, + '2025-05-28' => 4, + '2025-05-29' => 5, + '2025-05-30' => 5, + '2025-06-03' => 5, + '2025-06-04' => 5, + '2025-06-05' => 5, + '2025-06-06' => 5, + '2025-06-07' => 6, + '2025-06-08' => 6, + '2025-06-09' => 6, + ]; + + $presensiData = []; + + foreach ($tanggalList as $tanggal) { + foreach ($karyawanIds as $karyawanId) { + // Simulasikan absensi sebagian orang di tanggal tertentu (optional) + if ( + ($tanggal === '2025-04-27' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-04-27' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-04-27' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-04-27' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-04-28' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-04-28' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-04-28' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-04-28' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-04-29' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-04-29' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-04-29' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-04-29' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-04-30' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-04-30' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-04-30' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-04-30' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-01' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-01' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-01' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-01' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-01' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-02' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-02' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-02' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-02' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-03' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-03' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-03' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-03' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-05' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-05' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-05' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-05' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-05' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-06' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-06' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-06' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-06' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-06' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-06' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-07' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-07' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-07' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-10' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-10' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-10' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-11' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-11' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-11' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-12' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-12' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-12' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-13' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-13' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-13' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-17' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-17' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-17' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-18' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-18' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-18' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-19' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-19' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-19' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-20' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-20' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-20' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-21' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-21' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-21' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-22' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-22' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-22' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-22' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-20' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-20' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-20' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-26' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-26' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-26' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-27' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-27' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-27' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-28' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-28' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-28' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-29' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-29' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-29' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-30' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-30' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-30' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-30' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-05-30' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-06-03' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-06-03' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-06-04' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-06-04' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-06-05' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-06-05' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-06-05' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-06-06' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-06-06' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-06-07' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-06-08' && $karyawanId == rand(1,10)) || + ($tanggal === '2025-06-09' && $karyawanId == rand(1,10)) + ) { + continue; // skip, tidak hadir + } + + $presensiData[] = [ + 'karyawan_id' => $karyawanId, + 'kloter_id' => $kloterMapping[$tanggal], + 'tanggal' => $tanggal, + 'jam_masuk' => $this->getJamMasuk($karyawanId), + 'jam_pulang' => $this->getJamPulang($karyawanId), + 'created_at' => now(), + 'updated_at' => now(), + ]; + } + } + + DB::table('presensis')->insert($presensiData); + } + + // Bisa diatur berdasarkan ID untuk variasi jam masuk dan pulang + private function getJamMasuk(int $karyawanId): string + { + return in_array($karyawanId, [1, 6]) ? '08:40:32' : '05:19:13'; + } + + private function getJamPulang(int $karyawanId): string + { + return in_array($karyawanId, [1, 6]) ? '17:12:28' : '18:24:42'; + } +} diff --git a/database/seeders/SupplierSeeder.php b/database/seeders/SupplierSeeder.php new file mode 100644 index 0000000..1de4bbe --- /dev/null +++ b/database/seeders/SupplierSeeder.php @@ -0,0 +1,23 @@ + 'PT. Sumber Pangan', 'alamat' => 'Surabaya', 'no_tlp' => '081234567890', 'no_rekening' => '1234567890']); + Supplier::create(['nama' => 'CV. Berkah Usaha', 'alamat' => 'Malang', 'no_tlp' => '082223334444', 'no_rekening' => '0987654321']); + Supplier::create(['nama' => 'Toko Makmur', 'alamat' => 'Gresik', 'no_tlp' => '083345678900', 'no_rekening' => '1122334455']); + Supplier::create(['nama' => 'PT. Sumber Berkah', 'alamat' => 'Sidoarjo', 'no_tlp' => '084456789012', 'no_rekening' => '2233445566']); + } +} diff --git a/database/seeders/TonIkanSeeder.php b/database/seeders/TonIkanSeeder.php new file mode 100644 index 0000000..2e13e8d --- /dev/null +++ b/database/seeders/TonIkanSeeder.php @@ -0,0 +1,55 @@ + 3, + 'jumlah_ton' => 200.00, + 'harga_ikan_per_ton' => 1000000, + 'created_at' => now(), + 'updated_at' => now(), + ], + [ + 'kloter_id' => 3, + 'jumlah_ton' => 50.00, + 'harga_ikan_per_ton' => 1000000, + 'created_at' => now(), + 'updated_at' => now(), + ], + [ + 'kloter_id' => 4, + 'jumlah_ton' => 50.00, + 'harga_ikan_per_ton' => 1000000, + 'created_at' => now(), + 'updated_at' => now(), + ], + [ + 'kloter_id' => 5, + 'jumlah_ton' => 50.00, + 'harga_ikan_per_ton' => 1000000, + 'created_at' => now(), + 'updated_at' => now(), + ], + [ + 'kloter_id' => 6, + 'jumlah_ton' => 50.00, + 'harga_ikan_per_ton' => 1000000, + 'created_at' => now(), + 'updated_at' => now(), + ], + ]; + + DB::table('ton_ikans')->insert($tonIkanData); + } +} diff --git a/database/seeders/TransaksiSeeder.php b/database/seeders/TransaksiSeeder.php new file mode 100644 index 0000000..46a0ca3 --- /dev/null +++ b/database/seeders/TransaksiSeeder.php @@ -0,0 +1,45 @@ +subYear(); + $endDate = Carbon::now(); + + for ($i = 0; $i < 12; $i++) { // pilih bulan dari 1 - 12 + $tipe = $i % 2 === 0 ? 'pemasukan' : 'pengeluaran'; // selang-seling + $tanggal = Carbon::create(2024, 1, 1) + ->addMonths($i) + ->day(rand(1, 28)) // Acak tanggal antara 1 sampai 28 agar aman untuk semua bulan + ->setTime(rand(0, 23), rand(0, 59), rand(0, 59)); // Acak waktu dalam hari + + Transaksi::create([ + 'barang_id' => $barang->random()->id, + 'supplier_id' => $supplier->random()->id, + 'pemasukan_id' => $tipe === 'pemasukan' ? $pemasukan->random()->id : null, + 'pengeluaran_id' => $tipe === 'pengeluaran' ? $pengeluaran->random()->id : null, + 'jumlahRp' => rand(300000, 900000), + 'waktu_transaksi' => $tanggal, + ]); + } + } +} diff --git a/database/seeders/UserSeeder.php b/database/seeders/UserSeeder.php new file mode 100644 index 0000000..686ba81 --- /dev/null +++ b/database/seeders/UserSeeder.php @@ -0,0 +1,38 @@ + 'pimpinan@example.com'], // Kondisi untuk mencari data + [ + 'name' => 'Pimpinan User', + 'password' => Hash::make('PassAdmin123'), + 'role' => 'pimpinan', + ] + ); + + // Untuk Operator User + User::firstOrCreate( + ['email' => 'operator@example.com'], // Kondisi untuk mencari data + [ + 'name' => 'Operator User', + 'password' => Hash::make('PassOperator123'), + 'role' => 'operator', + ] + ); + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..306b52f --- /dev/null +++ b/package.json @@ -0,0 +1,14 @@ +{ + "private": true, + "type": "module", + "scripts": { + "dev": "vite", + "build": "vite build" + }, + + "devDependencies": { + "axios": "^1.6.4", + "laravel-vite-plugin": "^1.0.0", + "vite": "^5.0.0" + } +} diff --git a/phpunit.xml b/phpunit.xml new file mode 100644 index 0000000..2ac7107 --- /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..d37c994 --- /dev/null +++ b/public/.htaccess @@ -0,0 +1,22 @@ + + + Options -MultiViews -Indexes + + + RewriteEngine On + + # Handle Authorization Header + RewriteCond %{HTTP:Authorization} . + RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] + + # 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/css/extra.css b/public/css/extra.css new file mode 100644 index 0000000..31f9b88 --- /dev/null +++ b/public/css/extra.css @@ -0,0 +1,29 @@ +.filter-x { + display: flex; + justify-content:end; + align-items: center; +} + +.filter-f { + display: flex; + flex-direction: row; + justify-content: center; + align-items: center; + flex-wrap: nowrap; + margin-right: 20px; +} + +.filter-ba { + display: flex; + justify-content: space-between; + margin-right: 20px; +} + +.genderToggle.active { + pointer-events: none; + opacity: 1 !important; +} + +.genderToggle:not(.active) { + opacity: 0.6; +} \ No newline at end of file diff --git a/public/css/operator.css b/public/css/operator.css new file mode 100644 index 0000000..615f78c --- /dev/null +++ b/public/css/operator.css @@ -0,0 +1,316 @@ +body { + margin: 0; + font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; + background-color: #eef2f7; + color: #333; +} + +.i-g{ + width: 50%; +} + +.modal-ct{ + align-content: center; +} + +.sidebar { + background-color: #2c3e50; + width: 230px; + height: 100vh; + position: fixed; + display: flex; + flex-direction: column; + align-items: center; + padding-top: 30px; + overflow: auto; + box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1); + z-index: 1000; +} + +.sidebar img { + width: 50px; + height: 50px; + margin-bottom: 15px; +} + +.sidebar-link{ + padding: 12px 20px; + width: 100%; + color: #ecf0f1; + text-align: center; + text-decoration: none; + display: block; + transition: 0.3s ease; + box-sizing: border-box; +} + + +.sidebar-link:hover, +.sidebar-link.active{ + background-color: #ecf0f1; + color: #2c3e50; + font-weight: bold; +} + +.sidebar-link-out { + padding: 12px 20px; + width: 100%; + color: orangered; + text-align: center; + text-decoration: none; + display: block; + transition: 0.3s ease; + box-sizing: border-box; + margin-top: 20px; +} + +.sidebar-link-out:hover{ + /* width: 100%; */ + background-color: red; + color: white; + font-weight: bold; +} + +.sidebar-category { + font-weight: bold; + padding: 10px 15px; + color: #666; + text-transform: uppercase; + font-size: 12px; + text-align: start; + margin-top: 10px; +} + +.sidebar-submenu { + margin-left: 10px; + font-size: 14px; +} + +.sidebar-submenu .sidebar-link { + display: block; + padding: 4px 0 4px 20px; + color: #ccc; +} + +.sidebar-submenu .sidebar-link:hover { + color: white; +} + +.main-content { + margin-left: 230px; + padding: 30px; + transition: margin 0.3s ease; +} + +.wrapper { + margin-left: 230px; + min-height: 100vh; +} + +.navbar { + width: 100%; + position: sticky; + top: 0; + z-index: 1001; +} + +.dashboard-container { + background-color: #bdbdf2; + padding: 20px; + border-radius: 15px; +} + +.title-box { + background-color: #bdbdf2; + /* border: 2px solid #2f80ed; */ + margin-bottom: 20px; + border-radius: 10px; + padding: 0px 50px; + height: auto; + font-weight: normal; + text-align: left; /* ubah dari center jadi kiri */ + font-size: 25px; + display: flex; + flex-direction: column; + justify-content: center; +} + +.subtitle-box { + background-color: #eff0c0; + + font-size: 15px; + border-radius: 10px; + padding: 20px; + height: auto; +} + +.info-box { + background-color: #eff0c0; + + font-size: 15px; + border-radius: 10px; + padding: 20px; + height: auto; + font-weight: bold; + text-align: center; /* ubah dari center jadi kiri */ + + display: flex; + justify-content: space-evenly; + align-items: center; + flex-wrap: wrap; + + margin-bottom: 20px +} + +.info-row { + display: flex; + flex-wrap: wrap; + justify-content: space-between; + gap: 20px; + margin-bottom: 20px; +} + +.info-all { + display: flex; + float: right; +} + +.info-row .info-box { + flex: 1; +} + +.filter-info { + width: 60px; +} + + +.welcome-box { + background-color: #3498db; + color: white; + padding: 20px 25px; + font-size: 22px; + border-radius: 10px; + margin-bottom: 30px; + box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); +} + +.grid-container { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); + gap: 20px; +} + +.box { + background-color: #ffffff; + padding: 20px; + border-radius: 12px; + box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); +} + +.box h2 { + margin: 0 0 10px 0; + font-size: 18px; + color: #2c3e50; +} + +.box p { + font-size: 14px; + color: #555; +} + +.large-box { + grid-column: span 2; +} + +@media (max-width: 600px) { + .sidebar { + position: static; + /* margin-top: 0; */ + width: 100%; + height: auto; + flex-direction: row; + overflow-x: auto; + } + + .main-content { + margin-left: 0; + margin-top: 10px; + overflow-x: auto; + } + + .large-box { + grid-column: span 1; + } +} + +/* for children */ +.page-header h2 { + font-size: 24px; + margin-bottom: 20px; + color: #2c3e50; +} + +.table-container { + overflow-x: auto; + background-color: #ffffff; + border-radius: 12px; + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); + padding: 20px; +} + +table { + width: 100%; + border-collapse: collapse; + font-size: 14px; + color: #333; +} + +thead { + background-color: #3498db; + color: #fff; +} + +thead th { + padding: 12px 10px; + text-align: center; +} + +tbody td { + padding: 10px; + border-top: 1px solid #ddd; +} + +tbody tr:nth-child(even) { + background-color: #f9f9f9; +} + +table a { + color: #3498db; + text-decoration: none; + font-weight: bold; +} + +table a:hover { + text-decoration: underline; +} + +.row { + display: flex; + justify-content: space-between; + gap: 20px; +} + +.box-custom { + flex: 1; + background-color: #fff; + padding: 20px; + border-radius: 10px; + box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); + + text-align: center; +} + +.b-pri { + text-align: right; + /* padding-right: 25px; */ +} \ No newline at end of file diff --git a/public/css/pimpinan.css b/public/css/pimpinan.css new file mode 100644 index 0000000..de8667c --- /dev/null +++ b/public/css/pimpinan.css @@ -0,0 +1,276 @@ +body { + margin: 0; + font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; + background-color: #eef2f7; + color: #333; +} + +.content-wrapper { + max-width: 900px; + margin: 0 auto; +} + +/* style sidebar */ +.sidebar { + width: 230px; + background-color: #2c3e50; + height: 100vh; + position: fixed; + display: flex; + flex-direction: column; + align-items: center; + padding-top: 30px; +} + +.sidebar img { + width: 50px; + height: 50px; + margin-bottom: 30px; +} + +.sidebar-link{ + padding: 12px 20px; + width: 100%; + color: #ecf0f1; + text-align: center; + text-decoration: none; + display: block; + transition: 0.3s ease; + box-sizing: border-box; +} + + +.sidebar-link:hover, +.sidebar-link.active{ + background-color: #ecf0f1; + color: #2c3e50; + font-weight: bold; +} + +.sidebar-link-out { + padding: 12px 20px; + width: 100%; + color: orangered; + text-align: center; + text-decoration: none; + display: block; + transition: 0.3s ease; + box-sizing: border-box; + margin-top: 40px; +} + +.sidebar-link-out:hover{ + /* width: 100%; */ + background-color: red; + color: white; + font-weight: bold; +} + +.sidebar-category { + font-weight: bold; + padding: 10px 15px; + color: #666; + text-transform: uppercase; + font-size: 12px; + text-align: start; + margin-top: 20px; +} + +/* style dashboard */ +.dashboard-container { + background-color: #bdbdf2; + padding: 20px; + border-radius: 15px; +} + +.title-box { + background-color: #bdbdf2; + /* border: 2px solid #2f80ed; */ + margin-bottom: 20px; + border-radius: 10px; + padding: 0px 50px; + height: auto; + font-weight: normal; + text-align: left; /* ubah dari center jadi kiri */ + font-size: 25px; + display: flex; + flex-direction: column; + justify-content: center; +} + +.info-box { + background-color: #eff0c0; + + font-size: 15px; + border-radius: 10px; + padding: 20px; + height: auto; + font-weight: bold; + text-align: center; + + display: flex; + justify-content: space-evenly; + align-items: center; + flex-wrap: wrap; +} + +.info-row { + display: flex; + flex-wrap: wrap; + justify-content: space-between; + gap: 20px; + margin-bottom: 20px; +} + +.info-row .info-box { + flex: 1; +} + +.filter-info { + width: 60px; +} + +/* style grafiks */ +.chart-card { + background-color: #eff0c0; + border-radius: 10px; + padding: 20px; + margin-top: 20px; + height: 400px; /* TAMBAHKAN INI */ +} + +.chart-card canvas { + width: 100% !important; + height: 100% !important; +} + +.chart-title { + font-weight: bold; + color: #333; +} + +.chart-c { + font-size: 15px; + display: flex; + justify-content: space-between; + align-items: center; + flex-wrap: wrap; +} + +.main-content { + margin-left: 230px; + padding: 30px; +} + +.welcome-box { + background-color: #3498db; + color: white; + padding: 20px 25px; + font-size: 22px; + border-radius: 10px; + margin-bottom: 30px; + box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); +} + +.grid-container { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); + gap: 20px; +} + +.box { + background-color: #ffffff; + padding: 20px; + border-radius: 12px; + box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); +} + +.box h2 { + margin: 0 0 10px 0; + font-size: 18px; + color: #2c3e50; +} + +.box p { + font-size: 14px; + color: #555; +} + +.large-box { + grid-column: span 2; +} + +@media (max-width: 600px) { + .sidebar { + /* position: static; */ + width: 100%; + height: auto; + flex-direction: row; + overflow-x: auto; + } + + .main-content { + margin-left: 0; + } + + .large-box { + grid-column: span 1; + } +} + +/* for children */ +.page-header h2 { + font-size: 24px; + margin-bottom: 20px; + color: #2c3e50; +} + +.table-container { + overflow-x: auto; + background-color: #ffffff; + border-radius: 12px; + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); + padding: 20px; +} + +table { + width: 100%; + border-collapse: collapse; + font-size: 14px; + color: #333; +} + +thead { + background-color: #3498db; + color: #fff; +} + +thead th { + padding: 12px 10px; + text-align: left; +} + +tbody td { + padding: 10px; + border-top: 1px solid #ddd; +} + +tbody tr:nth-child(even) { + background-color: #f9f9f9; +} + +table a { + color: #3498db; + text-decoration: none; + font-weight: bold; +} + +table a:hover { + text-decoration: underline; +} + +form.flex.items-center.gap-2 select, +form.flex.items-center.gap-2 input, +form.flex.items-center.gap-2 button { + display: inline-block; +} diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..e7e4b64831c8113ba67e5b1efad12f12d0b15b7b GIT binary patch literal 270398 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::class); + +$response = $kernel->handle( + $request = Request::capture() +)->send(); + +$kernel->terminate($request, $response); + diff --git a/public/js/barang.js b/public/js/barang.js new file mode 100644 index 0000000..585b79d --- /dev/null +++ b/public/js/barang.js @@ -0,0 +1,179 @@ +document.addEventListener('DOMContentLoaded', function () { + + // filter untuk input nama barang + const namaInput = document.getElementById('namaInput'); + if (namaInput) { + let typingTimer; + const doneTypingInterval = 500; // Delay submit 0.5 detik setelah ketikan berhenti + + namaInput.addEventListener('input', function () { + clearTimeout(typingTimer); + typingTimer = setTimeout(() => { + document.getElementById('filterForm').submit(); + }, doneTypingInterval); + }); + } + + // Peringatan Ubah Kateogri saat Edit Barang + document.querySelectorAll('.formEditBarang').forEach(function(form) { + form.addEventListener('submit', function(e) { + e.preventDefault(); + + const kategoriLama = form.querySelector('.kategori-lama').value; + const kategoriBaru = form.querySelector('.kategori-select').value; + + const melibatkanProduk = (kategoriLama === 'produk' || kategoriBaru === 'produk'); + + if (melibatkanProduk && kategoriLama !== kategoriBaru) { + Swal.fire({ + title: 'Peringatan!', + text: 'Anda akan mengubah kategori yang melibatkan Produk. Yakin ingin melanjutkan?', + icon: 'warning', + showCancelButton: true, + confirmButtonText: 'Ya, Lanjutkan!', + cancelButtonText: 'Batal' + }).then((result) => { + if (result.isConfirmed) { + const inputConfirm = document.createElement("input"); + inputConfirm.type = "hidden"; + inputConfirm.name = "confirm_produk"; + inputConfirm.value = "1"; + form.appendChild(inputConfirm); + form.submit(); + } + }); + } else { + form.submit(); + } + }); + }); + + // Peringatan Hapus Barang + document.querySelectorAll('.formDeleteBarang').forEach(function (form) { + form.addEventListener('submit', function (e) { + e.preventDefault(); + + Swal.fire({ + title: 'Hapus Data?', + text: "Data akan dihapus secara permanen. Lanjutkan?", + icon: 'warning', + showCancelButton: true, + confirmButtonColor: '#d33', + cancelButtonColor: '#3085d6', + confirmButtonText: 'Ya, Hapus!', + cancelButtonText: 'Batal' + }).then((result) => { + if (result.isConfirmed) { + form.submit(); + } + }); + }); + }); + + // Cek Nama Barang Sudah Ada atau Belum + const dataDiv = document.getElementById('barang-data'); + if (dataDiv?.dataset.barangSudahAda === '1') { + Swal.fire({ + icon: 'warning', + title: 'Barang Sudah Ada!', + text: 'Barang dengan nama tersebut sudah ada. Sistem akan menyesuaikan stok.', + confirmButtonText: 'Mengerti' + }); + } + + // Fungsi debounce (untuk input cepat) + function debounce(func, delay = 300) { + let timeout; + return function (...args) { + clearTimeout(timeout); + timeout = setTimeout(() => func.apply(this, args), delay); + }; + } + + // Cek Nama Barang Saat Modal Dibuka + const createModal = document.getElementById('createModal'); + if (createModal) { + const debouncedHandler = debounce(handleNamaBarangChange, 300); + + createModal.addEventListener('shown.bs.modal', () => { + const namaBarangInput = document.querySelector('#nama_barang'); + if (!namaBarangInput) return; + + // Pastikan hanya satu event listener terpasang + namaBarangInput.removeEventListener('input', debouncedHandler); + namaBarangInput.addEventListener('input', debouncedHandler); + }); + } + + // fungsi cek nama barang dan tampilkan kode + function handleNamaBarangChange() { + const nama = this.value.trim(); + const filter = document.querySelector('input[name="filter"]')?.value || ''; + + if (nama.length < 3) return; // minimal 3 karakter agar tidak spam server + + fetch(`/barang/check?nama_barang=${encodeURIComponent(nama)}&filter=${filter}`) + .then(response => { + if (!response.ok) throw new Error("Gagal fetch"); + return response.json(); + }) + .then(data => { + const inputBarangSudahAda = document.getElementById('barangSudahAda'); + const inputNamaBarang = document.getElementById('namaBarang'); + const inputNewKode = document.getElementById('newKode'); + + if (inputBarangSudahAda && inputNamaBarang && inputNewKode) { + inputBarangSudahAda.value = data.barang_sudah_ada ? '1' : '0'; + inputNamaBarang.value = data.nama_barang || ''; + inputNewKode.value = data.kode || ''; + updateKodeInput(); + } else { + console.warn("Elemen hidden input tidak ditemukan"); + } + }) + .catch(error => { + console.error("Gagal mengambil data dari /barang/check:", error); + }); + } + + // Fungsi untuk Update Tampilan Kode Barang + function updateKodeInput() { + const kodeInputWrapper = document.getElementById('kodeInputWrapper'); + if (!kodeInputWrapper) return; + + const barangSudahAda = document.getElementById('barangSudahAda')?.value === '1'; + const namaBarang = document.getElementById('namaBarang')?.value || ''; + const newKode = document.getElementById('newKode')?.value || ''; + + kodeInputWrapper.innerHTML = ''; // Kosongkan + + const label = document.createElement('label'); + label.className = 'form-label'; + label.setAttribute('for', 'kode'); + label.innerText = 'Kode'; + kodeInputWrapper.appendChild(label); + + const input = document.createElement('input'); + input.id = 'kode'; + input.type = 'text'; + input.className = 'form-control'; + input.readOnly = true; + + if (barangSudahAda && namaBarang !== '') { + input.classList.add('is-invalid'); + input.value = newKode || 'Barang sudah ada'; + input.disabled = true; + + const feedback = document.createElement('div'); + feedback.className = 'invalid-feedback'; + feedback.innerHTML = `Barang ${namaBarang} sudah ada. Kode: ${newKode}`; + + kodeInputWrapper.appendChild(input); + kodeInputWrapper.appendChild(feedback); + } else { + input.value = newKode; + kodeInputWrapper.appendChild(input); + } + } + +}); diff --git a/public/js/dashboardPimpinan.js b/public/js/dashboardPimpinan.js new file mode 100644 index 0000000..a592f61 --- /dev/null +++ b/public/js/dashboardPimpinan.js @@ -0,0 +1,63 @@ +// document.addEventListener('DOMContentLoaded', function () { +// const ctx = document.getElementById('financeChart').getContext('2d'); + +// const chart = new Chart(ctx, { +// type: 'line', +// data: { +// labels: @json($labels), +// datasets: [ +// { +// label: 'Pendapatan', +// data: @json($grafikPendapatan), // Data proporsional +// borderColor: 'blue', +// backgroundColor: 'rgba(0, 0, 255, 0.2)', +// borderWidth: 2 +// }, +// { +// label: 'Pengeluaran', +// data: @json($grafikPengeluaran), // Data proporsional +// borderColor: 'red', +// backgroundColor: 'rgba(255, 0, 0, 0.2)', +// borderWidth: 2 +// } +// ] +// }, +// options: { +// responsive: true, +// plugins: { +// tooltip: { +// callbacks: { +// label: function(context) { +// const index = context.dataIndex; +// const label = context.dataset.label; +// const dataPendapatan = @json($pendapatanBulanan); +// const dataPengeluaran = @json($pengeluaranBulanan); +// let value = 0; + +// if (label === 'Pendapatan') { +// value = dataPendapatan[index]; +// } else { +// value = dataPengeluaran[index]; +// } + +// return label + ': Rp ' + value.toLocaleString('id-ID'); +// } +// } +// } +// }, +// scales: { +// y: { +// title: { +// display: true, +// text: 'Skala Proporsional (%)' +// }, +// ticks: { +// callback: function(value) { +// return value + '%'; +// } +// } +// } +// } +// } +// }); +// }); diff --git a/public/js/gaji.js b/public/js/gaji.js new file mode 100644 index 0000000..e943d11 --- /dev/null +++ b/public/js/gaji.js @@ -0,0 +1,87 @@ +document.addEventListener("DOMContentLoaded", function () { + const editModal = document.getElementById('editModal'); + const inputId = document.getElementById('inputKloterId'); + const inputJumlahTon = document.getElementById('inputJumlahTon'); + const inputHargaPerTon = document.getElementById('inputHargaPerTon'); + + document.querySelectorAll('[data-bs-target="#editModal"]').forEach(button => { + button.addEventListener('click', function () { + const id = this.getAttribute('data-id'); + const jumlah = this.getAttribute('data-jumlah'); + const harga = this.getAttribute('data-harga'); + + inputId.value = id; + inputJumlahTon.value = jumlah; + inputHargaPerTon.value = harga; + }); + }); + + document.querySelectorAll('[data-bs-target^="#editModal"]').forEach(button => { + button.addEventListener('click', function () { + const id = this.getAttribute('data-id'); + const jumlah = this.getAttribute('data-jumlah'); + const harga = this.getAttribute('data-harga'); + + const modalId = this.getAttribute('data-bs-target'); // contoh: "#editModal5" + const modal = document.querySelector(modalId); + + if (!modal) return; // cegah error jika modal tidak ditemukan + + const inputId = modal.querySelector('#inputKloterId'); + const inputJumlahTon = modal.querySelector('#inputJumlahTon'); + const inputHargaPerTon = modal.querySelector('#inputHargaPerTon'); + + inputId.value = id; + inputJumlahTon.value = jumlah; + inputHargaPerTon.value = harga; + }); + }); + + const searchInput = document.getElementById('searchInput'); + let typingTimer; + const doneTypingInterval = 500; // 0.5 detik setelah user berhenti mengetik + + if (searchInput) { + const baseUrl = searchInput.dataset.url; + + searchInput.addEventListener('keyup', function () { + clearTimeout(typingTimer); + typingTimer = setTimeout(() => { + const keyword = searchInput.value.trim(); + + if (keyword === '') { + window.location.href = baseUrl; + } else { + const url = new URL(baseUrl, window.location.origin); + url.searchParams.set('search', keyword); + window.location.href = url.toString(); + } + }, doneTypingInterval); + }); + + searchInput.addEventListener('keydown', function () { + clearTimeout(typingTimer); + }); + } + + const forms = document.querySelectorAll(".form-kloter-selesai"); + forms.forEach(form => { + form.addEventListener("submit", function (e) { + e.preventDefault(); + Swal.fire({ + title: 'Yakin ingin menyelesaikan kloter ini?', + text: "Data akan diproses ke riwayat gaji.", + icon: 'warning', + showCancelButton: true, + confirmButtonColor: '#3085d6', + cancelButtonColor: '#d33', + confirmButtonText: 'Ya, Selesaikan!', + cancelButtonText: 'Batal' + }).then((result) => { + if (result.isConfirmed) { + form.submit(); + } + }); + }); + }); +}); diff --git a/public/js/karyawan.js b/public/js/karyawan.js new file mode 100644 index 0000000..5a4b566 --- /dev/null +++ b/public/js/karyawan.js @@ -0,0 +1,59 @@ +document.addEventListener('DOMContentLoaded', function () { + + const form = document.getElementById('filterForm'); + const genderInput = document.getElementById('genderInput'); + const toggleBtn = document.getElementById('toggleGenderBtn'); + const namaInput = document.getElementById('namaInput'); + + // Untuk siklus filter gender + const states = ['L', 'P', '']; // Terakhir berarti Semua + let currentIndex = states.indexOf(genderInput.value || ''); + + toggleBtn.addEventListener('click', function () { + // Ganti index + currentIndex = (currentIndex + 1) % states.length; + const gender = states[currentIndex]; + genderInput.value = gender; + + // Ubah teks dan warna tombol + if (gender === 'L') { + toggleBtn.className = 'btn btn-sm btn-outline-primary'; + toggleBtn.innerText = 'L'; + } else if (gender === 'P') { + toggleBtn.className = 'btn btn-sm btn-outline-danger'; + toggleBtn.innerText = 'P'; + } else { + toggleBtn.className = 'btn btn-sm btn-outline-secondary'; + toggleBtn.innerText = 'Semua Gender'; + } + + form.submit(); + }); + + // Nama: auto submit setelah delay + let timer; + namaInput.addEventListener('input', function () { + clearTimeout(timer); + timer = setTimeout(() => { + form.submit(); + }, 500); + }); + + document.querySelectorAll('.formDelete').forEach(form => { + form.addEventListener('submit', function(e) { + e.preventDefault(); + Swal.fire({ + title: 'Yakin ingin menghapus?', + icon: 'warning', + showCancelButton: true, + confirmButtonColor: '#d33', + cancelButtonColor: '#3085d6', + confirmButtonText: 'Ya, hapus' + }).then((result) => { + if (result.isConfirmed) { + this.submit(); + } + }); + }); + }); +}); diff --git a/public/js/laporanTransaksi.js b/public/js/laporanTransaksi.js new file mode 100644 index 0000000..2b7ea35 --- /dev/null +++ b/public/js/laporanTransaksi.js @@ -0,0 +1,49 @@ +$(document).ready(function () { + // Aktifkan date range picker + $('#daterange').daterangepicker({ + locale: { + format: 'DD-MM-YYYY', + applyLabel: "Pilih", + cancelLabel: "Batal", + daysOfWeek: ["Min", "Sen", "Sel", "Rab", "Kam", "Jum", "Sab"], + monthNames: ["Januari", "Februari", "Maret", "April", "Mei", "Juni", "Juli", "Agustus", "September", "Oktober", "November", "Desember"], + firstDay: 1 + }, + showDropdowns: true // 👈 ini bagian tambahan biar tahun bisa dipilih + }); + + + const form = $('#filterForm'); + + // Submit otomatis saat apply date + $('#daterange').on('apply.daterangepicker', function(ev, picker) { + form.submit(); + }); + + // Ajax submit pencarian + form.on('submit', function(e) { + const isDownload = form.find('button[name=export]').is(':focus'); + if (isDownload) return; // allow Excel/PDF download + + e.preventDefault(); // prevent reload + $.ajax({ + url: form.attr('action') || window.location.href, + data: form.serialize(), + success: function(response) { + $('#tabelTransaksi').html(response); + }, + error: function() { + alert('Gagal memuat data'); + } + }); + }); + + // Auto-submit pencarian + let timeout = null; + $('#q').on('input', function () { + clearTimeout(timeout); + timeout = setTimeout(() => { + form.submit(); + }, 500); + }); +}); diff --git a/public/js/presensi.js b/public/js/presensi.js new file mode 100644 index 0000000..02014dc --- /dev/null +++ b/public/js/presensi.js @@ -0,0 +1,130 @@ +document.addEventListener("DOMContentLoaded", function () { + const searchInput = document.getElementById('searchKaryawan'); + + if (searchInput) { + searchInput.addEventListener('keyup', function () { + const keyword = this.value.toLowerCase(); + const rows = document.querySelectorAll("table tbody tr"); + + rows.forEach(row => { + const nama = row.querySelector("td:nth-child(2)")?.textContent.toLowerCase(); + if (nama.includes(keyword)) { + row.style.display = ""; + } else { + row.style.display = "none"; + } + }); + }); + } +}); + +// pilih kloter +document.getElementById('kloter_id').addEventListener('change', function () { + const id = this.value; + if (id) { + window.location.href = `/operator/presensi/${id}`; + } +}); + +document.getElementById('btnLihatKloter').addEventListener('click', function () { + const select = document.getElementById('kloter_id'); + const id = select.value; + + if (id) { + window.location.href = `/operator/gaji/${id}`; + } else { + alert('Pilih kloter terlebih dahulu'); + } +}); + +// checkbox mode otomatis +const checkbox = document.getElementById('modeOtomatis'); +const STORAGE_KEY = 'mode_presensi_otomatis'; + +// Inisialisasi: ambil dari localStorage +let modeOtomatis = localStorage.getItem(STORAGE_KEY); +if (modeOtomatis === null) { + // default true jika belum pernah disetel + modeOtomatis = 'true'; + localStorage.setItem(STORAGE_KEY, modeOtomatis); +} + +checkbox.checked = modeOtomatis === 'true'; +toggleInputManualJam(checkbox.checked); + +checkbox.addEventListener('change', function () { + const isChecked = this.checked; + localStorage.setItem(STORAGE_KEY, isChecked.toString()); + toggleInputManualJam(isChecked); +}); + +function toggleInputManualJam(isOtomatis) { + document.querySelectorAll('.inputManualJam').forEach(el => { + el.classList.toggle('d-none', isOtomatis); + }); +} +function getCurrentTime() { + const now = new Date(); + return now.toTimeString().slice(0, 8); +} + +document.querySelectorAll('.formPresensi').forEach(form => { + form.addEventListener('submit', function (e) { + const hiddenInput = form.querySelector('.inputJam'); + const manualInput = form.querySelector('.inputManualJam'); + const mode = localStorage.getItem(STORAGE_KEY) === 'true'; + + const jamSekarang = getCurrentTime(); + let jamInput = ''; + + if (mode) { + jamInput = jamSekarang; + } else { + jamInput = manualInput.value; + if (!jamInput) { + e.preventDefault(); + Swal.fire({ + icon: 'warning', + title: 'Jam tidak valid!', + text: 'Jam manual tidak boleh kosong.', + timer: 5000, + timerProgressBar: true, + confirmButtonText: 'Oke', + allowOutsideClick: false, + allowEscapeKey: false, + }); + return; + } + + // Lengkapi format menjadi HH:mm:ss jika hanya jam dan menit + if (jamInput.length === 5) { + jamInput += ':00'; + } + + if (jamInput > jamSekarang) { + e.preventDefault(); + Swal.fire({ + icon: 'warning', + title: 'Jam tidak valid!', + text: 'Jam tidak boleh lebih dari waktu sekarang.', + timer: 3000, // 5 detik + timerProgressBar: true, + confirmButtonText: 'Oke', + allowOutsideClick: false, + allowEscapeKey: false, + didOpen: () => { + const content = Swal.getHtmlContainer(); + if (content) { + content.querySelector('button.swal2-confirm')?.focus(); + } + } + }); + return; + } + } + + hiddenInput.value = jamInput; + }); +}); + + diff --git a/public/js/supplier.js b/public/js/supplier.js new file mode 100644 index 0000000..9a2e9e3 --- /dev/null +++ b/public/js/supplier.js @@ -0,0 +1,60 @@ +// filter supplier by name and alamat +document.addEventListener('DOMContentLoaded', function () { + const keywordInput = document.getElementById('keywordInput'); + const kategoriInput = document.getElementById('kategoriInput'); + const kategoriButtons = document.querySelectorAll('.kategoriBtn'); + const form = document.getElementById('filterForm'); + + let timer; + const delay = 500; + + // Auto submit saat ketik keyword + if (keywordInput) { + keywordInput.addEventListener('input', function () { + clearTimeout(timer); + timer = setTimeout(() => { + form.submit(); + }, delay); + }); + } + + // Klik tombol kategori + kategoriButtons.forEach(btn => { + btn.addEventListener('click', function () { + const selected = this.getAttribute('data-value'); + kategoriInput.value = selected; + form.submit(); + }); + }); +}); + +// SweetAlert konfirmasi hapus +document.querySelectorAll('.formDeleteSupplier').forEach(form => { + form.addEventListener('submit', function(e) { + e.preventDefault(); + Swal.fire({ + title: 'Yakin ingin menghapus?', + text: "Data tidak dapat dikembalikan!", + icon: 'warning', + showCancelButton: true, + confirmButtonText: 'Ya, hapus!', + cancelButtonText: 'Batal' + }).then((result) => { + if (result.isConfirmed) { + this.submit(); + } + }); + }); +}); + +// Populate modal edit +document.querySelectorAll('.btn-edit').forEach(button => { + button.addEventListener('click', function () { + document.getElementById('editNama').value = this.dataset.nama; + document.getElementById('editAlamat').value = this.dataset.alamat; + document.getElementById('editTelepon').value = this.dataset.telepon; + document.getElementById('editRekening').value = this.dataset.rekening || ''; + document.getElementById('editKategori').value = this.dataset.kategori; + document.getElementById('editForm').action = this.dataset.action; + }); +}); \ No newline at end of file diff --git a/public/js/transaksi.js b/public/js/transaksi.js new file mode 100644 index 0000000..073264d --- /dev/null +++ b/public/js/transaksi.js @@ -0,0 +1,261 @@ +document.addEventListener('DOMContentLoaded', function () { + const input = document.getElementById('searchTransaksi'); + const rows = document.querySelectorAll('table tbody tr'); + + input.addEventListener('input', function () { + const keyword = this.value.toLowerCase(); + + rows.forEach(row => { + const kodeTransaksi = row.cells[2].textContent.toLowerCase(); + const kodeBarang = row.cells[3].textContent.toLowerCase(); + const mitra = row.cells[4].textContent.toLowerCase(); + const namaBarang = row.cells[5].textContent.toLowerCase(); + + const isMatch = [kodeTransaksi, kodeBarang, mitra, namaBarang].some(text => text.includes(keyword)); + row.style.display = isMatch ? '' : 'none'; + }); + }); + + const form = document.getElementById('formFilterTanggal'); + const tanggalMulai = document.getElementById('tanggalMulai'); + const tanggalAkhir = document.getElementById('tanggalAkhir'); + + // Saat tanggal akhir berubah, kirim form otomatis + tanggalAkhir.addEventListener('change', function () { + if (tanggalMulai.value && tanggalAkhir.value) { + form.submit(); + } + }); +}); + +$(document).ready(function () { + $('#searchTransaksi').on('input', function () { + $('#exportSearchQuery').val($(this).val()); + }); +}); + +// Data dari backend (harus disediakan dari Blade) +const barangsData = window.barangsData || {}; +const suppliersData = window.suppliersData || {}; + +function konversiSatuanKeKg(satuan, qtyHistori) { + switch (satuan) { + case 'ton': return qtyHistori * 1000; + case 'kg': return qtyHistori; + case 'g': return qtyHistori / 1000; + default: return qtyHistori; + } +} + +// --------------- CREATE MODAL --------------- +const kategoriSelect = document.getElementById('kategori'); +const barangSelect = document.getElementById('barang_id'); +const supplierSelect = document.getElementById('supplier_id'); +const qtyInput = document.getElementById('qtyHistori'); +const satuanSelect = document.getElementById('satuan'); +const jumlahRpInput = document.getElementById('jumlahRp'); + + + +function fillBarangOptions(kategori) { + const tipe = kategori === 'pengeluaran' ? 'pendukung' : 'produk'; + barangSelect.innerHTML = ''; + + if (barangsData[tipe]) { + barangsData[tipe].forEach(barang => { + const option = document.createElement('option'); + option.value = barang.id; + option.textContent = barang.nama; + option.dataset.harga = barang.harga; + barangSelect.appendChild(option); + }); + } + jumlahRpInput.value = ''; +} + +function fillSupplierOptions(kategori) { + supplierSelect.innerHTML = ''; + const tipe = kategori === 'pengeluaran' ? 'konsumen' : 'pemasok'; + suppliersData[tipe]?.forEach(supplier => { + const option = document.createElement('option'); + option.value = supplier.id; + option.textContent = supplier.nama; + supplierSelect.appendChild(option); + }); +} + +function hitungJumlahRpCreate() { + const hargaBarang = parseFloat(barangSelect.selectedOptions[0]?.dataset.harga || 0); + const qty = parseFloat(qtyInput.value || 0); + const satuan = satuanSelect.value; + const qtyKg = konversiSatuanKeKg(satuan, qty); + + // Kardus + const kardusSelect = document.getElementById('jenis_kardus'); + const jumlahKardusInput = document.getElementById('jumlah_kardus'); + const hargaKardus = parseFloat(kardusSelect?.selectedOptions[0]?.dataset.harga || 0); + const jumlahKardus = parseFloat(jumlahKardusInput?.value || 0); + + const totalBarang = hargaBarang * qtyKg; + const totalKardus = hargaKardus * jumlahKardus; + + jumlahRpInput.value = (totalBarang + totalKardus).toFixed(0); +} + +if (kategoriSelect) { + kategoriSelect.addEventListener('change', () => { + fillBarangOptions(kategoriSelect.value); + fillSupplierOptions(kategoriSelect.value); + toggleInputKardus(kategoriSelect.value); + }); + barangSelect.addEventListener('change', hitungJumlahRpCreate); + qtyInput.addEventListener('input', hitungJumlahRpCreate); + satuanSelect.addEventListener('change', hitungJumlahRpCreate); + document.getElementById('jenis_kardus')?.addEventListener('change', hitungJumlahRpCreate); + document.getElementById('jumlah_kardus')?.addEventListener('input', hitungJumlahRpCreate); + + + $('#createModal').on('show.bs.modal', () => { + kategoriSelect.value = ''; + barangSelect.innerHTML = ''; + supplierSelect.innerHTML = ''; + qtyInput.value = ''; + satuanSelect.value = ''; + jumlahRpInput.value = ''; + }); +} + +// --------------- EDIT MODAL --------------- +const kategoriEdit = document.getElementById('editKategori'); +const barangEdit = document.getElementById('editBarang'); +const supplierEdit = document.getElementById('editSupplier'); +const qtyInputEdit = document.getElementById('editQty'); +const satuanEdit = document.getElementById('editSatuan'); +const jumlahRpInputEdit = document.getElementById('editJumlahRp'); + +// Tambahkan listener agar saat kategori diubah saat edit, barang & supplier di-reload +kategoriEdit?.addEventListener('change', function () { + fillBarangOptionsEdit(this.value, barangEdit.value); + fillSupplierOptionsEdit(this.value, supplierEdit.value); + toggleInputKardusEdit(this.value); + hitungJumlahRpEdit(); +}); + + +function fillBarangOptionsEdit(kategori, selectedId) { + const tipe = kategori === 'pengeluaran' ? 'pendukung' : 'produk'; + barangEdit.innerHTML = ''; + + if (barangsData[tipe]) { + barangsData[tipe].forEach(barang => { + const option = document.createElement('option'); + option.value = barang.id; + option.textContent = barang.nama; + option.dataset.harga = barang.harga; + if (barang.id == selectedId) option.selected = true; + barangEdit.appendChild(option); + }); + } +} + +function fillSupplierOptionsEdit(kategori, selectedId) { + supplierEdit.innerHTML = ''; + const tipe = kategori === 'pengeluaran' ? 'konsumen' : 'pemasok'; + suppliersData[tipe]?.forEach(supplier => { + const option = document.createElement('option'); + option.value = supplier.id; + option.textContent = supplier.nama; + if (supplier.id == selectedId) option.selected = true; + supplierEdit.appendChild(option); + }); +} + +function hitungJumlahRpEdit() { + const hargaBarang = parseFloat(barangEdit.selectedOptions[0]?.dataset.harga || 0); + const qty = parseFloat(qtyInputEdit.value || 0); + const satuan = satuanEdit.value; + const qtyKg = konversiSatuanKeKg(satuan, qty); + + // Kardus + const kardusSelect = document.getElementById('edit_jenis_kardus'); + const jumlahKardusInput = document.getElementById('edit_jumlah_kardus'); + const hargaKardus = parseFloat(kardusSelect?.selectedOptions[0]?.dataset.harga || 0); + const jumlahKardus = parseFloat(jumlahKardusInput?.value || 0); + + const totalBarang = hargaBarang * qtyKg; + const totalKardus = hargaKardus * jumlahKardus; + + jumlahRpInputEdit.value = (totalBarang + totalKardus).toFixed(0); +} + +function toggleInputKardus(kategori) { + const showKardus = kategori === 'pemasukan'; + + const jenisKardusGroup = document.getElementById('group_jenis_kardus'); + const jumlahKardusGroup = document.getElementById('group_jumlah_kardus'); + + jenisKardusGroup.style.display = showKardus ? 'block' : 'none'; + jumlahKardusGroup.style.display = showKardus ? 'block' : 'none'; + + if (!showKardus) { + document.getElementById('jenis_kardus').value = ''; + document.getElementById('jumlah_kardus').value = ''; + } +} +toggleInputKardus(''); // pastikan disembunyikan saat awal + +function toggleInputKardusEdit(kategori) { + const show = kategori === 'pemasukan'; + document.getElementById('edit_group_jenis_kardus').style.display = show ? 'block' : 'none'; + document.getElementById('edit_group_jumlah_kardus').style.display = show ? 'block' : 'none'; + + if (!show) { + document.getElementById('edit_jenis_kardus').value = ''; + document.getElementById('edit_jumlah_kardus').value = ''; + toggleInputKardusEdit(data.kategori); + } +} +// toggleInputKardusEdit(''); // pastikan disembunyikan saat awal + + +$('.btn-edit').on('click', function () { + const data = this.dataset; + fillBarangOptionsEdit(data.kategori, data.barang_id); + fillSupplierOptionsEdit(data.kategori, data.supplier_id); + + kategoriEdit.value = data.kategori; + qtyInputEdit.value = data.qty; + satuanEdit.value = data.satuan; + jumlahRpInputEdit.value = data.jumlahrp; + document.getElementById('editWaktu').value = data.waktu; + document.getElementById('formEdit').action = `/operator/transaksi/${data.id}`; + // 🔧 Tunggu sampai opsi selesai dimuat + setTimeout(() => { + document.getElementById('edit_jenis_kardus').value = data.jenis_kardus_id || ''; + document.getElementById('edit_jumlah_kardus').value = data.jumlah_kardus || ''; + toggleInputKardusEdit(data.kategori); + }, 50); // bisa 0–100ms, tergantung kompleksitas + + // Debug opsional + console.log("Jenis Kardus ID:", data.jenis_kardus_id); + console.log("Jumlah Kardus:", data.jumlah_kardus); + + console.log('Kategori:', kategori); + console.log('Barang ID:', editBarang); + console.log('BarangsData:', barangsData); + console.log('Suppliers:', suppliersData); + console.log('Selected Barang:', barangEdit.value); + console.log('Selected Supplier:', supplierEdit.value); + console.log('Qty:', qtyInputEdit.value); + console.log('Satuan:', satuanEdit.value); + console.log('Jumlah Rp:', jumlahRpInputEdit.value); + console.log("Barang options:", $('#editBarang').html()); + console.log("Supplier options:", $('#editSupplier').html()); + console.log("Kategori:", kategoriEdit.value); + console.log("Qty Input:", qtyInputEdit.value); + console.log("Satuan:", satuanEdit.value); +}); + +barangEdit?.addEventListener('change', hitungJumlahRpEdit); +qtyInputEdit?.addEventListener('input', hitungJumlahRpEdit); +satuanEdit?.addEventListener('change', hitungJumlahRpEdit); \ No newline at end of file diff --git a/public/robots.txt b/public/robots.txt new file mode 100644 index 0000000..4738d6a --- /dev/null +++ b/public/robots.txt @@ -0,0 +1,3 @@ +User-agent: * +Disallow: + diff --git a/resources/css/app.css b/resources/css/app.css new file mode 100644 index 0000000..e69de29 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..846d350 --- /dev/null +++ b/resources/js/bootstrap.js @@ -0,0 +1,32 @@ +/** + * We'll load the axios HTTP library which allows us to easily issue requests + * to our Laravel back-end. This library automatically handles sending the + * CSRF token as a header based on the value of the "XSRF" token cookie. + */ + +import axios from 'axios'; +window.axios = axios; + +window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest'; + +/** + * Echo exposes an expressive API for subscribing to channels and listening + * for events that are broadcast by Laravel. Echo and event broadcasting + * allows your team to easily build robust real-time web applications. + */ + +// import Echo from 'laravel-echo'; + +// import Pusher from 'pusher-js'; +// window.Pusher = Pusher; + +// window.Echo = new Echo({ +// broadcaster: 'pusher', +// key: import.meta.env.VITE_PUSHER_APP_KEY, +// cluster: import.meta.env.VITE_PUSHER_APP_CLUSTER ?? 'mt1', +// wsHost: import.meta.env.VITE_PUSHER_HOST ? import.meta.env.VITE_PUSHER_HOST : `ws-${import.meta.env.VITE_PUSHER_APP_CLUSTER}.pusher.com`, +// wsPort: import.meta.env.VITE_PUSHER_PORT ?? 80, +// wssPort: import.meta.env.VITE_PUSHER_PORT ?? 443, +// forceTLS: (import.meta.env.VITE_PUSHER_SCHEME ?? 'https') === 'https', +// enabledTransports: ['ws', 'wss'], +// }); diff --git a/resources/views/dashboard/operator.blade.php b/resources/views/dashboard/operator.blade.php new file mode 100644 index 0000000..f8c3a8d --- /dev/null +++ b/resources/views/dashboard/operator.blade.php @@ -0,0 +1,96 @@ +@extends('layouts.app_operator') + +@section('title', 'Dashboard Operator') + +@section('content') +
+
+

Dashboard

+
+ + +
+
+
+

Jumlah Total Barang

+

{{ $jumlahBarang }}

+
+ +
+
+ @csrf + +
+
+
+ + +
+ {{--

Aktivitas Terbaru

--}} + +
+
+

Barang

+ + + + + + + + + + + @foreach ($barangTerbaru as $i => $brg) + @php + $kode = '-'; + if ($brg->pendukung) { + $kode = $brg->pendukung->kode; + } elseif ($brg->produk) { + $kode = $brg->produk->kode; + } + @endphp + + + + + + + @endforeach + +
NoKodeNama BarangQty
{{ $i + 1 }}{{ $kode }}{{ $brg->nama_barang }}{{ number_format($brg->qty, 0, ',', '.') }} Kg
+ Selengkapnya +
+ + +
+

Aktivitas Transaksi

+ + + + + + + + + + + + @foreach ($transaksiTerbaru as $i => $trx) + + + + + + + + @endforeach + +
NoWaktuNamaKategoriHarga
{{ $i + 1 }}{{ \Carbon\Carbon::parse($trx['waktu'])->format('d-m-Y H:i') }}{{ $trx['nama_barang'] }}{{ $trx['kategori'] }}{{ $trx['harga'] }}
+ Selengkapnya +
+
+ +
+
+@endsection diff --git a/resources/views/dashboard/pimpinan.blade.php b/resources/views/dashboard/pimpinan.blade.php new file mode 100644 index 0000000..a7ad514 --- /dev/null +++ b/resources/views/dashboard/pimpinan.blade.php @@ -0,0 +1,151 @@ +@extends('layouts.app_pimpinan') + +@section('title', 'Dashboard Pimpinan') + +@section('content') +
+
+

Dashboard

+
+ +
+
+
+
Pendapatan
+
Rp {{ number_format($keuangan['pendapatan'], 0, ',', '.') }}
+
+ +
+
Pengeluaran
+
+ Rp {{ number_format($keuangan['pengeluaran'], 0, ',', '.') }} +
+
+
+ +
+
+

+ Grafik Pendapatan vs Pengeluaran + ({{ $bulanAktif }}) +

+ +
+ + + + +
+ +
+ +
+ +
+
+
+ + + +@endsection diff --git a/resources/views/layouts/app_operator.blade.php b/resources/views/layouts/app_operator.blade.php new file mode 100644 index 0000000..6e91e83 --- /dev/null +++ b/resources/views/layouts/app_operator.blade.php @@ -0,0 +1,115 @@ + + + + + + @yield('title') + + + + {{-- css tersimpan pada folder public --}} + + + + + + + + + {{--
--}} + {{-- NAVBAR --}} + {{-- --}} + +
+ {{-- Konten utama --}} + @yield('content') +
+ + {{--
--}} + + {{-- js untuk boostarp --}} + + + {{-- --}} + + + + + + diff --git a/resources/views/layouts/app_pimpinan.blade.php b/resources/views/layouts/app_pimpinan.blade.php new file mode 100644 index 0000000..5d400f3 --- /dev/null +++ b/resources/views/layouts/app_pimpinan.blade.php @@ -0,0 +1,83 @@ + + + + + + @yield('title') + + {{-- css tersimpan pada folder public --}} + + + {{-- jQuery CDN --}} + + + + + + + + + + + +
+ @yield('content') +
+ + + + + + + + + + + + + + diff --git a/resources/views/login.blade.php b/resources/views/login.blade.php new file mode 100644 index 0000000..e68d8b8 --- /dev/null +++ b/resources/views/login.blade.php @@ -0,0 +1,58 @@ + + + + + Login - UD.DNL PUTRA + + + + +
+
+

WELCOME TO
UD.DNL PUTRA

+
+ + @if(session('error')) +
+ {{ session('error') }} +
+ @endif + +
+ @csrf +
+ +
+ +
+ +
+ +
+ +
+
Belum punya akun? + + Daftar di sini + +
+
+
+ + + diff --git a/resources/views/operator/barang/create.blade.php b/resources/views/operator/barang/create.blade.php new file mode 100644 index 0000000..ba8684f --- /dev/null +++ b/resources/views/operator/barang/create.blade.php @@ -0,0 +1,67 @@ +@php + use Carbon\Carbon; + $defaultExp = Carbon::now()->addYear()->toDateString(); +@endphp + +{{-- isi modal create --}} + \ No newline at end of file diff --git a/resources/views/operator/barang/edit.blade.php b/resources/views/operator/barang/edit.blade.php new file mode 100644 index 0000000..5a7e985 --- /dev/null +++ b/resources/views/operator/barang/edit.blade.php @@ -0,0 +1,55 @@ + + diff --git a/resources/views/operator/barang/index.blade.php b/resources/views/operator/barang/index.blade.php new file mode 100644 index 0000000..acdb40c --- /dev/null +++ b/resources/views/operator/barang/index.blade.php @@ -0,0 +1,145 @@ +@extends('layouts.app_operator') + +@section('content') +
+

+ Data Barang + @if($filter === 'produk') - Stock Produk Jadi + @elseif($filter === 'pendukung') - Hal-hal Pendukung + @endif +

+ + {{-- Tombol untuk membuka modal --}} + @if(request('filter') == 'produk' || request('filter') == 'pendukung') + + + @include('operator.barang.create', ['filter' => request('filter')]) + @endif + +
+
+ + +
+
+ +
+ + @if(request('filter')) + + + + + + {{-- --}} + {{-- --}} + @if(request('filter') != 'pendukung') + + @endif + + {{-- Tambahan --}} + {{-- Kolom edit & hapus --}} + + + + @foreach($barangs as $i => $barang) + @php + $kategori = '-'; + $kode = '-'; + if ($barang->produk) { + $kategori = 'Produk'; + $kode = $barang->produk->kode; + } elseif ($barang->pendukung) { + $kategori = 'Pendukung'; + $kode = $barang->pendukung->kode; + } + @endphp + + + + + {{-- --}} + {{-- --}} + @if(request('filter') != 'pendukung') + + @endif + + + + + @endforeach + + @else + + + + + + + + + @foreach($barangs as $barang) + @php + $kode = $barang->produk->kode ?? $barang->pendukung->kode ?? '-'; + @endphp + + + + + + @endforeach + + @endif +
NoKodeNama BarangKategoriQtyExpHargaUpdate StockAksi
{{ $i + 1 }}{{ $kode }}{{ \Illuminate\Support\Str::title($barang->nama_barang) }}{{ $kategori }}{{ $barang->qty ?? '-' }}{{ $barang->exp ? \Carbon\Carbon::parse($barang->exp)->format('d-m-Y') : '-' }}Rp {{ number_format($barang->harga, 0, ',', '.') }} +
+ @csrf + @method('PATCH') + + +
+
+ + + + @include('operator.barang.edit', ['barang' => $barang]) + {{-- Hapus --}} +
+ @csrf + @method('DELETE') + +
+
KodeNama BarangExp
{{ $kode }}{{ $barang->nama_barang }}{{ $barang->exp ? \Carbon\Carbon::parse($barang->exp)->format('d-m-Y') : '-' }}
+
+ +
+ + + + + + + +@endsection diff --git a/resources/views/operator/dashboard/index.blade.php b/resources/views/operator/dashboard/index.blade.php new file mode 100644 index 0000000..8eb38bf --- /dev/null +++ b/resources/views/operator/dashboard/index.blade.php @@ -0,0 +1,89 @@ +@extends('layouts.app_operator') + +@section('title', 'Dashboard Operator') + +@section('content') +
+
+

Dashboard

+
+ + +
+
+
+

Jumlah Total Barang

+

{{ $jumlahBarang }}

+
+
+ + +
+

Aktivitas Terbaru

+ +
+
+

Barang

+ + + + + + + + + + + @foreach ($barangTerbaru as $i => $brg) + @php + $kode = '-'; + if ($brg->pendukung) { + $kode = $brg->pendukung->kode; + } elseif ($brg->produk) { + $kode = $brg->produk->kode; + } + @endphp + + + + + + + @endforeach + +
NoKodeNama BarangQty
{{ $i + 1 }}{{ $kode }}{{ $brg->nama_barang }}{{ number_format($brg->qty, 0, ',', '.') }} kg
+ Selengkapnya +
+ + +
+

Aktivitas Transaksi

+ + + + + + + + + + + + @foreach ($transaksiTerbaru as $i => $trx) + + + + + + + + @endforeach + +
NoWaktuNamaKategoriHarga
{{ $i + 1 }}{{ \Carbon\Carbon::parse($trx['waktu'])->format('d-m-Y H:i') }}{{ $trx['nama_barang'] }}{{ $trx['kategori'] }}{{ $trx['harga'] }}
+ Selengkapnya +
+
+ +
+
+@endsection diff --git a/resources/views/operator/gaji/detailGaji.blade.php b/resources/views/operator/gaji/detailGaji.blade.php new file mode 100644 index 0000000..4a3355c --- /dev/null +++ b/resources/views/operator/gaji/detailGaji.blade.php @@ -0,0 +1,95 @@ +@extends('layouts.app_operator') + +@section('content') +
+ +
+

Detail Gaji {{ $kloter->nama_kloter }}

+ +
+ + + Unduh Excel + + Kembali + +
+
+ +
+ +
+ + + +
+ + + + + + @foreach ($tanggalUnik as $tanggal) + + @endforeach + + + + + + + @foreach ($karyawanWithGaji as $data) + + + + @foreach ($tanggalUnik as $tanggal) + + @endforeach + + + + + @endforeach + +
Nama PekerjaJenis Kelamin{{ \Carbon\Carbon::parse($tanggal)->format('d-M-y') }}Total Jam KerjaGaji Per JamTotal Gaji
{{ $data['karyawan']->nama }}{{ $data['karyawan']->jenis_kelamin }}{{ number_format($data['jam_per_tanggal'][$tanggal], 2) }}{{ number_format($data['total_jam'], 2) }}{{ number_format($data['gaji_per_jam'], 0, ',', '.') }}{{ number_format($data['total_gaji'], 0, ',', '.') }}
+
+
+@include('operator.gaji.modal-edit') + + + +{{-- --}} +@endsection \ No newline at end of file diff --git a/resources/views/operator/gaji/index.blade.php b/resources/views/operator/gaji/index.blade.php new file mode 100644 index 0000000..10ab61e --- /dev/null +++ b/resources/views/operator/gaji/index.blade.php @@ -0,0 +1,88 @@ +@extends('layouts.app_operator') + +@section('content') +
+

Daftar Kloter Gaji

+ +
+
+
+ +
+
+ +
+
+
+ + +
+ + + + + + + + + + + + + @forelse($kloters as $i => $kloter) + + + + + + + + + @empty + + + + @endforelse + +
NoNama KloterTon IkanTanggal MulaiTanggal AkhirAksi
{{ $i + 1 }} + + {{ $kloter->nama_kloter }} + + {{ number_format($kloter->tonIkan->jumlah_ton ?? 0, 2) }} Kg + {{ $kloter->presensis->min('tanggal') + ? \Carbon\Carbon::parse($kloter->presensis->min('tanggal'))->format('d-m-Y') + : '-' }} + + {{ $kloter->presensis->max('tanggal') + ? \Carbon\Carbon::parse($kloter->presensis->max('tanggal'))->format('d-m-Y') + : '-' }} + + @php + $isSelesai = in_array($kloter->id, $kloterSelesaiIds); + @endphp + + @if ($isSelesai) + Selesai + @else +
+ @csrf + +
+ @endif +
Belum ada data Kloter.
+
+
+ + + + +@endsection \ No newline at end of file diff --git a/resources/views/operator/gaji/modal-edit.blade.php b/resources/views/operator/gaji/modal-edit.blade.php new file mode 100644 index 0000000..429674f --- /dev/null +++ b/resources/views/operator/gaji/modal-edit.blade.php @@ -0,0 +1,33 @@ + + diff --git a/resources/views/operator/karyawan/create.blade.php b/resources/views/operator/karyawan/create.blade.php new file mode 100644 index 0000000..51fdfda --- /dev/null +++ b/resources/views/operator/karyawan/create.blade.php @@ -0,0 +1,81 @@ +{{-- @extends('layouts.app_operator') + +@section('content') +
+

Tambah Karyawan

+ + @if ($errors->any()) +
+
    + @foreach ($errors->all() as $error) +
  • {{ $error }}
  • + @endforeach +
+
+ @endif + +
+ @csrf + +
+ + +
+ +
+ + +
+ +
+ + +
+ + + Batal +
+
+@endsection --}} + + + + diff --git a/resources/views/operator/karyawan/edit.blade.php b/resources/views/operator/karyawan/edit.blade.php new file mode 100644 index 0000000..081060d --- /dev/null +++ b/resources/views/operator/karyawan/edit.blade.php @@ -0,0 +1,83 @@ +{{-- @extends('layouts.app_operator') + +@section('content') +
+

Edit Karyawan

+ + @if ($errors->any()) +
+
    + @foreach ($errors->all() as $error) +
  • {{ $error }}
  • + @endforeach +
+
+ @endif + +
+ @csrf + @method('PUT') + +
+ + +
+ +
+ + +
+ +
+ + +
+ + + Kembali +
+
+@endsection --}} + + + diff --git a/resources/views/operator/karyawan/index.blade.php b/resources/views/operator/karyawan/index.blade.php new file mode 100644 index 0000000..e6d047c --- /dev/null +++ b/resources/views/operator/karyawan/index.blade.php @@ -0,0 +1,87 @@ +@extends('layouts.app_operator') + +@section('content') +
+

Daftar Karyawan

+ +
+
+ + + +
+ +
+ + + + + + + + + + + + + @foreach($karyawans as $i => $k) + + + + + + + + @endforeach + +
NoNamaJenis KelaminNo TeleponAksi
{{ $i + 1 }}{{ $k->nama }}{{ $k->jenis_kelamin }}{{ $k->no_telepon ?? '-' }} + {{-- Tombol Edit --}} + + + {{-- Modal Edit --}} + @include('operator.karyawan.edit', ['karyawan' => $k]) + + {{-- Tombol Hapus --}} +
+ @csrf + @method('DELETE') + +
+
+
+ +{{-- Modal Create --}} +@include('operator.karyawan.create') + + + + +@endsection diff --git a/resources/views/operator/presensi/_pilihKaryawan.blade.php b/resources/views/operator/presensi/_pilihKaryawan.blade.php new file mode 100644 index 0000000..72040c2 --- /dev/null +++ b/resources/views/operator/presensi/_pilihKaryawan.blade.php @@ -0,0 +1,31 @@ + + \ No newline at end of file diff --git a/resources/views/operator/presensi/edit.blade.php b/resources/views/operator/presensi/edit.blade.php new file mode 100644 index 0000000..f549923 --- /dev/null +++ b/resources/views/operator/presensi/edit.blade.php @@ -0,0 +1,40 @@ + + diff --git a/resources/views/operator/presensi/index.blade.php b/resources/views/operator/presensi/index.blade.php new file mode 100644 index 0000000..df30231 --- /dev/null +++ b/resources/views/operator/presensi/index.blade.php @@ -0,0 +1,152 @@ +@if(session('error')) +
{{ session('error') }}
+@endif + +@extends('layouts.app_operator') + +@section('content') +
+

Presensi Harian Pekerja

+ + {{-- Pilih Kloter --}} +
+ +
+ + + {{-- --}} + + + + + + + @include('operator.presensi.edit') +
+
+ + + +
+ @include('operator.presensi._pilihKaryawan') + + + + + {{-- checkbox fitur otomatis --}} +
+ + +
+ + @if($karyawans->isEmpty()) +
Belum ada karyawan yang dipilih untuk kloter ini.
+ @else + {{-- Tabel Presensi --}} + + + + + + {{-- --}} + + + + + + + + + @foreach($karyawans as $i => $k) + @php + $p = $presensis->get($k->id); + $totalJam = 0; + if ($p && $p->jam_masuk && $p->jam_pulang) { + $totalJam = \Carbon\Carbon::parse($p->jam_masuk)->diffInMinutes(\Carbon\Carbon::parse($p->jam_pulang)) / 60; + } + @endphp + + + + {{-- Aksi Masuk --}} + + + {{-- Jam Masuk --}} + + + {{-- Aksi Pulang --}} + + + {{-- Jam Pulang --}} + + + {{-- Total Jam --}} + + + @endforeach + +
NoNamaJenis KelaminAksi MasukJam MasukAksi PulangJam PulangTotal Jam
{{ $i + 1 }}{{ $k->nama }} + @if(!$p || !$p->jam_masuk) +
+ @csrf + + + + + +
+ @else + + @endif +
{{ $p->jam_masuk ?? '-' }} + @if($p && !$p->jam_pulang) +
+ @csrf + + + + + +
+ @elseif($p) + + @else + - + @endif +
{{ $p->jam_pulang ?? '-' }}{{ number_format($totalJam, 2) }}
+ @endif +
+ + + + +@endsection diff --git a/resources/views/operator/supplier/create.blade.php b/resources/views/operator/supplier/create.blade.php new file mode 100644 index 0000000..5d42c10 --- /dev/null +++ b/resources/views/operator/supplier/create.blade.php @@ -0,0 +1,50 @@ + + diff --git a/resources/views/operator/supplier/edit.blade.php b/resources/views/operator/supplier/edit.blade.php new file mode 100644 index 0000000..3c410f2 --- /dev/null +++ b/resources/views/operator/supplier/edit.blade.php @@ -0,0 +1,50 @@ + + \ No newline at end of file diff --git a/resources/views/operator/supplier/index.blade.php b/resources/views/operator/supplier/index.blade.php new file mode 100644 index 0000000..edc78e6 --- /dev/null +++ b/resources/views/operator/supplier/index.blade.php @@ -0,0 +1,126 @@ +@extends('layouts.app_operator') + +@section('content') +
+ @php + $kategori = request('kategori'); + $judul = 'Data Mitra Bisnis'; + if ($kategori === 'pemasok') { + $judul .= ' / Pemasok'; + } elseif ($kategori === 'konsumen') { + $judul .= ' / Konsumen'; + } + @endphp + +

{{ $judul }}

+ +
+ {{-- form filter --}} +
+
+ + +
+ + +
+ + +
+
+ + + +
+ + +
+ + + + + + + + + + + + + + @foreach($suppliers as $i => $supplier) + @php + $kode = $supplier->pemasok->kode ?? $supplier->konsumen->kode ?? '-'; + @endphp + + + + + + + + + + @endforeach + +
NoKodeNama MitraAlamatNo RekeningNo TeleponAksi
{{ $i + 1 }}{{ $kode }}{{ $supplier->nama }}{{ $supplier->alamat }}{{ $supplier->no_rekening ?? '-' }}{{ $supplier->no_tlp }} + + + + +
+ @csrf + @method('DELETE') + +
+
+
+
+ + +@include('operator.supplier.create') + +@include('operator.supplier.edit') + + + + + + + + +@endsection diff --git a/resources/views/operator/transaksi/create.blade.php b/resources/views/operator/transaksi/create.blade.php new file mode 100644 index 0000000..193afc7 --- /dev/null +++ b/resources/views/operator/transaksi/create.blade.php @@ -0,0 +1,101 @@ +{{-- modal create --}} + diff --git a/resources/views/operator/transaksi/edit.blade.php b/resources/views/operator/transaksi/edit.blade.php new file mode 100644 index 0000000..cabadaf --- /dev/null +++ b/resources/views/operator/transaksi/edit.blade.php @@ -0,0 +1,94 @@ + + diff --git a/resources/views/operator/transaksi/index.blade.php b/resources/views/operator/transaksi/index.blade.php new file mode 100644 index 0000000..3940a1f --- /dev/null +++ b/resources/views/operator/transaksi/index.blade.php @@ -0,0 +1,129 @@ +@extends('layouts.app_operator') + +@section('content') +
+

Transaksi

+ +
+ + +
+ + s/d + +
+ + + +
+ + + + +
+
+ +
+ + + + + + + + + + + + + + + + + + @foreach($data as $i => $trx) + + + + + + + + + + + + + + @endforeach + + +
NoWaktuKode TransaksiKode BarangMitraNamaQtyMasukKeluarTotalAksi
{{ $i + 1 }}{{ \Carbon\Carbon::parse($trx['waktu_transaksi'])->format('d-m-Y H:i') }}{{ $trx['kode_transaksi'] }}{{ $trx['kode_barang'] }}{{ $trx['supplier'] }}{{ $trx['nama_barang'] }}{{ $trx['qty'] }}Rp {{ number_format($trx['masuk'], 0, ',', '.') }}Rp {{ number_format($trx['keluar'], 0, ',', '.') }}Rp {{ number_format($trx['total'], 0, ',', '.') }} + + + +
+ @csrf + @method('DELETE') + +
+
+
+
+ + + + + +@include('operator.transaksi.create') +@include('operator.transaksi.edit') + +@endsection diff --git a/resources/views/pimpinan/dashboard/index.blade.php b/resources/views/pimpinan/dashboard/index.blade.php new file mode 100644 index 0000000..5041b70 --- /dev/null +++ b/resources/views/pimpinan/dashboard/index.blade.php @@ -0,0 +1,77 @@ +@extends('layouts.app_pimpinan') + +@section('title', 'Dashboard Pimpinan') + +@section('content') +
+
+

Dashboard

+
+ +
+
+
+
Pendapatan
+
+ Rp {{ number_format($keuangan['pendapatan'], 0, ',', '.') }} +
+
+
+
Pengeluaran
+
+ Rp {{ number_format($keuangan['pengeluaran'], 0, ',', '.') }} +
+
+
+ +
+
Grafik Pendapatan vs Pengeluaran
+ +
+
+
+ + + + +@endsection diff --git a/resources/views/pimpinan/laporan_barang/_table.blade.php b/resources/views/pimpinan/laporan_barang/_table.blade.php new file mode 100644 index 0000000..af25600 --- /dev/null +++ b/resources/views/pimpinan/laporan_barang/_table.blade.php @@ -0,0 +1,27 @@ + + + + + + + + + + + + + @foreach($barangs as $i => $barang) + @php + $kode = $barang->produk->kode ?? $barang->pendukung->kode ?? '-'; + @endphp + + + + + + + + + @endforeach + +
NoKodeNama BarangExpHargaQty
{{ $i + 1 }}{{ $kode }}{{ $barang->nama_barang }}{{ $barang->exp ? \Carbon\Carbon::parse($barang->exp)->format('d-m-Y') : '-' }}Rp {{ number_format($barang->harga, 0, ',', '.') }}{{ $barang->qty ?? '-' }}
\ No newline at end of file diff --git a/resources/views/pimpinan/laporan_barang/index.blade.php b/resources/views/pimpinan/laporan_barang/index.blade.php new file mode 100644 index 0000000..fd63ac5 --- /dev/null +++ b/resources/views/pimpinan/laporan_barang/index.blade.php @@ -0,0 +1,78 @@ +@extends('layouts.app_pimpinan') + +@section('title', 'Laporan Karyawan') + +@section('content') +
+

Laporan Barang

+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ @include('pimpinan.laporan_barang._table', ['barangs' => $barangs]) +
+
+ + + +@endsection diff --git a/resources/views/pimpinan/laporan_karyawan/_table.blade.php b/resources/views/pimpinan/laporan_karyawan/_table.blade.php new file mode 100644 index 0000000..e93bf4a --- /dev/null +++ b/resources/views/pimpinan/laporan_karyawan/_table.blade.php @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + @forelse ($data as $index => $item) + + + + + + + + + + @empty + + + + @endforelse + +
NoNama PekerjaJenis KelaminNo TeleponTotal Jam KerjaGaji per KloterTotal Gaji
{{ $index + 1 }}{{ $item['karyawan']->nama }}{{ $item['karyawan']->jenis_kelamin === 'L' ? 'Laki-laki' : 'Perempuan' }}{{ $item['karyawan']->no_telepon }}{{ $item['total_jam_kerja'] }} Jam +
    + @foreach ($item['gaji_per_kloter'] as $gpk) +
  • + Kloter ID {{ $gpk['kloter_id'] }}: + Rp {{ number_format($gpk['gaji'], 0, ',', '.') }} + ({{ $gpk['total_jam'] }} jam) +
  • + @endforeach +
+
Rp {{ number_format($item['total_gaji'], 0, ',', '.') }}
Tidak ada data karyawan
diff --git a/resources/views/pimpinan/laporan_karyawan/index.blade.php b/resources/views/pimpinan/laporan_karyawan/index.blade.php new file mode 100644 index 0000000..3e71107 --- /dev/null +++ b/resources/views/pimpinan/laporan_karyawan/index.blade.php @@ -0,0 +1,89 @@ +@extends('layouts.app_pimpinan') + +@section('title', 'Laporan Karyawan') + +@section('content') +
+

Laporan Gaji Karyawan

+ +
+ {{-- @csrf --}} +
+
+ + +
+ +
+ + +
+ + +
+
+ +
+ @include('pimpinan.laporan_karyawan._table', ['data' => $data]) +
+
+ +@endsection diff --git a/resources/views/pimpinan/laporan_supplier/_table.blade.php b/resources/views/pimpinan/laporan_supplier/_table.blade.php new file mode 100644 index 0000000..0dba5ef --- /dev/null +++ b/resources/views/pimpinan/laporan_supplier/_table.blade.php @@ -0,0 +1,28 @@ +
+ + + + + + + + + + + + + @forelse($suppliers as $i => $supplier) + + + + + + + + + @empty + + @endforelse + +
NoNamaKategoriAlamatNo TeleponNo Rekening
{{ $i + 1 }}{{ $supplier->nama }}{{ $supplier->pemasok ? 'Pemasok' : 'Konsumen' }}{{ $supplier->alamat }}{{ $supplier->no_tlp }}{{ $supplier->no_rekening ?? '-' }}
Tidak ada data
+
diff --git a/resources/views/pimpinan/laporan_supplier/index.blade.php b/resources/views/pimpinan/laporan_supplier/index.blade.php new file mode 100644 index 0000000..0184407 --- /dev/null +++ b/resources/views/pimpinan/laporan_supplier/index.blade.php @@ -0,0 +1,79 @@ +@extends('layouts.app_pimpinan') + +@section('title', 'Laporan Supplier') + +@section('content') +
+

Laporan Mitra Bisnis

+ + +
+
+ +
+
+ +
+
+ +
+
+ + +
+ @include('pimpinan.laporan_supplier._table', ['suppliers' => $suppliers]) +
+
+ + +@endsection diff --git a/resources/views/pimpinan/laporan_transaksi/_table.blade.php b/resources/views/pimpinan/laporan_transaksi/_table.blade.php new file mode 100644 index 0000000..f3f97f2 --- /dev/null +++ b/resources/views/pimpinan/laporan_transaksi/_table.blade.php @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + @foreach($data as $i => $trx) + + + + + + + + + + + + + @endforeach + +
NoWaktuKode TransaksiKode BarangMitraNama BarangQtyMasukKeluarTotal
{{ $i + 1 }}{{ \Carbon\Carbon::parse($trx['waktu'])->format('d-m-Y H:i') }}{{ $trx['kode_transaksi'] }}{{ $trx['kode_barang'] }}{{ $trx['supplier'] }}{{ $trx['nama_barang'] }}{{ $trx['qty'] }}Rp {{ number_format($trx['masuk'], 0, ',', '.') }}Rp {{ number_format($trx['keluar'], 0, ',', '.') }}Rp {{ number_format($trx['total'], 0, ',', '.') }}
\ No newline at end of file diff --git a/resources/views/pimpinan/laporan_transaksi/index.blade.php b/resources/views/pimpinan/laporan_transaksi/index.blade.php new file mode 100644 index 0000000..09afd33 --- /dev/null +++ b/resources/views/pimpinan/laporan_transaksi/index.blade.php @@ -0,0 +1,33 @@ +@extends('layouts.app_pimpinan') + +@section('title', 'Laporan Keuangan') + +@section('content') +
+

Laporan Transaksi

+ +
+ + + + + {{-- + s/d + --}} + + + +
+ +
+ @include('pimpinan.laporan_transaksi._table', ['data' => $data]) +
+
+ + + +@endsection diff --git a/resources/views/pimpinan/laporan_transaksi/pdf.blade.php b/resources/views/pimpinan/laporan_transaksi/pdf.blade.php new file mode 100644 index 0000000..1dae211 --- /dev/null +++ b/resources/views/pimpinan/laporan_transaksi/pdf.blade.php @@ -0,0 +1,88 @@ + + + + + Laporan Transaksi + + + + +

Laporan Transaksi Keuangan

+ +
+

Periode: {{ $tanggal_mulai ?? '-' }} s/d {{ $tanggal_akhir ?? '-' }}

+

Filter Kata Kunci: {{ $q ?? '-' }}

+
+ + + + + + + + + + + + + + + + + + @foreach ($data as $i => $row) + + + + + + + + + + + + + @endforeach + +
NoWaktuKode TransaksiKode BarangNama MitraNama BarangQtyMasukKeluarTotal
{{ $i + 1 }}{{ \Carbon\Carbon::parse($row['waktu'])->format('d-m-Y H:i') }}{{ $row['kode_transaksi'] }}{{ $row['kode_barang'] }}{{ $row['supplier'] }}{{ $row['nama_barang'] }}{{ $row['qty'] }}Rp {{ number_format($row['masuk'], 0, ',', '.') }}Rp {{ number_format($row['keluar'], 0, ',', '.') }}Rp {{ number_format($row['total'], 0, ',', '.') }}
+ +
+

Mengetahui,

+

Poniman

+

....................................

+
+ + + diff --git a/resources/views/register.blade.php b/resources/views/register.blade.php new file mode 100644 index 0000000..3f7e1b0 --- /dev/null +++ b/resources/views/register.blade.php @@ -0,0 +1,63 @@ + + + + + Register - UD.DNL PUTRA + + + + +
+
+

REGISTER AKUN
UD.DNL PUTRA

+
+ + @if ($errors->any()) +
+
    + @foreach ($errors->all() as $error) +
  • {{ $error }}
  • + @endforeach +
+
+ @endif + +
+ @csrf +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+
+ +
Kembali ke + login +
+ +
+ + + diff --git a/resources/views/welcome.blade.php b/resources/views/welcome.blade.php new file mode 100644 index 0000000..3353350 --- /dev/null +++ b/resources/views/welcome.blade.php @@ -0,0 +1,133 @@ + + + + + + + Laravel + + + + + + + + + + + + diff --git a/routes/api.php b/routes/api.php new file mode 100644 index 0000000..889937e --- /dev/null +++ b/routes/api.php @@ -0,0 +1,19 @@ +get('/user', function (Request $request) { + return $request->user(); +}); diff --git a/routes/channels.php b/routes/channels.php new file mode 100644 index 0000000..5d451e1 --- /dev/null +++ b/routes/channels.php @@ -0,0 +1,18 @@ +id === (int) $id; +}); diff --git a/routes/console.php b/routes/console.php new file mode 100644 index 0000000..e05f4c9 --- /dev/null +++ b/routes/console.php @@ -0,0 +1,19 @@ +comment(Inspiring::quote()); +})->purpose('Display an inspiring quote'); diff --git a/routes/web.php b/routes/web.php new file mode 100644 index 0000000..b30d31f --- /dev/null +++ b/routes/web.php @@ -0,0 +1,169 @@ +isMethod('post')) { + return app(AuthenticatedSessionController::class)->store($request); + } + return view('login'); // pastikan file ini ada di resources/views/auth/login.blade.php +})->name('login'); + +// Fitur Register (gabungkan GET dan POST dalam satu route menggunakan match) +Route::match(['get', 'post'], '/register', function (\Illuminate\Http\Request $request) { + if ($request->isMethod('post')) { + return app(RegisterController::class)->store($request); + } + return app(RegisterController::class)->create($request); +})->name('register'); + +Route::post('/logout', [AuthenticatedSessionController::class, 'destroy'])->name('logout'); + +// Pimpinan +// Route::middleware(['auth', 'role:pimpinan'])->group(function () { + Route::get('/pimpinan/dashboard', [DashboardController::class, 'pimpinan'])->name('dashboard.pimpinan'); + Route::get('/pimpinan/laporan-barang', [LaporanController::class, 'barang'])->name('laporan.barang'); + Route::get('/pimpinan/laporan-karyawan', [LaporanController::class, 'karyawan'])->name('laporan.karyawan'); + Route::get('/pimpinan/laporan-supplier', [LaporanController::class, 'supplier'])->name('laporan.supplier'); + Route::get('/pimpinan/laporan-transaksi', [LaporanController::class, 'transaksi'])->name('laporan.transaksi'); +// }); + +// Operator +// Route::middleware(['auth', 'role:operator'])->group(function () { + // Route untuk Dashboard + Route::get('/operator/dashboard', [DashboardController::class, 'operator'])->name('dashboard.operator'); + + // route untuk data barang + Route::get('/operator/barang', [BarangController::class, 'index'])->name('barang.index'); + Route::get('/operator/barang/create', [BarangController::class, 'create'])->name('barang.create'); + Route::post('/operator/barang', [BarangController::class, 'store'])->name('barang.store'); + Route::get('/operator/barang/{id}/edit', [BarangController::class, 'edit'])->name('barang.edit'); + Route::put('/operator/barang/{id}', [BarangController::class, 'update'])->name('barang.update'); + Route::delete('/operator/barang/{id}', [BarangController::class, 'destroy'])->name('barang.destroy'); + Route::patch('/operator/barang/{id}/update-qty', [BarangController::class, 'updateQty'])->name('barang.updateQty'); + Route::get('/barang/check', [BarangController::class, 'check'])->name('barang.check'); + + + // route untuk data supplier + Route::get('/operator/suplier', [SupplierController::class, 'index'])->name('supplier.index'); + Route::get('/operator/suplier/create', [SupplierController::class, 'create'])->name('supplier.create'); + Route::post('/operator/suplier', [SupplierController::class, 'store'])->name('supplier.store'); + Route::get('/operator/suplier/{id}/edit', [SupplierController::class, 'edit'])->name('supplier.edit'); + Route::put('/operator/suplier/{id}', [SupplierController::class, 'update'])->name('supplier.update'); + Route::delete('/operator/suplier/{id}', [SupplierController::class, 'destroy'])->name('supplier.destroy'); + + // route untuk data karyawan + Route::get('/operator/karyawan', [KaryawanController::class, 'index'])->name('karyawan.index'); + Route::get('/operator/karyawan/create', [KaryawanController::class, 'create'])->name('karyawan.create'); + Route::post('/operator/karyawan', [KaryawanController::class, 'store'])->name('karyawan.store'); + Route::get('/operator/karyawan/{id}/edit', [KaryawanController::class, 'edit'])->name('karyawan.edit'); + Route::put('/operator/karyawan/{id}', [KaryawanController::class, 'update'])->name('karyawan.update'); + Route::delete('/operator/karyawan/{id}', [KaryawanController::class, 'destroy'])->name('karyawan.destroy'); + + Route::post('/operator/karyawan/{id}/gaji-bayar', [KaryawanController::class, 'gajiLunas'])->name('karyawan.gaji.bayar'); + + // route untuk tindak presensi + Route::post('/presensi/pilih-karyawan', [PresensiController::class, 'pilihKaryawan'])->name('presensi.pilih-karyawan'); + + Route::get('/operator/presensi/{kloter_id}', [PresensiController::class, 'index'])->name('presensi.index'); + Route::get('/operator/presensi/create', [PresensiController::class, 'create'])->name('presensi.create'); + Route::post('/operator/presensi', [PresensiController::class, 'store'])->name('presensi.store'); + + + Route::post('/operator/gaji/{kloter_id}', [PresensiController::class, 'store'])->name('presensi.gaji.store'); + + Route::post('/presensi/{id}/masuk', [PresensiController::class, 'inputMasuk'])->name('presensi.masuk'); + Route::post('/presensi/{id}/pulang', [PresensiController::class, 'inputPulang'])->name('presensi.pulang'); + + Route::post('/presensi/tonikan/store', [PresensiController::class, 'simpanTonIkan'])->name('presensi.tonikan.store'); + // Route::post('/presensi/tonikan/store', [PresensiController::class, 'simpanTonIkan'])->name('presensi.tonikan.store'); + + // route untuk data gaji per kloter + Route::post('/operator/gaji/{id}/lunas', [GajiController::class, 'bayar'])->name('gaji.lunas'); + + Route::get('/operator/gaji', [GajiController::class, 'index'])->name('gaji.kloter'); + Route::get('/operator/gaji/{id}', [GajiController::class, 'detail'])->name('gaji.kloter.detail'); + + Route::post('/gaji/kloter/{id}/selesai', [GajiController::class, 'kloterSelesai'])->name('gaji.kloter.selesai'); + + // route untuk transaksi + Route::get('/operator/transaksi', [TransaksiController::class, 'index'])->name('operator.transaksi.index'); + Route::get('/operator/transaksi/create', [TransaksiController::class, 'create'])->name('operator.transaksi.create'); + Route::post('/operator/transaksi', [TransaksiController::class, 'store'])->name('operator.transaksi.store'); + Route::get('/operator/transaksi/{id}/edit', [TransaksiController::class, 'edit'])->name('operator.transaksi.edit'); + Route::delete('/operator/transaksi/{id}', [TransaksiController::class, 'destroy'])->name('operator.transaksi.destroy'); + Route::put('/operator/transaksi/{id}', [TransaksiController::class, 'update'])->name('operator.transaksi.update'); + + Route::get('/operator/get-barang', function (Request $request) { // Mengambil kategori dari request + $kategori = $request->input('kategori', 'pemasukan'); + $tipe = $kategori === 'pengeluaran' ? 'pendukung' : 'produk'; + + $barangs = Barang::with($tipe)->whereHas($tipe)->get(); + + return response()->json($barangs); + }); + + Route::post('/dashboard/uang-makan', [DashboardController::class, 'tambahUangMakanHarian'])->name('dashboard.uang-makan'); + + // export + Route::get('/gaji/kloter/{id}/export', [GajiController::class, 'export'])->name('gaji.kloter.export'); + Route::get('operator/transaksi/export', [TransaksiController::class, 'exportExcel'])->name('operator.transaksi.export'); + +// }); + diff --git a/start_laravel.bat b/start_laravel.bat new file mode 100644 index 0000000..0d6727e --- /dev/null +++ b/start_laravel.bat @@ -0,0 +1,3 @@ +@echo off +cd /d D:\00\Joki\ta_1-main +start php artisan serve diff --git a/storage/app/.gitignore b/storage/app/.gitignore new file mode 100644 index 0000000..fe7a876 --- /dev/null +++ b/storage/app/.gitignore @@ -0,0 +1,4 @@ +* +!public/ +!.gitignore + diff --git a/storage/app/public/.gitignore b/storage/app/public/.gitignore new file mode 100644 index 0000000..a5baada --- /dev/null +++ b/storage/app/public/.gitignore @@ -0,0 +1,3 @@ +* +!.gitignore + diff --git a/storage/framework/.gitignore b/storage/framework/.gitignore new file mode 100644 index 0000000..299eead --- /dev/null +++ b/storage/framework/.gitignore @@ -0,0 +1,10 @@ +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..9190bc2 --- /dev/null +++ b/storage/framework/cache/.gitignore @@ -0,0 +1,4 @@ +* +!data/ +!.gitignore + diff --git a/storage/framework/cache/data/.gitignore b/storage/framework/cache/data/.gitignore new file mode 100644 index 0000000..a5baada --- /dev/null +++ b/storage/framework/cache/data/.gitignore @@ -0,0 +1,3 @@ +* +!.gitignore + diff --git a/storage/framework/sessions/.gitignore b/storage/framework/sessions/.gitignore new file mode 100644 index 0000000..a5baada --- /dev/null +++ b/storage/framework/sessions/.gitignore @@ -0,0 +1,3 @@ +* +!.gitignore + diff --git a/storage/framework/testing/.gitignore b/storage/framework/testing/.gitignore new file mode 100644 index 0000000..a5baada --- /dev/null +++ b/storage/framework/testing/.gitignore @@ -0,0 +1,3 @@ +* +!.gitignore + diff --git a/storage/framework/views/.gitignore b/storage/framework/views/.gitignore new file mode 100644 index 0000000..a5baada --- /dev/null +++ b/storage/framework/views/.gitignore @@ -0,0 +1,3 @@ +* +!.gitignore + diff --git a/storage/logs/.gitignore b/storage/logs/.gitignore new file mode 100644 index 0000000..a5baada --- /dev/null +++ b/storage/logs/.gitignore @@ -0,0 +1,3 @@ +* +!.gitignore + diff --git a/tests/CreatesApplication.php b/tests/CreatesApplication.php new file mode 100644 index 0000000..5777568 --- /dev/null +++ b/tests/CreatesApplication.php @@ -0,0 +1,22 @@ +make(Kernel::class)->bootstrap(); + + return $app; + } +} + diff --git a/tests/Feature/ExampleTest.php b/tests/Feature/ExampleTest.php new file mode 100644 index 0000000..1338d16 --- /dev/null +++ b/tests/Feature/ExampleTest.php @@ -0,0 +1,20 @@ +get('/'); + + $response->assertStatus(200); + } +} + diff --git a/tests/TestCase.php b/tests/TestCase.php new file mode 100644 index 0000000..0309b45 --- /dev/null +++ b/tests/TestCase.php @@ -0,0 +1,11 @@ +assertTrue(true); + } +} + diff --git a/vite.config.js b/vite.config.js new file mode 100644 index 0000000..93063b4 --- /dev/null +++ b/vite.config.js @@ -0,0 +1,12 @@ +import { defineConfig } from 'vite'; +import laravel from 'laravel-vite-plugin'; + +export default defineConfig({ + plugins: [ + laravel({ + input: ['resources/css/app.css', 'resources/js/app.js'], + refresh: true, + }), + ], +}); +