From b641245f3e76ddad2760148364d7f9ed828ebd04 Mon Sep 17 00:00:00 2001
From: Alzando <123951867+allzndd@users.noreply.github.com>
Date: Sat, 31 May 2025 06:29:56 +0700
Subject: [PATCH] Jaga Jalan
---
.editorconfig | 18 +
.env.example | 64 +
.gitattributes | 11 +
.gitignore | 20 +
README.md | 66 +
app/Console/Commands/SetupBroadcasting.php | 103 +
app/Events/LaporanDibuat.php | 71 +
app/Events/NewNotification.php | 50 +
app/Exports/BencanaExport.php | 51 +
app/Exports/JalanExport.php | 51 +
app/Http/Controllers/AdminController.php | 190 +
app/Http/Controllers/Api/AuthController.php | 211 +
.../Api/ForgotPasswordController.php | 119 +
app/Http/Controllers/AuthController.php | 80 +
app/Http/Controllers/Controller.php | 8 +
app/Http/Controllers/DashboardController.php | 200 +
app/Http/Controllers/ExampleController.php | 45 +
.../Controllers/LaporanBencanaController.php | 219 +
.../Controllers/LaporanJalanController.php | 219 +
.../Controllers/NotificationController.php | 59 +
.../Controllers/PrivacyPolicyController.php | 13 +
app/Http/Controllers/ProfileController.php | 49 +
.../Controllers/ResetPasswordController.php | 79 +
.../ResetPasswordRedirectController.php | 23 +
app/Http/Controllers/UserController.php | 129 +
.../Controllers/VerificationController.php | 43 +
app/Http/Controllers/WeatherController.php | 96 +
app/Http/Kernel.php | 75 +
app/Http/Middleware/AdminMiddleware.php | 23 +
app/Http/Middleware/ApiMiddleware.php | 17 +
app/Http/Middleware/Authenticate.php | 43 +
.../Middleware/CheckForMaintenanceMode.php | 10 +
app/Http/Middleware/EncryptCookies.php | 10 +
.../Middleware/RedirectIfAuthenticated.php | 10 +
app/Http/Middleware/SuperAdminMiddleware.php | 46 +
app/Http/Middleware/TrimStrings.php | 10 +
app/Http/Middleware/TrustProxies.php | 10 +
app/Http/Middleware/VerifyCsrfToken.php | 19 +
app/Http/Policies/OutletPolicy.php | 63 +
app/Mail/EmailVerification.php | 29 +
app/Mail/ResetPassword.php | 27 +
app/Models/Admin.php | 44 +
app/Models/LaporanBencana.php | 39 +
app/Models/LaporanJalan.php | 35 +
app/Models/User.php | 83 +
.../NewLaporanBencanaNotification.php | 35 +
.../NewLaporanJalanNotification.php | 35 +
app/Providers/AppServiceProvider.php | 24 +
app/Providers/AuthServiceProvider.php | 36 +
app/Providers/BroadcastServiceProvider.php | 27 +
app/Providers/EventServiceProvider.php | 38 +
app/Providers/RouteServiceProvider.php | 42 +
artisan | 15 +
bootstrap/app.php | 19 +
bootstrap/cache/.gitignore | 2 +
bootstrap/providers.php | 5 +
composer.json | 69 +
composer.lock | 8460 +++++++++++++++++
config/app.php | 126 +
config/auth.php | 128 +
config/cache.php | 108 +
config/cors.php | 32 +
config/database.php | 170 +
config/filesystems.php | 76 +
config/jwt.php | 301 +
config/logging.php | 132 +
config/mail.php | 116 +
config/queue.php | 112 +
config/sanctum.php | 83 +
config/services.php | 42 +
config/session.php | 217 +
database/.gitignore | 1 +
database/factories/OutletFactory.php | 22 +
database/factories/UserFactory.php | 44 +
.../0001_01_01_000001_create_cache_table.php | 35 +
.../0001_01_01_000002_create_jobs_table.php | 57 +
.../2024_01_01_000000_create_admins_table.php | 28 +
.../2024_01_01_000000_create_users_table.php | 38 +
...1_01_000001_create_jenis_bencana_table.php | 22 +
...1_01_000001_create_laporan_jalan_table.php | 29 +
...01_000002_create_laporan_bencana_table.php | 37 +
.../2024_01_01_000003_create_admins_table.txt | 34 +
...024_01_01_000004_create_sessions_table.php | 31 +
...00_create_personal_access_tokens_table.txt | 33 +
...10_create_personal_access_tokens_table.txt | 33 +
...42_create_personal_access_tokens_table.php | 33 +
..._add_email_verification_to_users_table.txt | 24 +
...3_06_294433_create_notifications_table.php | 31 +
...d_reset_password_fields_to_users_table.php | 23 +
database/seeders/AdminSeeder.php | 22 +
database/seeders/DatabaseSeeder.php | 22 +
database/seeders/JenisBencanaSeeder.php | 30 +
database/seeders/LaporanBencanaSeeder.php | 29 +
database/seeders/LaporanJalanSeeder.php | 73 +
database/seeders/UserSeeder.php | 89 +
package.json | 13 +
phpunit.xml | 33 +
public/.htaccess | 25 +
public/assets/.png | Bin 0 -> 828460 bytes
public/assets/icons/Angin Topan.png | Bin 0 -> 34676 bytes
public/assets/icons/Banjir.png | Bin 0 -> 29649 bytes
public/assets/icons/Erupsi.png | Bin 0 -> 21636 bytes
public/assets/icons/Gempa.png | Bin 0 -> 19473 bytes
public/assets/icons/Jalan_rusak_berat.png | Bin 0 -> 18236 bytes
public/assets/icons/Jalan_rusak_ringan.png | Bin 0 -> 16930 bytes
public/assets/icons/Lahar Dingin.png | Bin 0 -> 21340 bytes
public/assets/icons/Lahar Panas.png | Bin 0 -> 24080 bytes
public/assets/icons/Longsor.png | Bin 0 -> 20233 bytes
public/assets/icons/bencana_alam.png | Bin 0 -> 13115 bytes
public/assets/icons/cracked-skin.png | Bin 0 -> 23782 bytes
public/assets/icons/dashboard_aktif.svg | 20 +
public/assets/icons/dashboard_nonaktif.svg | 26 +
public/assets/icons/history_aktif.png | Bin 0 -> 14436 bytes
public/assets/icons/history_nonaktif.png | Bin 0 -> 14436 bytes
public/assets/icons/report_aktif.png | Bin 0 -> 7330 bytes
public/assets/icons/report_nonaktif.png | Bin 0 -> 8913 bytes
public/assets/icons/weather_aktif.png | Bin 0 -> 11426 bytes
public/assets/icons/weather_nonaktif.png | Bin 0 -> 13710 bytes
public/assets/your_illustration.png | Bin 0 -> 1214957 bytes
public/css/dashboard.css | 43 +
public/css/header.css | 194 +
public/css/login.css | 86 +
public/css/sidebar.css | 236 +
public/favicon.ico | 0
public/icon/home.png | Bin 0 -> 10734 bytes
public/icon/home.svg | 2 +
public/icon/icon.png | Bin 0 -> 53470 bytes
public/icon/image.png | Bin 0 -> 20118 bytes
public/icon/list.png | Bin 0 -> 8095 bytes
public/icon/list.svg | 2 +
public/icon/megaphone.png | Bin 0 -> 15599 bytes
public/icon/megaphone.svg | 1 +
public/icon/menu-burger.png | Bin 0 -> 4922 bytes
public/icon/menu-burger.svg | 24 +
public/icon/menunggu_berat.png | Bin 0 -> 12108 bytes
public/icon/menunggu_ringan.png | Bin 0 -> 13437 bytes
public/icon/notifikasi.mp3 | Bin 0 -> 27648 bytes
public/icon/notifikasi.wav | Bin 0 -> 83022 bytes
public/icon/profile.png | Bin 0 -> 17941 bytes
public/icon/proses_berat.png | Bin 0 -> 12432 bytes
public/icon/proses_ringan.png | Bin 0 -> 13606 bytes
public/icon/region-pin.svg | 4 +
public/icon/users-alt.png | Bin 0 -> 20489 bytes
public/icon/users-alt.svg | 2 +
public/icon/users.png | Bin 0 -> 20862 bytes
public/icon/users.svg | 1 +
public/index.php | 17 +
public/robots.txt | 2 +
public/styles.css | 29 +
resources/css/app.css | 39 +
resources/js/app.js | 1 +
resources/js/bootstrap.js | 36 +
resources/privacy-policy.blade.php | 94 +
resources/views/admins/index.blade.php | 455 +
resources/views/auth/login.blade.php | 46 +
resources/views/auth/register.blade.php | 84 +
resources/views/bencana/index.blade.php | 694 ++
resources/views/bencana/rekap.blade.php | 79 +
resources/views/dashboard.blade copy.php | 163 +
resources/views/dashboard.blade.php | 314 +
.../views/emails/reset_password.blade.php | 77 +
resources/views/emails/verification.blade.php | 12 +
resources/views/jalan/index.blade.php | 689 ++
resources/views/jalan/rekap.blade.php | 79 +
resources/views/laporanbencana.blade.php | 77 +
resources/views/laporanjalan.blade.php | 77 +
resources/views/layouts/app.blade.php | 104 +
resources/views/partials/header.blade.php | 538 ++
resources/views/partials/sidebar.blade.php | 387 +
.../views/reset_password/redirect.blade.php | 107 +
resources/views/users/index.blade.php | 213 +
resources/views/verification/failed.blade.php | 63 +
.../views/verification/success.blade.php | 100 +
resources/views/welcome.blade.php | 172 +
routes/api.php | 40 +
routes/channels.php | 23 +
routes/console.php | 8 +
routes/web.php | 106 +
storage/app/.gitignore | 3 +
storage/app/public/.gitignore | 2 +
storage/framework/.gitignore | 9 +
storage/framework/cache/.gitignore | 3 +
storage/framework/cache/data/.gitignore | 2 +
storage/framework/sessions/.gitignore | 2 +
storage/framework/testing/.gitignore | 2 +
storage/framework/views/.gitignore | 2 +
storage/logs/.gitignore | 2 +
tests/Feature/ExampleTest.php | 19 +
tests/TestCase.php | 10 +
tests/Unit/ExampleTest.php | 16 +
vite.config.js | 11 +
191 files changed, 19870 insertions(+)
create mode 100644 .editorconfig
create mode 100644 .env.example
create mode 100644 .gitattributes
create mode 100644 .gitignore
create mode 100644 README.md
create mode 100644 app/Console/Commands/SetupBroadcasting.php
create mode 100644 app/Events/LaporanDibuat.php
create mode 100644 app/Events/NewNotification.php
create mode 100644 app/Exports/BencanaExport.php
create mode 100644 app/Exports/JalanExport.php
create mode 100644 app/Http/Controllers/AdminController.php
create mode 100644 app/Http/Controllers/Api/AuthController.php
create mode 100644 app/Http/Controllers/Api/ForgotPasswordController.php
create mode 100644 app/Http/Controllers/AuthController.php
create mode 100644 app/Http/Controllers/Controller.php
create mode 100644 app/Http/Controllers/DashboardController.php
create mode 100644 app/Http/Controllers/ExampleController.php
create mode 100644 app/Http/Controllers/LaporanBencanaController.php
create mode 100644 app/Http/Controllers/LaporanJalanController.php
create mode 100644 app/Http/Controllers/NotificationController.php
create mode 100644 app/Http/Controllers/PrivacyPolicyController.php
create mode 100644 app/Http/Controllers/ProfileController.php
create mode 100644 app/Http/Controllers/ResetPasswordController.php
create mode 100644 app/Http/Controllers/ResetPasswordRedirectController.php
create mode 100644 app/Http/Controllers/UserController.php
create mode 100644 app/Http/Controllers/VerificationController.php
create mode 100644 app/Http/Controllers/WeatherController.php
create mode 100644 app/Http/Kernel.php
create mode 100644 app/Http/Middleware/AdminMiddleware.php
create mode 100644 app/Http/Middleware/ApiMiddleware.php
create mode 100644 app/Http/Middleware/Authenticate.php
create mode 100644 app/Http/Middleware/CheckForMaintenanceMode.php
create mode 100644 app/Http/Middleware/EncryptCookies.php
create mode 100644 app/Http/Middleware/RedirectIfAuthenticated.php
create mode 100644 app/Http/Middleware/SuperAdminMiddleware.php
create mode 100644 app/Http/Middleware/TrimStrings.php
create mode 100644 app/Http/Middleware/TrustProxies.php
create mode 100644 app/Http/Middleware/VerifyCsrfToken.php
create mode 100644 app/Http/Policies/OutletPolicy.php
create mode 100644 app/Mail/EmailVerification.php
create mode 100644 app/Mail/ResetPassword.php
create mode 100644 app/Models/Admin.php
create mode 100644 app/Models/LaporanBencana.php
create mode 100644 app/Models/LaporanJalan.php
create mode 100644 app/Models/User.php
create mode 100644 app/Notifications/NewLaporanBencanaNotification.php
create mode 100644 app/Notifications/NewLaporanJalanNotification.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 bootstrap/providers.php
create mode 100644 composer.json
create mode 100644 composer.lock
create mode 100644 config/app.php
create mode 100644 config/auth.php
create mode 100644 config/cache.php
create mode 100644 config/cors.php
create mode 100644 config/database.php
create mode 100644 config/filesystems.php
create mode 100644 config/jwt.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 database/.gitignore
create mode 100644 database/factories/OutletFactory.php
create mode 100644 database/factories/UserFactory.php
create mode 100644 database/migrations/0001_01_01_000001_create_cache_table.php
create mode 100644 database/migrations/0001_01_01_000002_create_jobs_table.php
create mode 100644 database/migrations/2024_01_01_000000_create_admins_table.php
create mode 100644 database/migrations/2024_01_01_000000_create_users_table.php
create mode 100644 database/migrations/2024_01_01_000001_create_jenis_bencana_table.php
create mode 100644 database/migrations/2024_01_01_000001_create_laporan_jalan_table.php
create mode 100644 database/migrations/2024_01_01_000002_create_laporan_bencana_table.php
create mode 100644 database/migrations/2024_01_01_000003_create_admins_table.txt
create mode 100644 database/migrations/2024_01_01_000004_create_sessions_table.php
create mode 100644 database/migrations/2025_02_10_171700_create_personal_access_tokens_table.txt
create mode 100644 database/migrations/2025_02_11_044710_create_personal_access_tokens_table.txt
create mode 100644 database/migrations/2025_02_18_030842_create_personal_access_tokens_table.php
create mode 100644 database/migrations/2025_02_24_add_email_verification_to_users_table.txt
create mode 100644 database/migrations/2025_03_06_294433_create_notifications_table.php
create mode 100644 database/migrations/2025_03_06_294444_add_reset_password_fields_to_users_table.php
create mode 100644 database/seeders/AdminSeeder.php
create mode 100644 database/seeders/DatabaseSeeder.php
create mode 100644 database/seeders/JenisBencanaSeeder.php
create mode 100644 database/seeders/LaporanBencanaSeeder.php
create mode 100644 database/seeders/LaporanJalanSeeder.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/assets/.png
create mode 100644 public/assets/icons/Angin Topan.png
create mode 100644 public/assets/icons/Banjir.png
create mode 100644 public/assets/icons/Erupsi.png
create mode 100644 public/assets/icons/Gempa.png
create mode 100644 public/assets/icons/Jalan_rusak_berat.png
create mode 100644 public/assets/icons/Jalan_rusak_ringan.png
create mode 100644 public/assets/icons/Lahar Dingin.png
create mode 100644 public/assets/icons/Lahar Panas.png
create mode 100644 public/assets/icons/Longsor.png
create mode 100644 public/assets/icons/bencana_alam.png
create mode 100644 public/assets/icons/cracked-skin.png
create mode 100644 public/assets/icons/dashboard_aktif.svg
create mode 100644 public/assets/icons/dashboard_nonaktif.svg
create mode 100644 public/assets/icons/history_aktif.png
create mode 100644 public/assets/icons/history_nonaktif.png
create mode 100644 public/assets/icons/report_aktif.png
create mode 100644 public/assets/icons/report_nonaktif.png
create mode 100644 public/assets/icons/weather_aktif.png
create mode 100644 public/assets/icons/weather_nonaktif.png
create mode 100644 public/assets/your_illustration.png
create mode 100644 public/css/dashboard.css
create mode 100644 public/css/header.css
create mode 100644 public/css/login.css
create mode 100644 public/css/sidebar.css
create mode 100644 public/favicon.ico
create mode 100644 public/icon/home.png
create mode 100644 public/icon/home.svg
create mode 100644 public/icon/icon.png
create mode 100644 public/icon/image.png
create mode 100644 public/icon/list.png
create mode 100644 public/icon/list.svg
create mode 100644 public/icon/megaphone.png
create mode 100644 public/icon/megaphone.svg
create mode 100644 public/icon/menu-burger.png
create mode 100644 public/icon/menu-burger.svg
create mode 100644 public/icon/menunggu_berat.png
create mode 100644 public/icon/menunggu_ringan.png
create mode 100644 public/icon/notifikasi.mp3
create mode 100644 public/icon/notifikasi.wav
create mode 100644 public/icon/profile.png
create mode 100644 public/icon/proses_berat.png
create mode 100644 public/icon/proses_ringan.png
create mode 100644 public/icon/region-pin.svg
create mode 100644 public/icon/users-alt.png
create mode 100644 public/icon/users-alt.svg
create mode 100644 public/icon/users.png
create mode 100644 public/icon/users.svg
create mode 100644 public/index.php
create mode 100644 public/robots.txt
create mode 100644 public/styles.css
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/privacy-policy.blade.php
create mode 100644 resources/views/admins/index.blade.php
create mode 100644 resources/views/auth/login.blade.php
create mode 100644 resources/views/auth/register.blade.php
create mode 100644 resources/views/bencana/index.blade.php
create mode 100644 resources/views/bencana/rekap.blade.php
create mode 100644 resources/views/dashboard.blade copy.php
create mode 100644 resources/views/dashboard.blade.php
create mode 100644 resources/views/emails/reset_password.blade.php
create mode 100644 resources/views/emails/verification.blade.php
create mode 100644 resources/views/jalan/index.blade.php
create mode 100644 resources/views/jalan/rekap.blade.php
create mode 100644 resources/views/laporanbencana.blade.php
create mode 100644 resources/views/laporanjalan.blade.php
create mode 100644 resources/views/layouts/app.blade.php
create mode 100644 resources/views/partials/header.blade.php
create mode 100644 resources/views/partials/sidebar.blade.php
create mode 100644 resources/views/reset_password/redirect.blade.php
create mode 100644 resources/views/users/index.blade.php
create mode 100644 resources/views/verification/failed.blade.php
create mode 100644 resources/views/verification/success.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 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/Feature/ExampleTest.php
create mode 100644 tests/TestCase.php
create mode 100644 tests/Unit/ExampleTest.php
create mode 100644 vite.config.js
diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000..8f0de65
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,18 @@
+root = true
+
+[*]
+charset = utf-8
+end_of_line = lf
+indent_size = 4
+indent_style = space
+insert_final_newline = true
+trim_trailing_whitespace = true
+
+[*.md]
+trim_trailing_whitespace = false
+
+[*.{yml,yaml}]
+indent_size = 2
+
+[docker-compose.yml]
+indent_size = 4
diff --git a/.env.example b/.env.example
new file mode 100644
index 0000000..2a4a8b7
--- /dev/null
+++ b/.env.example
@@ -0,0 +1,64 @@
+APP_NAME=Laravel
+APP_ENV=local
+APP_KEY=
+APP_DEBUG=true
+APP_TIMEZONE=UTC
+APP_URL=http://localhost
+
+APP_LOCALE=en
+APP_FALLBACK_LOCALE=en
+APP_FAKER_LOCALE=en_US
+
+APP_MAINTENANCE_DRIVER=file
+# APP_MAINTENANCE_STORE=database
+
+BCRYPT_ROUNDS=12
+
+LOG_CHANNEL=stack
+LOG_STACK=single
+LOG_DEPRECATIONS_CHANNEL=null
+LOG_LEVEL=debug
+
+DB_CONNECTION=sqlite
+# DB_HOST=127.0.0.1
+# DB_PORT=3306
+# DB_DATABASE=laravel
+# DB_USERNAME=root
+# DB_PASSWORD=
+
+SESSION_DRIVER=database
+SESSION_LIFETIME=120
+SESSION_ENCRYPT=false
+SESSION_PATH=/
+SESSION_DOMAIN=null
+
+BROADCAST_CONNECTION=log
+FILESYSTEM_DISK=local
+QUEUE_CONNECTION=database
+
+CACHE_STORE=database
+CACHE_PREFIX=
+
+MEMCACHED_HOST=127.0.0.1
+
+REDIS_CLIENT=phpredis
+REDIS_HOST=127.0.0.1
+REDIS_PASSWORD=null
+REDIS_PORT=6379
+
+MAIL_MAILER=log
+MAIL_HOST=127.0.0.1
+MAIL_PORT=2525
+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
+
+VITE_APP_NAME="${APP_NAME}"
diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 0000000..fcb21d3
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1,11 @@
+* text=auto eol=lf
+
+*.blade.php diff=html
+*.css diff=css
+*.html diff=html
+*.md diff=markdown
+*.php diff=php
+
+/.github export-ignore
+CHANGELOG.md export-ignore
+.styleci.yml export-ignore
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..46340a6
--- /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
+.phpactor.json
+.phpunit.result.cache
+Homestead.json
+Homestead.yaml
+auth.json
+npm-debug.log
+yarn-error.log
+/.fleet
+/.idea
+/.vscode
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..1a4c26b
--- /dev/null
+++ b/README.md
@@ -0,0 +1,66 @@
+

+
+
+
+
+
+
+
+
+## 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/Commands/SetupBroadcasting.php b/app/Console/Commands/SetupBroadcasting.php
new file mode 100644
index 0000000..18c11ec
--- /dev/null
+++ b/app/Console/Commands/SetupBroadcasting.php
@@ -0,0 +1,103 @@
+info('Setting up broadcasting for real-time notifications...');
+
+ // 1. Update .env file
+ $this->updateEnvFile();
+
+ // 2. Clear configuration cache
+ $this->call('config:clear');
+
+ // 3. Clear application cache
+ $this->call('cache:clear');
+
+ // 4. Publish vendor files if needed
+ if ($this->confirm('Do you want to publish vendor files for Laravel Echo and Pusher?', true)) {
+ $this->call('vendor:publish', ['--provider' => 'Laravel\Ui\UiServiceProvider']);
+ }
+
+ $this->info('Broadcasting setup completed successfully!');
+ $this->info('Remember to set your PUSHER_APP_ID, PUSHER_APP_SECRET in your .env file');
+ $this->info('PUSHER_APP_KEY is already set as d82783da6b2fe32e1dec');
+ $this->info('PUSHER_APP_CLUSTER is already set as ap1');
+
+ return 0;
+ }
+
+ /**
+ * Update the .env file with broadcasting configuration
+ */
+ protected function updateEnvFile()
+ {
+ $envPath = base_path('.env');
+
+ if (File::exists($envPath)) {
+ $envContent = File::get($envPath);
+
+ // Check if broadcasting driver is already set
+ if (strpos($envContent, 'BROADCAST_DRIVER=') === false) {
+ $this->info('Adding BROADCAST_DRIVER to .env file');
+ $envContent .= "\nBROADCAST_DRIVER=pusher\n";
+ } else {
+ $this->info('Updating BROADCAST_DRIVER in .env file');
+ $envContent = preg_replace('/BROADCAST_DRIVER=(.*)/i', 'BROADCAST_DRIVER=pusher', $envContent);
+ }
+
+ // Check if Pusher credentials are already set
+ if (strpos($envContent, 'PUSHER_APP_KEY=') === false) {
+ $this->info('Adding Pusher configuration to .env file');
+ $envContent .= "PUSHER_APP_ID=\n";
+ $envContent .= "PUSHER_APP_KEY=d82783da6b2fe32e1dec\n";
+ $envContent .= "PUSHER_APP_SECRET=\n";
+ $envContent .= "PUSHER_APP_CLUSTER=ap1\n";
+ } else {
+ $this->info('Updating Pusher configuration in .env file');
+ $envContent = preg_replace('/PUSHER_APP_KEY=(.*)/i', 'PUSHER_APP_KEY=d82783da6b2fe32e1dec', $envContent);
+ $envContent = preg_replace('/PUSHER_APP_CLUSTER=(.*)/i', 'PUSHER_APP_CLUSTER=ap1', $envContent);
+ }
+
+ File::put($envPath, $envContent);
+ $this->info('.env file has been updated.');
+ } else {
+ $this->error('.env file does not exist!');
+ }
+ }
+}
\ No newline at end of file
diff --git a/app/Events/LaporanDibuat.php b/app/Events/LaporanDibuat.php
new file mode 100644
index 0000000..3cd3ead
--- /dev/null
+++ b/app/Events/LaporanDibuat.php
@@ -0,0 +1,71 @@
+laporan = $laporan;
+
+ // Send notification to all admins immediately
+ $admins = \App\Models\User::where('tipe_pengguna', 'admin')
+ ->orWhere('tipe_pengguna', 'super admin')
+ ->get();
+
+ foreach ($admins as $admin) {
+ // Trigger NewNotification event for each admin
+ event(new NewNotification([
+ 'id' => uniqid(),
+ 'data' => [
+ 'message' => 'Laporan baru telah dibuat: ' . ($laporan->jenis_bencana ?? $laporan->jenis_rusak),
+ 'type' => isset($laporan->jenis_bencana) ? 'bencana' : 'jalan',
+ 'created_at' => now()->toIso8601String()
+ ],
+ 'notifiable_id' => $admin->id,
+ 'created_at' => now()
+ ], $admin->id));
+ }
+ }
+
+ /**
+ * Get the channels the event should broadcast on.
+ *
+ * @return \Illuminate\Broadcasting\Channel|array
+ */
+ public function broadcastOn()
+ {
+ // Broadcast to public channel
+ return new Channel('laporan-channel');
+ }
+
+ /**
+ * Get the data to broadcast.
+ *
+ * @return array
+ */
+ public function broadcastWith()
+ {
+ return [
+ 'laporan' => $this->laporan
+ ];
+ }
+}
\ No newline at end of file
diff --git a/app/Events/NewNotification.php b/app/Events/NewNotification.php
new file mode 100644
index 0000000..c9ba0aa
--- /dev/null
+++ b/app/Events/NewNotification.php
@@ -0,0 +1,50 @@
+notification = $notification;
+ $this->userId = $userId;
+ }
+
+ /**
+ * Get the channels the event should broadcast on.
+ *
+ * @return \Illuminate\Broadcasting\Channel|array
+ */
+ public function broadcastOn()
+ {
+ return new PrivateChannel('notifications.' . $this->userId);
+ }
+
+ /**
+ * The event's broadcast name.
+ *
+ * @return string
+ */
+ public function broadcastAs()
+ {
+ return 'notification.received';
+ }
+}
\ No newline at end of file
diff --git a/app/Exports/BencanaExport.php b/app/Exports/BencanaExport.php
new file mode 100644
index 0000000..acf8802
--- /dev/null
+++ b/app/Exports/BencanaExport.php
@@ -0,0 +1,51 @@
+data = $data;
+ }
+
+ public function collection()
+ {
+ return $this->data;
+ }
+
+ public function headings(): array
+ {
+ return [
+ 'No',
+ 'Pelapor',
+ 'Jenis Bencana',
+ 'Lokasi',
+ 'Status',
+ 'Tanggal',
+ 'Deskripsi'
+ ];
+ }
+
+ public function map($row): array
+ {
+ static $index = 0;
+ $index++;
+
+ return [
+ $index,
+ $row->pelapor,
+ ucfirst($row->jenis_bencana),
+ $row->lokasi,
+ str_replace('_', ' ', ucfirst($row->status)),
+ \Carbon\Carbon::parse($row->created_at)->format('d M Y H:i'),
+ $row->deskripsi
+ ];
+ }
+}
\ No newline at end of file
diff --git a/app/Exports/JalanExport.php b/app/Exports/JalanExport.php
new file mode 100644
index 0000000..5425036
--- /dev/null
+++ b/app/Exports/JalanExport.php
@@ -0,0 +1,51 @@
+data = $data;
+ }
+
+ public function collection()
+ {
+ return $this->data;
+ }
+
+ public function headings(): array
+ {
+ return [
+ 'No',
+ 'Pelapor',
+ 'Jenis Kerusakan',
+ 'Lokasi',
+ 'Status',
+ 'Tanggal',
+ 'Deskripsi'
+ ];
+ }
+
+ public function map($row): array
+ {
+ static $index = 0;
+ $index++;
+
+ return [
+ $index,
+ $row->pelapor,
+ ucfirst($row->jenis_rusak),
+ $row->lokasi,
+ str_replace('_', ' ', ucfirst($row->status)),
+ \Carbon\Carbon::parse($row->created_at)->format('d M Y H:i'),
+ $row->deskripsi
+ ];
+ }
+}
\ No newline at end of file
diff --git a/app/Http/Controllers/AdminController.php b/app/Http/Controllers/AdminController.php
new file mode 100644
index 0000000..74fd0ba
--- /dev/null
+++ b/app/Http/Controllers/AdminController.php
@@ -0,0 +1,190 @@
+user();
+ // Ambil semua pengguna dengan tipe 'admin' dan 'super admin' dari tabel users
+ $admins = User::whereIn('tipe_pengguna', ['admin', 'super admin'])->get();
+
+ // Tambahkan data untuk dropdown
+ $instansiOptions = User::getInstansiOptions();
+ $jabatanOptions = User::getJabatanOptions();
+
+ return view('admins.index', compact('admins', 'currentAdmin', 'instansiOptions', 'jabatanOptions'));
+ }
+
+ public function create()
+ {
+ return view('admins.create');
+ }
+
+ public function store(Request $request)
+ {
+ try {
+ // Cek apakah user adalah super admin
+ if (Auth::guard('admin')->user()->tipe_pengguna !== 'super admin') {
+ return response()->json([
+ 'success' => false,
+ 'message' => 'Unauthorized. Hanya Super Admin yang dapat menambahkan admin baru.'
+ ], 403);
+ }
+
+ $validator = Validator::make($request->all(), [
+ 'name' => 'required|string|max:255',
+ 'email' => 'required|string|email|max:255|unique:users,email',
+ 'password' => 'required|string|min:8',
+ 'alamat' => 'required|string',
+ 'tipe_pengguna' => 'required|in:admin,super admin',
+ 'instansi' => 'required|in:BPBD,PUPR',
+ 'jabatan' => 'required|string',
+ ], [
+ 'name.required' => 'Nama harus diisi',
+ 'email.required' => 'Email harus diisi',
+ 'email.email' => 'Format email tidak valid',
+ 'email.unique' => 'Email sudah digunakan',
+ 'password.required' => 'Password harus diisi',
+ 'password.min' => 'Password minimal 8 karakter',
+ 'alamat.required' => 'Alamat harus diisi',
+ 'tipe_pengguna.required' => 'Tipe pengguna harus diisi',
+ 'tipe_pengguna.in' => 'Tipe pengguna tidak valid',
+ 'instansi.required' => 'Instansi harus diisi',
+ 'instansi.in' => 'Instansi tidak valid',
+ 'jabatan.required' => 'Jabatan harus diisi',
+ ]);
+
+ if ($validator->fails()) {
+ return response()->json([
+ 'success' => false,
+ 'errors' => $validator->errors()
+ ], 422);
+ }
+
+ // Validasi jabatan sesuai dengan instansi
+ $jabatanOptions = User::getJabatanOptions($request->instansi);
+ if (!array_key_exists($request->jabatan, $jabatanOptions)) {
+ return response()->json([
+ 'success' => false,
+ 'errors' => ['jabatan' => ['Jabatan tidak valid untuk instansi yang dipilih']]
+ ], 422);
+ }
+
+ $admin = User::create([
+ 'name' => $request->name,
+ 'email' => $request->email,
+ 'password' => Hash::make($request->password),
+ 'alamat' => $request->alamat,
+ 'tipe_pengguna' => $request->tipe_pengguna,
+ 'instansi' => $request->instansi,
+ 'jabatan' => $request->jabatan,
+ ]);
+
+ return response()->json([
+ 'success' => true,
+ 'message' => 'Admin berhasil ditambahkan',
+ 'data' => $admin
+ ]);
+
+ } catch (\Exception $e) {
+ Log::error('Error saat menambah admin: ' . $e->getMessage());
+ return response()->json([
+ 'success' => false,
+ 'message' => 'Terjadi kesalahan: ' . $e->getMessage()
+ ], 500);
+ }
+ }
+
+ public function edit(User $admin)
+ {
+ $currentAdmin = Auth::user();
+ if ($admin->id === $currentAdmin->id) {
+ return redirect()->route('admins.index')
+ ->with('error', 'Anda tidak dapat mengedit akun Anda sendiri di sini. Gunakan halaman profile.');
+ }
+ return view('admins.edit', compact('admin'));
+ }
+
+ public function update(Request $request, User $admin)
+ {
+ $currentAdmin = Auth::user();
+ if ($admin->id === $currentAdmin->id) {
+ return redirect()->route('admins.index')
+ ->with('error', 'Anda tidak dapat mengedit akun Anda sendiri di sini. Gunakan halaman profile.');
+ }
+
+ $request->validate([
+ 'name' => 'required|string|max:255',
+ 'email' => 'required|string|email|max:255|unique:admins,email,' . $admin->id,
+ 'alamat' => 'required|string',
+ ]);
+
+ User::where('id', $admin->id)->update([
+ 'name' => $request->name,
+ 'email' => $request->email,
+ 'alamat' => $request->alamat,
+ ]);
+
+ return redirect()->route('admins.index')
+ ->with('success', 'Admin berhasil diperbarui.');
+ }
+
+ public function destroy($id)
+ {
+ try {
+ // Cek apakah user adalah super admin
+ if (Auth::guard('admin')->user()->tipe_pengguna !== 'super admin') {
+ return response()->json([
+ 'success' => false,
+ 'message' => 'Unauthorized. Hanya Super Admin yang dapat menghapus admin.'
+ ], 403);
+ }
+
+ $admin = User::findOrFail($id);
+
+ // Prevent deleting self
+ if ($admin->id === Auth::guard('admin')->id()) {
+ return response()->json([
+ 'success' => false,
+ 'message' => 'Tidak dapat menghapus akun sendiri'
+ ], 403);
+ }
+
+ $admin->delete();
+
+ return response()->json([
+ 'success' => true,
+ 'message' => 'Admin berhasil dihapus'
+ ]);
+
+ } catch (\Exception $e) {
+ Log::error('Error saat menghapus admin: ' . $e->getMessage());
+ return response()->json([
+ 'success' => false,
+ 'message' => 'Terjadi kesalahan: ' . $e->getMessage()
+ ], 500);
+ }
+ }
+
+ // Tambahkan method untuk mendapatkan jabatan berdasarkan instansi (untuk AJAX)
+ public function getJabatan(Request $request)
+ {
+ $instansi = $request->instansi;
+ $jabatanOptions = User::getJabatanOptions($instansi);
+
+ return response()->json([
+ 'success' => true,
+ 'data' => $jabatanOptions
+ ]);
+ }
+}
\ No newline at end of file
diff --git a/app/Http/Controllers/Api/AuthController.php b/app/Http/Controllers/Api/AuthController.php
new file mode 100644
index 0000000..e863386
--- /dev/null
+++ b/app/Http/Controllers/Api/AuthController.php
@@ -0,0 +1,211 @@
+all(), [
+ 'name' => 'required|string|max:255',
+ 'email' => 'required|string|email|max:255|unique:users',
+ 'password' => 'required|string|min:6',
+ 'alamat' => 'required|string'
+ // 'telepon' => 'required|string'
+ ]);
+
+ if ($validator->fails()) {
+ return response()->json([
+ 'status' => 'error',
+ 'message' => 'Validation error',
+ 'errors' => $validator->errors()
+ ], 422);
+ }
+
+ try {
+ // Generate token dan log
+ $verificationToken = Str::random(64);
+ \Illuminate\Support\Facades\Log::info('Generated token: ' . $verificationToken);
+
+ $user = User::create([
+ 'name' => $request->name,
+ 'email' => $request->email,
+ 'password' => Hash::make($request->password),
+ 'alamat' => $request->alamat,
+ // 'telepon' => $request->telepon,
+ 'verification_token' => $verificationToken,
+ 'is_verified' => false,
+ 'tipe_pengguna' => 'user'
+ ]);
+
+ \Illuminate\Support\Facades\Log::info('User created with email: ' . $user->email);
+ \Illuminate\Support\Facades\Log::info('Stored token: ' . $user->verification_token);
+
+ // Generate URL verifikasi
+ $verificationUrl = url("/api/verify-email/{$verificationToken}");
+ $verificationUrl = str_replace('localhost', '10.10.178.83', $verificationUrl);
+
+ \Illuminate\Support\Facades\Log::info('Generated verification URL: ' . $verificationUrl);
+
+ // Kirim email
+ Mail::to($user->email)->send(new EmailVerification($user, $verificationUrl));
+ \Illuminate\Support\Facades\Log::info('Verification email sent to: ' . $user->email);
+
+ return response()->json([
+ 'status' => 'success',
+ 'message' => 'Registrasi berhasil. Silakan cek email Anda untuk verifikasi.',
+ ], 201);
+
+ } catch (\Exception $e) {
+ \Illuminate\Support\Facades\Log::error('Registration error: ' . $e->getMessage());
+ \Illuminate\Support\Facades\Log::error('Stack trace: ' . $e->getTraceAsString());
+
+ return response()->json([
+ 'status' => 'error',
+ 'message' => 'Gagal mengirim email verifikasi: ' . $e->getMessage()
+ ], 500);
+ }
+ }
+
+
+
+ public function login(Request $request)
+ {
+ $validator = Validator::make($request->all(), [
+ 'email' => 'required|email',
+ 'password' => 'required|string|min:6',
+ ]);
+
+ if ($validator->fails()) {
+ return response()->json([
+ 'status' => 'error',
+ 'message' => 'Validation error',
+ 'errors' => $validator->errors()
+ ], 422);
+ }
+
+ $credentials = $request->only('email', 'password');
+
+ // Cek apakah email sudah diverifikasi
+ $user = User::where('email', $request->email)->first();
+
+ if ($user && !$user->is_verified) {
+ return response()->json([
+ 'status' => 'error',
+ 'message' => 'Email belum diverifikasi. Silakan cek email Anda untuk verifikasi.',
+ ], 401);
+ }
+
+ if (!$token = Auth::guard('api')->attempt($credentials)) {
+ return response()->json([
+ 'status' => 'error',
+ 'message' => 'Email atau password salah',
+ ], 401);
+ }
+
+ return response()->json([
+ 'status' => 'success',
+ 'user' => Auth::guard('api')->user(),
+ 'token' => $token,
+ ]);
+ }
+
+ public function logout()
+ {
+ try {
+ // Ambil token saat ini
+ $token = JWTAuth::getToken();
+
+ // Invalidasi token saat ini
+ JWTAuth::invalidate($token);
+
+ // Jika Anda menggunakan blacklist, Anda bisa menambahkan logika untuk menghapus semua token
+ // Misalnya, jika Anda menyimpan token di database, Anda bisa menghapusnya di sini
+
+ return response()->json([
+ 'status' => 'success',
+ 'message' => 'Successfully logged out',
+ ]);
+ } catch (\Exception $e) {
+ return response()->json([
+ 'status' => 'error',
+ 'message' => 'Logout failed: ' . $e->getMessage(),
+ ], 500);
+ }
+ }
+
+ public function refresh()
+ {
+ return response()->json([
+ 'status' => 'success',
+ 'user' => Auth::guard('api')->user(),
+ 'token' => JWTAuth::refresh()
+ ]);
+ }
+
+ public function loginWithGoogle(Request $request)
+ {
+ $validator = Validator::make($request->all(), [
+ 'email' => 'required|email',
+ 'name' => 'required|string',
+ 'google_id' => 'required|string',
+ ]);
+
+ if ($validator->fails()) {
+ return response()->json([
+ 'status' => 'error',
+ 'message' => 'Validation error',
+ 'errors' => $validator->errors()
+ ], 422);
+ }
+
+ try {
+ // Cek apakah user sudah ada
+ $user = User::where('email', $request->email)->first();
+
+ if (!$user) {
+ // Jika user belum ada, buat user baru
+ $user = User::create([
+ 'name' => $request->name,
+ 'email' => $request->email,
+ 'password' => Hash::make(Str::random(16)), // Password acak
+ 'google_id' => $request->google_id,
+ 'alamat' => 'Lumajang',
+ 'is_verified' => true, // Auto verifikasi untuk login Google
+ 'tipe_pengguna' => 'user'
+ ]);
+ } else {
+ // Jika user sudah ada, update google_id
+ $user->update([
+ 'google_id' => $request->google_id,
+ 'is_verified' => true
+ ]);
+ }
+
+ // Generate token JWT
+ $token = JWTAuth::fromUser($user);
+
+ return response()->json([
+ 'status' => 'success',
+ 'user' => $user,
+ 'token' => $token,
+ ]);
+ } catch (\Exception $e) {
+ return response()->json([
+ 'status' => 'error',
+ 'message' => 'Login with Google failed: ' . $e->getMessage()
+ ], 500);
+ }
+ }
+}
\ No newline at end of file
diff --git a/app/Http/Controllers/Api/ForgotPasswordController.php b/app/Http/Controllers/Api/ForgotPasswordController.php
new file mode 100644
index 0000000..36ad186
--- /dev/null
+++ b/app/Http/Controllers/Api/ForgotPasswordController.php
@@ -0,0 +1,119 @@
+all(), [
+ 'email' => 'required|email|exists:users,email',
+ ], [
+ 'email.exists' => 'Email tidak terdaftar dalam sistem kami.'
+ ]);
+
+ if ($validator->fails()) {
+ return response()->json([
+ 'status' => 'error',
+ 'message' => 'Validation error',
+ 'errors' => $validator->errors()
+ ], 422);
+ }
+
+ try {
+ // Generate token
+ $resetToken = Str::random(64);
+ \Illuminate\Support\Facades\Log::info('Generated reset token: ' . $resetToken);
+
+ // Simpan token ke database
+ $user = User::where('email', $request->email)->first();
+ $user->reset_password_token = $resetToken;
+ $user->reset_password_expires_at = now()->addHours(24); // Token berlaku 24 jam
+ $user->save();
+
+ \Illuminate\Support\Facades\Log::info('Reset token stored for user: ' . $user->email);
+
+ // Buat URL web yang akan redirect ke aplikasi
+ $resetUrl = route('password.reset.redirect', ['token' => $resetToken, 'email' => $user->email]);
+
+ // Log URL untuk debugging
+ \Illuminate\Support\Facades\Log::info('Reset URL: ' . $resetUrl);
+
+ // Kirim email
+ Mail::to($user->email)->send(new ResetPassword($user, $resetUrl));
+ \Illuminate\Support\Facades\Log::info('Reset password email sent to: ' . $user->email);
+
+ return response()->json([
+ 'status' => 'success',
+ 'message' => 'Link reset password telah dikirim ke email Anda.',
+ ]);
+
+ } catch (\Exception $e) {
+ \Illuminate\Support\Facades\Log::error('Reset password error: ' . $e->getMessage());
+ \Illuminate\Support\Facades\Log::error('Stack trace: ' . $e->getTraceAsString());
+
+ return response()->json([
+ 'status' => 'error',
+ 'message' => 'Gagal mengirim email reset password: ' . $e->getMessage()
+ ], 500);
+ }
+ }
+
+ public function resetPassword(Request $request)
+ {
+ $validator = Validator::make($request->all(), [
+ 'token' => 'required|string',
+ 'password' => 'required|string|min:6|confirmed',
+ ]);
+
+ if ($validator->fails()) {
+ return response()->json([
+ 'status' => 'error',
+ 'message' => 'Validation error',
+ 'errors' => $validator->errors()
+ ], 422);
+ }
+
+ try {
+ // Cari user berdasarkan token
+ $user = User::where('reset_password_token', $request->token)
+ ->where('reset_password_expires_at', '>', now())
+ ->first();
+
+ if (!$user) {
+ return response()->json([
+ 'status' => 'error',
+ 'message' => 'Token tidak valid atau sudah kadaluarsa.'
+ ], 400);
+ }
+
+ // Update password
+ $user->password = Hash::make($request->password);
+ $user->reset_password_token = null;
+ $user->reset_password_expires_at = null;
+ $user->save();
+
+ return response()->json([
+ 'status' => 'success',
+ 'message' => 'Password berhasil diperbarui. Silakan login dengan password baru Anda.'
+ ]);
+
+ } catch (\Exception $e) {
+ \Illuminate\Support\Facades\Log::error('Reset password error: ' . $e->getMessage());
+
+ return response()->json([
+ 'status' => 'error',
+ 'message' => 'Gagal memperbarui password: ' . $e->getMessage()
+ ], 500);
+ }
+ }
+}
\ No newline at end of file
diff --git a/app/Http/Controllers/AuthController.php b/app/Http/Controllers/AuthController.php
new file mode 100644
index 0000000..aa1e620
--- /dev/null
+++ b/app/Http/Controllers/AuthController.php
@@ -0,0 +1,80 @@
+route('dashboard');
+ }
+ return view('auth.login');
+ }
+
+ public function login(Request $request)
+ {
+ $request->validate([
+ 'username_or_email' => 'required',
+ 'password' => 'required|string|min:8',
+ ]);
+
+ $loginField = filter_var($request->username_or_email, FILTER_VALIDATE_EMAIL) ? 'email' : 'name';
+
+ if (Auth::attempt([$loginField => $request->username_or_email, 'password' => $request->password])) {
+ return redirect()->intended(route('dashboard'))
+ ->with('success', 'Selamat datang, ' . Auth::user()->name);
+ }
+
+ return back()
+ ->withInput()
+ ->withErrors([
+ 'username_or_email' => 'Username/email atau password salah.',
+ ]);
+ }
+
+ public function logout(Request $request)
+ {
+ Auth::guard('web')->logout();
+
+ $request->session()->invalidate();
+ $request->session()->regenerateToken();
+
+ return redirect()->route('login')
+ ->with('success', 'Anda telah berhasil logout.');
+ }
+
+ public function showRegisterForm()
+ {
+ return view('auth.register');
+ }
+
+ public function register(Request $request)
+ {
+ $request->validate([
+ 'name' => 'required|string|max:255',
+ 'email' => 'required|string|email|max:255|unique:users',
+ 'password' => 'required|string|min:8|confirmed',
+ 'alamat' => 'required|string',
+ 'telepon' => 'required|string',
+ ]);
+
+ User::create([
+ 'name' => $request->name,
+ 'email' => $request->email,
+ 'password' => Hash::make($request->password),
+ 'alamat' => $request->alamat,
+ 'telepon' => $request->telepon,
+ 'tipe_pengguna' => 'user',
+ ]);
+
+ return redirect()->route('login')
+ ->with('success', 'Registrasi berhasil. Silakan login.');
+ }
+}
diff --git a/app/Http/Controllers/Controller.php b/app/Http/Controllers/Controller.php
new file mode 100644
index 0000000..8677cd5
--- /dev/null
+++ b/app/Http/Controllers/Controller.php
@@ -0,0 +1,8 @@
+count();
+ $menungguBencana = LaporanBencana::where('status', 'menunggu')->count();
+ $menunggu = $menungguJalan + $menungguBencana;
+
+ $dalamProsesJalan = LaporanJalan::where('status', 'dalam_proses')->count();
+ $dalamProsesBencana = LaporanBencana::where('status', 'dalam_proses')->count();
+ $dalamProses = $dalamProsesJalan + $dalamProsesBencana;
+
+ $selesaiJalan = LaporanJalan::where('status', 'selesai')->count();
+ $selesaiBencana = LaporanBencana::where('status', 'selesai')->count();
+ $selesai = $selesaiJalan + $selesaiBencana;
+
+ // Persentase perubahan dari bulan lalu
+ $laporanJalanBulanLalu = LaporanJalan::whereMonth('created_at', Carbon::now()->subMonth()->month)->count();
+ $laporanBencanaBulanLalu = LaporanBencana::whereMonth('created_at', Carbon::now()->subMonth()->month)->count();
+
+ $persentaseKenaikanJalan = $laporanJalanBulanLalu > 0
+ ? round((($totalLaporanJalan - $laporanJalanBulanLalu) / $laporanJalanBulanLalu) * 100, 1)
+ : 100;
+
+ $persentasePenurunanBencana = $laporanBencanaBulanLalu > 0
+ ? round((($totalLaporanBencana - $laporanBencanaBulanLalu) / $laporanBencanaBulanLalu) * 100, 1)
+ : 0;
+
+ // Data untuk grafik statistik bulanan
+ $monthlyData = [];
+ for ($i = 5; $i >= 0; $i--) {
+ $date = now()->subMonths($i);
+ $month = $date->format('M Y');
+
+ $jalanCount = LaporanJalan::whereYear('created_at', $date->year)
+ ->whereMonth('created_at', $date->month)
+ ->count();
+
+ $bencanaCount = LaporanBencana::whereYear('created_at', $date->year)
+ ->whereMonth('created_at', $date->month)
+ ->count();
+
+ $monthlyData[] = [
+ 'bulan' => $month,
+ 'jalan' => $jalanCount,
+ 'bencana' => $bencanaCount
+ ];
+ }
+
+ // Data untuk grafik distribusi jenis kerusakan
+ $distribusiJalan = DB::table('laporan_jalan')
+ ->select('jenis_rusak', DB::raw('count(*) as total'))
+ ->groupBy('jenis_rusak')
+ ->get();
+
+ $distribusiBencana = DB::table('laporan_bencana')
+ ->select('jenis_bencana', DB::raw('count(*) as total'))
+ ->groupBy('jenis_bencana')
+ ->get();
+
+ return view('dashboard', compact(
+ 'totalLaporan',
+ 'totalLaporanJalan',
+ 'totalLaporanBencana',
+ 'menunggu',
+ 'menungguJalan',
+ 'menungguBencana',
+ 'dalamProses',
+ 'dalamProsesJalan',
+ 'dalamProsesBencana',
+ 'selesai',
+ 'selesaiJalan',
+ 'selesaiBencana',
+ 'persentaseKenaikanJalan',
+ 'persentasePenurunanBencana',
+ 'monthlyData',
+ 'distribusiJalan',
+ 'distribusiBencana'
+ ));
+ } catch (\Exception $e) {
+ return back()->with('error', 'Terjadi kesalahan saat memuat dashboard: ' . $e->getMessage());
+ }
+ }
+
+ public function getLaporanJalan()
+ {
+ try {
+ $laporanJalan = DB::table('laporan_jalan')
+ ->select('id', 'lokasi', 'latitude', 'longitude', 'jenis_rusak', 'deskripsi', 'foto', 'status')
+ ->where('status', 'dalam_proses')
+ ->get();
+
+ // Transform foto path menjadi URL lengkap
+ $laporanJalan = $laporanJalan->map(function($item) {
+ $item->foto_url = $item->foto ? asset('storage/' . $item->foto) : null;
+ return $item;
+ });
+
+ return response()->json([
+ 'success' => true,
+ 'data' => $laporanJalan
+ ]);
+ } catch (\Exception $e) {
+ return response()->json([
+ 'success' => false,
+ 'message' => 'Gagal mengambil data laporan jalan',
+ 'error' => $e->getMessage()
+ ], 500);
+ }
+ }
+
+ public function getLaporanBencana()
+ {
+ try {
+ $laporanBencana = DB::table('laporan_bencana')
+ ->select('id', 'lokasi', 'latitude', 'longitude', 'jenis_bencana', 'deskripsi', 'foto', 'status')
+ ->where('status', 'dalam_proses')
+ ->get();
+
+ // Transform foto path menjadi URL lengkap
+ $laporanBencana = $laporanBencana->map(function($item) {
+ $item->foto_url = $item->foto ? asset('storage/' . $item->foto) : null;
+ return $item;
+ });
+
+ return response()->json([
+ 'success' => true,
+ 'data' => $laporanBencana
+ ]);
+ } catch (\Exception $e) {
+ return response()->json([
+ 'success' => false,
+ 'message' => 'Gagal mengambil data laporan bencana',
+ 'error' => $e->getMessage()
+ ], 500);
+ }
+ }
+
+ public function getRiwayatLaporan()
+ {
+ try {
+ $user_id = Auth::id();
+
+ // Get laporan bencana yang dilaporkan oleh pengguna
+ $bencana = DB::table('laporan_bencana')
+ ->where('user_id', $user_id)
+ ->select('id', 'lokasi', 'latitude', 'longitude', 'jenis_bencana', 'deskripsi', 'foto', 'status', 'created_at')
+ ->orderBy('created_at', 'desc')
+ ->get()
+ ->map(function($item) {
+ $item->foto_url = $item->foto ? asset('storage/' . $item->foto) : null;
+ return $item;
+ });
+
+ // Get laporan jalan yang dilaporkan oleh pengguna
+ $jalan = DB::table('laporan_jalan')
+ ->where('user_id', $user_id)
+ ->select('id', 'lokasi', 'latitude', 'longitude', 'jenis_rusak', 'deskripsi', 'foto', 'status', 'created_at')
+ ->orderBy('created_at', 'desc')
+ ->get()
+ ->map(function($item) {
+ $item->foto_url = $item->foto ? asset('storage/' . $item->foto) : null;
+ return $item;
+ });
+
+ return response()->json([
+ 'success' => true,
+ 'data' => [
+ 'bencana' => $bencana,
+ 'jalan' => $jalan
+ ]
+ ]);
+ } catch (\Exception $e) {
+ return response()->json([
+ 'success' => false,
+ 'message' => 'Gagal mengambil riwayat laporan',
+ 'error' => $e->getMessage()
+ ], 500);
+ }
+ }
+}
diff --git a/app/Http/Controllers/ExampleController.php b/app/Http/Controllers/ExampleController.php
new file mode 100644
index 0000000..f5e43b9
--- /dev/null
+++ b/app/Http/Controllers/ExampleController.php
@@ -0,0 +1,45 @@
+toString();
+ DB::table('notifications')->insert([
+ 'id' => $notificationId,
+ 'type' => 'App\\Notifications\\SampleNotification',
+ 'notifiable_type' => 'App\\Models\\User',
+ 'notifiable_id' => $userId,
+ 'data' => json_encode([
+ 'message' => 'Ini adalah contoh notifikasi real-time',
+ 'type' => 'jalan',
+ 'created_at' => Carbon::now()->toIso8601String()
+ ]),
+ 'created_at' => Carbon::now(),
+ 'updated_at' => Carbon::now(),
+ ]);
+
+ // Ambil notifikasi yang baru dibuat
+ $notification = DB::table('notifications')->where('id', $notificationId)->first();
+
+ // Kirim event ke Pusher untuk pembaruan real-time
+ event(new NewNotification($notification, $userId));
+
+ return response()->json(['success' => true, 'message' => 'Notifikasi berhasil dibuat']);
+ }
+}
\ No newline at end of file
diff --git a/app/Http/Controllers/LaporanBencanaController.php b/app/Http/Controllers/LaporanBencanaController.php
new file mode 100644
index 0000000..5646414
--- /dev/null
+++ b/app/Http/Controllers/LaporanBencanaController.php
@@ -0,0 +1,219 @@
+join('users', 'laporan_bencana.user_id', '=', 'users.id')
+ ->select('laporan_bencana.*', 'users.name as pelapor')
+ ->orderBy('created_at', 'desc')
+ ->get();
+
+ return view('bencana.index', compact('laporanBencana'));
+ }
+
+ public function getLaporanBencana()
+ {
+ $laporanBencana = DB::table('laporan_bencana')
+ ->select('latitude', 'longitude', 'status', 'jenis_bencana')
+ ->whereIn('status', ['menunggu', 'dalam_proses'])
+ ->get();
+
+ return response()->json($laporanBencana);
+ }
+
+ public function updateStatus(Request $request, $id)
+ {
+ $status = $request->status;
+ $allowed_status = ['menunggu', 'dalam_proses', 'selesai'];
+
+ if (!in_array($status, $allowed_status)) {
+ return response()->json(['success' => false, 'message' => 'Status tidak valid']);
+ }
+
+ try {
+ DB::table('laporan_bencana')
+ ->where('id', $id)
+ ->update(['status' => $status]);
+
+ return response()->json(['success' => true]);
+ } catch (\Exception $e) {
+ return response()->json(['success' => false, 'message' => 'Gagal mengupdate status']);
+ }
+ }
+
+ public function destroy($id)
+ {
+ $laporan = DB::table('laporan_bencana')->where('id', $id)->first();
+ if ($laporan) {
+ // Hapus file foto jika ada
+ if ($laporan->foto) {
+ $path = public_path('storage/' . $laporan->foto);
+ if (file_exists($path)) {
+ unlink($path);
+ }
+ }
+
+ DB::table('laporan_bencana')->where('id', $id)->delete();
+ return response()->json(['success' => true]);
+ }
+ return response()->json(['success' => false]);
+ }
+
+ private function checkLaporanLimit($userId)
+ {
+ // Jika user ID adalah 60, 61, atau 62, tidak ada batasan
+ if (in_array($userId, [60, 61, 62])) {
+ return true;
+ }
+
+ // Hitung jumlah laporan hari ini
+ $today = now()->startOfDay();
+ $count = DB::table('laporan_bencana')
+ ->where('user_id', $userId)
+ ->where('created_at', '>=', $today)
+ ->count();
+
+ // Batasi 10 laporan per hari
+ return $count < 10;
+ }
+
+ private function isWithinLumajang($latitude, $longitude)
+ {
+ // Koordinat batas wilayah Lumajang
+ $minLat = -8.5; // Batas selatan
+ $maxLat = -7.8; // Batas utara
+ $minLng = 112.8; // Batas barat
+ $maxLng = 113.4; // Batas timur
+
+ return ($latitude >= $minLat && $latitude <= $maxLat) &&
+ ($longitude >= $minLng && $longitude <= $maxLng);
+ }
+
+ public function store(Request $request)
+ {
+ try {
+ // Validasi koordinat
+ if (!$this->isWithinLumajang($request->latitude, $request->longitude)) {
+ return response()->json([
+ 'success' => false,
+ 'message' => 'Lokasi yang dipilih berada di luar wilayah Lumajang'
+ ], 400);
+ }
+
+ // Cek batasan laporan
+ if (!$this->checkLaporanLimit(Auth::id())) {
+ return response()->json([
+ 'success' => false,
+ 'message' => 'Anda telah mencapai batas maksimal laporan hari ini (10 laporan)'
+ ], 400);
+ }
+
+ // Validasi input
+ $request->validate([
+ 'lokasi' => 'required|string',
+ 'latitude' => 'required|numeric',
+ 'longitude' => 'required|numeric',
+ 'jenis_bencana' => 'required|in:Banjir,Longsor,Erupsi,Lahar Panas,Lahar Dingin,Gempa,Angin Topan',
+ 'deskripsi' => 'nullable|string',
+ 'foto' => 'nullable|image|max:5120', // maksimal 5MB
+ ]);
+
+ // Upload foto
+ $fotoPath = null;
+ if ($request->hasFile('foto')) {
+ $foto = $request->file('foto');
+ $fileName = time() . '_' . $foto->getClientOriginalName();
+ $fotoPath = $foto->storeAs('laporan-bencana', $fileName, 'public');
+ }
+
+ // Simpan data ke database
+ $laporan = LaporanBencana::create([
+ 'user_id' => Auth::id(), // Simpan ID pengguna yang sedang login
+ 'lokasi' => $request->lokasi,
+ 'latitude' => $request->latitude,
+ 'longitude' => $request->longitude,
+ 'jenis_bencana' => $request->jenis_bencana,
+ 'deskripsi' => $request->deskripsi,
+ 'foto' => $fotoPath,
+ 'status' => 'menunggu',
+ ]);
+
+ // Kirim notifikasi ke semua admin
+ $admins = \App\Models\User::where('tipe_pengguna', 'admin')->orWhere('tipe_pengguna', 'super admin')->get();
+ foreach ($admins as $admin) {
+ $admin->notify(new \App\Notifications\NewLaporanBencanaNotification($laporan));
+ }
+
+ broadcast(new LaporanDibuat($laporan));
+
+ return response()->json([
+ 'success' => true,
+ 'message' => 'Laporan berhasil dikirim',
+ 'data' => [
+ 'id' => $laporan->id,
+ 'foto_url' => $fotoPath ? asset('storage/' . $fotoPath) : null
+ ]
+ ], 201);
+ } catch (\Exception $e) {
+ // Hapus foto jika upload gagal
+ if (isset($fotoPath)) {
+ Storage::disk('public')->delete($fotoPath);
+ }
+
+ return response()->json([
+ 'success' => false,
+ 'message' => 'Gagal mengirim laporan',
+ 'error' => $e->getMessage()
+ ], 500);
+ }
+ }
+
+ public function rekap($format)
+ {
+ $tahun = request('tahun');
+ $bulan = request('bulan');
+
+ $query = DB::table('laporan_bencana')
+ ->join('users', 'laporan_bencana.user_id', '=', 'users.id')
+ ->select('laporan_bencana.*', 'users.name as pelapor');
+
+ if ($bulan) {
+ $query->whereYear('laporan_bencana.created_at', $tahun)
+ ->whereMonth('laporan_bencana.created_at', $bulan);
+ } else {
+ $query->whereYear('laporan_bencana.created_at', $tahun);
+ }
+
+ $data = $query->get();
+
+ if ($format === 'pdf') {
+ $pdf = PDF::loadView('bencana.rekap', [
+ 'data' => $data,
+ 'tahun' => $tahun,
+ 'bulan' => $bulan
+ ]);
+
+ return $pdf->download('rekap-bencana-' . ($bulan ? $tahun . '-' . $bulan : $tahun) . '.pdf');
+ } else {
+ return Excel::download(new BencanaExport($data), 'rekap-bencana-' . ($bulan ? $tahun . '-' . $bulan : $tahun) . '.xlsx');
+ }
+ }
+}
diff --git a/app/Http/Controllers/LaporanJalanController.php b/app/Http/Controllers/LaporanJalanController.php
new file mode 100644
index 0000000..947dfd7
--- /dev/null
+++ b/app/Http/Controllers/LaporanJalanController.php
@@ -0,0 +1,219 @@
+join('users', 'laporan_jalan.user_id', '=', 'users.id')
+ ->select('laporan_jalan.*', 'users.name as pelapor')
+ ->orderBy('created_at', 'desc')
+ ->get();
+
+ return view('jalan.index', compact('laporanJalan'));
+ }
+
+ public function getLaporanJalan()
+ {
+ $laporanJalan = DB::table('laporan_jalan')
+ ->select('latitude', 'longitude', 'status', 'jenis_rusak')
+ ->whereIn('status', ['menunggu', 'dalam_proses'])
+ ->get();
+
+ return response()->json($laporanJalan);
+ }
+
+ public function updateStatus(Request $request, $id)
+ {
+ $status = $request->status;
+ $allowed_status = ['menunggu', 'dalam_proses', 'selesai'];
+
+ if (!in_array($status, $allowed_status)) {
+ return response()->json(['success' => false, 'message' => 'Status tidak valid']);
+ }
+
+ try {
+ DB::table('laporan_jalan')
+ ->where('id', $id)
+ ->update(['status' => $status]);
+
+ return response()->json(['success' => true]);
+ } catch (\Exception $e) {
+ return response()->json(['success' => false, 'message' => 'Gagal mengupdate status']);
+ }
+ }
+
+ public function destroy($id)
+ {
+ $laporan = DB::table('laporan_jalan')->where('id', $id)->first();
+ if ($laporan) {
+ // Hapus file foto jika ada
+ if ($laporan->foto) {
+ $path = public_path('storage/' . $laporan->foto);
+ if (file_exists($path)) {
+ unlink($path);
+ }
+ }
+
+ DB::table('laporan_jalan')->where('id', $id)->delete();
+ return response()->json(['success' => true]);
+ }
+ return response()->json(['success' => false]);
+ }
+
+ private function checkLaporanLimit($userId)
+ {
+ // Jika user ID adalah 60, 61, atau 62, tidak ada batasan
+ if (in_array($userId, [60, 61, 62])) {
+ return true;
+ }
+
+ // Hitung jumlah laporan hari ini
+ $today = now()->startOfDay();
+ $count = DB::table('laporan_jalan')
+ ->where('user_id', $userId)
+ ->where('created_at', '>=', $today)
+ ->count();
+
+ // Batasi 10 laporan per hari
+ return $count < 10;
+ }
+
+ private function isWithinLumajang($latitude, $longitude)
+ {
+ // Koordinat batas wilayah Lumajang
+ $minLat = -8.5; // Batas selatan
+ $maxLat = -7.8; // Batas utara
+ $minLng = 112.8; // Batas barat
+ $maxLng = 113.4; // Batas timur
+
+ return ($latitude >= $minLat && $latitude <= $maxLat) &&
+ ($longitude >= $minLng && $longitude <= $maxLng);
+ }
+
+ public function store(Request $request)
+ {
+ try {
+ // Validasi koordinat
+ if (!$this->isWithinLumajang($request->latitude, $request->longitude)) {
+ return response()->json([
+ 'success' => false,
+ 'message' => 'Lokasi yang dipilih berada di luar wilayah Lumajang'
+ ], 400);
+ }
+
+ // Cek batasan laporan
+ if (!$this->checkLaporanLimit(Auth::id())) {
+ return response()->json([
+ 'success' => false,
+ 'message' => 'Anda telah mencapai batas maksimal laporan hari ini (10 laporan)'
+ ], 400);
+ }
+
+ // Validasi input
+ $request->validate([
+ 'lokasi' => 'required|string',
+ 'latitude' => 'required|numeric',
+ 'longitude' => 'required|numeric',
+ 'jenis_rusak' => 'required|in:jalan rusak ringan,jalan rusak berat',
+ 'deskripsi' => 'nullable|string',
+ 'foto' => 'nullable|image|max:5120', // maksimal 5MB
+ ]);
+
+ // Upload foto
+ $fotoPath = null;
+ if ($request->hasFile('foto')) {
+ $foto = $request->file('foto');
+ $fileName = time() . '_' . $foto->getClientOriginalName();
+ $fotoPath = $foto->storeAs('laporan-jalan', $fileName, 'public');
+ }
+
+ // Simpan data ke database
+ $laporan = LaporanJalan::create([
+ 'user_id' => Auth::id(),
+ 'lokasi' => $request->lokasi,
+ 'latitude' => $request->latitude,
+ 'longitude' => $request->longitude,
+ 'jenis_rusak' => $request->jenis_rusak,
+ 'deskripsi' => $request->deskripsi,
+ 'foto' => $fotoPath,
+ 'status' => 'menunggu',
+ ]);
+
+ // Kirim notifikasi ke semua admin
+ $admins = \App\Models\User::where('tipe_pengguna', 'admin')->orWhere('tipe_pengguna', 'super admin')->get();
+ foreach ($admins as $admin) {
+ $admin->notify(new \App\Notifications\NewLaporanJalanNotification($laporan));
+ }
+
+ broadcast(new LaporanDibuat($laporan));
+
+ return response()->json([
+ 'success' => true,
+ 'message' => 'Laporan berhasil dikirim',
+ 'data' => [
+ 'id' => $laporan->id,
+ 'foto_url' => $fotoPath ? asset('storage/' . $fotoPath) : null
+ ]
+ ], 201);
+ } catch (\Exception $e) {
+ // Hapus foto jika upload gagal
+ if (isset($fotoPath)) {
+ Storage::disk('public')->delete($fotoPath);
+ }
+
+ return response()->json([
+ 'success' => false,
+ 'message' => 'Gagal mengirim laporan',
+ 'error' => $e->getMessage()
+ ], 500);
+ }
+ }
+
+ public function rekap($format)
+ {
+ $tahun = request('tahun');
+ $bulan = request('bulan');
+
+ $query = DB::table('laporan_jalan')
+ ->join('users', 'laporan_jalan.user_id', '=', 'users.id')
+ ->select('laporan_jalan.*', 'users.name as pelapor');
+
+ if ($bulan) {
+ $query->whereYear('laporan_jalan.created_at', $tahun)
+ ->whereMonth('laporan_jalan.created_at', $bulan);
+ } else {
+ $query->whereYear('laporan_jalan.created_at', $tahun);
+ }
+
+ $data = $query->get();
+
+ if ($format === 'pdf') {
+ $pdf = PDF::loadView('jalan.rekap', [
+ 'data' => $data,
+ 'tahun' => $tahun,
+ 'bulan' => $bulan
+ ]);
+
+ return $pdf->download('rekap-jalan-' . ($bulan ? $tahun . '-' . $bulan : $tahun) . '.pdf');
+ } else {
+ return Excel::download(new JalanExport($data), 'rekap-jalan-' . ($bulan ? $tahun . '-' . $bulan : $tahun) . '.xlsx');
+ }
+ }
+}
diff --git a/app/Http/Controllers/NotificationController.php b/app/Http/Controllers/NotificationController.php
new file mode 100644
index 0000000..bbe51ad
--- /dev/null
+++ b/app/Http/Controllers/NotificationController.php
@@ -0,0 +1,59 @@
+where('notifiable_id', Auth::id())
+ ->whereNull('read_at')
+ ->count();
+
+ return response()->json(['count' => $count]);
+ }
+
+ public function deleteRead()
+ {
+ DB::table('notifications')
+ ->where('notifiable_id', Auth::id())
+ ->whereNotNull('read_at')
+ ->delete();
+
+ return response()->json(['message' => 'Notifikasi yang sudah dibaca berhasil dihapus']);
+ }
+
+ public function markAsRead($id)
+ {
+ $notification = DB::table('notifications')->where('id', $id)->first();
+
+ if ($notification && $notification->notifiable_id == Auth::id()) {
+ DB::table('notifications')
+ ->where('id', $id)
+ ->update(['read_at' => Carbon::now()]);
+
+ return response()->json(['message' => 'Notifikasi ditandai sebagai sudah dibaca']);
+ }
+
+ return response()->json(['message' => 'Notifikasi tidak ditemukan'], 404);
+ }
+
+ public function markAllRead()
+ {
+ DB::table('notifications')
+ ->where('notifiable_id', Auth::id())
+ ->whereNull('read_at')
+ ->update(['read_at' => Carbon::now()]);
+
+ return response()->json(['message' => 'Semua notifikasi ditandai sebagai sudah dibaca']);
+ }
+}
\ No newline at end of file
diff --git a/app/Http/Controllers/PrivacyPolicyController.php b/app/Http/Controllers/PrivacyPolicyController.php
new file mode 100644
index 0000000..154f028
--- /dev/null
+++ b/app/Http/Controllers/PrivacyPolicyController.php
@@ -0,0 +1,13 @@
+validate([
+ 'name' => 'required|string|max:255',
+ ]);
+
+ $user = JWTAuth::parseToken()->authenticate();
+
+ $user->update([
+ 'name' => $request->name,
+ ]);
+
+ return response()->json([
+ 'success' => true,
+ 'message' => 'Profil berhasil diperbarui',
+ 'data' => [
+ 'name' => $user->name
+ ]
+ ]);
+ } catch (\Tymon\JWTAuth\Exceptions\TokenExpiredException $e) {
+ return response()->json([
+ 'success' => false,
+ 'message' => 'Token telah kadaluarsa'
+ ], 401);
+ } catch (\Tymon\JWTAuth\Exceptions\TokenInvalidException $e) {
+ return response()->json([
+ 'success' => false,
+ 'message' => 'Token tidak valid'
+ ], 401);
+ } catch (\Exception $e) {
+ return response()->json([
+ 'success' => false,
+ 'message' => 'Gagal memperbarui profil',
+ 'error' => $e->getMessage()
+ ], 500);
+ }
+ }
+}
\ No newline at end of file
diff --git a/app/Http/Controllers/ResetPasswordController.php b/app/Http/Controllers/ResetPasswordController.php
new file mode 100644
index 0000000..20228aa
--- /dev/null
+++ b/app/Http/Controllers/ResetPasswordController.php
@@ -0,0 +1,79 @@
+where('reset_password_expires_at', '>', now())
+ ->first();
+
+ if (!$user) {
+ \Illuminate\Support\Facades\Log::error('Token tidak ditemukan atau kadaluarsa: ' . $token);
+ return view('reset_password.failed', [
+ 'message' => 'Link reset password tidak valid atau sudah kadaluarsa'
+ ]);
+ }
+
+ return view('reset_password.form', [
+ 'token' => $token,
+ 'email' => $user->email
+ ]);
+
+ } catch (\Exception $e) {
+ \Illuminate\Support\Facades\Log::error('Reset password error: ' . $e->getMessage());
+ return view('reset_password.failed', [
+ 'message' => 'Terjadi kesalahan saat memproses reset password'
+ ]);
+ }
+ }
+
+ public function reset(Request $request)
+ {
+ $validator = Validator::make($request->all(), [
+ 'token' => 'required',
+ 'password' => 'required|min:6|confirmed',
+ ]);
+
+ if ($validator->fails()) {
+ return back()->withErrors($validator)->withInput();
+ }
+
+ try {
+ $user = User::where('reset_password_token', $request->token)
+ ->where('reset_password_expires_at', '>', now())
+ ->first();
+
+ if (!$user) {
+ return view('reset_password.failed', [
+ 'message' => 'Link reset password tidak valid atau sudah kadaluarsa'
+ ]);
+ }
+
+ $user->password = Hash::make($request->password);
+ $user->reset_password_token = null;
+ $user->reset_password_expires_at = null;
+ $user->save();
+
+ return view('reset_password.success', [
+ 'message' => 'Password berhasil diperbarui. Silakan login dengan password baru Anda.'
+ ]);
+
+ } catch (\Exception $e) {
+ \Illuminate\Support\Facades\Log::error('Reset password error: ' . $e->getMessage());
+ return view('reset_password.failed', [
+ 'message' => 'Terjadi kesalahan saat memproses reset password'
+ ]);
+ }
+ }
+}
\ No newline at end of file
diff --git a/app/Http/Controllers/ResetPasswordRedirectController.php b/app/Http/Controllers/ResetPasswordRedirectController.php
new file mode 100644
index 0000000..ff6ac30
--- /dev/null
+++ b/app/Http/Controllers/ResetPasswordRedirectController.php
@@ -0,0 +1,23 @@
+ $appUrl,
+ 'token' => $token,
+ 'email' => $email
+ ]);
+ }
+}
\ No newline at end of file
diff --git a/app/Http/Controllers/UserController.php b/app/Http/Controllers/UserController.php
new file mode 100644
index 0000000..4d261b5
--- /dev/null
+++ b/app/Http/Controllers/UserController.php
@@ -0,0 +1,129 @@
+validate([
+ 'name' => 'required|string|max:255',
+ 'email' => 'required|string|email|max:255|unique:admins,email,' . $user->id,
+ 'alamat' => 'required|string',
+ 'telepon' => 'required|string',
+ ]);
+
+ Admin::where('id', $user->id)->update([
+ 'name' => $request->name,
+ 'email' => $request->email,
+ 'alamat' => $request->alamat,
+ 'telepon' => $request->telepon,
+ ]);
+
+ return back()->with('success', 'Profile berhasil diperbarui.');
+ }
+
+ public function updatePassword(Request $request)
+ {
+ $request->validate([
+ 'current_password' => 'required|string',
+ 'password' => 'required|string|min:8|confirmed',
+ ]);
+
+ $user = Auth::user();
+
+ if (!Hash::check($request->current_password, $user->password)) {
+ return back()->withErrors(['current_password' => 'Password saat ini tidak sesuai.']);
+ }
+
+ Admin::where('id', $user->id)->update([
+ 'password' => Hash::make($request->password)
+ ]);
+
+ return back()->with('success', 'Password berhasil diperbarui.');
+ }
+
+ // Admin management methods
+ public function index()
+ {
+ $users = User::where('tipe_pengguna', 'user')->get();
+ return view('users.index', compact('users'));
+ }
+
+ public function create()
+ {
+ return view('users.create');
+ }
+
+ public function store(Request $request)
+ {
+ $request->validate([
+ 'name' => 'required|string|max:255',
+ 'email' => 'required|string|email|max:255|unique:admins',
+ 'password' => 'required|string|min:8|confirmed',
+ 'alamat' => 'required|string',
+ 'telepon' => 'required|string',
+ ]);
+
+ Admin::create([
+ 'name' => $request->name,
+ 'email' => $request->email,
+ 'password' => Hash::make($request->password),
+ 'alamat' => $request->alamat,
+ 'telepon' => $request->telepon,
+ 'tipe_pengguna' => 'user',
+ ]);
+
+ return redirect()->route('users.index')
+ ->with('success', 'User berhasil ditambahkan.');
+ }
+
+ public function edit(Admin $user)
+ {
+ return view('users.edit', compact('user'));
+ }
+
+ public function update(Request $request, Admin $user)
+ {
+ $request->validate([
+ 'name' => 'required|string|max:255',
+ 'email' => 'required|string|email|max:255|unique:admins,email,' . $user->id,
+ 'alamat' => 'required|string',
+ 'telepon' => 'required|string',
+ ]);
+
+ Admin::where('id', $user->id)->update([
+ 'name' => $request->name,
+ 'email' => $request->email,
+ 'alamat' => $request->alamat,
+ 'telepon' => $request->telepon,
+ ]);
+
+ return redirect()->route('users.index')
+ ->with('success', 'User berhasil diperbarui.');
+ }
+
+ public function destroy($id)
+ {
+ $user = User::find($id);
+ if ($user) {
+ $user->delete();
+ return response()->json(['success' => true]);
+ }
+ return response()->json(['success' => false]);
+ }
+}
\ No newline at end of file
diff --git a/app/Http/Controllers/VerificationController.php b/app/Http/Controllers/VerificationController.php
new file mode 100644
index 0000000..d677686
--- /dev/null
+++ b/app/Http/Controllers/VerificationController.php
@@ -0,0 +1,43 @@
+first();
+
+ if (!$user) {
+ \Illuminate\Support\Facades\Log::error('Token tidak ditemukan: ' . $token);
+ return view('verification.failed', [
+ 'message' => 'Link verifikasi tidak valid atau sudah kadaluarsa'
+ ]);
+ }
+
+ $user->is_verified = true;
+ $user->email_verified_at = now();
+ $user->verification_token = null;
+ $user->save();
+
+ \Illuminate\Support\Facades\Log::info('Email berhasil diverifikasi: ' . $user->email);
+
+ return view('verification.success', [
+ 'name' => $user->name,
+ 'message' => 'Email berhasil diverifikasi'
+ ]);
+
+ } catch (\Exception $e) {
+ \Illuminate\Support\Facades\Log::error('Verification error: ' . $e->getMessage());
+ return view('verification.failed', [
+ 'message' => 'Terjadi kesalahan saat verifikasi'
+ ]);
+ }
+ }
+}
\ No newline at end of file
diff --git a/app/Http/Controllers/WeatherController.php b/app/Http/Controllers/WeatherController.php
new file mode 100644
index 0000000..9786248
--- /dev/null
+++ b/app/Http/Controllers/WeatherController.php
@@ -0,0 +1,96 @@
+apiKey = config('services.weatherapi.key');
+ }
+
+ public function getWeather(Request $request)
+ {
+ try {
+ $lat = $request->query('lat');
+ $lon = $request->query('lon');
+
+ Log::info('Weather request params:', [
+ 'lat' => $lat,
+ 'lon' => $lon
+ ]);
+
+ // Get weather data from WeatherAPI.com
+ $response = Http::get("http://api.weatherapi.com/v1/forecast.json", [
+ 'key' => $this->apiKey,
+ 'q' => "$lat,$lon",
+ 'days' => 1,
+ 'aqi' => 'no',
+ 'lang' => 'id'
+ ]);
+
+ Log::info('WeatherAPI response:', [
+ 'status' => $response->status(),
+ 'body' => $response->body()
+ ]);
+
+ if (!$response->successful()) {
+ throw new \Exception('Failed to fetch weather data: ' . $response->body());
+ }
+
+ $weatherData = $response->json();
+ $currentHour = now()->format('H');
+
+ // Get current weather from hourly forecast
+ $currentWeather = collect($weatherData['forecast']['forecastday'][0]['hour'])
+ ->first(function($hour) use ($currentHour) {
+ return date('H', strtotime($hour['time'])) == $currentHour;
+ });
+
+ return response()->json([
+ 'success' => true,
+ 'location' => [
+ 'name' => $weatherData['location']['name'],
+ 'state' => $weatherData['location']['region'],
+ 'country' => $weatherData['location']['country'],
+ 'lat' => $weatherData['location']['lat'],
+ 'lon' => $weatherData['location']['lon']
+ ],
+ 'current_weather' => [
+ 'datetime' => $currentWeather['time'],
+ 'temp' => round($currentWeather['temp_c']),
+ 'humidity' => $currentWeather['humidity'],
+ 'description' => $currentWeather['condition']['text'],
+ 'icon' => $currentWeather['condition']['icon'],
+ ],
+ 'weather' => array_map(function($hour) {
+ return [
+ 'datetime' => $hour['time'],
+ 'temp' => round($hour['temp_c']),
+ 'humidity' => $hour['humidity'],
+ 'description' => $hour['condition']['text'],
+ 'icon' => $hour['condition']['icon'],
+ ];
+ }, $weatherData['forecast']['forecastday'][0]['hour'])
+ ]);
+ } catch (\Exception $e) {
+ Log::error('Weather API error:', [
+ 'message' => $e->getMessage(),
+ 'trace' => $e->getTraceAsString()
+ ]);
+
+ return response()->json([
+ 'success' => false,
+ 'message' => 'Gagal mengambil data cuaca',
+ 'error' => $e->getMessage()
+ ], 500);
+ }
+ }
+}
\ No newline at end of file
diff --git a/app/Http/Kernel.php b/app/Http/Kernel.php
new file mode 100644
index 0000000..db2f165
--- /dev/null
+++ b/app/Http/Kernel.php
@@ -0,0 +1,75 @@
+
+ */
+ protected $middleware = [
+ // \App\Http\Middleware\TrustHosts::class,
+ \App\Http\Middleware\TrustProxies::class,
+ \Illuminate\Http\Middleware\HandleCors::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' => [
+ \App\Http\Middleware\ApiMiddleware::class,
+ \Illuminate\Routing\Middleware\ThrottleRequests::class.':api',
+ \Illuminate\Routing\Middleware\SubstituteBindings::class,
+ \Laravel\Sanctum\Http\Middleware\EnsureFrontendRequestsAreStateful::class,
+ \App\Http\Middleware\EncryptCookies::class,
+ \Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
+ \Illuminate\Session\Middleware\StartSession::class,
+ 'throttle: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,
+ 'signed' => \Illuminate\Routing\Middleware\ValidateSignature::class,
+ 'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class,
+ 'verified' => \Illuminate\Auth\Middleware\EnsureEmailIsVerified::class,
+ 'admin' => \App\Http\Middleware\AdminMiddleware::class,
+ 'superadmin' => \App\Http\Middleware\SuperAdminMiddleware::class,
+ 'web' => \App\Http\Middleware\Authenticate::class,
+ ];
+}
diff --git a/app/Http/Middleware/AdminMiddleware.php b/app/Http/Middleware/AdminMiddleware.php
new file mode 100644
index 0000000..beaf1d3
--- /dev/null
+++ b/app/Http/Middleware/AdminMiddleware.php
@@ -0,0 +1,23 @@
+check()) {
+ $user = Auth::user();
+ if ($user && $user->tipe_pengguna === 'admin') {
+ return $next($request); // Izinkan akses jika terautentikasi dan tipe pengguna adalah admin
+ }
+ }
+
+ return redirect()->route('login')->with('error', 'Silakan login terlebih dahulu.'); // Arahkan ke halaman login jika tidak terautentikasi
+ }
+}
\ No newline at end of file
diff --git a/app/Http/Middleware/ApiMiddleware.php b/app/Http/Middleware/ApiMiddleware.php
new file mode 100644
index 0000000..a9e1c59
--- /dev/null
+++ b/app/Http/Middleware/ApiMiddleware.php
@@ -0,0 +1,17 @@
+ 'array']);
+
+ return $next($request);
+ }
+}
\ No newline at end of file
diff --git a/app/Http/Middleware/Authenticate.php b/app/Http/Middleware/Authenticate.php
new file mode 100644
index 0000000..0c620b3
--- /dev/null
+++ b/app/Http/Middleware/Authenticate.php
@@ -0,0 +1,43 @@
+expectsJson()) {
+ return route('login');
+ }
+ }
+
+ protected function authenticate($request, array $guards)
+ {
+ \Illuminate\Support\Facades\Log::info('Auth Headers:', [
+ 'Authorization' => $request->header('Authorization'),
+ 'Accept' => $request->header('Accept')
+ ]);
+ if (empty($guards)) {
+ $guards = [null];
+ }
+
+ foreach ($guards as $guard) {
+ if ($this->auth->guard($guard)->check()) {
+ return $this->auth->shouldUse($guard);
+ }
+ }
+
+ throw new AuthenticationException(
+ 'Unauthenticated.', $guards
+ );
+ }
+}
diff --git a/app/Http/Middleware/CheckForMaintenanceMode.php b/app/Http/Middleware/CheckForMaintenanceMode.php
new file mode 100644
index 0000000..fc23391
--- /dev/null
+++ b/app/Http/Middleware/CheckForMaintenanceMode.php
@@ -0,0 +1,10 @@
+check()) {
+ if ($request->ajax() || $request->wantsJson()) {
+ return response()->json([
+ 'success' => false,
+ 'message' => 'Unauthorized. Silakan login terlebih dahulu.'
+ ], 401);
+ }
+ return redirect()->route('login');
+ }
+
+ // Check if user is super admin
+ $user = Auth::guard('web')->user();
+ if ($user && $user->tipe_pengguna !== 'super admin') {
+ if ($request->ajax() || $request->wantsJson()) {
+ return response()->json([
+ 'success' => false,
+ 'message' => 'Unauthorized. Hanya Super Admin yang dapat mengakses fitur ini.'
+ ], 403);
+ }
+ return redirect()->route('dashboard')
+ ->with('error', 'Anda tidak memiliki akses ke halaman tersebut.');
+ }
+
+ return $next($request);
+ }
+}
\ No newline at end of file
diff --git a/app/Http/Middleware/TrimStrings.php b/app/Http/Middleware/TrimStrings.php
new file mode 100644
index 0000000..0dad920
--- /dev/null
+++ b/app/Http/Middleware/TrimStrings.php
@@ -0,0 +1,10 @@
+
+ */
+ protected $except = [
+ 'api/*'
+ ];
+
+ // Custom logic jika diperlukan
+}
diff --git a/app/Http/Policies/OutletPolicy.php b/app/Http/Policies/OutletPolicy.php
new file mode 100644
index 0000000..5ed0b0a
--- /dev/null
+++ b/app/Http/Policies/OutletPolicy.php
@@ -0,0 +1,63 @@
+user = $user;
+ $this->verificationUrl = $verificationUrl;
+ }
+
+ public function build()
+ {
+ $this->verificationUrl = route('email.verify', ['token' => $this->user->verification_token]);
+
+ return $this->view('emails.verification')
+ ->subject('Verifikasi Email Anda - Jaga Jalan');
+ }
+}
\ No newline at end of file
diff --git a/app/Mail/ResetPassword.php b/app/Mail/ResetPassword.php
new file mode 100644
index 0000000..ad20466
--- /dev/null
+++ b/app/Mail/ResetPassword.php
@@ -0,0 +1,27 @@
+user = $user;
+ $this->resetUrl = $resetUrl;
+ }
+
+ public function build()
+ {
+ return $this->view('emails.reset_password')
+ ->subject('Reset Password - Jaga Jalan');
+ }
+}
\ No newline at end of file
diff --git a/app/Models/Admin.php b/app/Models/Admin.php
new file mode 100644
index 0000000..4725476
--- /dev/null
+++ b/app/Models/Admin.php
@@ -0,0 +1,44 @@
+ 'datetime',
+ 'password' => 'hashed',
+ ];
+
+ public function isAdmin()
+ {
+ return $this->tipe_pengguna === 'admin';
+ }
+
+ // Accessor untuk ID
+ public function getIdAttribute()
+ {
+ return $this->attributes['id'];
+ }
+}
diff --git a/app/Models/LaporanBencana.php b/app/Models/LaporanBencana.php
new file mode 100644
index 0000000..9bf37dd
--- /dev/null
+++ b/app/Models/LaporanBencana.php
@@ -0,0 +1,39 @@
+ 'datetime',
+ 'updated_at' => 'datetime',
+ ];
+
+ public function user()
+ {
+ return $this->belongsTo(User::class);
+ }
+
+ public function admin()
+ {
+ return $this->belongsTo(Admin::class, 'user_id'); // Jika user_id bisa merujuk ke admin
+ }
+}
\ No newline at end of file
diff --git a/app/Models/LaporanJalan.php b/app/Models/LaporanJalan.php
new file mode 100644
index 0000000..5ff50de
--- /dev/null
+++ b/app/Models/LaporanJalan.php
@@ -0,0 +1,35 @@
+ 'datetime',
+ 'updated_at' => 'datetime',
+ ];
+
+ public function user()
+ {
+ return $this->belongsTo(User::class);
+ }
+}
\ No newline at end of file
diff --git a/app/Models/User.php b/app/Models/User.php
new file mode 100644
index 0000000..1431811
--- /dev/null
+++ b/app/Models/User.php
@@ -0,0 +1,83 @@
+ 'datetime',
+ 'password' => 'hashed',
+ ];
+
+ public function getJWTIdentifier()
+ {
+ return $this->getKey();
+ }
+
+ public function getJWTCustomClaims()
+ {
+ return [];
+ }
+
+ public function isAdmin()
+ {
+ return $this->tipe_pengguna === 'admin' || $this->tipe_pengguna === 'super admin';
+ }
+
+ public static function getJabatanOptions($instansi = null)
+ {
+ $jabatanOptions = [
+ 'BPBD' => [
+ 'Kepala Seksi Kedaruratan dan Logistik' => 'Bertanggung jawab atas penanganan darurat bencana.',
+ 'Operator Pusdalops (Pusat Pengendalian Operasi)' => 'Mengelola data dan sistem informasi kebencanaan.',
+ 'Staf Kedaruratan dan Rehabilitasi' => 'Memverifikasi laporan masyarakat terkait bencana.',
+ 'Koordinator Tim Reaksi Cepat (TRC)' => 'Menilai dan menindaklanjuti laporan yang masuk.'
+ ],
+ 'PUPR' => [
+ 'Kepala Bidang Bina Marga' => 'Bertanggung jawab atas pemeliharaan dan pembangunan jalan.',
+ 'Kepala Seksi Pemeliharaan Jalan dan Jembatan' => 'Menangani perbaikan jalan berlubang.',
+ 'Staf Pengawas Infrastruktur' => 'Mengevaluasi kondisi jalan berdasarkan laporan masyarakat.',
+ 'Operator GIS (Geographic Information System)' => 'Mengelola data berbasis peta (Leaflet.js).'
+ ]
+ ];
+
+ if ($instansi && isset($jabatanOptions[$instansi])) {
+ return $jabatanOptions[$instansi];
+ }
+
+ return $jabatanOptions;
+ }
+
+ public static function getInstansiOptions()
+ {
+ return ['BPBD', 'PUPR'];
+ }
+}
\ No newline at end of file
diff --git a/app/Notifications/NewLaporanBencanaNotification.php b/app/Notifications/NewLaporanBencanaNotification.php
new file mode 100644
index 0000000..62d8a3a
--- /dev/null
+++ b/app/Notifications/NewLaporanBencanaNotification.php
@@ -0,0 +1,35 @@
+laporan = $laporan;
+ }
+
+ public function via($notifiable)
+ {
+ return ['database'];
+ }
+
+ public function toDatabase($notifiable)
+ {
+ return [
+ 'message' => 'Laporan bencana baru: ' . ucfirst($this->laporan->jenis_bencana),
+ 'laporan_id' => $this->laporan->id,
+ 'lokasi' => $this->laporan->lokasi,
+ 'type' => 'bencana'
+ ];
+ }
+}
\ No newline at end of file
diff --git a/app/Notifications/NewLaporanJalanNotification.php b/app/Notifications/NewLaporanJalanNotification.php
new file mode 100644
index 0000000..63d000a
--- /dev/null
+++ b/app/Notifications/NewLaporanJalanNotification.php
@@ -0,0 +1,35 @@
+laporan = $laporan;
+ }
+
+ public function via($notifiable)
+ {
+ return ['database'];
+ }
+
+ public function toDatabase($notifiable)
+ {
+ return [
+ 'message' => 'Laporan jalan rusak baru: ' . ucfirst($this->laporan->jenis_rusak),
+ 'laporan_id' => $this->laporan->id,
+ 'lokasi' => $this->laporan->lokasi,
+ 'type' => 'jalan'
+ ];
+ }
+}
\ No newline at end of file
diff --git a/app/Providers/AppServiceProvider.php b/app/Providers/AppServiceProvider.php
new file mode 100644
index 0000000..452e6b6
--- /dev/null
+++ b/app/Providers/AppServiceProvider.php
@@ -0,0 +1,24 @@
+
+ */
+ protected $policies = [
+ // 'App\Models\Model' => 'App\Policies\ModelPolicy',
+ ];
+
+ /**
+ * Register any authentication / authorization services.
+ *
+ * @return void
+ */
+ public function boot()
+ {
+ $this->registerPolicies();
+ Auth::viaRequest('jwt', function ($request) {
+ \Illuminate\Support\Facades\Log::info('JWT Auth Check', [
+ 'token' => $request->bearerToken(),
+ 'headers' => $request->headers->all()
+ ]);
+ return null;
+ });
+ }
+}
\ No newline at end of file
diff --git a/app/Providers/BroadcastServiceProvider.php b/app/Providers/BroadcastServiceProvider.php
new file mode 100644
index 0000000..3af807a
--- /dev/null
+++ b/app/Providers/BroadcastServiceProvider.php
@@ -0,0 +1,27 @@
+ ['web', 'auth']]);
+
+ // Channel untuk notifikasi pribadi - perhatikan nama channel harus sesuai dengan di JS
+ // Pada Pusher, channel private akan otomatis ditambahkan prefix 'private-'
+ Broadcast::channel('notifications.{userId}', function ($user, $userId) {
+ return (int) $user->id === (int) $userId;
+ });
+
+ require base_path('routes/channels.php');
+ }
+}
\ No newline at end of file
diff --git a/app/Providers/EventServiceProvider.php b/app/Providers/EventServiceProvider.php
new file mode 100644
index 0000000..164c70e
--- /dev/null
+++ b/app/Providers/EventServiceProvider.php
@@ -0,0 +1,38 @@
+>
+ */
+ 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;
+ }
+}
\ No newline at end of file
diff --git a/app/Providers/RouteServiceProvider.php b/app/Providers/RouteServiceProvider.php
new file mode 100644
index 0000000..aea1aa4
--- /dev/null
+++ b/app/Providers/RouteServiceProvider.php
@@ -0,0 +1,42 @@
+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'));
+ });
+ }
+}
\ No newline at end of file
diff --git a/artisan b/artisan
new file mode 100644
index 0000000..8e04b42
--- /dev/null
+++ b/artisan
@@ -0,0 +1,15 @@
+#!/usr/bin/env php
+handleCommand(new ArgvInput);
+
+exit($status);
diff --git a/bootstrap/app.php b/bootstrap/app.php
new file mode 100644
index 0000000..d654276
--- /dev/null
+++ b/bootstrap/app.php
@@ -0,0 +1,19 @@
+withRouting(
+ web: __DIR__.'/../routes/web.php',
+ api: __DIR__.'/../routes/api.php',
+ commands: __DIR__.'/../routes/console.php',
+ health: '/up',
+ )
+ ->withMiddleware(function (Middleware $middleware) {
+ //
+ })
+ ->withExceptions(function (Exceptions $exceptions) {
+ //
+ })->create();
diff --git a/bootstrap/cache/.gitignore b/bootstrap/cache/.gitignore
new file mode 100644
index 0000000..d6b7ef3
--- /dev/null
+++ b/bootstrap/cache/.gitignore
@@ -0,0 +1,2 @@
+*
+!.gitignore
diff --git a/bootstrap/providers.php b/bootstrap/providers.php
new file mode 100644
index 0000000..38b258d
--- /dev/null
+++ b/bootstrap/providers.php
@@ -0,0 +1,5 @@
+=5.0.0"
+ },
+ "require-dev": {
+ "doctrine/dbal": "^4.0.0",
+ "nesbot/carbon": "^2.71.0 || ^3.0.0",
+ "phpunit/phpunit": "^10.3"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "KyleKatarn",
+ "email": "kylekatarnls@gmail.com"
+ }
+ ],
+ "description": "Types to use Carbon in Doctrine",
+ "keywords": [
+ "carbon",
+ "date",
+ "datetime",
+ "doctrine",
+ "time"
+ ],
+ "support": {
+ "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
+ "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/kylekatarnls",
+ "type": "github"
+ },
+ {
+ "url": "https://opencollective.com/Carbon",
+ "type": "open_collective"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-02-09T16:56:22+00:00"
+ },
+ {
+ "name": "dflydev/dot-access-data",
+ "version": "v3.0.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
+ "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
+ "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.1 || ^8.0"
+ },
+ "require-dev": {
+ "phpstan/phpstan": "^0.12.42",
+ "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
+ "scrutinizer/ocular": "1.6.0",
+ "squizlabs/php_codesniffer": "^3.5",
+ "vimeo/psalm": "^4.0.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "3.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Dflydev\\DotAccessData\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Dragonfly Development Inc.",
+ "email": "info@dflydev.com",
+ "homepage": "http://dflydev.com"
+ },
+ {
+ "name": "Beau Simensen",
+ "email": "beau@dflydev.com",
+ "homepage": "http://beausimensen.com"
+ },
+ {
+ "name": "Carlos Frutos",
+ "email": "carlos@kiwing.it",
+ "homepage": "https://github.com/cfrutos"
+ },
+ {
+ "name": "Colin O'Dell",
+ "email": "colinodell@gmail.com",
+ "homepage": "https://www.colinodell.com"
+ }
+ ],
+ "description": "Given a deep data structure, access data by dot notation.",
+ "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
+ "keywords": [
+ "access",
+ "data",
+ "dot",
+ "notation"
+ ],
+ "support": {
+ "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
+ "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
+ },
+ "time": "2024-07-08T12:26:09+00:00"
+ },
+ {
+ "name": "doctrine/inflector",
+ "version": "2.0.10",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/doctrine/inflector.git",
+ "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
+ "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2 || ^8.0"
+ },
+ "require-dev": {
+ "doctrine/coding-standard": "^11.0",
+ "phpstan/phpstan": "^1.8",
+ "phpstan/phpstan-phpunit": "^1.1",
+ "phpstan/phpstan-strict-rules": "^1.3",
+ "phpunit/phpunit": "^8.5 || ^9.5",
+ "vimeo/psalm": "^4.25 || ^5.4"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Guilherme Blanco",
+ "email": "guilhermeblanco@gmail.com"
+ },
+ {
+ "name": "Roman Borschel",
+ "email": "roman@code-factory.org"
+ },
+ {
+ "name": "Benjamin Eberlei",
+ "email": "kontakt@beberlei.de"
+ },
+ {
+ "name": "Jonathan Wage",
+ "email": "jonwage@gmail.com"
+ },
+ {
+ "name": "Johannes Schmitt",
+ "email": "schmittjoh@gmail.com"
+ }
+ ],
+ "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
+ "homepage": "https://www.doctrine-project.org/projects/inflector.html",
+ "keywords": [
+ "inflection",
+ "inflector",
+ "lowercase",
+ "manipulation",
+ "php",
+ "plural",
+ "singular",
+ "strings",
+ "uppercase",
+ "words"
+ ],
+ "support": {
+ "issues": "https://github.com/doctrine/inflector/issues",
+ "source": "https://github.com/doctrine/inflector/tree/2.0.10"
+ },
+ "funding": [
+ {
+ "url": "https://www.doctrine-project.org/sponsorship.html",
+ "type": "custom"
+ },
+ {
+ "url": "https://www.patreon.com/phpdoctrine",
+ "type": "patreon"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-02-18T20:23:39+00:00"
+ },
+ {
+ "name": "doctrine/lexer",
+ "version": "3.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/doctrine/lexer.git",
+ "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
+ "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^8.1"
+ },
+ "require-dev": {
+ "doctrine/coding-standard": "^12",
+ "phpstan/phpstan": "^1.10",
+ "phpunit/phpunit": "^10.5",
+ "psalm/plugin-phpunit": "^0.18.3",
+ "vimeo/psalm": "^5.21"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Doctrine\\Common\\Lexer\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Guilherme Blanco",
+ "email": "guilhermeblanco@gmail.com"
+ },
+ {
+ "name": "Roman Borschel",
+ "email": "roman@code-factory.org"
+ },
+ {
+ "name": "Johannes Schmitt",
+ "email": "schmittjoh@gmail.com"
+ }
+ ],
+ "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
+ "homepage": "https://www.doctrine-project.org/projects/lexer.html",
+ "keywords": [
+ "annotations",
+ "docblock",
+ "lexer",
+ "parser",
+ "php"
+ ],
+ "support": {
+ "issues": "https://github.com/doctrine/lexer/issues",
+ "source": "https://github.com/doctrine/lexer/tree/3.0.1"
+ },
+ "funding": [
+ {
+ "url": "https://www.doctrine-project.org/sponsorship.html",
+ "type": "custom"
+ },
+ {
+ "url": "https://www.patreon.com/phpdoctrine",
+ "type": "patreon"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-02-05T11:56:58+00:00"
+ },
+ {
+ "name": "dragonmantank/cron-expression",
+ "version": "v3.3.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/dragonmantank/cron-expression.git",
+ "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
+ "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
+ "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",
+ "phpstan/phpstan-webmozart-assert": "^1.0",
+ "phpunit/phpunit": "^7.0|^8.0|^9.0"
+ },
+ "type": "library",
+ "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.3.3"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/dragonmantank",
+ "type": "github"
+ }
+ ],
+ "time": "2023-08-10T19:36:49+00:00"
+ },
+ {
+ "name": "egulias/email-validator",
+ "version": "4.0.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/egulias/EmailValidator.git",
+ "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
+ "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
+ "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.2"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/egulias",
+ "type": "github"
+ }
+ ],
+ "time": "2023-10-06T06:47:41+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.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/guzzle/guzzle.git",
+ "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
+ "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
+ "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.2"
+ },
+ "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": "2024-07-24T11:22:20+00:00"
+ },
+ {
+ "name": "guzzlehttp/promises",
+ "version": "2.0.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/guzzle/promises.git",
+ "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/guzzle/promises/zipball/6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8",
+ "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8",
+ "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.0.3"
+ },
+ "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": "2024-07-18T10:29:17+00:00"
+ },
+ {
+ "name": "guzzlehttp/psr7",
+ "version": "2.7.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/guzzle/psr7.git",
+ "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
+ "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
+ "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.0"
+ },
+ "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": "2024-07-18T11:15:46+00:00"
+ },
+ {
+ "name": "guzzlehttp/uri-template",
+ "version": "v1.0.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/guzzle/uri-template.git",
+ "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/guzzle/uri-template/zipball/ecea8feef63bd4fef1f037ecb288386999ecc11c",
+ "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c",
+ "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.3"
+ },
+ "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": "2023-12-03T19:50:20+00:00"
+ },
+ {
+ "name": "intervention/gif",
+ "version": "4.2.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Intervention/gif.git",
+ "reference": "6addac2c68b4bc0e37d0d3ccedda57eb84729c49"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Intervention/gif/zipball/6addac2c68b4bc0e37d0d3ccedda57eb84729c49",
+ "reference": "6addac2c68b4bc0e37d0d3ccedda57eb84729c49",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^8.1"
+ },
+ "require-dev": {
+ "phpstan/phpstan": "^2.1",
+ "phpunit/phpunit": "^10.0 || ^11.0",
+ "slevomat/coding-standard": "~8.0",
+ "squizlabs/php_codesniffer": "^3.8"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Intervention\\Gif\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Oliver Vogel",
+ "email": "oliver@intervention.io",
+ "homepage": "https://intervention.io/"
+ }
+ ],
+ "description": "Native PHP GIF Encoder/Decoder",
+ "homepage": "https://github.com/intervention/gif",
+ "keywords": [
+ "animation",
+ "gd",
+ "gif",
+ "image"
+ ],
+ "support": {
+ "issues": "https://github.com/Intervention/gif/issues",
+ "source": "https://github.com/Intervention/gif/tree/4.2.1"
+ },
+ "funding": [
+ {
+ "url": "https://paypal.me/interventionio",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/Intervention",
+ "type": "github"
+ },
+ {
+ "url": "https://ko-fi.com/interventionphp",
+ "type": "ko_fi"
+ }
+ ],
+ "time": "2025-01-05T10:52:39+00:00"
+ },
+ {
+ "name": "intervention/image",
+ "version": "3.11.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Intervention/image.git",
+ "reference": "0f87254688e480fbb521e2a1ac6c11c784ca41af"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Intervention/image/zipball/0f87254688e480fbb521e2a1ac6c11c784ca41af",
+ "reference": "0f87254688e480fbb521e2a1ac6c11c784ca41af",
+ "shasum": ""
+ },
+ "require": {
+ "ext-mbstring": "*",
+ "intervention/gif": "^4.2",
+ "php": "^8.1"
+ },
+ "require-dev": {
+ "mockery/mockery": "^1.6",
+ "phpstan/phpstan": "^2.1",
+ "phpunit/phpunit": "^10.0 || ^11.0",
+ "slevomat/coding-standard": "~8.0",
+ "squizlabs/php_codesniffer": "^3.8"
+ },
+ "suggest": {
+ "ext-exif": "Recommended to be able to read EXIF data properly."
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Intervention\\Image\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Oliver Vogel",
+ "email": "oliver@intervention.io",
+ "homepage": "https://intervention.io/"
+ }
+ ],
+ "description": "PHP image manipulation",
+ "homepage": "https://image.intervention.io/",
+ "keywords": [
+ "gd",
+ "image",
+ "imagick",
+ "resize",
+ "thumbnail",
+ "watermark"
+ ],
+ "support": {
+ "issues": "https://github.com/Intervention/image/issues",
+ "source": "https://github.com/Intervention/image/tree/3.11.1"
+ },
+ "funding": [
+ {
+ "url": "https://paypal.me/interventionio",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/Intervention",
+ "type": "github"
+ },
+ {
+ "url": "https://ko-fi.com/interventionphp",
+ "type": "ko_fi"
+ }
+ ],
+ "time": "2025-02-01T07:28:26+00:00"
+ },
+ {
+ "name": "laravel/framework",
+ "version": "v11.19.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/laravel/framework.git",
+ "reference": "5e103d499e9ee5bcfc184412d034c4e516b87085"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/laravel/framework/zipball/5e103d499e9ee5bcfc184412d034c4e516b87085",
+ "reference": "5e103d499e9ee5bcfc184412d034c4e516b87085",
+ "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.3",
+ "guzzlehttp/guzzle": "^7.8",
+ "guzzlehttp/uri-template": "^1.0",
+ "laravel/prompts": "^0.1.18",
+ "laravel/serializable-closure": "^1.3",
+ "league/commonmark": "^2.2.1",
+ "league/flysystem": "^3.8.0",
+ "monolog/monolog": "^3.0",
+ "nesbot/carbon": "^2.72.2|^3.0",
+ "nunomaduro/termwind": "^2.0",
+ "php": "^8.2",
+ "psr/container": "^1.1.1|^2.0.1",
+ "psr/log": "^1.0|^2.0|^3.0",
+ "psr/simple-cache": "^1.0|^2.0|^3.0",
+ "ramsey/uuid": "^4.7",
+ "symfony/console": "^7.0",
+ "symfony/error-handler": "^7.0",
+ "symfony/finder": "^7.0",
+ "symfony/http-foundation": "^7.0",
+ "symfony/http-kernel": "^7.0",
+ "symfony/mailer": "^7.0",
+ "symfony/mime": "^7.0",
+ "symfony/polyfill-php83": "^1.28",
+ "symfony/process": "^7.0",
+ "symfony/routing": "^7.0",
+ "symfony/uid": "^7.0",
+ "symfony/var-dumper": "^7.0",
+ "tijsverkoyen/css-to-inline-styles": "^2.2.5",
+ "vlucas/phpdotenv": "^5.4.1",
+ "voku/portable-ascii": "^2.0"
+ },
+ "conflict": {
+ "mockery/mockery": "1.6.8",
+ "tightenco/collect": "<5.5.33"
+ },
+ "provide": {
+ "psr/container-implementation": "1.1|2.0",
+ "psr/log-implementation": "1.0|2.0|3.0",
+ "psr/simple-cache-implementation": "1.0|2.0|3.0"
+ },
+ "replace": {
+ "illuminate/auth": "self.version",
+ "illuminate/broadcasting": "self.version",
+ "illuminate/bus": "self.version",
+ "illuminate/cache": "self.version",
+ "illuminate/collections": "self.version",
+ "illuminate/conditionable": "self.version",
+ "illuminate/config": "self.version",
+ "illuminate/console": "self.version",
+ "illuminate/container": "self.version",
+ "illuminate/contracts": "self.version",
+ "illuminate/cookie": "self.version",
+ "illuminate/database": "self.version",
+ "illuminate/encryption": "self.version",
+ "illuminate/events": "self.version",
+ "illuminate/filesystem": "self.version",
+ "illuminate/hashing": "self.version",
+ "illuminate/http": "self.version",
+ "illuminate/log": "self.version",
+ "illuminate/macroable": "self.version",
+ "illuminate/mail": "self.version",
+ "illuminate/notifications": "self.version",
+ "illuminate/pagination": "self.version",
+ "illuminate/pipeline": "self.version",
+ "illuminate/process": "self.version",
+ "illuminate/queue": "self.version",
+ "illuminate/redis": "self.version",
+ "illuminate/routing": "self.version",
+ "illuminate/session": "self.version",
+ "illuminate/support": "self.version",
+ "illuminate/testing": "self.version",
+ "illuminate/translation": "self.version",
+ "illuminate/validation": "self.version",
+ "illuminate/view": "self.version",
+ "spatie/once": "*"
+ },
+ "require-dev": {
+ "ably/ably-php": "^1.0",
+ "aws/aws-sdk-php": "^3.235.5",
+ "ext-gmp": "*",
+ "fakerphp/faker": "^1.23",
+ "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.6",
+ "nyholm/psr7": "^1.2",
+ "orchestra/testbench-core": "^9.1.5",
+ "pda/pheanstalk": "^5.0",
+ "phpstan/phpstan": "^1.11.5",
+ "phpunit/phpunit": "^10.5|^11.0",
+ "predis/predis": "^2.0.2",
+ "resend/resend-php": "^0.10.0",
+ "symfony/cache": "^7.0",
+ "symfony/http-client": "^7.0",
+ "symfony/psr-http-message-bridge": "^7.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 (^7.0|^8.0).",
+ "ext-apcu": "Required to use the APC cache driver.",
+ "ext-fileinfo": "Required to use the Filesystem class.",
+ "ext-ftp": "Required to use the Flysystem FTP driver.",
+ "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
+ "ext-memcached": "Required to use the memcache cache driver.",
+ "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
+ "ext-pdo": "Required to use all database features.",
+ "ext-posix": "Required to use all features of the queue worker.",
+ "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).",
+ "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
+ "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
+ "laravel/tinker": "Required to use the tinker console command (^2.0).",
+ "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.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.6).",
+ "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
+ "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).",
+ "phpunit/phpunit": "Required to use assertions and run tests (^10.5|^11.0).",
+ "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).",
+ "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0).",
+ "symfony/cache": "Required to PSR-6 cache bridge (^7.0).",
+ "symfony/filesystem": "Required to enable support for relative symbolic links (^7.0).",
+ "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.0).",
+ "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.0).",
+ "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.0).",
+ "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.0)."
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "11.x-dev"
+ }
+ },
+ "autoload": {
+ "files": [
+ "src/Illuminate/Collections/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": "2024-07-30T15:22:41+00:00"
+ },
+ {
+ "name": "laravel/prompts",
+ "version": "v0.1.24",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/laravel/prompts.git",
+ "reference": "409b0b4305273472f3754826e68f4edbd0150149"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/laravel/prompts/zipball/409b0b4305273472f3754826e68f4edbd0150149",
+ "reference": "409b0b4305273472f3754826e68f4edbd0150149",
+ "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.24"
+ },
+ "time": "2024-06-17T13:58:22+00:00"
+ },
+ {
+ "name": "laravel/sanctum",
+ "version": "v4.0.8",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/laravel/sanctum.git",
+ "reference": "ec1dd9ddb2ab370f79dfe724a101856e0963f43c"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/laravel/sanctum/zipball/ec1dd9ddb2ab370f79dfe724a101856e0963f43c",
+ "reference": "ec1dd9ddb2ab370f79dfe724a101856e0963f43c",
+ "shasum": ""
+ },
+ "require": {
+ "ext-json": "*",
+ "illuminate/console": "^11.0|^12.0",
+ "illuminate/contracts": "^11.0|^12.0",
+ "illuminate/database": "^11.0|^12.0",
+ "illuminate/support": "^11.0|^12.0",
+ "php": "^8.2",
+ "symfony/console": "^7.0"
+ },
+ "require-dev": {
+ "mockery/mockery": "^1.6",
+ "orchestra/testbench": "^9.0|^10.0",
+ "phpstan/phpstan": "^1.10",
+ "phpunit/phpunit": "^11.3"
+ },
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "providers": [
+ "Laravel\\Sanctum\\SanctumServiceProvider"
+ ]
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Laravel\\Sanctum\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Taylor Otwell",
+ "email": "taylor@laravel.com"
+ }
+ ],
+ "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
+ "keywords": [
+ "auth",
+ "laravel",
+ "sanctum"
+ ],
+ "support": {
+ "issues": "https://github.com/laravel/sanctum/issues",
+ "source": "https://github.com/laravel/sanctum"
+ },
+ "time": "2025-01-26T19:34:36+00:00"
+ },
+ {
+ "name": "laravel/serializable-closure",
+ "version": "v1.3.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/laravel/serializable-closure.git",
+ "reference": "3dbf8a8e914634c48d389c1234552666b3d43754"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/3dbf8a8e914634c48d389c1234552666b3d43754",
+ "reference": "3dbf8a8e914634c48d389c1234552666b3d43754",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.3|^8.0"
+ },
+ "require-dev": {
+ "nesbot/carbon": "^2.61",
+ "pestphp/pest": "^1.21.3",
+ "phpstan/phpstan": "^1.8.2",
+ "symfony/var-dumper": "^5.4.11"
+ },
+ "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": "2023-11-08T14:08:06+00:00"
+ },
+ {
+ "name": "laravel/tinker",
+ "version": "v2.9.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/laravel/tinker.git",
+ "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/laravel/tinker/zipball/502e0fe3f0415d06d5db1f83a472f0f3b754bafe",
+ "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe",
+ "shasum": ""
+ },
+ "require": {
+ "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
+ "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
+ "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.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"
+ },
+ "suggest": {
+ "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.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.9.0"
+ },
+ "time": "2024-01-04T16:10:04+00:00"
+ },
+ {
+ "name": "lcobucci/clock",
+ "version": "2.2.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/lcobucci/clock.git",
+ "reference": "fb533e093fd61321bfcbac08b131ce805fe183d3"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/lcobucci/clock/zipball/fb533e093fd61321bfcbac08b131ce805fe183d3",
+ "reference": "fb533e093fd61321bfcbac08b131ce805fe183d3",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^8.0",
+ "stella-maris/clock": "^0.1.4"
+ },
+ "require-dev": {
+ "infection/infection": "^0.26",
+ "lcobucci/coding-standard": "^8.0",
+ "phpstan/extension-installer": "^1.1",
+ "phpstan/phpstan": "^0.12",
+ "phpstan/phpstan-deprecation-rules": "^0.12",
+ "phpstan/phpstan-phpunit": "^0.12",
+ "phpstan/phpstan-strict-rules": "^0.12",
+ "phpunit/phpunit": "^9.5"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Lcobucci\\Clock\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Luís Cobucci",
+ "email": "lcobucci@gmail.com"
+ }
+ ],
+ "description": "Yet another clock abstraction",
+ "support": {
+ "issues": "https://github.com/lcobucci/clock/issues",
+ "source": "https://github.com/lcobucci/clock/tree/2.2.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/lcobucci",
+ "type": "github"
+ },
+ {
+ "url": "https://www.patreon.com/lcobucci",
+ "type": "patreon"
+ }
+ ],
+ "time": "2022-04-19T19:34:17+00:00"
+ },
+ {
+ "name": "lcobucci/jwt",
+ "version": "4.0.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/lcobucci/jwt.git",
+ "reference": "55564265fddf810504110bd68ca311932324b0e9"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/lcobucci/jwt/zipball/55564265fddf810504110bd68ca311932324b0e9",
+ "reference": "55564265fddf810504110bd68ca311932324b0e9",
+ "shasum": ""
+ },
+ "require": {
+ "ext-mbstring": "*",
+ "ext-openssl": "*",
+ "lcobucci/clock": "^2.0",
+ "php": "^7.4 || ^8.0"
+ },
+ "require-dev": {
+ "infection/infection": "^0.20",
+ "lcobucci/coding-standard": "^6.0",
+ "mikey179/vfsstream": "^1.6",
+ "phpbench/phpbench": "^0.17",
+ "phpstan/extension-installer": "^1.0",
+ "phpstan/phpstan": "^0.12",
+ "phpstan/phpstan-deprecation-rules": "^0.12",
+ "phpstan/phpstan-phpunit": "^0.12",
+ "phpstan/phpstan-strict-rules": "^0.12",
+ "phpunit/php-invoker": "^3.1",
+ "phpunit/phpunit": "^9.4"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "4.0-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Lcobucci\\JWT\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Luís Cobucci",
+ "email": "lcobucci@gmail.com",
+ "role": "Developer"
+ }
+ ],
+ "description": "A simple library to work with JSON Web Token and JSON Web Signature",
+ "keywords": [
+ "JWS",
+ "jwt"
+ ],
+ "support": {
+ "issues": "https://github.com/lcobucci/jwt/issues",
+ "source": "https://github.com/lcobucci/jwt/tree/4.0.4"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/lcobucci",
+ "type": "github"
+ },
+ {
+ "url": "https://www.patreon.com/lcobucci",
+ "type": "patreon"
+ }
+ ],
+ "time": "2021-09-28T19:18:28+00:00"
+ },
+ {
+ "name": "league/commonmark",
+ "version": "2.5.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/thephpleague/commonmark.git",
+ "reference": "ac815920de0eff6de947eac0a6a94e5ed0fb147c"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/ac815920de0eff6de947eac0a6a94e5ed0fb147c",
+ "reference": "ac815920de0eff6de947eac0a6a94e5ed0fb147c",
+ "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.0",
+ "commonmark/commonmark.js": "0.31.0",
+ "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/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.6-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": "2024-07-24T12:52:09+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.28.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/thephpleague/flysystem.git",
+ "reference": "e611adab2b1ae2e3072fa72d62c62f52c2bf1f0c"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/e611adab2b1ae2e3072fa72d62c62f52c2bf1f0c",
+ "reference": "e611adab2b1ae2e3072fa72d62c62f52c2bf1f0c",
+ "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.28.0"
+ },
+ "time": "2024-05-22T10:09:12+00:00"
+ },
+ {
+ "name": "league/flysystem-local",
+ "version": "3.28.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/thephpleague/flysystem-local.git",
+ "reference": "13f22ea8be526ea58c2ddff9e158ef7c296e4f40"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/13f22ea8be526ea58c2ddff9e158ef7c296e4f40",
+ "reference": "13f22ea8be526ea58c2ddff9e158ef7c296e4f40",
+ "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.28.0"
+ },
+ "time": "2024-05-06T20:05:52+00:00"
+ },
+ {
+ "name": "league/mime-type-detection",
+ "version": "1.15.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/thephpleague/mime-type-detection.git",
+ "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
+ "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
+ "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.15.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/frankdejonge",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-01-28T23:22:08+00:00"
+ },
+ {
+ "name": "monolog/monolog",
+ "version": "3.7.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Seldaek/monolog.git",
+ "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f4393b648b78a5408747de94fca38beb5f7e9ef8",
+ "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8",
+ "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",
+ "phpstan/phpstan": "^1.9",
+ "phpstan/phpstan-deprecation-rules": "^1.0",
+ "phpstan/phpstan-strict-rules": "^1.4",
+ "phpunit/phpunit": "^10.5.17",
+ "predis/predis": "^1.1 || ^2",
+ "ruflin/elastica": "^7",
+ "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.7.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/Seldaek",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-06-28T09:40:51+00:00"
+ },
+ {
+ "name": "nesbot/carbon",
+ "version": "3.7.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/briannesbitt/Carbon.git",
+ "reference": "cb4374784c87d0a0294e8513a52eb63c0aff3139"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/cb4374784c87d0a0294e8513a52eb63c0aff3139",
+ "reference": "cb4374784c87d0a0294e8513a52eb63c0aff3139",
+ "shasum": ""
+ },
+ "require": {
+ "carbonphp/carbon-doctrine-types": "*",
+ "ext-json": "*",
+ "php": "^8.1",
+ "psr/clock": "^1.0",
+ "symfony/clock": "^6.3 || ^7.0",
+ "symfony/polyfill-mbstring": "^1.0",
+ "symfony/translation": "^4.4.18 || ^5.2.1|| ^6.0 || ^7.0"
+ },
+ "provide": {
+ "psr/clock-implementation": "1.0"
+ },
+ "require-dev": {
+ "doctrine/dbal": "^3.6.3 || ^4.0",
+ "doctrine/orm": "^2.15.2 || ^3.0",
+ "friendsofphp/php-cs-fixer": "^3.57.2",
+ "kylekatarnls/multi-tester": "^2.5.3",
+ "ondrejmirtes/better-reflection": "^6.25.0.4",
+ "phpmd/phpmd": "^2.15.0",
+ "phpstan/extension-installer": "^1.3.1",
+ "phpstan/phpstan": "^1.11.2",
+ "phpunit/phpunit": "^10.5.20",
+ "squizlabs/php_codesniffer": "^3.9.0"
+ },
+ "bin": [
+ "bin/carbon"
+ ],
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.x-dev",
+ "dev-2.x": "2.x-dev"
+ },
+ "laravel": {
+ "providers": [
+ "Carbon\\Laravel\\ServiceProvider"
+ ]
+ },
+ "phpstan": {
+ "includes": [
+ "extension.neon"
+ ]
+ }
+ },
+ "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": "2024-07-16T22:29:20+00:00"
+ },
+ {
+ "name": "nette/schema",
+ "version": "v1.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/nette/schema.git",
+ "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/nette/schema/zipball/a6d3a6d1f545f01ef38e60f375d1cf1f4de98188",
+ "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188",
+ "shasum": ""
+ },
+ "require": {
+ "nette/utils": "^4.0",
+ "php": "8.1 - 8.3"
+ },
+ "require-dev": {
+ "nette/tester": "^2.4",
+ "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.0"
+ },
+ "time": "2023-12-11T11:54:22+00:00"
+ },
+ {
+ "name": "nette/utils",
+ "version": "v4.0.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/nette/utils.git",
+ "reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/nette/utils/zipball/d3ad0aa3b9f934602cb3e3902ebccf10be34d218",
+ "reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218",
+ "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.4"
+ },
+ "time": "2024-01-17T16:50:36+00:00"
+ },
+ {
+ "name": "nikic/php-parser",
+ "version": "v5.1.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/nikic/PHP-Parser.git",
+ "reference": "683130c2ff8c2739f4822ff7ac5c873ec529abd1"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/683130c2ff8c2739f4822ff7ac5c873ec529abd1",
+ "reference": "683130c2ff8c2739f4822ff7ac5c873ec529abd1",
+ "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.1.0"
+ },
+ "time": "2024-07-01T20:03:41+00:00"
+ },
+ {
+ "name": "nunomaduro/termwind",
+ "version": "v2.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/nunomaduro/termwind.git",
+ "reference": "58c4c58cf23df7f498daeb97092e34f5259feb6a"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/58c4c58cf23df7f498daeb97092e34f5259feb6a",
+ "reference": "58c4c58cf23df7f498daeb97092e34f5259feb6a",
+ "shasum": ""
+ },
+ "require": {
+ "ext-mbstring": "*",
+ "php": "^8.2",
+ "symfony/console": "^7.0.4"
+ },
+ "require-dev": {
+ "ergebnis/phpstan-rules": "^2.2.0",
+ "illuminate/console": "^11.0.0",
+ "laravel/pint": "^1.14.0",
+ "mockery/mockery": "^1.6.7",
+ "pestphp/pest": "^2.34.1",
+ "phpstan/phpstan": "^1.10.59",
+ "phpstan/phpstan-strict-rules": "^1.5.2",
+ "symfony/var-dumper": "^7.0.4",
+ "thecodingmachine/phpstan-strict-rules": "^1.0.0"
+ },
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "providers": [
+ "Termwind\\Laravel\\TermwindServiceProvider"
+ ]
+ },
+ "branch-alias": {
+ "dev-2.x": "2.x-dev"
+ }
+ },
+ "autoload": {
+ "files": [
+ "src/Functions.php"
+ ],
+ "psr-4": {
+ "Termwind\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nuno Maduro",
+ "email": "enunomaduro@gmail.com"
+ }
+ ],
+ "description": "Its like Tailwind CSS, but for the console.",
+ "keywords": [
+ "cli",
+ "console",
+ "css",
+ "package",
+ "php",
+ "style"
+ ],
+ "support": {
+ "issues": "https://github.com/nunomaduro/termwind/issues",
+ "source": "https://github.com/nunomaduro/termwind/tree/v2.0.1"
+ },
+ "funding": [
+ {
+ "url": "https://www.paypal.com/paypalme/enunomaduro",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/nunomaduro",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/xiCO2k",
+ "type": "github"
+ }
+ ],
+ "time": "2024-03-06T16:17:14+00:00"
+ },
+ {
+ "name": "paragonie/sodium_compat",
+ "version": "v2.1.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/paragonie/sodium_compat.git",
+ "reference": "a673d5f310477027cead2e2f2b6db5d8368157cb"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/a673d5f310477027cead2e2f2b6db5d8368157cb",
+ "reference": "a673d5f310477027cead2e2f2b6db5d8368157cb",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^8.1",
+ "php-64bit": "*"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^7|^8|^9",
+ "vimeo/psalm": "^4|^5"
+ },
+ "suggest": {
+ "ext-sodium": "Better performance, password hashing (Argon2i), secure memory management (memzero), and better security."
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.0.x-dev"
+ }
+ },
+ "autoload": {
+ "files": [
+ "autoload.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "ISC"
+ ],
+ "authors": [
+ {
+ "name": "Paragon Initiative Enterprises",
+ "email": "security@paragonie.com"
+ },
+ {
+ "name": "Frank Denis",
+ "email": "jedisct1@pureftpd.org"
+ }
+ ],
+ "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists",
+ "keywords": [
+ "Authentication",
+ "BLAKE2b",
+ "ChaCha20",
+ "ChaCha20-Poly1305",
+ "Chapoly",
+ "Curve25519",
+ "Ed25519",
+ "EdDSA",
+ "Edwards-curve Digital Signature Algorithm",
+ "Elliptic Curve Diffie-Hellman",
+ "Poly1305",
+ "Pure-PHP cryptography",
+ "RFC 7748",
+ "RFC 8032",
+ "Salpoly",
+ "Salsa20",
+ "X25519",
+ "XChaCha20-Poly1305",
+ "XSalsa20-Poly1305",
+ "Xchacha20",
+ "Xsalsa20",
+ "aead",
+ "cryptography",
+ "ecdh",
+ "elliptic curve",
+ "elliptic curve cryptography",
+ "encryption",
+ "libsodium",
+ "php",
+ "public-key cryptography",
+ "secret-key cryptography",
+ "side-channel resistant"
+ ],
+ "support": {
+ "issues": "https://github.com/paragonie/sodium_compat/issues",
+ "source": "https://github.com/paragonie/sodium_compat/tree/v2.1.0"
+ },
+ "time": "2024-09-04T12:51:01+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.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/log.git",
+ "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
+ "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
+ "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.0"
+ },
+ "time": "2021-07-14T16:46:02+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.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/bobthecow/psysh.git",
+ "reference": "2fd717afa05341b4f8152547f142cd2f130f6818"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/bobthecow/psysh/zipball/2fd717afa05341b4f8152547f142cd2f130f6818",
+ "reference": "2fd717afa05341b4f8152547f142cd2f130f6818",
+ "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": {
+ "branch-alias": {
+ "dev-main": "0.12.x-dev"
+ },
+ "bamarni-bin": {
+ "bin-links": false,
+ "forward-command": false
+ }
+ },
+ "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.4"
+ },
+ "time": "2024-06-10T01:18:23+00:00"
+ },
+ {
+ "name": "pusher/pusher-php-server",
+ "version": "7.2.7",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/pusher/pusher-http-php.git",
+ "reference": "148b0b5100d000ed57195acdf548a2b1b38ee3f7"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/pusher/pusher-http-php/zipball/148b0b5100d000ed57195acdf548a2b1b38ee3f7",
+ "reference": "148b0b5100d000ed57195acdf548a2b1b38ee3f7",
+ "shasum": ""
+ },
+ "require": {
+ "ext-curl": "*",
+ "ext-json": "*",
+ "guzzlehttp/guzzle": "^7.2",
+ "paragonie/sodium_compat": "^1.6|^2.0",
+ "php": "^7.3|^8.0",
+ "psr/log": "^1.0|^2.0|^3.0"
+ },
+ "require-dev": {
+ "overtrue/phplint": "^2.3",
+ "phpunit/phpunit": "^9.3"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "5.0-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Pusher\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "description": "Library for interacting with the Pusher REST API",
+ "keywords": [
+ "events",
+ "messaging",
+ "php-pusher-server",
+ "publish",
+ "push",
+ "pusher",
+ "real time",
+ "real-time",
+ "realtime",
+ "rest",
+ "trigger"
+ ],
+ "support": {
+ "issues": "https://github.com/pusher/pusher-http-php/issues",
+ "source": "https://github.com/pusher/pusher-http-php/tree/7.2.7"
+ },
+ "time": "2025-01-06T10:56:20+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.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/ramsey/collection.git",
+ "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
+ "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^8.1"
+ },
+ "require-dev": {
+ "captainhook/plugin-composer": "^5.3",
+ "ergebnis/composer-normalize": "^2.28.3",
+ "fakerphp/faker": "^1.21",
+ "hamcrest/hamcrest-php": "^2.0",
+ "jangregor/phpstan-prophecy": "^1.0",
+ "mockery/mockery": "^1.5",
+ "php-parallel-lint/php-console-highlighter": "^1.0",
+ "php-parallel-lint/php-parallel-lint": "^1.3",
+ "phpcsstandards/phpcsutils": "^1.0.0-rc1",
+ "phpspec/prophecy-phpunit": "^2.0",
+ "phpstan/extension-installer": "^1.2",
+ "phpstan/phpstan": "^1.9",
+ "phpstan/phpstan-mockery": "^1.1",
+ "phpstan/phpstan-phpunit": "^1.3",
+ "phpunit/phpunit": "^9.5",
+ "psalm/plugin-mockery": "^1.1",
+ "psalm/plugin-phpunit": "^0.18.4",
+ "ramsey/coding-standard": "^2.0.3",
+ "ramsey/conventional-commits": "^1.3",
+ "vimeo/psalm": "^5.4"
+ },
+ "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.0.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/ramsey",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2022-12-31T21:50:55+00:00"
+ },
+ {
+ "name": "ramsey/uuid",
+ "version": "4.7.6",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/ramsey/uuid.git",
+ "reference": "91039bc1faa45ba123c4328958e620d382ec7088"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088",
+ "reference": "91039bc1faa45ba123c4328958e620d382ec7088",
+ "shasum": ""
+ },
+ "require": {
+ "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12",
+ "ext-json": "*",
+ "php": "^8.0",
+ "ramsey/collection": "^1.2 || ^2.0"
+ },
+ "replace": {
+ "rhumsaa/uuid": "self.version"
+ },
+ "require-dev": {
+ "captainhook/captainhook": "^5.10",
+ "captainhook/plugin-composer": "^5.3",
+ "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
+ "doctrine/annotations": "^1.8",
+ "ergebnis/composer-normalize": "^2.15",
+ "mockery/mockery": "^1.3",
+ "paragonie/random-lib": "^2",
+ "php-mock/php-mock": "^2.2",
+ "php-mock/php-mock-mockery": "^1.3",
+ "php-parallel-lint/php-parallel-lint": "^1.1",
+ "phpbench/phpbench": "^1.0",
+ "phpstan/extension-installer": "^1.1",
+ "phpstan/phpstan": "^1.8",
+ "phpstan/phpstan-mockery": "^1.1",
+ "phpstan/phpstan-phpunit": "^1.1",
+ "phpunit/phpunit": "^8.5 || ^9",
+ "ramsey/composer-repl": "^1.4",
+ "slevomat/coding-standard": "^8.4",
+ "squizlabs/php_codesniffer": "^3.5",
+ "vimeo/psalm": "^4.9"
+ },
+ "suggest": {
+ "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
+ "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
+ "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
+ "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
+ "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
+ },
+ "type": "library",
+ "extra": {
+ "captainhook": {
+ "force-install": true
+ }
+ },
+ "autoload": {
+ "files": [
+ "src/functions.php"
+ ],
+ "psr-4": {
+ "Ramsey\\Uuid\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
+ "keywords": [
+ "guid",
+ "identifier",
+ "uuid"
+ ],
+ "support": {
+ "issues": "https://github.com/ramsey/uuid/issues",
+ "source": "https://github.com/ramsey/uuid/tree/4.7.6"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/ramsey",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-04-27T21:32:50+00:00"
+ },
+ {
+ "name": "stella-maris/clock",
+ "version": "0.1.7",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/stella-maris-solutions/clock.git",
+ "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/stella-maris-solutions/clock/zipball/fa23ce16019289a18bb3446fdecd45befcdd94f8",
+ "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.0|^8.0",
+ "psr/clock": "^1.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "StellaMaris\\Clock\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Andreas Heigl",
+ "role": "Maintainer"
+ }
+ ],
+ "description": "A pre-release of the proposed PSR-20 Clock-Interface",
+ "homepage": "https://gitlab.com/stella-maris/clock",
+ "keywords": [
+ "clock",
+ "datetime",
+ "point in time",
+ "psr20"
+ ],
+ "support": {
+ "source": "https://github.com/stella-maris-solutions/clock/tree/0.1.7"
+ },
+ "time": "2022-11-25T16:15:06+00:00"
+ },
+ {
+ "name": "symfony/clock",
+ "version": "v7.1.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/clock.git",
+ "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/clock/zipball/3dfc8b084853586de51dd1441c6242c76a28cbe7",
+ "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2",
+ "psr/clock": "^1.0",
+ "symfony/polyfill-php83": "^1.28"
+ },
+ "provide": {
+ "psr/clock-implementation": "1.0"
+ },
+ "type": "library",
+ "autoload": {
+ "files": [
+ "Resources/now.php"
+ ],
+ "psr-4": {
+ "Symfony\\Component\\Clock\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Decouples applications from the system clock",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "clock",
+ "psr20",
+ "time"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/clock/tree/v7.1.1"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-05-31T14:57:53+00:00"
+ },
+ {
+ "name": "symfony/console",
+ "version": "v7.1.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/console.git",
+ "reference": "cb1dcb30ebc7005c29864ee78adb47b5fb7c3cd9"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/console/zipball/cb1dcb30ebc7005c29864ee78adb47b5fb7c3cd9",
+ "reference": "cb1dcb30ebc7005c29864ee78adb47b5fb7c3cd9",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2",
+ "symfony/polyfill-mbstring": "~1.0",
+ "symfony/service-contracts": "^2.5|^3",
+ "symfony/string": "^6.4|^7.0"
+ },
+ "conflict": {
+ "symfony/dependency-injection": "<6.4",
+ "symfony/dotenv": "<6.4",
+ "symfony/event-dispatcher": "<6.4",
+ "symfony/lock": "<6.4",
+ "symfony/process": "<6.4"
+ },
+ "provide": {
+ "psr/log-implementation": "1.0|2.0|3.0"
+ },
+ "require-dev": {
+ "psr/log": "^1|^2|^3",
+ "symfony/config": "^6.4|^7.0",
+ "symfony/dependency-injection": "^6.4|^7.0",
+ "symfony/event-dispatcher": "^6.4|^7.0",
+ "symfony/http-foundation": "^6.4|^7.0",
+ "symfony/http-kernel": "^6.4|^7.0",
+ "symfony/lock": "^6.4|^7.0",
+ "symfony/messenger": "^6.4|^7.0",
+ "symfony/process": "^6.4|^7.0",
+ "symfony/stopwatch": "^6.4|^7.0",
+ "symfony/var-dumper": "^6.4|^7.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Console\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Eases the creation of beautiful and testable command line interfaces",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "cli",
+ "command-line",
+ "console",
+ "terminal"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/console/tree/v7.1.3"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-07-26T12:41:01+00:00"
+ },
+ {
+ "name": "symfony/css-selector",
+ "version": "v7.1.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/css-selector.git",
+ "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/css-selector/zipball/1c7cee86c6f812896af54434f8ce29c8d94f9ff4",
+ "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4",
+ "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.1.1"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-05-31T14:57:53+00:00"
+ },
+ {
+ "name": "symfony/deprecation-contracts",
+ "version": "v3.5.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/deprecation-contracts.git",
+ "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
+ "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "3.5-dev"
+ },
+ "thanks": {
+ "name": "symfony/contracts",
+ "url": "https://github.com/symfony/contracts"
+ }
+ },
+ "autoload": {
+ "files": [
+ "function.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "A generic function and convention to trigger deprecation notices",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.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-04-18T09:32:20+00:00"
+ },
+ {
+ "name": "symfony/error-handler",
+ "version": "v7.1.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/error-handler.git",
+ "reference": "432bb369952795c61ca1def65e078c4a80dad13c"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/error-handler/zipball/432bb369952795c61ca1def65e078c4a80dad13c",
+ "reference": "432bb369952795c61ca1def65e078c4a80dad13c",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2",
+ "psr/log": "^1|^2|^3",
+ "symfony/var-dumper": "^6.4|^7.0"
+ },
+ "conflict": {
+ "symfony/deprecation-contracts": "<2.5",
+ "symfony/http-kernel": "<6.4"
+ },
+ "require-dev": {
+ "symfony/deprecation-contracts": "^2.5|^3",
+ "symfony/http-kernel": "^6.4|^7.0",
+ "symfony/serializer": "^6.4|^7.0"
+ },
+ "bin": [
+ "Resources/bin/patch-type-declarations"
+ ],
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\ErrorHandler\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Provides tools to manage errors and ease debugging PHP code",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/error-handler/tree/v7.1.3"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-07-26T13:02:51+00:00"
+ },
+ {
+ "name": "symfony/event-dispatcher",
+ "version": "v7.1.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/event-dispatcher.git",
+ "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
+ "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
+ "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.1.1"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-05-31T14:57:53+00:00"
+ },
+ {
+ "name": "symfony/event-dispatcher-contracts",
+ "version": "v3.5.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/event-dispatcher-contracts.git",
+ "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
+ "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1",
+ "psr/event-dispatcher": "^1"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "3.5-dev"
+ },
+ "thanks": {
+ "name": "symfony/contracts",
+ "url": "https://github.com/symfony/contracts"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Contracts\\EventDispatcher\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Generic abstractions related to dispatching event",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "abstractions",
+ "contracts",
+ "decoupling",
+ "interfaces",
+ "interoperability",
+ "standards"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.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-04-18T09:32:20+00:00"
+ },
+ {
+ "name": "symfony/finder",
+ "version": "v7.1.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/finder.git",
+ "reference": "717c6329886f32dc65e27461f80f2a465412fdca"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/finder/zipball/717c6329886f32dc65e27461f80f2a465412fdca",
+ "reference": "717c6329886f32dc65e27461f80f2a465412fdca",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2"
+ },
+ "require-dev": {
+ "symfony/filesystem": "^6.4|^7.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Finder\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Finds files and directories via an intuitive fluent interface",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/finder/tree/v7.1.3"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-07-24T07:08:44+00:00"
+ },
+ {
+ "name": "symfony/http-foundation",
+ "version": "v7.1.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/http-foundation.git",
+ "reference": "f602d5c17d1fa02f8019ace2687d9d136b7f4a1a"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/http-foundation/zipball/f602d5c17d1fa02f8019ace2687d9d136b7f4a1a",
+ "reference": "f602d5c17d1fa02f8019ace2687d9d136b7f4a1a",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2",
+ "symfony/polyfill-mbstring": "~1.1",
+ "symfony/polyfill-php83": "^1.27"
+ },
+ "conflict": {
+ "doctrine/dbal": "<3.6",
+ "symfony/cache": "<6.4"
+ },
+ "require-dev": {
+ "doctrine/dbal": "^3.6|^4",
+ "predis/predis": "^1.1|^2.0",
+ "symfony/cache": "^6.4|^7.0",
+ "symfony/dependency-injection": "^6.4|^7.0",
+ "symfony/expression-language": "^6.4|^7.0",
+ "symfony/http-kernel": "^6.4|^7.0",
+ "symfony/mime": "^6.4|^7.0",
+ "symfony/rate-limiter": "^6.4|^7.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\HttpFoundation\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Defines an object-oriented layer for the HTTP specification",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/http-foundation/tree/v7.1.3"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-07-26T12:41:01+00:00"
+ },
+ {
+ "name": "symfony/http-kernel",
+ "version": "v7.1.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/http-kernel.git",
+ "reference": "db9702f3a04cc471ec8c70e881825db26ac5f186"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/http-kernel/zipball/db9702f3a04cc471ec8c70e881825db26ac5f186",
+ "reference": "db9702f3a04cc471ec8c70e881825db26ac5f186",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2",
+ "psr/log": "^1|^2|^3",
+ "symfony/deprecation-contracts": "^2.5|^3",
+ "symfony/error-handler": "^6.4|^7.0",
+ "symfony/event-dispatcher": "^6.4|^7.0",
+ "symfony/http-foundation": "^6.4|^7.0",
+ "symfony/polyfill-ctype": "^1.8"
+ },
+ "conflict": {
+ "symfony/browser-kit": "<6.4",
+ "symfony/cache": "<6.4",
+ "symfony/config": "<6.4",
+ "symfony/console": "<6.4",
+ "symfony/dependency-injection": "<6.4",
+ "symfony/doctrine-bridge": "<6.4",
+ "symfony/form": "<6.4",
+ "symfony/http-client": "<6.4",
+ "symfony/http-client-contracts": "<2.5",
+ "symfony/mailer": "<6.4",
+ "symfony/messenger": "<6.4",
+ "symfony/translation": "<6.4",
+ "symfony/translation-contracts": "<2.5",
+ "symfony/twig-bridge": "<6.4",
+ "symfony/validator": "<6.4",
+ "symfony/var-dumper": "<6.4",
+ "twig/twig": "<3.0.4"
+ },
+ "provide": {
+ "psr/log-implementation": "1.0|2.0|3.0"
+ },
+ "require-dev": {
+ "psr/cache": "^1.0|^2.0|^3.0",
+ "symfony/browser-kit": "^6.4|^7.0",
+ "symfony/clock": "^6.4|^7.0",
+ "symfony/config": "^6.4|^7.0",
+ "symfony/console": "^6.4|^7.0",
+ "symfony/css-selector": "^6.4|^7.0",
+ "symfony/dependency-injection": "^6.4|^7.0",
+ "symfony/dom-crawler": "^6.4|^7.0",
+ "symfony/expression-language": "^6.4|^7.0",
+ "symfony/finder": "^6.4|^7.0",
+ "symfony/http-client-contracts": "^2.5|^3",
+ "symfony/process": "^6.4|^7.0",
+ "symfony/property-access": "^7.1",
+ "symfony/routing": "^6.4|^7.0",
+ "symfony/serializer": "^7.1",
+ "symfony/stopwatch": "^6.4|^7.0",
+ "symfony/translation": "^6.4|^7.0",
+ "symfony/translation-contracts": "^2.5|^3",
+ "symfony/uid": "^6.4|^7.0",
+ "symfony/validator": "^6.4|^7.0",
+ "symfony/var-dumper": "^6.4|^7.0",
+ "symfony/var-exporter": "^6.4|^7.0",
+ "twig/twig": "^3.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/v7.1.3"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-07-26T14:58:15+00:00"
+ },
+ {
+ "name": "symfony/mailer",
+ "version": "v7.1.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/mailer.git",
+ "reference": "8fcff0af9043c8f8a8e229437cea363e282f9aee"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/mailer/zipball/8fcff0af9043c8f8a8e229437cea363e282f9aee",
+ "reference": "8fcff0af9043c8f8a8e229437cea363e282f9aee",
+ "shasum": ""
+ },
+ "require": {
+ "egulias/email-validator": "^2.1.10|^3|^4",
+ "php": ">=8.2",
+ "psr/event-dispatcher": "^1",
+ "psr/log": "^1|^2|^3",
+ "symfony/event-dispatcher": "^6.4|^7.0",
+ "symfony/mime": "^6.4|^7.0",
+ "symfony/service-contracts": "^2.5|^3"
+ },
+ "conflict": {
+ "symfony/http-client-contracts": "<2.5",
+ "symfony/http-kernel": "<6.4",
+ "symfony/messenger": "<6.4",
+ "symfony/mime": "<6.4",
+ "symfony/twig-bridge": "<6.4"
+ },
+ "require-dev": {
+ "symfony/console": "^6.4|^7.0",
+ "symfony/http-client": "^6.4|^7.0",
+ "symfony/messenger": "^6.4|^7.0",
+ "symfony/twig-bridge": "^6.4|^7.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Mailer\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Helps sending emails",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/mailer/tree/v7.1.2"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-06-28T08:00:31+00:00"
+ },
+ {
+ "name": "symfony/mime",
+ "version": "v7.1.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/mime.git",
+ "reference": "26a00b85477e69a4bab63b66c5dce64f18b0cbfc"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/mime/zipball/26a00b85477e69a4bab63b66c5dce64f18b0cbfc",
+ "reference": "26a00b85477e69a4bab63b66c5dce64f18b0cbfc",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2",
+ "symfony/polyfill-intl-idn": "^1.10",
+ "symfony/polyfill-mbstring": "^1.0"
+ },
+ "conflict": {
+ "egulias/email-validator": "~3.0.0",
+ "phpdocumentor/reflection-docblock": "<3.2.2",
+ "phpdocumentor/type-resolver": "<1.4.0",
+ "symfony/mailer": "<6.4",
+ "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
+ },
+ "require-dev": {
+ "egulias/email-validator": "^2.1.10|^3.1|^4",
+ "league/html-to-markdown": "^5.0",
+ "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
+ "symfony/dependency-injection": "^6.4|^7.0",
+ "symfony/process": "^6.4|^7.0",
+ "symfony/property-access": "^6.4|^7.0",
+ "symfony/property-info": "^6.4|^7.0",
+ "symfony/serializer": "^6.4.3|^7.0.3"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Mime\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Allows manipulating MIME messages",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "mime",
+ "mime-type"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/mime/tree/v7.1.2"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-06-28T10:03:55+00:00"
+ },
+ {
+ "name": "symfony/polyfill-ctype",
+ "version": "v1.30.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-ctype.git",
+ "reference": "0424dff1c58f028c451efff2045f5d92410bd540"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/0424dff1c58f028c451efff2045f5d92410bd540",
+ "reference": "0424dff1c58f028c451efff2045f5d92410bd540",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "provide": {
+ "ext-ctype": "*"
+ },
+ "suggest": {
+ "ext-ctype": "For best performance"
+ },
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/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.30.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-05-31T15:07:36+00:00"
+ },
+ {
+ "name": "symfony/polyfill-intl-grapheme",
+ "version": "v1.30.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
+ "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/64647a7c30b2283f5d49b874d84a18fc22054b7a",
+ "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "suggest": {
+ "ext-intl": "For best performance"
+ },
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/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.30.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-05-31T15:07:36+00:00"
+ },
+ {
+ "name": "symfony/polyfill-intl-idn",
+ "version": "v1.30.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-intl-idn.git",
+ "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a6e83bdeb3c84391d1dfe16f42e40727ce524a5c",
+ "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1",
+ "symfony/polyfill-intl-normalizer": "^1.10",
+ "symfony/polyfill-php72": "^1.10"
+ },
+ "suggest": {
+ "ext-intl": "For best performance"
+ },
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/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.30.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-05-31T15:07:36+00:00"
+ },
+ {
+ "name": "symfony/polyfill-intl-normalizer",
+ "version": "v1.30.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
+ "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/a95281b0be0d9ab48050ebd988b967875cdb9fdb",
+ "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "suggest": {
+ "ext-intl": "For best performance"
+ },
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/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.30.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-05-31T15:07:36+00:00"
+ },
+ {
+ "name": "symfony/polyfill-mbstring",
+ "version": "v1.30.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-mbstring.git",
+ "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fd22ab50000ef01661e2a31d850ebaa297f8e03c",
+ "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "provide": {
+ "ext-mbstring": "*"
+ },
+ "suggest": {
+ "ext-mbstring": "For best performance"
+ },
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/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.30.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-06-19T12:30:46+00:00"
+ },
+ {
+ "name": "symfony/polyfill-php72",
+ "version": "v1.30.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-php72.git",
+ "reference": "10112722600777e02d2745716b70c5db4ca70442"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/10112722600777e02d2745716b70c5db4ca70442",
+ "reference": "10112722600777e02d2745716b70c5db4ca70442",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
+ "psr-4": {
+ "Symfony\\Polyfill\\Php72\\": ""
+ }
+ },
+ "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 7.2+ features to lower PHP versions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-php72/tree/v1.30.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-06-19T12:30:46+00:00"
+ },
+ {
+ "name": "symfony/polyfill-php80",
+ "version": "v1.30.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-php80.git",
+ "reference": "77fa7995ac1b21ab60769b7323d600a991a90433"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/77fa7995ac1b21ab60769b7323d600a991a90433",
+ "reference": "77fa7995ac1b21ab60769b7323d600a991a90433",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/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.30.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-05-31T15:07:36+00:00"
+ },
+ {
+ "name": "symfony/polyfill-php83",
+ "version": "v1.30.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-php83.git",
+ "reference": "dbdcdf1a4dcc2743591f1079d0c35ab1e2dcbbc9"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/dbdcdf1a4dcc2743591f1079d0c35ab1e2dcbbc9",
+ "reference": "dbdcdf1a4dcc2743591f1079d0c35ab1e2dcbbc9",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/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.30.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-06-19T12:35:24+00:00"
+ },
+ {
+ "name": "symfony/polyfill-uuid",
+ "version": "v1.30.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-uuid.git",
+ "reference": "2ba1f33797470debcda07fe9dce20a0003df18e9"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/2ba1f33797470debcda07fe9dce20a0003df18e9",
+ "reference": "2ba1f33797470debcda07fe9dce20a0003df18e9",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1"
+ },
+ "provide": {
+ "ext-uuid": "*"
+ },
+ "suggest": {
+ "ext-uuid": "For best performance"
+ },
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/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.30.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-05-31T15:07:36+00:00"
+ },
+ {
+ "name": "symfony/process",
+ "version": "v7.1.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/process.git",
+ "reference": "7f2f542c668ad6c313dc4a5e9c3321f733197eca"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/process/zipball/7f2f542c668ad6c313dc4a5e9c3321f733197eca",
+ "reference": "7f2f542c668ad6c313dc4a5e9c3321f733197eca",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Process\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Executes commands in sub-processes",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/process/tree/v7.1.3"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-07-26T12:44:47+00:00"
+ },
+ {
+ "name": "symfony/routing",
+ "version": "v7.1.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/routing.git",
+ "reference": "8a908a3f22d5a1b5d297578c2ceb41b02fa916d0"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/routing/zipball/8a908a3f22d5a1b5d297578c2ceb41b02fa916d0",
+ "reference": "8a908a3f22d5a1b5d297578c2ceb41b02fa916d0",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2",
+ "symfony/deprecation-contracts": "^2.5|^3"
+ },
+ "conflict": {
+ "symfony/config": "<6.4",
+ "symfony/dependency-injection": "<6.4",
+ "symfony/yaml": "<6.4"
+ },
+ "require-dev": {
+ "psr/log": "^1|^2|^3",
+ "symfony/config": "^6.4|^7.0",
+ "symfony/dependency-injection": "^6.4|^7.0",
+ "symfony/expression-language": "^6.4|^7.0",
+ "symfony/http-foundation": "^6.4|^7.0",
+ "symfony/yaml": "^6.4|^7.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Routing\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Maps an HTTP request to a set of configuration variables",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "router",
+ "routing",
+ "uri",
+ "url"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/routing/tree/v7.1.3"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-07-17T06:10:24+00:00"
+ },
+ {
+ "name": "symfony/service-contracts",
+ "version": "v3.5.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/service-contracts.git",
+ "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
+ "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
+ "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": {
+ "branch-alias": {
+ "dev-main": "3.5-dev"
+ },
+ "thanks": {
+ "name": "symfony/contracts",
+ "url": "https://github.com/symfony/contracts"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Contracts\\Service\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Test/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Generic abstractions related to writing services",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "abstractions",
+ "contracts",
+ "decoupling",
+ "interfaces",
+ "interoperability",
+ "standards"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/service-contracts/tree/v3.5.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-04-18T09:32:20+00:00"
+ },
+ {
+ "name": "symfony/string",
+ "version": "v7.1.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/string.git",
+ "reference": "ea272a882be7f20cad58d5d78c215001617b7f07"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/string/zipball/ea272a882be7f20cad58d5d78c215001617b7f07",
+ "reference": "ea272a882be7f20cad58d5d78c215001617b7f07",
+ "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.1.3"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-07-22T10:25:37+00:00"
+ },
+ {
+ "name": "symfony/translation",
+ "version": "v7.1.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/translation.git",
+ "reference": "8d5e50c813ba2859a6dfc99a0765c550507934a1"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/translation/zipball/8d5e50c813ba2859a6dfc99a0765c550507934a1",
+ "reference": "8d5e50c813ba2859a6dfc99a0765c550507934a1",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2",
+ "symfony/polyfill-mbstring": "~1.0",
+ "symfony/translation-contracts": "^2.5|^3.0"
+ },
+ "conflict": {
+ "symfony/config": "<6.4",
+ "symfony/console": "<6.4",
+ "symfony/dependency-injection": "<6.4",
+ "symfony/http-client-contracts": "<2.5",
+ "symfony/http-kernel": "<6.4",
+ "symfony/service-contracts": "<2.5",
+ "symfony/twig-bundle": "<6.4",
+ "symfony/yaml": "<6.4"
+ },
+ "provide": {
+ "symfony/translation-implementation": "2.3|3.0"
+ },
+ "require-dev": {
+ "nikic/php-parser": "^4.18|^5.0",
+ "psr/log": "^1|^2|^3",
+ "symfony/config": "^6.4|^7.0",
+ "symfony/console": "^6.4|^7.0",
+ "symfony/dependency-injection": "^6.4|^7.0",
+ "symfony/finder": "^6.4|^7.0",
+ "symfony/http-client-contracts": "^2.5|^3.0",
+ "symfony/http-kernel": "^6.4|^7.0",
+ "symfony/intl": "^6.4|^7.0",
+ "symfony/polyfill-intl-icu": "^1.21",
+ "symfony/routing": "^6.4|^7.0",
+ "symfony/service-contracts": "^2.5|^3",
+ "symfony/yaml": "^6.4|^7.0"
+ },
+ "type": "library",
+ "autoload": {
+ "files": [
+ "Resources/functions.php"
+ ],
+ "psr-4": {
+ "Symfony\\Component\\Translation\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Provides tools to internationalize your application",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/translation/tree/v7.1.3"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-07-26T12:41:01+00:00"
+ },
+ {
+ "name": "symfony/translation-contracts",
+ "version": "v3.5.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/translation-contracts.git",
+ "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
+ "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "3.5-dev"
+ },
+ "thanks": {
+ "name": "symfony/contracts",
+ "url": "https://github.com/symfony/contracts"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Contracts\\Translation\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Test/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Generic abstractions related to translation",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "abstractions",
+ "contracts",
+ "decoupling",
+ "interfaces",
+ "interoperability",
+ "standards"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/translation-contracts/tree/v3.5.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-04-18T09:32:20+00:00"
+ },
+ {
+ "name": "symfony/uid",
+ "version": "v7.1.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/uid.git",
+ "reference": "bb59febeecc81528ff672fad5dab7f06db8c8277"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/uid/zipball/bb59febeecc81528ff672fad5dab7f06db8c8277",
+ "reference": "bb59febeecc81528ff672fad5dab7f06db8c8277",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2",
+ "symfony/polyfill-uuid": "^1.15"
+ },
+ "require-dev": {
+ "symfony/console": "^6.4|^7.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Uid\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Grégoire Pineau",
+ "email": "lyrixx@lyrixx.info"
+ },
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Provides an object-oriented API to generate and represent UIDs",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "UID",
+ "ulid",
+ "uuid"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/uid/tree/v7.1.1"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-05-31T14:57:53+00:00"
+ },
+ {
+ "name": "symfony/var-dumper",
+ "version": "v7.1.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/var-dumper.git",
+ "reference": "86af4617cca75a6e28598f49ae0690f3b9d4591f"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/var-dumper/zipball/86af4617cca75a6e28598f49ae0690f3b9d4591f",
+ "reference": "86af4617cca75a6e28598f49ae0690f3b9d4591f",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2",
+ "symfony/polyfill-mbstring": "~1.0"
+ },
+ "conflict": {
+ "symfony/console": "<6.4"
+ },
+ "require-dev": {
+ "ext-iconv": "*",
+ "symfony/console": "^6.4|^7.0",
+ "symfony/http-kernel": "^6.4|^7.0",
+ "symfony/process": "^6.4|^7.0",
+ "symfony/uid": "^6.4|^7.0",
+ "twig/twig": "^3.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/v7.1.3"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-07-26T12:41:01+00:00"
+ },
+ {
+ "name": "tijsverkoyen/css-to-inline-styles",
+ "version": "v2.2.7",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
+ "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb",
+ "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
+ "shasum": ""
+ },
+ "require": {
+ "ext-dom": "*",
+ "ext-libxml": "*",
+ "php": "^5.5 || ^7.0 || ^8.0",
+ "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.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.2.7"
+ },
+ "time": "2023-12-08T13:03:43+00:00"
+ },
+ {
+ "name": "tymon/jwt-auth",
+ "version": "2.1.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/tymondesigns/jwt-auth.git",
+ "reference": "51620ebd5b68bb3ce9e66ba86bda303ae5f10f7f"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/tymondesigns/jwt-auth/zipball/51620ebd5b68bb3ce9e66ba86bda303ae5f10f7f",
+ "reference": "51620ebd5b68bb3ce9e66ba86bda303ae5f10f7f",
+ "shasum": ""
+ },
+ "require": {
+ "illuminate/auth": "^9.0|^10.0|^11.0",
+ "illuminate/contracts": "^9.0|^10.0|^11.0",
+ "illuminate/http": "^9.0|^10.0|^11.0",
+ "illuminate/support": "^9.0|^10.0|^11.0",
+ "lcobucci/jwt": "^4.0",
+ "nesbot/carbon": "^2.0|^3.0",
+ "php": "^8.0"
+ },
+ "require-dev": {
+ "illuminate/console": "^9.0|^10.0|^11.0",
+ "illuminate/database": "^9.0|^10.0|^11.0",
+ "illuminate/routing": "^9.0|^10.0|^11.0",
+ "mockery/mockery": ">=0.9.9",
+ "phpunit/phpunit": "^9.4"
+ },
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "aliases": {
+ "JWTAuth": "Tymon\\JWTAuth\\Facades\\JWTAuth",
+ "JWTFactory": "Tymon\\JWTAuth\\Facades\\JWTFactory"
+ },
+ "providers": [
+ "Tymon\\JWTAuth\\Providers\\LaravelServiceProvider"
+ ]
+ },
+ "branch-alias": {
+ "dev-2.x": "2.0-dev",
+ "dev-develop": "1.0-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Tymon\\JWTAuth\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Sean Tymon",
+ "email": "tymon148@gmail.com",
+ "homepage": "https://tymon.xyz",
+ "role": "Developer"
+ }
+ ],
+ "description": "JSON Web Token Authentication for Laravel and Lumen",
+ "homepage": "https://github.com/tymondesigns/jwt-auth",
+ "keywords": [
+ "Authentication",
+ "JSON Web Token",
+ "auth",
+ "jwt",
+ "laravel"
+ ],
+ "support": {
+ "issues": "https://github.com/tymondesigns/jwt-auth/issues",
+ "source": "https://github.com/tymondesigns/jwt-auth"
+ },
+ "funding": [
+ {
+ "url": "https://www.patreon.com/seantymon",
+ "type": "patreon"
+ }
+ ],
+ "time": "2024-03-14T19:29:49+00:00"
+ },
+ {
+ "name": "vlucas/phpdotenv",
+ "version": "v5.6.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/vlucas/phpdotenv.git",
+ "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
+ "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
+ "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.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/GrahamCampbell",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-07-20T21:52:34+00:00"
+ },
+ {
+ "name": "voku/portable-ascii",
+ "version": "2.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/voku/portable-ascii.git",
+ "reference": "b56450eed252f6801410d810c8e1727224ae0743"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
+ "reference": "b56450eed252f6801410d810c8e1727224ae0743",
+ "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": "http://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.1"
+ },
+ "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": "2022-03-08T17:03:00+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.23.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/FakerPHP/Faker.git",
+ "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b",
+ "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b",
+ "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.23.1"
+ },
+ "time": "2024-01-02T13:46:09+00:00"
+ },
+ {
+ "name": "filp/whoops",
+ "version": "2.15.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/filp/whoops.git",
+ "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/filp/whoops/zipball/a139776fa3f5985a50b509f2a02ff0f709d2a546",
+ "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^5.5.9 || ^7.0 || ^8.0",
+ "psr/log": "^1.0.1 || ^2.0 || ^3.0"
+ },
+ "require-dev": {
+ "mockery/mockery": "^0.9 || ^1.0",
+ "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
+ "symfony/var-dumper": "^2.6 || ^3.0 || ^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.15.4"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/denis-sokolov",
+ "type": "github"
+ }
+ ],
+ "time": "2023-11-03T12:00:00+00:00"
+ },
+ {
+ "name": "hamcrest/hamcrest-php",
+ "version": "v2.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/hamcrest/hamcrest-php.git",
+ "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
+ "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^5.3|^7.0|^8.0"
+ },
+ "replace": {
+ "cordoval/hamcrest-php": "*",
+ "davedevelopment/hamcrest-php": "*",
+ "kodova/hamcrest-php": "*"
+ },
+ "require-dev": {
+ "phpunit/php-file-iterator": "^1.4 || ^2.0",
+ "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.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.0.1"
+ },
+ "time": "2020-07-09T08:09:16+00:00"
+ },
+ {
+ "name": "laravel/pint",
+ "version": "v1.17.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/laravel/pint.git",
+ "reference": "4dba80c1de4b81dc4c4fb10ea6f4781495eb29f5"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/laravel/pint/zipball/4dba80c1de4b81dc4c4fb10ea6f4781495eb29f5",
+ "reference": "4dba80c1de4b81dc4c4fb10ea6f4781495eb29f5",
+ "shasum": ""
+ },
+ "require": {
+ "ext-json": "*",
+ "ext-mbstring": "*",
+ "ext-tokenizer": "*",
+ "ext-xml": "*",
+ "php": "^8.1.0"
+ },
+ "require-dev": {
+ "friendsofphp/php-cs-fixer": "^3.59.3",
+ "illuminate/view": "^10.48.12",
+ "larastan/larastan": "^2.9.7",
+ "laravel-zero/framework": "^10.4.0",
+ "mockery/mockery": "^1.6.12",
+ "nunomaduro/termwind": "^1.15.1",
+ "pestphp/pest": "^2.34.8"
+ },
+ "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": "2024-07-23T16:40:20+00:00"
+ },
+ {
+ "name": "laravel/sail",
+ "version": "v1.31.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/laravel/sail.git",
+ "reference": "48d89608a3bb5be763c9bb87121d31e7da27c1cb"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/laravel/sail/zipball/48d89608a3bb5be763c9bb87121d31e7da27c1cb",
+ "reference": "48d89608a3bb5be763c9bb87121d31e7da27c1cb",
+ "shasum": ""
+ },
+ "require": {
+ "illuminate/console": "^9.52.16|^10.0|^11.0",
+ "illuminate/contracts": "^9.52.16|^10.0|^11.0",
+ "illuminate/support": "^9.52.16|^10.0|^11.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",
+ "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": "2024-07-22T14:36:50+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.12.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/myclabs/DeepCopy.git",
+ "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
+ "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
+ "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.12.0"
+ },
+ "funding": [
+ {
+ "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-06-12T14:39:25+00:00"
+ },
+ {
+ "name": "nunomaduro/collision",
+ "version": "v8.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/nunomaduro/collision.git",
+ "reference": "b49f5b2891ce52726adfd162841c69d4e4c84229"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/nunomaduro/collision/zipball/b49f5b2891ce52726adfd162841c69d4e4c84229",
+ "reference": "b49f5b2891ce52726adfd162841c69d4e4c84229",
+ "shasum": ""
+ },
+ "require": {
+ "filp/whoops": "^2.15.4",
+ "nunomaduro/termwind": "^2.0.1",
+ "php": "^8.2.0",
+ "symfony/console": "^7.1.2"
+ },
+ "conflict": {
+ "laravel/framework": "<11.0.0 || >=12.0.0",
+ "phpunit/phpunit": "<10.5.1 || >=12.0.0"
+ },
+ "require-dev": {
+ "larastan/larastan": "^2.9.8",
+ "laravel/framework": "^11.16.0",
+ "laravel/pint": "^1.16.2",
+ "laravel/sail": "^1.30.2",
+ "laravel/sanctum": "^4.0.2",
+ "laravel/tinker": "^2.9.0",
+ "orchestra/testbench-core": "^9.2.1",
+ "pestphp/pest": "^2.34.9 || ^3.0.0",
+ "sebastian/environment": "^6.1.0 || ^7.0.0"
+ },
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "providers": [
+ "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
+ ]
+ },
+ "branch-alias": {
+ "dev-8.x": "8.x-dev"
+ }
+ },
+ "autoload": {
+ "files": [
+ "./src/Adapters/Phpunit/Autoload.php"
+ ],
+ "psr-4": {
+ "NunoMaduro\\Collision\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nuno Maduro",
+ "email": "enunomaduro@gmail.com"
+ }
+ ],
+ "description": "Cli error handling for console/command-line PHP applications.",
+ "keywords": [
+ "artisan",
+ "cli",
+ "command-line",
+ "console",
+ "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": "2024-07-16T22:41:01+00:00"
+ },
+ {
+ "name": "phar-io/manifest",
+ "version": "2.0.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phar-io/manifest.git",
+ "reference": "54750ef60c58e43759730615a392c31c80e23176"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
+ "reference": "54750ef60c58e43759730615a392c31c80e23176",
+ "shasum": ""
+ },
+ "require": {
+ "ext-dom": "*",
+ "ext-libxml": "*",
+ "ext-phar": "*",
+ "ext-xmlwriter": "*",
+ "phar-io/version": "^3.0.1",
+ "php": "^7.2 || ^8.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.0.x-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Arne Blankerts",
+ "email": "arne@blankerts.de",
+ "role": "Developer"
+ },
+ {
+ "name": "Sebastian Heuer",
+ "email": "sebastian@phpeople.de",
+ "role": "Developer"
+ },
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "Developer"
+ }
+ ],
+ "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
+ "support": {
+ "issues": "https://github.com/phar-io/manifest/issues",
+ "source": "https://github.com/phar-io/manifest/tree/2.0.4"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/theseer",
+ "type": "github"
+ }
+ ],
+ "time": "2024-03-03T12:33:53+00:00"
+ },
+ {
+ "name": "phar-io/version",
+ "version": "3.2.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phar-io/version.git",
+ "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
+ "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2 || ^8.0"
+ },
+ "type": "library",
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Arne Blankerts",
+ "email": "arne@blankerts.de",
+ "role": "Developer"
+ },
+ {
+ "name": "Sebastian Heuer",
+ "email": "sebastian@phpeople.de",
+ "role": "Developer"
+ },
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "Developer"
+ }
+ ],
+ "description": "Library for handling version information and constraints",
+ "support": {
+ "issues": "https://github.com/phar-io/version/issues",
+ "source": "https://github.com/phar-io/version/tree/3.2.1"
+ },
+ "time": "2022-02-21T01:04:05+00:00"
+ },
+ {
+ "name": "phpunit/php-code-coverage",
+ "version": "11.0.5",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
+ "reference": "19b6365ab8b59a64438c0c3f4241feeb480c9861"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/19b6365ab8b59a64438c0c3f4241feeb480c9861",
+ "reference": "19b6365ab8b59a64438c0c3f4241feeb480c9861",
+ "shasum": ""
+ },
+ "require": {
+ "ext-dom": "*",
+ "ext-libxml": "*",
+ "ext-xmlwriter": "*",
+ "nikic/php-parser": "^5.0",
+ "php": ">=8.2",
+ "phpunit/php-file-iterator": "^5.0",
+ "phpunit/php-text-template": "^4.0",
+ "sebastian/code-unit-reverse-lookup": "^4.0",
+ "sebastian/complexity": "^4.0",
+ "sebastian/environment": "^7.0",
+ "sebastian/lines-of-code": "^3.0",
+ "sebastian/version": "^5.0",
+ "theseer/tokenizer": "^1.2.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^11.0"
+ },
+ "suggest": {
+ "ext-pcov": "PHP extension that provides line coverage",
+ "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "11.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
+ "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
+ "keywords": [
+ "coverage",
+ "testing",
+ "xunit"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
+ "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
+ "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.5"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2024-07-03T05:05:37+00:00"
+ },
+ {
+ "name": "phpunit/php-file-iterator",
+ "version": "5.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
+ "reference": "6ed896bf50bbbfe4d504a33ed5886278c78e4a26"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/6ed896bf50bbbfe4d504a33ed5886278c78e4a26",
+ "reference": "6ed896bf50bbbfe4d504a33ed5886278c78e4a26",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^11.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "5.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "FilterIterator implementation that filters files based on a list of suffixes.",
+ "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
+ "keywords": [
+ "filesystem",
+ "iterator"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
+ "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
+ "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.0.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2024-07-03T05:06:37+00:00"
+ },
+ {
+ "name": "phpunit/php-invoker",
+ "version": "5.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/php-invoker.git",
+ "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2",
+ "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2"
+ },
+ "require-dev": {
+ "ext-pcntl": "*",
+ "phpunit/phpunit": "^11.0"
+ },
+ "suggest": {
+ "ext-pcntl": "*"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "5.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Invoke callables with a timeout",
+ "homepage": "https://github.com/sebastianbergmann/php-invoker/",
+ "keywords": [
+ "process"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
+ "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
+ "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2024-07-03T05:07:44+00:00"
+ },
+ {
+ "name": "phpunit/php-text-template",
+ "version": "4.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/php-text-template.git",
+ "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
+ "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^11.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "4.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Simple template engine.",
+ "homepage": "https://github.com/sebastianbergmann/php-text-template/",
+ "keywords": [
+ "template"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
+ "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
+ "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2024-07-03T05:08:43+00:00"
+ },
+ {
+ "name": "phpunit/php-timer",
+ "version": "7.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/php-timer.git",
+ "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
+ "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^11.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "7.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Utility class for timing",
+ "homepage": "https://github.com/sebastianbergmann/php-timer/",
+ "keywords": [
+ "timer"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/php-timer/issues",
+ "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
+ "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2024-07-03T05:09:35+00:00"
+ },
+ {
+ "name": "phpunit/phpunit",
+ "version": "11.2.9",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/phpunit.git",
+ "reference": "c197bbaaca360efda351369bf1fd9cc1ca6bcbf7"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c197bbaaca360efda351369bf1fd9cc1ca6bcbf7",
+ "reference": "c197bbaaca360efda351369bf1fd9cc1ca6bcbf7",
+ "shasum": ""
+ },
+ "require": {
+ "ext-dom": "*",
+ "ext-json": "*",
+ "ext-libxml": "*",
+ "ext-mbstring": "*",
+ "ext-xml": "*",
+ "ext-xmlwriter": "*",
+ "myclabs/deep-copy": "^1.12.0",
+ "phar-io/manifest": "^2.0.4",
+ "phar-io/version": "^3.2.1",
+ "php": ">=8.2",
+ "phpunit/php-code-coverage": "^11.0.5",
+ "phpunit/php-file-iterator": "^5.0.1",
+ "phpunit/php-invoker": "^5.0.1",
+ "phpunit/php-text-template": "^4.0.1",
+ "phpunit/php-timer": "^7.0.1",
+ "sebastian/cli-parser": "^3.0.2",
+ "sebastian/code-unit": "^3.0.1",
+ "sebastian/comparator": "^6.0.1",
+ "sebastian/diff": "^6.0.2",
+ "sebastian/environment": "^7.2.0",
+ "sebastian/exporter": "^6.1.3",
+ "sebastian/global-state": "^7.0.2",
+ "sebastian/object-enumerator": "^6.0.1",
+ "sebastian/type": "^5.0.1",
+ "sebastian/version": "^5.0.1"
+ },
+ "suggest": {
+ "ext-soap": "To be able to generate mocks based on WSDL files"
+ },
+ "bin": [
+ "phpunit"
+ ],
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "11.2-dev"
+ }
+ },
+ "autoload": {
+ "files": [
+ "src/Framework/Assert/Functions.php"
+ ],
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "The PHP Unit Testing framework.",
+ "homepage": "https://phpunit.de/",
+ "keywords": [
+ "phpunit",
+ "testing",
+ "xunit"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/phpunit/issues",
+ "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
+ "source": "https://github.com/sebastianbergmann/phpunit/tree/11.2.9"
+ },
+ "funding": [
+ {
+ "url": "https://phpunit.de/sponsors.html",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-07-30T11:09:23+00:00"
+ },
+ {
+ "name": "sebastian/cli-parser",
+ "version": "3.0.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/cli-parser.git",
+ "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180",
+ "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^11.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "3.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Library for parsing CLI options",
+ "homepage": "https://github.com/sebastianbergmann/cli-parser",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
+ "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
+ "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2024-07-03T04:41:36+00:00"
+ },
+ {
+ "name": "sebastian/code-unit",
+ "version": "3.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/code-unit.git",
+ "reference": "6bb7d09d6623567178cf54126afa9c2310114268"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/6bb7d09d6623567178cf54126afa9c2310114268",
+ "reference": "6bb7d09d6623567178cf54126afa9c2310114268",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^11.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "3.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Collection of value objects that represent the PHP code units",
+ "homepage": "https://github.com/sebastianbergmann/code-unit",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/code-unit/issues",
+ "security": "https://github.com/sebastianbergmann/code-unit/security/policy",
+ "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2024-07-03T04:44:28+00:00"
+ },
+ {
+ "name": "sebastian/code-unit-reverse-lookup",
+ "version": "4.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
+ "reference": "183a9b2632194febd219bb9246eee421dad8d45e"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e",
+ "reference": "183a9b2632194febd219bb9246eee421dad8d45e",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^11.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "4.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ }
+ ],
+ "description": "Looks up which function or method a line of code belongs to",
+ "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
+ "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy",
+ "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2024-07-03T04:45:54+00:00"
+ },
+ {
+ "name": "sebastian/comparator",
+ "version": "6.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/comparator.git",
+ "reference": "131942b86d3587291067a94f295498ab6ac79c20"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/131942b86d3587291067a94f295498ab6ac79c20",
+ "reference": "131942b86d3587291067a94f295498ab6ac79c20",
+ "shasum": ""
+ },
+ "require": {
+ "ext-dom": "*",
+ "ext-mbstring": "*",
+ "php": ">=8.2",
+ "sebastian/diff": "^6.0",
+ "sebastian/exporter": "^6.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^11.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "6.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ },
+ {
+ "name": "Jeff Welch",
+ "email": "whatthejeff@gmail.com"
+ },
+ {
+ "name": "Volker Dusch",
+ "email": "github@wallbash.com"
+ },
+ {
+ "name": "Bernhard Schussek",
+ "email": "bschussek@2bepublished.at"
+ }
+ ],
+ "description": "Provides the functionality to compare PHP values for equality",
+ "homepage": "https://github.com/sebastianbergmann/comparator",
+ "keywords": [
+ "comparator",
+ "compare",
+ "equality"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/comparator/issues",
+ "security": "https://github.com/sebastianbergmann/comparator/security/policy",
+ "source": "https://github.com/sebastianbergmann/comparator/tree/6.0.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2024-07-03T04:48:07+00:00"
+ },
+ {
+ "name": "sebastian/complexity",
+ "version": "4.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/complexity.git",
+ "reference": "ee41d384ab1906c68852636b6de493846e13e5a0"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0",
+ "reference": "ee41d384ab1906c68852636b6de493846e13e5a0",
+ "shasum": ""
+ },
+ "require": {
+ "nikic/php-parser": "^5.0",
+ "php": ">=8.2"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^11.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "4.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Library for calculating the complexity of PHP code units",
+ "homepage": "https://github.com/sebastianbergmann/complexity",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/complexity/issues",
+ "security": "https://github.com/sebastianbergmann/complexity/security/policy",
+ "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2024-07-03T04:49:50+00:00"
+ },
+ {
+ "name": "sebastian/diff",
+ "version": "6.0.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/diff.git",
+ "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544",
+ "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^11.0",
+ "symfony/process": "^4.2 || ^5"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "6.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ },
+ {
+ "name": "Kore Nordmann",
+ "email": "mail@kore-nordmann.de"
+ }
+ ],
+ "description": "Diff implementation",
+ "homepage": "https://github.com/sebastianbergmann/diff",
+ "keywords": [
+ "diff",
+ "udiff",
+ "unidiff",
+ "unified diff"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/diff/issues",
+ "security": "https://github.com/sebastianbergmann/diff/security/policy",
+ "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2024-07-03T04:53:05+00:00"
+ },
+ {
+ "name": "sebastian/environment",
+ "version": "7.2.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/environment.git",
+ "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
+ "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^11.0"
+ },
+ "suggest": {
+ "ext-posix": "*"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "7.2-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ }
+ ],
+ "description": "Provides functionality to handle HHVM/PHP environments",
+ "homepage": "https://github.com/sebastianbergmann/environment",
+ "keywords": [
+ "Xdebug",
+ "environment",
+ "hhvm"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/environment/issues",
+ "security": "https://github.com/sebastianbergmann/environment/security/policy",
+ "source": "https://github.com/sebastianbergmann/environment/tree/7.2.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2024-07-03T04:54:44+00:00"
+ },
+ {
+ "name": "sebastian/exporter",
+ "version": "6.1.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/exporter.git",
+ "reference": "c414673eee9a8f9d51bbf8d61fc9e3ef1e85b20e"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/c414673eee9a8f9d51bbf8d61fc9e3ef1e85b20e",
+ "reference": "c414673eee9a8f9d51bbf8d61fc9e3ef1e85b20e",
+ "shasum": ""
+ },
+ "require": {
+ "ext-mbstring": "*",
+ "php": ">=8.2",
+ "sebastian/recursion-context": "^6.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^11.2"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "6.1-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ },
+ {
+ "name": "Jeff Welch",
+ "email": "whatthejeff@gmail.com"
+ },
+ {
+ "name": "Volker Dusch",
+ "email": "github@wallbash.com"
+ },
+ {
+ "name": "Adam Harvey",
+ "email": "aharvey@php.net"
+ },
+ {
+ "name": "Bernhard Schussek",
+ "email": "bschussek@gmail.com"
+ }
+ ],
+ "description": "Provides the functionality to export PHP variables for visualization",
+ "homepage": "https://www.github.com/sebastianbergmann/exporter",
+ "keywords": [
+ "export",
+ "exporter"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/exporter/issues",
+ "security": "https://github.com/sebastianbergmann/exporter/security/policy",
+ "source": "https://github.com/sebastianbergmann/exporter/tree/6.1.3"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2024-07-03T04:56:19+00:00"
+ },
+ {
+ "name": "sebastian/global-state",
+ "version": "7.0.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/global-state.git",
+ "reference": "3be331570a721f9a4b5917f4209773de17f747d7"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7",
+ "reference": "3be331570a721f9a4b5917f4209773de17f747d7",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2",
+ "sebastian/object-reflector": "^4.0",
+ "sebastian/recursion-context": "^6.0"
+ },
+ "require-dev": {
+ "ext-dom": "*",
+ "phpunit/phpunit": "^11.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "7.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ }
+ ],
+ "description": "Snapshotting of global state",
+ "homepage": "https://www.github.com/sebastianbergmann/global-state",
+ "keywords": [
+ "global state"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/global-state/issues",
+ "security": "https://github.com/sebastianbergmann/global-state/security/policy",
+ "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2024-07-03T04:57:36+00:00"
+ },
+ {
+ "name": "sebastian/lines-of-code",
+ "version": "3.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/lines-of-code.git",
+ "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a",
+ "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a",
+ "shasum": ""
+ },
+ "require": {
+ "nikic/php-parser": "^5.0",
+ "php": ">=8.2"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^11.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "3.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Library for counting the lines of code in PHP source code",
+ "homepage": "https://github.com/sebastianbergmann/lines-of-code",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
+ "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
+ "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2024-07-03T04:58:38+00:00"
+ },
+ {
+ "name": "sebastian/object-enumerator",
+ "version": "6.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/object-enumerator.git",
+ "reference": "f5b498e631a74204185071eb41f33f38d64608aa"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa",
+ "reference": "f5b498e631a74204185071eb41f33f38d64608aa",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2",
+ "sebastian/object-reflector": "^4.0",
+ "sebastian/recursion-context": "^6.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^11.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "6.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ }
+ ],
+ "description": "Traverses array structures and object graphs to enumerate all referenced objects",
+ "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
+ "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
+ "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2024-07-03T05:00:13+00:00"
+ },
+ {
+ "name": "sebastian/object-reflector",
+ "version": "4.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/object-reflector.git",
+ "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9",
+ "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^11.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "4.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ }
+ ],
+ "description": "Allows reflection of object attributes, including inherited and non-public ones",
+ "homepage": "https://github.com/sebastianbergmann/object-reflector/",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
+ "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
+ "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2024-07-03T05:01:32+00:00"
+ },
+ {
+ "name": "sebastian/recursion-context",
+ "version": "6.0.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/recursion-context.git",
+ "reference": "694d156164372abbd149a4b85ccda2e4670c0e16"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/694d156164372abbd149a4b85ccda2e4670c0e16",
+ "reference": "694d156164372abbd149a4b85ccda2e4670c0e16",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^11.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "6.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ },
+ {
+ "name": "Jeff Welch",
+ "email": "whatthejeff@gmail.com"
+ },
+ {
+ "name": "Adam Harvey",
+ "email": "aharvey@php.net"
+ }
+ ],
+ "description": "Provides functionality to recursively process PHP variables",
+ "homepage": "https://github.com/sebastianbergmann/recursion-context",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
+ "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
+ "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.2"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2024-07-03T05:10:34+00:00"
+ },
+ {
+ "name": "sebastian/type",
+ "version": "5.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/type.git",
+ "reference": "fb6a6566f9589e86661291d13eba708cce5eb4aa"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/fb6a6566f9589e86661291d13eba708cce5eb4aa",
+ "reference": "fb6a6566f9589e86661291d13eba708cce5eb4aa",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^11.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "5.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Collection of value objects that represent the types of the PHP type system",
+ "homepage": "https://github.com/sebastianbergmann/type",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/type/issues",
+ "security": "https://github.com/sebastianbergmann/type/security/policy",
+ "source": "https://github.com/sebastianbergmann/type/tree/5.0.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2024-07-03T05:11:49+00:00"
+ },
+ {
+ "name": "sebastian/version",
+ "version": "5.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/version.git",
+ "reference": "45c9debb7d039ce9b97de2f749c2cf5832a06ac4"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/45c9debb7d039ce9b97de2f749c2cf5832a06ac4",
+ "reference": "45c9debb7d039ce9b97de2f749c2cf5832a06ac4",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "5.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Library that helps with managing the version number of Git-hosted PHP projects",
+ "homepage": "https://github.com/sebastianbergmann/version",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/version/issues",
+ "security": "https://github.com/sebastianbergmann/version/security/policy",
+ "source": "https://github.com/sebastianbergmann/version/tree/5.0.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2024-07-03T05:13:08+00:00"
+ },
+ {
+ "name": "symfony/yaml",
+ "version": "v7.1.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/yaml.git",
+ "reference": "fa34c77015aa6720469db7003567b9f772492bf2"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/yaml/zipball/fa34c77015aa6720469db7003567b9f772492bf2",
+ "reference": "fa34c77015aa6720469db7003567b9f772492bf2",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2",
+ "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.1.1"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-05-31T14:57:53+00:00"
+ },
+ {
+ "name": "theseer/tokenizer",
+ "version": "1.2.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/theseer/tokenizer.git",
+ "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
+ "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
+ "shasum": ""
+ },
+ "require": {
+ "ext-dom": "*",
+ "ext-tokenizer": "*",
+ "ext-xmlwriter": "*",
+ "php": "^7.2 || ^8.0"
+ },
+ "type": "library",
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Arne Blankerts",
+ "email": "arne@blankerts.de",
+ "role": "Developer"
+ }
+ ],
+ "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
+ "support": {
+ "issues": "https://github.com/theseer/tokenizer/issues",
+ "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/theseer",
+ "type": "github"
+ }
+ ],
+ "time": "2024-03-03T12:36:25+00:00"
+ }
+ ],
+ "aliases": [],
+ "minimum-stability": "stable",
+ "stability-flags": [],
+ "prefer-stable": true,
+ "prefer-lowest": false,
+ "platform": {
+ "php": "^8.2"
+ },
+ "platform-dev": [],
+ "plugin-api-version": "2.6.0"
+}
diff --git a/config/app.php b/config/app.php
new file mode 100644
index 0000000..f467267
--- /dev/null
+++ b/config/app.php
@@ -0,0 +1,126 @@
+ env('APP_NAME', 'Laravel'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Application Environment
+ |--------------------------------------------------------------------------
+ |
+ | This value determines the "environment" your application is currently
+ | running in. This may determine how you prefer to configure various
+ | services the application utilizes. Set this in your ".env" file.
+ |
+ */
+
+ 'env' => env('APP_ENV', 'production'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Application Debug Mode
+ |--------------------------------------------------------------------------
+ |
+ | When your application is in debug mode, detailed error messages with
+ | stack traces will be shown on every error that occurs within your
+ | application. If disabled, a simple generic error page is shown.
+ |
+ */
+
+ 'debug' => (bool) env('APP_DEBUG', false),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Application URL
+ |--------------------------------------------------------------------------
+ |
+ | This URL is used by the console to properly generate URLs when using
+ | the Artisan command line tool. You should set this to the root of
+ | the application so that it's available within Artisan commands.
+ |
+ */
+
+ 'url' => env('APP_URL', 'http://localhost'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Application Timezone
+ |--------------------------------------------------------------------------
+ |
+ | Here you may specify the default timezone for your application, which
+ | will be used by the PHP date and date-time functions. The timezone
+ | is set to "UTC" by default as it is suitable for most use cases.
+ |
+ */
+
+ 'timezone' => env('APP_TIMEZONE', 'UTC'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Application Locale Configuration
+ |--------------------------------------------------------------------------
+ |
+ | The application locale determines the default locale that will be used
+ | by Laravel's translation / localization methods. This option can be
+ | set to any locale for which you plan to have translation strings.
+ |
+ */
+
+ 'locale' => env('APP_LOCALE', 'en'),
+
+ 'fallback_locale' => env('APP_FALLBACK_LOCALE', 'en'),
+
+ 'faker_locale' => env('APP_FAKER_LOCALE', 'en_US'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Encryption Key
+ |--------------------------------------------------------------------------
+ |
+ | This key is utilized by Laravel's encryption services and should be set
+ | to a random, 32 character string to ensure that all encrypted values
+ | are secure. You should do this prior to deploying the application.
+ |
+ */
+
+ 'cipher' => 'AES-256-CBC',
+
+ 'key' => env('APP_KEY'),
+
+ 'previous_keys' => [
+ ...array_filter(
+ explode(',', env('APP_PREVIOUS_KEYS', ''))
+ ),
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Maintenance Mode Driver
+ |--------------------------------------------------------------------------
+ |
+ | These configuration options determine the driver used to determine and
+ | manage Laravel's "maintenance mode" status. The "cache" driver will
+ | allow maintenance mode to be controlled across multiple machines.
+ |
+ | Supported drivers: "file", "cache"
+ |
+ */
+
+ 'maintenance' => [
+ 'driver' => env('APP_MAINTENANCE_DRIVER', 'file'),
+ 'store' => env('APP_MAINTENANCE_STORE', 'database'),
+ ],
+
+];
diff --git a/config/auth.php b/config/auth.php
new file mode 100644
index 0000000..69fd3c0
--- /dev/null
+++ b/config/auth.php
@@ -0,0 +1,128 @@
+ [
+ 'guard' => 'admin',
+ 'passwords' => 'admins',
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Authentication Guards
+ |--------------------------------------------------------------------------
+ |
+ | Next, you may define every authentication guard for your application.
+ | Of course, a great default configuration has been defined for you
+ | which utilizes session storage plus the Eloquent user provider.
+ |
+ | All authentication guards have a user provider, which defines how the
+ | users are actually retrieved out of your database or other storage
+ | system used by the application. Typically, Eloquent is utilized.
+ |
+ | Supported: "session"
+ |
+ */
+
+ 'guards' => [
+ 'web' => [
+ 'driver' => 'session',
+ 'provider' => 'users',
+ ],
+ 'api' => [
+ 'driver' => 'jwt',
+ 'provider' => 'users',
+ ],
+ 'admin' => [
+ 'driver' => 'session',
+ 'provider' => 'users',
+ ],
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | User Providers
+ |--------------------------------------------------------------------------
+ |
+ | All authentication guards have a user provider, which defines how the
+ | users are actually retrieved out of your database or other storage
+ | system used by the application. Typically, Eloquent is utilized.
+ |
+ | If you have multiple user tables or models you may configure multiple
+ | providers to represent the model / table. These providers may then
+ | be assigned to any extra authentication guards you have defined.
+ |
+ | Supported: "database", "eloquent"
+ |
+ */
+
+ 'providers' => [
+ 'users' => [
+ 'driver' => 'eloquent',
+ 'model' => App\Models\User::class,
+ ],
+ 'admins' => [
+ 'driver' => 'eloquent',
+ 'model' => App\Models\User::class,
+ ],
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Resetting Passwords
+ |--------------------------------------------------------------------------
+ |
+ | These configuration options specify the behavior of Laravel's password
+ | reset functionality, including the table utilized for token storage
+ | and the user provider that is invoked to actually retrieve users.
+ |
+ | The expiry time is the number of minutes that each reset token will be
+ | considered valid. This security feature keeps tokens short-lived so
+ | they have less time to be guessed. You may change this as needed.
+ |
+ | The throttle setting is the number of seconds a user must wait before
+ | generating more password reset tokens. This prevents the user from
+ | quickly generating a very large amount of password reset tokens.
+ |
+ */
+
+ 'passwords' => [
+ 'users' => [
+ 'provider' => 'users',
+ 'table' => 'password_reset_tokens',
+ 'expire' => 60,
+ 'throttle' => 60,
+ ],
+ 'admins' => [
+ '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
+ | window expires and users are asked to re-enter their password via the
+ | confirmation screen. By default, the timeout lasts for three hours.
+ |
+ */
+
+ 'password_timeout' => 10800,
+
+];
diff --git a/config/cache.php b/config/cache.php
new file mode 100644
index 0000000..925f7d2
--- /dev/null
+++ b/config/cache.php
@@ -0,0 +1,108 @@
+ env('CACHE_STORE', 'database'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Cache Stores
+ |--------------------------------------------------------------------------
+ |
+ | Here you may define all of the cache "stores" for your application as
+ | well as their drivers. You may even define multiple stores for the
+ | same cache driver to group types of items stored in your caches.
+ |
+ | Supported drivers: "array", "database", "file", "memcached",
+ | "redis", "dynamodb", "octane", "null"
+ |
+ */
+
+ 'stores' => [
+
+ 'array' => [
+ 'driver' => 'array',
+ 'serialize' => false,
+ ],
+
+ 'database' => [
+ 'driver' => 'database',
+ 'connection' => env('DB_CACHE_CONNECTION'),
+ 'table' => env('DB_CACHE_TABLE', 'cache'),
+ 'lock_connection' => env('DB_CACHE_LOCK_CONNECTION'),
+ 'lock_table' => env('DB_CACHE_LOCK_TABLE'),
+ ],
+
+ 'file' => [
+ 'driver' => 'file',
+ 'path' => storage_path('framework/cache/data'),
+ 'lock_path' => storage_path('framework/cache/data'),
+ ],
+
+ 'memcached' => [
+ 'driver' => 'memcached',
+ 'persistent_id' => env('MEMCACHED_PERSISTENT_ID'),
+ 'sasl' => [
+ env('MEMCACHED_USERNAME'),
+ env('MEMCACHED_PASSWORD'),
+ ],
+ 'options' => [
+ // Memcached::OPT_CONNECT_TIMEOUT => 2000,
+ ],
+ 'servers' => [
+ [
+ 'host' => env('MEMCACHED_HOST', '127.0.0.1'),
+ 'port' => env('MEMCACHED_PORT', 11211),
+ 'weight' => 100,
+ ],
+ ],
+ ],
+
+ 'redis' => [
+ 'driver' => 'redis',
+ 'connection' => env('REDIS_CACHE_CONNECTION', 'cache'),
+ 'lock_connection' => env('REDIS_CACHE_LOCK_CONNECTION', 'default'),
+ ],
+
+ 'dynamodb' => [
+ 'driver' => 'dynamodb',
+ 'key' => env('AWS_ACCESS_KEY_ID'),
+ 'secret' => env('AWS_SECRET_ACCESS_KEY'),
+ 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
+ 'table' => env('DYNAMODB_CACHE_TABLE', 'cache'),
+ 'endpoint' => env('DYNAMODB_ENDPOINT'),
+ ],
+
+ 'octane' => [
+ 'driver' => 'octane',
+ ],
+
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Cache Key Prefix
+ |--------------------------------------------------------------------------
+ |
+ | When utilizing the APC, database, memcached, Redis, and DynamoDB cache
+ | stores, there might be other applications using the same cache. For
+ | that reason, you may prefix every cache key to avoid collisions.
+ |
+ */
+
+ 'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache_'),
+
+];
diff --git a/config/cors.php b/config/cors.php
new file mode 100644
index 0000000..1b8c94b
--- /dev/null
+++ b/config/cors.php
@@ -0,0 +1,32 @@
+ ['api/*', 'sanctum/csrf-cookie'],
+
+ 'allowed_methods' => ['*'],
+
+ 'allowed_origins' => ['*'],
+
+ 'allowed_origins_patterns' => [],
+
+ 'allowed_headers' => ['*'],
+
+ 'exposed_headers' => ['*'],
+
+ 'max_age' => 0,
+
+ 'supports_credentials' => true,
+];
\ No newline at end of file
diff --git a/config/database.php b/config/database.php
new file mode 100644
index 0000000..f8e8dcb
--- /dev/null
+++ b/config/database.php
@@ -0,0 +1,170 @@
+ env('DB_CONNECTION', 'sqlite'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Database Connections
+ |--------------------------------------------------------------------------
+ |
+ | Below are all of the database connections defined for your application.
+ | An example configuration is provided for each database system which
+ | is supported by Laravel. You're free to add / remove connections.
+ |
+ */
+
+ 'connections' => [
+
+ 'sqlite' => [
+ 'driver' => 'sqlite',
+ 'url' => env('DB_URL'),
+ 'database' => env('DB_DATABASE', database_path('database.sqlite')),
+ 'prefix' => '',
+ 'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true),
+ ],
+
+ 'mysql' => [
+ 'driver' => 'mysql',
+ 'url' => env('DB_URL'),
+ 'host' => env('DB_HOST', '127.0.0.1'),
+ 'port' => env('DB_PORT', '3306'),
+ 'database' => env('DB_DATABASE', 'laravel'),
+ 'username' => env('DB_USERNAME', 'root'),
+ 'password' => env('DB_PASSWORD', ''),
+ 'unix_socket' => env('DB_SOCKET', ''),
+ 'charset' => env('DB_CHARSET', 'utf8mb4'),
+ 'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'),
+ 'prefix' => '',
+ 'prefix_indexes' => true,
+ 'strict' => true,
+ 'engine' => null,
+ 'options' => extension_loaded('pdo_mysql') ? array_filter([
+ PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'),
+ ]) : [],
+ ],
+
+ 'mariadb' => [
+ 'driver' => 'mariadb',
+ 'url' => env('DB_URL'),
+ 'host' => env('DB_HOST', '127.0.0.1'),
+ 'port' => env('DB_PORT', '3306'),
+ 'database' => env('DB_DATABASE', 'laravel'),
+ 'username' => env('DB_USERNAME', 'root'),
+ 'password' => env('DB_PASSWORD', ''),
+ 'unix_socket' => env('DB_SOCKET', ''),
+ 'charset' => env('DB_CHARSET', 'utf8mb4'),
+ 'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'),
+ 'prefix' => '',
+ 'prefix_indexes' => true,
+ 'strict' => true,
+ 'engine' => null,
+ 'options' => extension_loaded('pdo_mysql') ? array_filter([
+ PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'),
+ ]) : [],
+ ],
+
+ 'pgsql' => [
+ 'driver' => 'pgsql',
+ 'url' => env('DB_URL'),
+ 'host' => env('DB_HOST', '127.0.0.1'),
+ 'port' => env('DB_PORT', '5432'),
+ 'database' => env('DB_DATABASE', 'laravel'),
+ 'username' => env('DB_USERNAME', 'root'),
+ 'password' => env('DB_PASSWORD', ''),
+ 'charset' => env('DB_CHARSET', 'utf8'),
+ 'prefix' => '',
+ 'prefix_indexes' => true,
+ 'search_path' => 'public',
+ 'sslmode' => 'prefer',
+ ],
+
+ 'sqlsrv' => [
+ 'driver' => 'sqlsrv',
+ 'url' => env('DB_URL'),
+ 'host' => env('DB_HOST', 'localhost'),
+ 'port' => env('DB_PORT', '1433'),
+ 'database' => env('DB_DATABASE', 'laravel'),
+ 'username' => env('DB_USERNAME', 'root'),
+ 'password' => env('DB_PASSWORD', ''),
+ 'charset' => env('DB_CHARSET', 'utf8'),
+ 'prefix' => '',
+ 'prefix_indexes' => true,
+ // 'encrypt' => env('DB_ENCRYPT', 'yes'),
+ // 'trust_server_certificate' => env('DB_TRUST_SERVER_CERTIFICATE', 'false'),
+ ],
+
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Migration Repository Table
+ |--------------------------------------------------------------------------
+ |
+ | This table keeps track of all the migrations that have already run for
+ | your application. Using this information, we can determine which of
+ | the migrations on disk haven't actually been run on the database.
+ |
+ */
+
+ 'migrations' => [
+ 'table' => 'migrations',
+ 'update_date_on_publish' => true,
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Redis Databases
+ |--------------------------------------------------------------------------
+ |
+ | Redis is an open source, fast, and advanced key-value store that also
+ | provides a richer body of commands than a typical key-value system
+ | such as Memcached. You may define your connection settings here.
+ |
+ */
+
+ 'redis' => [
+
+ 'client' => env('REDIS_CLIENT', 'phpredis'),
+
+ 'options' => [
+ 'cluster' => env('REDIS_CLUSTER', 'redis'),
+ 'prefix' => env('REDIS_PREFIX', Str::slug(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..c5f244d
--- /dev/null
+++ b/config/filesystems.php
@@ -0,0 +1,76 @@
+ env('FILESYSTEM_DISK', 'local'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Filesystem Disks
+ |--------------------------------------------------------------------------
+ |
+ | Below you may configure as many filesystem disks as necessary, and you
+ | may even configure multiple disks for the same driver. Examples for
+ | most supported storage drivers are configured here for reference.
+ |
+ | Supported drivers: "local", "ftp", "sftp", "s3"
+ |
+ */
+
+ 'disks' => [
+
+ 'local' => [
+ 'driver' => 'local',
+ 'root' => storage_path('app'),
+ '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/jwt.php b/config/jwt.php
new file mode 100644
index 0000000..02bd871
--- /dev/null
+++ b/config/jwt.php
@@ -0,0 +1,301 @@
+
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+return [
+
+ /*
+ |--------------------------------------------------------------------------
+ | JWT Authentication Secret
+ |--------------------------------------------------------------------------
+ |
+ | Don't forget to set this in your .env file, as it will be used to sign
+ | your tokens. A helper command is provided for this:
+ | `php artisan jwt:secret`
+ |
+ | Note: This will be used for Symmetric algorithms only (HMAC),
+ | since RSA and ECDSA use a private/public key combo (See below).
+ |
+ */
+
+ 'secret' => env('JWT_SECRET'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | JWT Authentication Keys
+ |--------------------------------------------------------------------------
+ |
+ | The algorithm you are using, will determine whether your tokens are
+ | signed with a random string (defined in `JWT_SECRET`) or using the
+ | following public & private keys.
+ |
+ | Symmetric Algorithms:
+ | HS256, HS384 & HS512 will use `JWT_SECRET`.
+ |
+ | Asymmetric Algorithms:
+ | RS256, RS384 & RS512 / ES256, ES384 & ES512 will use the keys below.
+ |
+ */
+
+ 'keys' => [
+
+ /*
+ |--------------------------------------------------------------------------
+ | Public Key
+ |--------------------------------------------------------------------------
+ |
+ | A path or resource to your public key.
+ |
+ | E.g. 'file://path/to/public/key'
+ |
+ */
+
+ 'public' => env('JWT_PUBLIC_KEY'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Private Key
+ |--------------------------------------------------------------------------
+ |
+ | A path or resource to your private key.
+ |
+ | E.g. 'file://path/to/private/key'
+ |
+ */
+
+ 'private' => env('JWT_PRIVATE_KEY'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Passphrase
+ |--------------------------------------------------------------------------
+ |
+ | The passphrase for your private key. Can be null if none set.
+ |
+ */
+
+ 'passphrase' => env('JWT_PASSPHRASE'),
+
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | JWT time to live
+ |--------------------------------------------------------------------------
+ |
+ | Specify the length of time (in minutes) that the token will be valid for.
+ | Defaults to 1 hour.
+ |
+ | You can also set this to null, to yield a never expiring token.
+ | Some people may want this behaviour for e.g. a mobile app.
+ | This is not particularly recommended, so make sure you have appropriate
+ | systems in place to revoke the token if necessary.
+ | Notice: If you set this to null you should remove 'exp' element from 'required_claims' list.
+ |
+ */
+
+ 'ttl' => env('JWT_TTL', 525600),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Refresh time to live
+ |--------------------------------------------------------------------------
+ |
+ | Specify the length of time (in minutes) that the token can be refreshed
+ | within. I.E. The user can refresh their token within a 2 week window of
+ | the original token being created until they must re-authenticate.
+ | Defaults to 2 weeks.
+ |
+ | You can also set this to null, to yield an infinite refresh time.
+ | Some may want this instead of never expiring tokens for e.g. a mobile app.
+ | This is not particularly recommended, so make sure you have appropriate
+ | systems in place to revoke the token if necessary.
+ |
+ */
+
+ 'refresh_ttl' => env('JWT_REFRESH_TTL', 20160),
+
+ /*
+ |--------------------------------------------------------------------------
+ | JWT hashing algorithm
+ |--------------------------------------------------------------------------
+ |
+ | Specify the hashing algorithm that will be used to sign the token.
+ |
+ */
+
+ 'algo' => env('JWT_ALGO', Tymon\JWTAuth\Providers\JWT\Provider::ALGO_HS256),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Required Claims
+ |--------------------------------------------------------------------------
+ |
+ | Specify the required claims that must exist in any token.
+ | A TokenInvalidException will be thrown if any of these claims are not
+ | present in the payload.
+ |
+ */
+
+ 'required_claims' => [
+ 'iss',
+ 'iat',
+ 'exp',
+ 'nbf',
+ 'sub',
+ 'jti',
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Persistent Claims
+ |--------------------------------------------------------------------------
+ |
+ | Specify the claim keys to be persisted when refreshing a token.
+ | `sub` and `iat` will automatically be persisted, in
+ | addition to the these claims.
+ |
+ | Note: If a claim does not exist then it will be ignored.
+ |
+ */
+
+ 'persistent_claims' => [
+ // 'foo',
+ // 'bar',
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Lock Subject
+ |--------------------------------------------------------------------------
+ |
+ | This will determine whether a `prv` claim is automatically added to
+ | the token. The purpose of this is to ensure that if you have multiple
+ | authentication models e.g. `App\User` & `App\OtherPerson`, then we
+ | should prevent one authentication request from impersonating another,
+ | if 2 tokens happen to have the same id across the 2 different models.
+ |
+ | Under specific circumstances, you may want to disable this behaviour
+ | e.g. if you only have one authentication model, then you would save
+ | a little on token size.
+ |
+ */
+
+ 'lock_subject' => true,
+
+ /*
+ |--------------------------------------------------------------------------
+ | Leeway
+ |--------------------------------------------------------------------------
+ |
+ | This property gives the jwt timestamp claims some "leeway".
+ | Meaning that if you have any unavoidable slight clock skew on
+ | any of your servers then this will afford you some level of cushioning.
+ |
+ | This applies to the claims `iat`, `nbf` and `exp`.
+ |
+ | Specify in seconds - only if you know you need it.
+ |
+ */
+
+ 'leeway' => env('JWT_LEEWAY', 0),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Blacklist Enabled
+ |--------------------------------------------------------------------------
+ |
+ | In order to invalidate tokens, you must have the blacklist enabled.
+ | If you do not want or need this functionality, then set this to false.
+ |
+ */
+
+ 'blacklist_enabled' => env('JWT_BLACKLIST_ENABLED', true),
+
+ /*
+ | -------------------------------------------------------------------------
+ | Blacklist Grace Period
+ | -------------------------------------------------------------------------
+ |
+ | When multiple concurrent requests are made with the same JWT,
+ | it is possible that some of them fail, due to token regeneration
+ | on every request.
+ |
+ | Set grace period in seconds to prevent parallel request failure.
+ |
+ */
+
+ 'blacklist_grace_period' => env('JWT_BLACKLIST_GRACE_PERIOD', 0),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Cookies encryption
+ |--------------------------------------------------------------------------
+ |
+ | By default Laravel encrypt cookies for security reason.
+ | If you decide to not decrypt cookies, you will have to configure Laravel
+ | to not encrypt your cookie token by adding its name into the $except
+ | array available in the middleware "EncryptCookies" provided by Laravel.
+ | see https://laravel.com/docs/master/responses#cookies-and-encryption
+ | for details.
+ |
+ | Set it to true if you want to decrypt cookies.
+ |
+ */
+
+ 'decrypt_cookies' => false,
+
+ /*
+ |--------------------------------------------------------------------------
+ | Providers
+ |--------------------------------------------------------------------------
+ |
+ | Specify the various providers used throughout the package.
+ |
+ */
+
+ 'providers' => [
+
+ /*
+ |--------------------------------------------------------------------------
+ | JWT Provider
+ |--------------------------------------------------------------------------
+ |
+ | Specify the provider that is used to create and decode the tokens.
+ |
+ */
+
+ 'jwt' => Tymon\JWTAuth\Providers\JWT\Lcobucci::class,
+
+ /*
+ |--------------------------------------------------------------------------
+ | Authentication Provider
+ |--------------------------------------------------------------------------
+ |
+ | Specify the provider that is used to authenticate users.
+ |
+ */
+
+ 'auth' => Tymon\JWTAuth\Providers\Auth\Illuminate::class,
+
+ /*
+ |--------------------------------------------------------------------------
+ | Storage Provider
+ |--------------------------------------------------------------------------
+ |
+ | Specify the provider that is used to store tokens in the blacklist.
+ |
+ */
+
+ 'storage' => Tymon\JWTAuth\Providers\Storage\Illuminate::class,
+
+ ],
+
+];
diff --git a/config/logging.php b/config/logging.php
new file mode 100644
index 0000000..8d94292
--- /dev/null
+++ b/config/logging.php
@@ -0,0 +1,132 @@
+ env('LOG_CHANNEL', 'stack'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Deprecations Log Channel
+ |--------------------------------------------------------------------------
+ |
+ | This option controls the log channel that should be used to log warnings
+ | regarding deprecated PHP and library features. This allows you to get
+ | your application ready for upcoming major versions of dependencies.
+ |
+ */
+
+ 'deprecations' => [
+ 'channel' => env('LOG_DEPRECATIONS_CHANNEL', 'null'),
+ 'trace' => env('LOG_DEPRECATIONS_TRACE', false),
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Log Channels
+ |--------------------------------------------------------------------------
+ |
+ | Here you may configure the log channels for your application. Laravel
+ | utilizes the Monolog PHP logging library, which includes a variety
+ | of powerful log handlers and formatters that you're free to use.
+ |
+ | Available drivers: "single", "daily", "slack", "syslog",
+ | "errorlog", "monolog", "custom", "stack"
+ |
+ */
+
+ 'channels' => [
+
+ 'stack' => [
+ 'driver' => 'stack',
+ 'channels' => explode(',', env('LOG_STACK', 'single')),
+ 'ignore_exceptions' => false,
+ ],
+
+ 'single' => [
+ 'driver' => 'single',
+ 'path' => storage_path('logs/laravel.log'),
+ 'level' => env('LOG_LEVEL', 'debug'),
+ 'replace_placeholders' => true,
+ ],
+
+ 'daily' => [
+ 'driver' => 'daily',
+ 'path' => storage_path('logs/laravel.log'),
+ 'level' => env('LOG_LEVEL', 'debug'),
+ 'days' => env('LOG_DAILY_DAYS', 14),
+ 'replace_placeholders' => true,
+ ],
+
+ 'slack' => [
+ 'driver' => 'slack',
+ 'url' => env('LOG_SLACK_WEBHOOK_URL'),
+ 'username' => env('LOG_SLACK_USERNAME', 'Laravel Log'),
+ 'emoji' => env('LOG_SLACK_EMOJI', ':boom:'),
+ 'level' => env('LOG_LEVEL', 'critical'),
+ 'replace_placeholders' => true,
+ ],
+
+ 'papertrail' => [
+ 'driver' => 'monolog',
+ 'level' => env('LOG_LEVEL', 'debug'),
+ 'handler' => env('LOG_PAPERTRAIL_HANDLER', SyslogUdpHandler::class),
+ 'handler_with' => [
+ 'host' => env('PAPERTRAIL_URL'),
+ 'port' => env('PAPERTRAIL_PORT'),
+ 'connectionString' => 'tls://'.env('PAPERTRAIL_URL').':'.env('PAPERTRAIL_PORT'),
+ ],
+ 'processors' => [PsrLogMessageProcessor::class],
+ ],
+
+ 'stderr' => [
+ 'driver' => 'monolog',
+ 'level' => env('LOG_LEVEL', 'debug'),
+ 'handler' => StreamHandler::class,
+ 'formatter' => env('LOG_STDERR_FORMATTER'),
+ 'with' => [
+ 'stream' => 'php://stderr',
+ ],
+ 'processors' => [PsrLogMessageProcessor::class],
+ ],
+
+ 'syslog' => [
+ 'driver' => 'syslog',
+ 'level' => env('LOG_LEVEL', 'debug'),
+ 'facility' => env('LOG_SYSLOG_FACILITY', LOG_USER),
+ 'replace_placeholders' => true,
+ ],
+
+ 'errorlog' => [
+ 'driver' => 'errorlog',
+ 'level' => env('LOG_LEVEL', 'debug'),
+ 'replace_placeholders' => true,
+ ],
+
+ 'null' => [
+ 'driver' => 'monolog',
+ 'handler' => NullHandler::class,
+ ],
+
+ 'emergency' => [
+ 'path' => storage_path('logs/laravel.log'),
+ ],
+
+ ],
+
+];
diff --git a/config/mail.php b/config/mail.php
new file mode 100644
index 0000000..df13d3d
--- /dev/null
+++ b/config/mail.php
@@ -0,0 +1,116 @@
+ env('MAIL_MAILER', 'log'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Mailer Configurations
+ |--------------------------------------------------------------------------
+ |
+ | Here you may configure all of the mailers used by your application plus
+ | their respective settings. Several examples have been configured for
+ | you and you are free to add your own as your application requires.
+ |
+ | Laravel supports a variety of mail "transport" drivers that can be used
+ | when delivering an email. You may specify which one you're using for
+ | your mailers below. You may also add additional mailers if needed.
+ |
+ | Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2",
+ | "postmark", "resend", "log", "array",
+ | "failover", "roundrobin"
+ |
+ */
+
+ 'mailers' => [
+
+ 'smtp' => [
+ 'transport' => 'smtp',
+ 'url' => env('MAIL_URL'),
+ 'host' => env('MAIL_HOST', '127.0.0.1'),
+ 'port' => env('MAIL_PORT', 2525),
+ 'encryption' => env('MAIL_ENCRYPTION', 'tls'),
+ 'username' => env('MAIL_USERNAME'),
+ 'password' => env('MAIL_PASSWORD'),
+ 'timeout' => null,
+ 'local_domain' => env('MAIL_EHLO_DOMAIN', parse_url(env('APP_URL', 'http://localhost'), PHP_URL_HOST)),
+ ],
+
+ 'ses' => [
+ 'transport' => 'ses',
+ ],
+
+ 'postmark' => [
+ 'transport' => 'postmark',
+ // 'message_stream_id' => env('POSTMARK_MESSAGE_STREAM_ID'),
+ // 'client' => [
+ // 'timeout' => 5,
+ // ],
+ ],
+
+ 'resend' => [
+ 'transport' => 'resend',
+ ],
+
+ 'sendmail' => [
+ 'transport' => 'sendmail',
+ 'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -bs -i'),
+ ],
+
+ 'log' => [
+ 'transport' => 'log',
+ 'channel' => env('MAIL_LOG_CHANNEL'),
+ ],
+
+ 'array' => [
+ 'transport' => 'array',
+ ],
+
+ 'failover' => [
+ 'transport' => 'failover',
+ 'mailers' => [
+ 'smtp',
+ 'log',
+ ],
+ ],
+
+ 'roundrobin' => [
+ 'transport' => 'roundrobin',
+ 'mailers' => [
+ 'ses',
+ 'postmark',
+ ],
+ ],
+
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Global "From" Address
+ |--------------------------------------------------------------------------
+ |
+ | You may wish for all emails sent by your application to be sent from
+ | the same address. Here you may specify a name and address that is
+ | used globally for all emails that are sent by your application.
+ |
+ */
+
+ 'from' => [
+ 'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),
+ 'name' => env('MAIL_FROM_NAME', 'Example'),
+ ],
+
+];
diff --git a/config/queue.php b/config/queue.php
new file mode 100644
index 0000000..116bd8d
--- /dev/null
+++ b/config/queue.php
@@ -0,0 +1,112 @@
+ env('QUEUE_CONNECTION', 'database'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Queue Connections
+ |--------------------------------------------------------------------------
+ |
+ | Here you may configure the connection options for every queue backend
+ | used by your application. An example configuration is provided for
+ | each backend supported by Laravel. You're also free to add more.
+ |
+ | Drivers: "sync", "database", "beanstalkd", "sqs", "redis", "null"
+ |
+ */
+
+ 'connections' => [
+
+ 'sync' => [
+ 'driver' => 'sync',
+ ],
+
+ 'database' => [
+ 'driver' => 'database',
+ 'connection' => env('DB_QUEUE_CONNECTION'),
+ 'table' => env('DB_QUEUE_TABLE', 'jobs'),
+ 'queue' => env('DB_QUEUE', 'default'),
+ 'retry_after' => (int) env('DB_QUEUE_RETRY_AFTER', 90),
+ 'after_commit' => false,
+ ],
+
+ 'beanstalkd' => [
+ 'driver' => 'beanstalkd',
+ 'host' => env('BEANSTALKD_QUEUE_HOST', 'localhost'),
+ 'queue' => env('BEANSTALKD_QUEUE', 'default'),
+ 'retry_after' => (int) env('BEANSTALKD_QUEUE_RETRY_AFTER', 90),
+ 'block_for' => 0,
+ 'after_commit' => false,
+ ],
+
+ 'sqs' => [
+ 'driver' => 'sqs',
+ 'key' => env('AWS_ACCESS_KEY_ID'),
+ 'secret' => env('AWS_SECRET_ACCESS_KEY'),
+ 'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'),
+ 'queue' => env('SQS_QUEUE', 'default'),
+ 'suffix' => env('SQS_SUFFIX'),
+ 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
+ 'after_commit' => false,
+ ],
+
+ 'redis' => [
+ 'driver' => 'redis',
+ 'connection' => env('REDIS_QUEUE_CONNECTION', 'default'),
+ 'queue' => env('REDIS_QUEUE', 'default'),
+ 'retry_after' => (int) env('REDIS_QUEUE_RETRY_AFTER', 90),
+ 'block_for' => null,
+ 'after_commit' => false,
+ ],
+
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Job Batching
+ |--------------------------------------------------------------------------
+ |
+ | The following options configure the database and table that store job
+ | batching information. These options can be updated to any database
+ | connection and table which has been defined by your application.
+ |
+ */
+
+ 'batching' => [
+ 'database' => env('DB_CONNECTION', 'sqlite'),
+ 'table' => 'job_batches',
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Failed Queue Jobs
+ |--------------------------------------------------------------------------
+ |
+ | These options configure the behavior of failed queue job logging so you
+ | can control how and where failed jobs are stored. Laravel ships with
+ | support for storing failed jobs in a simple file or in a database.
+ |
+ | Supported drivers: "database-uuids", "dynamodb", "file", "null"
+ |
+ */
+
+ 'failed' => [
+ 'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'),
+ 'database' => env('DB_CONNECTION', 'sqlite'),
+ 'table' => 'failed_jobs',
+ ],
+
+];
diff --git a/config/sanctum.php b/config/sanctum.php
new file mode 100644
index 0000000..c849447
--- /dev/null
+++ b/config/sanctum.php
@@ -0,0 +1,83 @@
+ explode(',', env('SANCTUM_STATEFUL_DOMAINS', sprintf(
+ '%s%s',
+ 'localhost,localhost:3000,localhost:8000,127.0.0.1,127.0.0.1:8000,::1,10.10.177.252,10.10.177.252:8000,127.0.0.1,192.168.1.15,192.168.1.15:8000',
+ env('APP_URL') ? ',' . parse_url(env('APP_URL'), PHP_URL_HOST) : ''
+ ))),
+
+ /*
+ |--------------------------------------------------------------------------
+ | 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' => Illuminate\Cookie\Middleware\EncryptCookies::class,
+ 'validate_csrf_token' => Illuminate\Foundation\Http\Middleware\ValidateCsrfToken::class,
+ ],
+
+];
diff --git a/config/services.php b/config/services.php
new file mode 100644
index 0000000..9ac36c9
--- /dev/null
+++ b/config/services.php
@@ -0,0 +1,42 @@
+ [
+ 'token' => env('POSTMARK_TOKEN'),
+ ],
+
+ 'ses' => [
+ 'key' => env('AWS_ACCESS_KEY_ID'),
+ 'secret' => env('AWS_SECRET_ACCESS_KEY'),
+ 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
+ ],
+
+ 'resend' => [
+ 'key' => env('RESEND_KEY'),
+ ],
+
+ 'slack' => [
+ 'notifications' => [
+ 'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'),
+ 'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'),
+ ],
+ ],
+
+ 'weatherapi' => [
+ 'key' => env('WEATHERAPI_KEY'),
+ ],
+
+];
diff --git a/config/session.php b/config/session.php
new file mode 100644
index 0000000..f0b6541
--- /dev/null
+++ b/config/session.php
@@ -0,0 +1,217 @@
+ env('SESSION_DRIVER', 'database'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Session Lifetime
+ |--------------------------------------------------------------------------
+ |
+ | Here you may specify the number of minutes that you wish the session
+ | to be allowed to remain idle before it expires. If you want them
+ | to expire immediately when the browser is closed then you may
+ | indicate that via the expire_on_close configuration option.
+ |
+ */
+
+ 'lifetime' => env('SESSION_LIFETIME', 120),
+
+ 'expire_on_close' => env('SESSION_EXPIRE_ON_CLOSE', false),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Session Encryption
+ |--------------------------------------------------------------------------
+ |
+ | This option allows you to easily specify that all of your session data
+ | should be encrypted before it's stored. All encryption is performed
+ | automatically by Laravel and you may use the session like normal.
+ |
+ */
+
+ 'encrypt' => env('SESSION_ENCRYPT', false),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Session File Location
+ |--------------------------------------------------------------------------
+ |
+ | When utilizing the "file" session driver, the session files are placed
+ | on disk. The default storage location is defined here; however, you
+ | are free to provide another location where they should be stored.
+ |
+ */
+
+ 'files' => storage_path('framework/sessions'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Session Database Connection
+ |--------------------------------------------------------------------------
+ |
+ | When using the "database" or "redis" session drivers, you may specify a
+ | connection that should be used to manage these sessions. This should
+ | correspond to a connection in your database configuration options.
+ |
+ */
+
+ 'connection' => env('SESSION_CONNECTION'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Session Database Table
+ |--------------------------------------------------------------------------
+ |
+ | When using the "database" session driver, you may specify the table to
+ | be used to store sessions. Of course, a sensible default is defined
+ | for you; however, you're welcome to change this to another table.
+ |
+ */
+
+ 'table' => env('SESSION_TABLE', 'sessions'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Session Cache Store
+ |--------------------------------------------------------------------------
+ |
+ | When using one of the framework's cache driven session backends, you may
+ | define the cache store which should be used to store the session data
+ | between requests. This must match one of your defined cache stores.
+ |
+ | Affects: "apc", "dynamodb", "memcached", "redis"
+ |
+ */
+
+ 'store' => env('SESSION_STORE'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Session Sweeping Lottery
+ |--------------------------------------------------------------------------
+ |
+ | Some session drivers must manually sweep their storage location to get
+ | rid of old sessions from storage. Here are the chances that it will
+ | happen on a given request. By default, the odds are 2 out of 100.
+ |
+ */
+
+ 'lottery' => [2, 100],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Session Cookie Name
+ |--------------------------------------------------------------------------
+ |
+ | Here you may change the name of the session cookie that is created by
+ | the framework. Typically, you should not need to change this value
+ | since doing so does not grant a meaningful security improvement.
+ |
+ */
+
+ 'cookie' => env(
+ 'SESSION_COOKIE',
+ Str::slug(env('APP_NAME', 'laravel'), '_').'_session'
+ ),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Session Cookie Path
+ |--------------------------------------------------------------------------
+ |
+ | The session cookie path determines the path for which the cookie will
+ | be regarded as available. Typically, this will be the root path of
+ | your application, but you're free to change this when necessary.
+ |
+ */
+
+ 'path' => env('SESSION_PATH', '/'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Session Cookie Domain
+ |--------------------------------------------------------------------------
+ |
+ | This value determines the domain and subdomains the session cookie is
+ | available to. By default, the cookie will be available to the root
+ | domain and all subdomains. Typically, this shouldn't be changed.
+ |
+ */
+
+ 'domain' => env('SESSION_DOMAIN'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | HTTPS Only Cookies
+ |--------------------------------------------------------------------------
+ |
+ | By setting this option to true, session cookies will only be sent back
+ | to the server if the browser has a HTTPS connection. This will keep
+ | the cookie from being sent to you when it can't be done securely.
+ |
+ */
+
+ 'secure' => env('SESSION_SECURE_COOKIE'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | HTTP Access Only
+ |--------------------------------------------------------------------------
+ |
+ | Setting this value to true will prevent JavaScript from accessing the
+ | value of the cookie and the cookie will only be accessible through
+ | the HTTP protocol. It's unlikely you should disable this option.
+ |
+ */
+
+ 'http_only' => env('SESSION_HTTP_ONLY', true),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Same-Site Cookies
+ |--------------------------------------------------------------------------
+ |
+ | This option determines how your cookies behave when cross-site requests
+ | take place, and can be used to mitigate CSRF attacks. By default, we
+ | will set this value to "lax" to permit secure cross-site requests.
+ |
+ | See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#samesitesamesite-value
+ |
+ | Supported: "lax", "strict", "none", null
+ |
+ */
+
+ 'same_site' => env('SESSION_SAME_SITE', 'lax'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Partitioned Cookies
+ |--------------------------------------------------------------------------
+ |
+ | Setting this value to true will tie the cookie to the top-level site for
+ | a cross-site context. Partitioned cookies are accepted by the browser
+ | when flagged "secure" and the Same-Site attribute is set to "none".
+ |
+ */
+
+ 'partitioned' => env('SESSION_PARTITIONED_COOKIE', false),
+
+];
diff --git a/database/.gitignore b/database/.gitignore
new file mode 100644
index 0000000..9b19b93
--- /dev/null
+++ b/database/.gitignore
@@ -0,0 +1 @@
+*.sqlite*
diff --git a/database/factories/OutletFactory.php b/database/factories/OutletFactory.php
new file mode 100644
index 0000000..ea14118
--- /dev/null
+++ b/database/factories/OutletFactory.php
@@ -0,0 +1,22 @@
+define(function (Faker $faker) {
+ $mapCenterLatitude = config('leaflet.map_center_latitude');
+ $mapCenterLongitude = config('leaflet.map_center_longitude');
+ $minLatitude = $mapCenterLatitude - 0.05;
+ $maxLatitude = $mapCenterLatitude + 0.05;
+ $minLongitude = $mapCenterLongitude - 0.07;
+ $maxLongitude = $mapCenterLongitude + 0.07;
+
+ return [
+ 'name' => ucwords($faker->words(2, true)),
+ 'address' => $faker->address,
+ 'latitude' => $faker->latitude($minLatitude, $maxLatitude),
+ 'longitude' => $faker->longitude($minLongitude, $maxLongitude),
+ 'creator_id' => Admin::factory(), // Membuat data Admin baru dan mendapatkan ID-nya
+ ];
+});
diff --git a/database/factories/UserFactory.php b/database/factories/UserFactory.php
new file mode 100644
index 0000000..584104c
--- /dev/null
+++ b/database/factories/UserFactory.php
@@ -0,0 +1,44 @@
+
+ */
+class UserFactory extends Factory
+{
+ /**
+ * The current password being used by the factory.
+ */
+ protected static ?string $password;
+
+ /**
+ * Define the model's default state.
+ *
+ * @return array
+ */
+ public function definition(): array
+ {
+ return [
+ 'name' => fake()->name(),
+ 'email' => fake()->unique()->safeEmail(),
+ 'email_verified_at' => now(),
+ 'password' => static::$password ??= Hash::make('password'),
+ 'remember_token' => Str::random(10),
+ ];
+ }
+
+ /**
+ * Indicate that the model's email address should be unverified.
+ */
+ public function unverified(): static
+ {
+ return $this->state(fn (array $attributes) => [
+ 'email_verified_at' => null,
+ ]);
+ }
+}
diff --git a/database/migrations/0001_01_01_000001_create_cache_table.php b/database/migrations/0001_01_01_000001_create_cache_table.php
new file mode 100644
index 0000000..b9c106b
--- /dev/null
+++ b/database/migrations/0001_01_01_000001_create_cache_table.php
@@ -0,0 +1,35 @@
+string('key')->primary();
+ $table->mediumText('value');
+ $table->integer('expiration');
+ });
+
+ Schema::create('cache_locks', function (Blueprint $table) {
+ $table->string('key')->primary();
+ $table->string('owner');
+ $table->integer('expiration');
+ });
+ }
+
+ /**
+ * Reverse the migrations.
+ */
+ public function down(): void
+ {
+ Schema::dropIfExists('cache');
+ Schema::dropIfExists('cache_locks');
+ }
+};
diff --git a/database/migrations/0001_01_01_000002_create_jobs_table.php b/database/migrations/0001_01_01_000002_create_jobs_table.php
new file mode 100644
index 0000000..425e705
--- /dev/null
+++ b/database/migrations/0001_01_01_000002_create_jobs_table.php
@@ -0,0 +1,57 @@
+id();
+ $table->string('queue')->index();
+ $table->longText('payload');
+ $table->unsignedTinyInteger('attempts');
+ $table->unsignedInteger('reserved_at')->nullable();
+ $table->unsignedInteger('available_at');
+ $table->unsignedInteger('created_at');
+ });
+
+ Schema::create('job_batches', function (Blueprint $table) {
+ $table->string('id')->primary();
+ $table->string('name');
+ $table->integer('total_jobs');
+ $table->integer('pending_jobs');
+ $table->integer('failed_jobs');
+ $table->longText('failed_job_ids');
+ $table->mediumText('options')->nullable();
+ $table->integer('cancelled_at')->nullable();
+ $table->integer('created_at');
+ $table->integer('finished_at')->nullable();
+ });
+
+ Schema::create('failed_jobs', function (Blueprint $table) {
+ $table->id();
+ $table->string('uuid')->unique();
+ $table->text('connection');
+ $table->text('queue');
+ $table->longText('payload');
+ $table->longText('exception');
+ $table->timestamp('failed_at')->useCurrent();
+ });
+ }
+
+ /**
+ * Reverse the migrations.
+ */
+ public function down(): void
+ {
+ Schema::dropIfExists('jobs');
+ Schema::dropIfExists('job_batches');
+ Schema::dropIfExists('failed_jobs');
+ }
+};
diff --git a/database/migrations/2024_01_01_000000_create_admins_table.php b/database/migrations/2024_01_01_000000_create_admins_table.php
new file mode 100644
index 0000000..eba504e
--- /dev/null
+++ b/database/migrations/2024_01_01_000000_create_admins_table.php
@@ -0,0 +1,28 @@
+id();
+ $table->string('name');
+ $table->string('email')->unique();
+ $table->string('password');
+ $table->text('alamat');
+ $table->string('telepon');
+ $table->enum('tipe_pengguna', ['admin', 'super admin'])->default('admin');
+ $table->rememberToken();
+ $table->timestamps();
+ });
+ }
+
+ public function down()
+ {
+ Schema::dropIfExists('admins');
+ }
+};
\ No newline at end of file
diff --git a/database/migrations/2024_01_01_000000_create_users_table.php b/database/migrations/2024_01_01_000000_create_users_table.php
new file mode 100644
index 0000000..1159cd4
--- /dev/null
+++ b/database/migrations/2024_01_01_000000_create_users_table.php
@@ -0,0 +1,38 @@
+id();
+ $table->string('name');
+ $table->string('email')->unique();
+ $table->string('password');
+ $table->enum('tipe_pengguna', ['user', 'admin', 'super admin'])->default('user');
+ $table->string('instansi')->nullable();
+ $table->string('jabatan')->nullable();
+ $table->string('alamat');
+ $table->string('verification_token')->nullable();
+ $table->timestamp('email_verified_at')->nullable();
+ $table->boolean('is_verified')->default(false);
+ $table->rememberToken();
+ $table->timestamps();
+ });
+ }
+
+ /**
+ * Reverse the migrations.
+ */
+ public function down(): void
+ {
+ Schema::dropIfExists('users');
+ }
+};
\ No newline at end of file
diff --git a/database/migrations/2024_01_01_000001_create_jenis_bencana_table.php b/database/migrations/2024_01_01_000001_create_jenis_bencana_table.php
new file mode 100644
index 0000000..77859f7
--- /dev/null
+++ b/database/migrations/2024_01_01_000001_create_jenis_bencana_table.php
@@ -0,0 +1,22 @@
+id();
+ $table->string('nama');
+ $table->timestamps();
+ });
+ }
+
+ public function down()
+ {
+ Schema::dropIfExists('jenis_bencana');
+ }
+}
\ No newline at end of file
diff --git a/database/migrations/2024_01_01_000001_create_laporan_jalan_table.php b/database/migrations/2024_01_01_000001_create_laporan_jalan_table.php
new file mode 100644
index 0000000..d66328c
--- /dev/null
+++ b/database/migrations/2024_01_01_000001_create_laporan_jalan_table.php
@@ -0,0 +1,29 @@
+id();
+ $table->foreignId('user_id')->constrained()->onDelete('cascade');
+ $table->string('lokasi');
+ $table->double('latitude');
+ $table->double('longitude');
+ $table->enum('jenis_rusak', ['jalan rusak ringan', 'jalan rusak berat']);
+ $table->text('deskripsi')->nullable();
+ $table->string('foto')->nullable();
+ $table->enum('status', ['menunggu', 'dalam_proses', 'selesai'])->default('menunggu');
+ $table->timestamps();
+ });
+ }
+
+ public function down()
+ {
+ Schema::dropIfExists('laporan_jalan');
+ }
+}
\ No newline at end of file
diff --git a/database/migrations/2024_01_01_000002_create_laporan_bencana_table.php b/database/migrations/2024_01_01_000002_create_laporan_bencana_table.php
new file mode 100644
index 0000000..6e6dff8
--- /dev/null
+++ b/database/migrations/2024_01_01_000002_create_laporan_bencana_table.php
@@ -0,0 +1,37 @@
+id();
+ $table->foreignId('user_id')->constrained()->onDelete('cascade');
+ $table->string('lokasi');
+ $table->double('latitude');
+ $table->double('longitude');
+ $table->enum('jenis_bencana', [
+ 'Banjir',
+ 'Longsor',
+ 'Erupsi',
+ 'Lahar Panas',
+ 'Lahar Dingin',
+ 'Gempa',
+ 'Angin Topan'
+ ]);
+ $table->text('deskripsi')->nullable();
+ $table->string('foto')->nullable();
+ $table->enum('status', ['menunggu', 'dalam_proses', 'selesai'])->default('menunggu');
+ $table->timestamps();
+ });
+ }
+
+ public function down()
+ {
+ Schema::dropIfExists('laporan_bencana');
+ }
+}
\ No newline at end of file
diff --git a/database/migrations/2024_01_01_000003_create_admins_table.txt b/database/migrations/2024_01_01_000003_create_admins_table.txt
new file mode 100644
index 0000000..832ff58
--- /dev/null
+++ b/database/migrations/2024_01_01_000003_create_admins_table.txt
@@ -0,0 +1,34 @@
+id();
+ $table->string('name');
+ $table->string('email')->unique();
+ $table->string('password');
+ $table->string('alamat');
+ $table->string('telepon');
+ $table->enum('tipe_pengguna', ['super admin', 'admin'])->default('admin');
+ $table->rememberToken();
+ $table->timestamps();
+ });
+ }
+
+ /**
+ * Reverse the migrations.
+ */
+ public function down(): void
+ {
+ Schema::dropIfExists('admins');
+ }
+};
\ No newline at end of file
diff --git a/database/migrations/2024_01_01_000004_create_sessions_table.php b/database/migrations/2024_01_01_000004_create_sessions_table.php
new file mode 100644
index 0000000..e0c718a
--- /dev/null
+++ b/database/migrations/2024_01_01_000004_create_sessions_table.php
@@ -0,0 +1,31 @@
+string('id')->primary();
+ $table->foreignId('user_id')->nullable()->index();
+ $table->string('ip_address', 45)->nullable();
+ $table->text('user_agent')->nullable();
+ $table->longText('payload');
+ $table->integer('last_activity')->index();
+ });
+ }
+
+ /**
+ * Reverse the migrations.
+ */
+ public function down(): void
+ {
+ Schema::dropIfExists('sessions');
+ }
+};
\ No newline at end of file
diff --git a/database/migrations/2025_02_10_171700_create_personal_access_tokens_table.txt b/database/migrations/2025_02_10_171700_create_personal_access_tokens_table.txt
new file mode 100644
index 0000000..e828ad8
--- /dev/null
+++ b/database/migrations/2025_02_10_171700_create_personal_access_tokens_table.txt
@@ -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_02_11_044710_create_personal_access_tokens_table.txt b/database/migrations/2025_02_11_044710_create_personal_access_tokens_table.txt
new file mode 100644
index 0000000..e828ad8
--- /dev/null
+++ b/database/migrations/2025_02_11_044710_create_personal_access_tokens_table.txt
@@ -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_02_18_030842_create_personal_access_tokens_table.php b/database/migrations/2025_02_18_030842_create_personal_access_tokens_table.php
new file mode 100644
index 0000000..e828ad8
--- /dev/null
+++ b/database/migrations/2025_02_18_030842_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_02_24_add_email_verification_to_users_table.txt b/database/migrations/2025_02_24_add_email_verification_to_users_table.txt
new file mode 100644
index 0000000..b4565fb
--- /dev/null
+++ b/database/migrations/2025_02_24_add_email_verification_to_users_table.txt
@@ -0,0 +1,24 @@
+string('verification_token')->nullable();
+ $table->timestamp('email_verified_at')->nullable();
+ $table->boolean('is_verified')->default(false);
+ });
+ }
+
+ public function down()
+ {
+ Schema::table('users', function (Blueprint $table) {
+ $table->dropColumn(['verification_token', 'email_verified_at', 'is_verified']);
+ });
+ }
+}
\ No newline at end of file
diff --git a/database/migrations/2025_03_06_294433_create_notifications_table.php b/database/migrations/2025_03_06_294433_create_notifications_table.php
new file mode 100644
index 0000000..d738032
--- /dev/null
+++ b/database/migrations/2025_03_06_294433_create_notifications_table.php
@@ -0,0 +1,31 @@
+uuid('id')->primary();
+ $table->string('type');
+ $table->morphs('notifiable');
+ $table->text('data');
+ $table->timestamp('read_at')->nullable();
+ $table->timestamps();
+ });
+ }
+
+ /**
+ * Reverse the migrations.
+ */
+ public function down(): void
+ {
+ Schema::dropIfExists('notifications');
+ }
+};
diff --git a/database/migrations/2025_03_06_294444_add_reset_password_fields_to_users_table.php b/database/migrations/2025_03_06_294444_add_reset_password_fields_to_users_table.php
new file mode 100644
index 0000000..540ceb9
--- /dev/null
+++ b/database/migrations/2025_03_06_294444_add_reset_password_fields_to_users_table.php
@@ -0,0 +1,23 @@
+string('reset_password_token')->nullable();
+ $table->timestamp('reset_password_expires_at')->nullable();
+ });
+ }
+
+ public function down()
+ {
+ Schema::table('users', function (Blueprint $table) {
+ $table->dropColumn(['reset_password_token', 'reset_password_expires_at']);
+ });
+ }
+}
\ No newline at end of file
diff --git a/database/seeders/AdminSeeder.php b/database/seeders/AdminSeeder.php
new file mode 100644
index 0000000..f5b1d21
--- /dev/null
+++ b/database/seeders/AdminSeeder.php
@@ -0,0 +1,22 @@
+ 'Super Admin',
+ 'email' => 'admin@admin.com',
+ 'password' => Hash::make('admin123'),
+ 'alamat' => 'Alamat Admin',
+ 'telepon' => '08123456789',
+ 'tipe_pengguna' => 'admin',
+ ]);
+ }
+}
\ No newline at end of file
diff --git a/database/seeders/DatabaseSeeder.php b/database/seeders/DatabaseSeeder.php
new file mode 100644
index 0000000..394b33f
--- /dev/null
+++ b/database/seeders/DatabaseSeeder.php
@@ -0,0 +1,22 @@
+call([
+ UserSeeder::class,
+ AdminSeeder::class,
+ JenisBencanaSeeder::class,
+ LaporanJalanSeeder::class,
+ LaporanBencanaSeeder::class,
+ ]);
+ }
+}
diff --git a/database/seeders/JenisBencanaSeeder.php b/database/seeders/JenisBencanaSeeder.php
new file mode 100644
index 0000000..7172080
--- /dev/null
+++ b/database/seeders/JenisBencanaSeeder.php
@@ -0,0 +1,30 @@
+ 'Banjir'],
+ ['nama' => 'Longsor'],
+ ['nama' => 'Erupsi'],
+ ['nama' => 'Lahar Panas'],
+ ['nama' => 'Lahar Dingin'],
+ ['nama' => 'Gempa'],
+ ['nama' => 'Angin Topan'],
+ ];
+
+ foreach ($jenisBencana as $jenis) {
+ DB::table('jenis_bencana')->insert([
+ 'nama' => $jenis['nama'],
+ 'created_at' => now(),
+ 'updated_at' => now(),
+ ]);
+ }
+ }
+}
\ No newline at end of file
diff --git a/database/seeders/LaporanBencanaSeeder.php b/database/seeders/LaporanBencanaSeeder.php
new file mode 100644
index 0000000..6c603b0
--- /dev/null
+++ b/database/seeders/LaporanBencanaSeeder.php
@@ -0,0 +1,29 @@
+ 60,
+ 'lokasi' => 'Lat: -8.238508511114578, Lng: 113.14954286455946',
+ 'latitude' => -8.238508511114578,
+ 'longitude' => 113.14954286455946,
+ 'jenis_bencana' => 'Angin Topan',
+ 'status' => 'selesai',
+ 'created_at' => Carbon::parse('2024-10-08'),
+ 'updated_at' => Carbon::parse('2024-10-08'),
+ ]);
+ }
+}
\ No newline at end of file
diff --git a/database/seeders/LaporanJalanSeeder.php b/database/seeders/LaporanJalanSeeder.php
new file mode 100644
index 0000000..24b19a2
--- /dev/null
+++ b/database/seeders/LaporanJalanSeeder.php
@@ -0,0 +1,73 @@
+truncate();
+
+ $data = [
+ [-8.2053897448152, 113.17503656814328, 'jalan rusak berat'],
+ [-8.20531946878947, 113.17486996814337, 'jalan rusak ringan'],
+ [-8.20518307371403, 113.1746476681434, 'jalan rusak ringan'],
+ [-8.2049796066537, 113.17374365280199, 'jalan rusak berat'],
+ [-8.19928369600686, 113.16667945280189, 'jalan rusak berat'],
+ [-8.20372255789147, 113.17254747834295, 'jalan rusak ringan'],
+ [-8.19958558703847, 113.16727206307439, 'jalan rusak berat'],
+ [-8.19804788185248, 113.16478497173593, 'jalan rusak ringan'],
+ [-8.1975984634749, 113.16421648526139, 'jalan rusak berat'],
+ [-8.19665386682485, 113.16291014435866, 'jalan rusak berat'],
+ [-8.19604539761673, 113.16205990727133, 'jalan rusak berat'],
+ [-8.19596197838114, 113.16196819074281, 'jalan rusak berat'],
+ [-8.19349754154608, 113.15790825213077, 'jalan rusak berat'],
+ [-8.19270764937709, 113.15731441842738, 'jalan rusak berat'],
+ [-8.1924730046386, 113.1574317768654, 'jalan rusak berat'],
+ [-8.19173189805958, 113.15787069741772, 'jalan rusak berat'],
+ [-8.19173189805958, 113.15787069741772, 'jalan rusak ringan'],
+ [-8.19173189805958, 113.15787069741772, 'jalan rusak berat'],
+ [-8.1844933255441, 113.15410243532753, 'jalan rusak berat'],
+ [-8.18182621124981, 113.15457891061641, 'jalan rusak berat'],
+ [-8.1837075869878, 113.15414705722526, 'jalan rusak ringan'],
+ [-8.20802787237037, 113.17600509980660, 'jalan rusak ringan'],
+ [-8.20911162867179, 113.17780845971807, 'jalan rusak ringan'],
+ [-8.20947345171917, 113.17782159538099, 'jalan rusak ringan'],
+ [-8.20949084571963, 113.17782159537950, 'jalan rusak ringan'],
+ [-8.20991171773960, 113.17783313812822, 'jalan rusak ringan'],
+ [-8.21171397495305, 113.18258920081308, 'jalan rusak ringan'],
+ [-8.21174370488054, 113.18279140966845, 'jalan rusak ringan'],
+ [-8.21177168960574, 113.18300309646767, 'jalan rusak berat'],
+ [-8.212423443922, 113.18512663270613, 'jalan rusak ringan'],
+ [-8.212806409903934, 113.18587999177089, 'jalan rusak berat'],
+ [-8.213057385123594, 113.18642874383065, 'jalan rusak ringan'],
+ [-8.213206223363539, 113.18698364610107, 'jalan rusak berat'],
+
+ ];
+
+ $now = Carbon::now();
+
+ foreach ($data as $item) {
+ DB::table('laporan_jalan')->insert([
+ 'user_id' => 61,
+ 'lokasi' => "Lat: {$item[0]}, Lng: {$item[1]}",
+ 'latitude' => $item[0],
+ 'longitude' => $item[1],
+ 'jenis_rusak' => $item[2],
+ 'deskripsi' => null,
+ 'foto' => null,
+ 'status' => 'dalam_proses',
+ 'created_at' => $now,
+ 'updated_at' => $now,
+ ]);
+ }
+ }
+}
\ No newline at end of file
diff --git a/database/seeders/UserSeeder.php b/database/seeders/UserSeeder.php
new file mode 100644
index 0000000..35ab5f0
--- /dev/null
+++ b/database/seeders/UserSeeder.php
@@ -0,0 +1,89 @@
+delete();
+
+ // Menambahkan data admin
+ User::create([
+ 'name' => 'Admin BPBD',
+ 'email' => 'admin1@gmail.com',
+ 'password' => Hash::make('admin123'),
+ 'alamat' => 'Alamat Admin 1',
+ 'tipe_pengguna' => 'admin',
+ 'instansi' => 'BPBD',
+ 'jabatan' => 'Kepala Seksi Kedaruratan dan Logistik',
+ ]);
+
+ User::create([
+ 'name' => 'Admin PUPR',
+ 'email' => 'admin2@gmail.com',
+ 'password' => Hash::make('admin123'),
+ 'alamat' => 'Alamat Admin 2',
+ 'tipe_pengguna' => 'admin',
+ 'instansi' => 'PUPR',
+ 'jabatan' => 'Kepala Bidang Bina Marga',
+ ]);
+
+ User::create([
+ 'name' => 'Super Admin',
+ 'email' => 'superadmin@gmail.com',
+ 'password' => Hash::make('superadmin123'),
+ 'alamat' => 'Alamat Super Admin',
+ 'tipe_pengguna' => 'super admin',
+ 'instansi' => 'BPBD',
+ 'jabatan' => 'Koordinator Tim Reaksi Cepat (TRC)',
+ ]);
+
+ // Menambahkan data pengguna biasa
+ $users = [
+ ['name' => 'Ahmad Fauzi', 'email' => 'ahmad.fauzi87@gmail.com', 'alamat' => 'Jl. Gajah Mada No. 23, Lumajang'],
+ ['name' => 'Siti Rohmah Wati', 'email' => 'siti.rohmah1992@gmail.com', 'alamat' => 'Perumahan Sukodono Indah Blok C-5, Lumajang'],
+ ['name' => 'Budi Santoso', 'email' => 'budi.s@gmail.com', 'alamat' => 'Dusun Krajan RT 03/RW 02, Tempeh'],
+ ['name' => 'Dewi Lestari', 'email' => 'dewilestari_90@gmail.com', 'alamat' => 'Jl. Ahmad Yani Km 3, Pasirian'],
+ ['name' => 'Eko Prasetyo Nugroho', 'email' => 'eko.pras78@gmail.com', 'alamat' => 'Perum Griya Asri Blok D-12, Kunir'],
+ ['name' => 'Fitri Handayani', 'email' => 'fitri.h@gmail.com', 'alamat' => 'Jl. Raya Randuagung No. 45, Randuagung'],
+ ['name' => 'Gunawan Saputra', 'email' => 'gunawan_s@gmail.com', 'alamat' => 'Desa Tunjung RT 05/RW 01, Yosowilangun'],
+ ['name' => 'Hesti Wahyuni Putri', 'email' => 'hestiwahyuni1995@gmail.com', 'alamat' => 'Jl. Pahlawan No. 17, Pasrujambe'],
+ ['name' => 'Indra Wijaya', 'email' => 'indra.wijaya85@gmail.com', 'alamat' => 'Perumahan Senduro Asri Blok F-7, Senduro'],
+ ['name' => 'Joko Susilo', 'email' => 'joko_s@gmail.com', 'alamat' => 'Dusun Sumbersari RT 02/RW 03, Candipuro'],
+ ['name' => 'Kartika Dewi Anggraini', 'email' => 'kartika.d@gmail.com', 'alamat' => 'Jl. Veteran No. 32, Tekung'],
+ ['name' => 'Lukman Hakim', 'email' => 'lukman.h1989@gmail.com', 'alamat' => 'Jl. Wijaya Kusuma Gang 3 No. 12, Padang'],
+ ['name' => 'Maria Ulfa Rahmawati', 'email' => 'maria_ulfa@gmail.com', 'alamat' => 'Perum Griya Sukodono Blok A-9, Sukodono'],
+ ['name' => 'Nugroho Prabowo', 'email' => 'nugroho.p@gmail.com', 'alamat' => 'Desa Wonorejo RT 04/RW 02, Gucialit'],
+ ['name' => 'Okta Sari', 'email' => 'okta.sari93@gmail.com', 'alamat' => 'Jl. Kenanga No. 7, Jatiroto'],
+ ['name' => 'Prasetya Adi Nugraha', 'email' => 'prasetya_adi@gmail.com', 'alamat' => 'Dusun Karangsari RT 01/RW 04, Tempursari'],
+ ['name' => 'Qorina Setiawati', 'email' => 'qorina.s@gmail.com', 'alamat' => 'Jl. Sumberwuluh Gang Mawar No. 3, Pronojiwo'],
+ ['name' => 'Rizky Ramadhan Saputra', 'email' => 'rizky.r1994@gmail.com', 'alamat' => 'Perum Griya Ranuyoso Blok B-15, Ranuyoso'],
+ ['name' => 'Sulastri Handayani', 'email' => 'sulastri_h@gmail.com', 'alamat' => 'Jl. Anggrek No. 21, Klakah'],
+ ['name' => 'Teguh Wicaksono', 'email' => 'teguh.w88@gmail.com', 'alamat' => 'Desa Kalipepe RT 03/RW 01, Rowokangkung'],
+ ['name' => 'Umi Salamah Hidayati', 'email' => 'umi.salamah91@gmail.com', 'alamat' => 'Jl. Mawar No. 9, Kedungjajang'],
+ ['name' => 'Vina Melati', 'email' => 'vina_melati@gmail.com', 'alamat' => 'Perumahan Kunir Indah Blok G-3, Kunir'],
+ ['name' => 'Wahyudi Syahputra Pratama', 'email' => 'wahyudi.s@gmail.com', 'alamat' => 'Jl. Duren No. 15, Lumajang'],
+ ['name' => 'Xaverius Angga', 'email' => 'xave.angga90@gmail.com', 'alamat' => 'Perum Tempeh Permai Blok C-8, Tempeh'],
+ ];
+
+ foreach ($users as $user) {
+ User::create([
+ 'name' => $user['name'],
+ 'email' => $user['email'],
+ 'password' => Hash::make('password123'),
+ 'alamat' => $user['alamat'],
+ 'tipe_pengguna' => 'user',
+ ]);
+ }
+ }
+}
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..4e934ca
--- /dev/null
+++ b/package.json
@@ -0,0 +1,13 @@
+{
+ "private": true,
+ "type": "module",
+ "scripts": {
+ "dev": "vite",
+ "build": "vite build"
+ },
+ "devDependencies": {
+ "axios": "^1.6.4",
+ "laravel-vite-plugin": "^1.0",
+ "vite": "^5.0"
+ }
+}
diff --git a/phpunit.xml b/phpunit.xml
new file mode 100644
index 0000000..506b9a3
--- /dev/null
+++ b/phpunit.xml
@@ -0,0 +1,33 @@
+
+
+
+
+ tests/Unit
+
+
+ tests/Feature
+
+
+
+
+ app
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/.htaccess b/public/.htaccess
new file mode 100644
index 0000000..3fcc6f6
--- /dev/null
+++ b/public/.htaccess
@@ -0,0 +1,25 @@
+
+
+ Options -MultiViews -Indexes
+
+
+ RewriteEngine On
+
+ # Handle Authorization Header
+ RewriteCond %{HTTP:Authorization} .
+ RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
+
+ # Ensure the request is not for an existing file or directory
+ RewriteCond %{REQUEST_FILENAME} !-d
+ RewriteCond %{REQUEST_FILENAME} !-f
+
+ # Redirect all requests to index.php
+ RewriteRule ^ index.php [QSA,L]
+
+ # Allow CORS (Opsional, jika API diakses dari domain lain)
+
+ Header Set Access-Control-Allow-Origin "*"
+ Header Set Access-Control-Allow-Methods "GET, POST, PUT, DELETE, OPTIONS"
+ Header Set Access-Control-Allow-Headers "Content-Type, Authorization"
+
+
diff --git a/public/assets/.png b/public/assets/.png
new file mode 100644
index 0000000000000000000000000000000000000000..d8d346f729069f36848aeea09a7d194ad2716774
GIT binary patch
literal 828460
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%0AE$6!L;5c1Yq
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