From 43cc02b39e00a60e86ba45fd7877bc9d808dda76 Mon Sep 17 00:00:00 2001 From: Mohamad Al-Kahfi <91003256+KahfiSmith@users.noreply.github.com> Date: Tue, 3 Jun 2025 10:52:02 +0700 Subject: [PATCH] first commit --- .editorconfig | 18 + .env.example | 59 + .gitattributes | 11 + .gitignore | 19 + README.md | 66 + app/Console/Kernel.php | 27 + app/Exceptions/Handler.php | 30 + .../Controllers/AdminArticleAccController.php | 83 + .../Controllers/AdminArticleController.php | 201 + .../AdminCardArticleController.php | 165 + .../Controllers/AdminSubArticleController.php | 261 + app/Http/Controllers/ArticleController.php | 152 + .../Auth/AuthenticatedSessionController.php | 59 + .../Auth/VerifyEmailController.php | 26 + app/Http/Controllers/Controller.php | 12 + app/Http/Controllers/DashboardController.php | 107 + .../Controllers/KandangAyamController.php | 121 + app/Http/Controllers/KeuanganController.php | 133 + app/Http/Controllers/PakanController.php | 141 + app/Http/Controllers/PendapatanController.php | 159 + .../Controllers/PengeluaranController.php | 160 + .../Controllers/PenggunaanPakanController.php | 70 + .../Controllers/PopulasiHarianController.php | 518 + .../Controllers/UserArticleController.php | 201 + .../Controllers/UserCardArticleController.php | 171 + .../Controllers/UserSubArticleController.php | 261 + app/Http/Kernel.php | 70 + app/Http/Middleware/AdminMiddleware.php | 18 + app/Http/Middleware/Authenticate.php | 17 + app/Http/Middleware/EncryptCookies.php | 17 + .../PreventRequestsDuringMaintenance.php | 17 + .../Middleware/RedirectIfAuthenticated.php | 25 + app/Http/Middleware/TrimStrings.php | 19 + app/Http/Middleware/TrustHosts.php | 20 + app/Http/Middleware/TrustProxies.php | 28 + app/Http/Middleware/UserMiddleware.php | 19 + app/Http/Middleware/ValidateSignature.php | 22 + app/Http/Middleware/VerifyCsrfToken.php | 17 + app/Http/Requests/StoreArticleRequest.php | 28 + app/Http/Requests/StoreArticleTagRequest.php | 28 + app/Http/Requests/StoreCardArticleRequest.php | 28 + app/Http/Requests/StoreHarianAyamRequest.php | 28 + app/Http/Requests/StoreKandangAyamRequest.php | 28 + app/Http/Requests/StorePakanRequest.php | 28 + app/Http/Requests/StorePendapatanRequest.php | 28 + app/Http/Requests/StorePengeluaranRequest.php | 28 + .../Requests/StorePenggunaanPakanRequest.php | 28 + .../Requests/StorePopulasiAyamRequest.php | 28 + app/Http/Requests/StoreSubArticleRequest.php | 28 + app/Http/Requests/StoreTagRequest.php | 28 + app/Http/Requests/UpdateArticleRequest.php | 28 + app/Http/Requests/UpdateArticleTagRequest.php | 28 + .../Requests/UpdateCardArticleRequest.php | 28 + app/Http/Requests/UpdateHarianAyamRequest.php | 28 + .../Requests/UpdateKandangAyamRequest.php | 28 + app/Http/Requests/UpdatePakanRequest.php | 28 + app/Http/Requests/UpdatePendapatanRequest.php | 28 + .../Requests/UpdatePengeluaranRequest.php | 28 + .../Requests/UpdatePenggunaanPakanRequest.php | 28 + .../Requests/UpdatePopulasiAyamRequest.php | 28 + app/Http/Requests/UpdateSubArticleRequest.php | 28 + app/Http/Requests/UpdateTagRequest.php | 28 + app/Livewire/Actions/Logout.php | 17 + app/Livewire/Forms/LoginForm.php | 79 + app/Livewire/Forum/CommentList.php | 86 + app/Livewire/Forum/CreateTopic.php | 41 + app/Livewire/Forum/LikeButton.php | 65 + app/Livewire/Forum/TopicList.php | 40 + app/Livewire/Forum/TopicView.php | 38 + app/Models/Article.php | 41 + app/Models/ArticleTag.php | 11 + app/Models/CardArticle.php | 41 + app/Models/Comment.php | 38 + app/Models/HarianAyam.php | 40 + app/Models/KandangAyam.php | 38 + app/Models/Like.php | 24 + app/Models/Pakan.php | 32 + app/Models/Pendapatan.php | 40 + app/Models/Pengeluaran.php | 41 + app/Models/PenggunaanPakan.php | 25 + app/Models/PopulasiAyam.php | 47 + app/Models/SubArticle.php | 28 + app/Models/Tag.php | 15 + app/Models/Topic.php | 28 + app/Models/User.php | 61 + app/Policies/ArticlePolicy.php | 66 + app/Policies/ArticleTagPolicy.php | 66 + app/Policies/CardArticlePolicy.php | 66 + app/Policies/HarianAyamPolicy.php | 66 + app/Policies/KandangAyamPolicy.php | 66 + app/Policies/PakanPolicy.php | 66 + app/Policies/PendapatanPolicy.php | 66 + app/Policies/PengeluaranPolicy.php | 66 + app/Policies/PenggunaanPakanPolicy.php | 66 + app/Policies/PopulasiAyamPolicy.php | 66 + app/Policies/SubArticlePolicy.php | 66 + app/Policies/TagPolicy.php | 66 + app/Providers/AppServiceProvider.php | 24 + app/Providers/AuthServiceProvider.php | 26 + app/Providers/BroadcastServiceProvider.php | 19 + app/Providers/EventServiceProvider.php | 38 + app/Providers/RouteServiceProvider.php | 40 + app/Providers/VoltServiceProvider.php | 28 + app/View/Components/AppLayout.php | 17 + app/View/Components/CardArticle.php | 26 + app/View/Components/CardContent.php | 26 + app/View/Components/Dropdown.php | 21 + app/View/Components/GuestLayout.php | 17 + app/View/Components/Navbar.php | 26 + artisan | 53 + bootstrap/app.php | 55 + bootstrap/cache/.gitignore | 2 + composer.json | 71 + composer.lock | 8772 ++++++++++++ config/app.php | 176 + config/auth.php | 115 + config/blade-icons.php | 183 + config/broadcasting.php | 71 + config/cache.php | 111 + config/captcha.php | 10 + config/cors.php | 34 + config/database.php | 151 + config/filesystems.php | 76 + config/hashing.php | 54 + config/livewire.php | 160 + config/logging.php | 131 + config/mail.php | 134 + config/queue.php | 109 + config/sanctum.php | 83 + config/services.php | 34 + config/session.php | 214 + config/view.php | 36 + database/.gitignore | 1 + database/factories/ArticleFactory.php | 23 + database/factories/ArticleTagFactory.php | 23 + database/factories/CardArticleFactory.php | 23 + database/factories/HarianAyamFactory.php | 23 + database/factories/KandangAyamFactory.php | 23 + database/factories/PakanFactory.php | 23 + database/factories/PendapatanFactory.php | 23 + database/factories/PengeluaranFactory.php | 23 + database/factories/PenggunaanPakanFactory.php | 23 + database/factories/PopulasiAyamFactory.php | 23 + database/factories/SubArticleFactory.php | 23 + database/factories/TagFactory.php | 23 + .../2014_10_12_000000_create_users_table.php | 27 + ...000_create_password_reset_tokens_table.php | 22 + ..._08_19_000000_create_failed_jobs_table.php | 26 + ...01_create_personal_access_tokens_table.php | 27 + ...2_16_074527_create_card_articles_table.php | 24 + ...024_12_16_074549_create_articles_table.php | 27 + ...12_16_074601_create_sub_articles_table.php | 26 + .../2024_12_18_140323_create_tags_table.php | 22 + ...12_18_140400_create_article_tags_table.php | 23 + ..._16_073414_create_populasi_ayams_table.php | 27 + ...01_16_073846_create_harian_ayams_table.php | 28 + ...2_03_173355_create_kandang_ayams_table.php | 28 + ...add_kandang_id_to_populasi_ayams_table.php | 23 + .../2025_02_13_134531_create_pakans_table.php | 26 + ..._135241_create_penggunaan_pakans_table.php | 24 + ..._02_15_135011_create_pendapatans_table.php | 29 + ...02_16_195247_create_pengeluarans_table.php | 32 + .../2025_04_02_001902_create_topics_table.php | 28 + ...025_04_02_001907_create_comments_table.php | 24 + .../2025_04_02_001913_create_likes_table.php | 23 + ...210424_add_parent_id_to_comments_table.php | 23 + database/seeders/ArticleSeeder.php | 17 + database/seeders/ArticleTagSeeder.php | 17 + database/seeders/CardArticleSeeder.php | 63 + database/seeders/DatabaseSeeder.php | 22 + database/seeders/HarianAyamSeeder.php | 17 + database/seeders/KandangAyamSeeder.php | 17 + database/seeders/PakanSeeder.php | 17 + database/seeders/PendapatanSeeder.php | 17 + database/seeders/PengeluaranSeeder.php | 17 + database/seeders/PenggunaanPakanSeeder.php | 20 + database/seeders/PopulasiAyamSeeder.php | 17 + database/seeders/SubArticleSeeder.php | 17 + database/seeders/TagSeeder.php | 17 + lang/id/passwords.php | 9 + package-lock.json | 4004 ++++++ package.json | 22 + phpunit.xml | 32 + postcss.config.js | 6 + public/.htaccess | 35 + public/css/all.min.css | 8194 ++++++++++++ public/favicon.ico | 0 public/images/about-us.svg | 2202 ++++ public/images/article.svg | 1 + public/images/articles.svg | 1 + public/images/ayam.jpg | Bin 0 -> 905223 bytes public/images/cage.svg | 1 + public/images/chicken.svg | 1 + public/images/feed.svg | 1 + public/images/forum.png | Bin 0 -> 1830772 bytes public/images/forum.svg | 1 + public/images/hero.png | Bin 0 -> 208595 bytes public/images/icons8-disease.svg | 1 + public/images/icons8-farmer.svg | 3 + public/images/icons8-forum.svg | 1 + public/images/icons8-guidebook.svg | 1 + public/images/icons8-market.svg | 1 + public/images/icons8-question-and-answer.svg | 1 + public/images/icons8-rupiah.svg | 1 + public/images/icons8-solution.svg | 1 + public/images/logo.svg | 5 + public/images/logout.svg | 1 + public/images/menu.svg | 1 + public/images/money.svg | 1 + public/images/profile.svg | 1 + public/index.php | 55 + public/robots.txt | 2 + public/vendor/livewire/livewire.esm.js | 11008 ++++++++++++++++ public/vendor/livewire/livewire.esm.js.map | 7 + public/vendor/livewire/livewire.js | 10099 ++++++++++++++ public/vendor/livewire/livewire.min.js | 103 + public/vendor/livewire/livewire.min.js.map | 7 + public/vendor/livewire/manifest.json | 2 + resources/css/app.css | 80 + resources/js/app.js | 18 + resources/js/bootstrap.js | 32 + resources/js/charts/barChart.js | 62 + resources/js/sidebar.js | 75 + resources/views/add-article-detail.blade.php | 399 + resources/views/add-article-sub.blade.php | 490 + resources/views/add-card-article.blade.php | 268 + .../views/admin/add-article-detail.blade.php | 399 + .../views/admin/add-article-sub.blade.php | 498 + .../views/admin/add-card-article.blade.php | 242 + .../admin/article-management-edit.blade.php | 119 + .../views/admin/article-management.blade.php | 136 + resources/views/cage-management.blade.php | 198 + .../views/cetak/laporan-keuangan.blade.php | 56 + .../views/cetak/laporan-populasi.blade.php | 66 + resources/views/chicken-management.blade.php | 305 + .../views/components/action-message.blade.php | 10 + .../components/application-logo.blade.php | 1 + .../components/auth-session-status.blade.php | 7 + .../views/components/card-article.blade.php | 43 + .../views/components/card-content.blade.php | 31 + .../views/components/danger-button.blade.php | 3 + .../components/dropdown-dashboard.blade.php | 43 + .../views/components/dropdown-link.blade.php | 1 + resources/views/components/dropdown.blade.php | 69 + .../views/components/input-error.blade.php | 9 + .../views/components/input-label.blade.php | 8 + .../views/components/layouts/app.blade.php | 27 + resources/views/components/modal.blade.php | 78 + resources/views/components/nav-link.blade.php | 11 + resources/views/components/navbar.blade.php | 211 + .../popup-form-edit-harian-ayam.blade.php | 180 + .../popup-form-edit-jumlah-ayam.blade.php | 87 + .../popup-form-harian-ayam.blade.php | 142 + .../popup-form-jumlah-ayam.blade.php | 67 + .../views/components/primary-button.blade.php | 4 + .../components/responsive-nav-link.blade.php | 11 + .../views/components/search-input.blade.php | 22 + .../views/components/sidebar-admin.blade.php | 44 + resources/views/components/sidebar.blade.php | 68 + .../views/components/text-input.blade.php | 6 + resources/views/dashboard.blade.php | 173 + .../views/finance-management-income.blade.php | 291 + .../finance-management-outcome.blade.php | 294 + resources/views/finance-management.blade.php | 160 + resources/views/food-management.blade.php | 274 + resources/views/home.blade.php | 77 + .../views/layouts/admin-layout.blade.php | 31 + .../views/layouts/dashboard-layout.blade.php | 29 + resources/views/layouts/guest.blade.php | 31 + resources/views/layouts/home.blade.php | 14 + .../livewire/forum/comment-list.blade.php | 103 + .../livewire/forum/create-topic.blade.php | 48 + .../livewire/forum/like-button.blade.php | 21 + .../views/livewire/forum/topic-list.blade.php | 81 + .../views/livewire/forum/topic-view.blade.php | 62 + .../livewire/layout/navigation.blade.php | 134 + .../pages/auth/confirm-password.blade.php | 63 + .../pages/auth/forgot-password.blade.php | 56 + .../views/livewire/pages/auth/login.blade.php | 107 + .../livewire/pages/auth/register.blade.php | 143 + .../pages/auth/reset-password.blade.php | 150 + .../pages/auth/verify-email.blade.php | 59 + .../livewire/pages/home/all-cards.blade.php | 59 + .../pages/home/article-detail.blade.php | 87 + .../livewire/pages/home/article.blade.php | 22 + .../livewire/pages/home/articles.blade.php | 98 + .../views/livewire/pages/home/faq.blade.php | 122 + .../livewire/pages/home/footer.blade.php | 75 + .../views/livewire/pages/home/forum.blade.php | 38 + .../views/livewire/pages/home/hero.blade.php | 26 + .../profile/delete-user-form.blade.php | 76 + .../profile/update-password-form.blade.php | 84 + .../update-profile-information-form.blade.php | 122 + resources/views/profile.blade.php | 32 + .../views/vendor/livewire/bootstrap.blade.php | 102 + .../livewire/simple-bootstrap.blade.php | 53 + .../vendor/livewire/simple-tailwind.blade.php | 56 + .../views/vendor/livewire/tailwind.blade.php | 126 + .../vendor/pagination/bootstrap-4.blade.php | 46 + .../vendor/pagination/bootstrap-5.blade.php | 88 + .../views/vendor/pagination/default.blade.php | 46 + .../vendor/pagination/semantic-ui.blade.php | 36 + .../pagination/simple-bootstrap-4.blade.php | 27 + .../pagination/simple-bootstrap-5.blade.php | 29 + .../pagination/simple-default.blade.php | 19 + .../pagination/simple-tailwind.blade.php | 25 + .../vendor/pagination/tailwind.blade.php | 106 + routes/api.php | 19 + routes/auth.php | 31 + routes/channels.php | 18 + routes/console.php | 19 + routes/web.php | 143 + 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 + tailwind.config.js | 29 + tests/CreatesApplication.php | 21 + tests/Feature/Auth/AuthenticationTest.php | 87 + tests/Feature/Auth/EmailVerificationTest.php | 67 + .../Feature/Auth/PasswordConfirmationTest.php | 56 + tests/Feature/Auth/PasswordResetTest.php | 78 + tests/Feature/Auth/PasswordUpdateTest.php | 50 + tests/Feature/Auth/RegistrationTest.php | 37 + tests/Feature/ExampleTest.php | 19 + tests/Feature/ProfileTest.php | 96 + tests/TestCase.php | 10 + tests/Unit/ExampleTest.php | 16 + vite.config.js | 16 + 334 files changed, 63412 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/Kernel.php create mode 100644 app/Exceptions/Handler.php create mode 100644 app/Http/Controllers/AdminArticleAccController.php create mode 100644 app/Http/Controllers/AdminArticleController.php create mode 100644 app/Http/Controllers/AdminCardArticleController.php create mode 100644 app/Http/Controllers/AdminSubArticleController.php create mode 100644 app/Http/Controllers/ArticleController.php create mode 100644 app/Http/Controllers/Auth/AuthenticatedSessionController.php create mode 100644 app/Http/Controllers/Auth/VerifyEmailController.php create mode 100644 app/Http/Controllers/Controller.php create mode 100644 app/Http/Controllers/DashboardController.php create mode 100644 app/Http/Controllers/KandangAyamController.php create mode 100644 app/Http/Controllers/KeuanganController.php create mode 100644 app/Http/Controllers/PakanController.php create mode 100644 app/Http/Controllers/PendapatanController.php create mode 100644 app/Http/Controllers/PengeluaranController.php create mode 100644 app/Http/Controllers/PenggunaanPakanController.php create mode 100644 app/Http/Controllers/PopulasiHarianController.php create mode 100644 app/Http/Controllers/UserArticleController.php create mode 100644 app/Http/Controllers/UserCardArticleController.php create mode 100644 app/Http/Controllers/UserSubArticleController.php create mode 100644 app/Http/Kernel.php create mode 100644 app/Http/Middleware/AdminMiddleware.php create mode 100644 app/Http/Middleware/Authenticate.php create mode 100644 app/Http/Middleware/EncryptCookies.php create mode 100644 app/Http/Middleware/PreventRequestsDuringMaintenance.php create mode 100644 app/Http/Middleware/RedirectIfAuthenticated.php create mode 100644 app/Http/Middleware/TrimStrings.php create mode 100644 app/Http/Middleware/TrustHosts.php create mode 100644 app/Http/Middleware/TrustProxies.php create mode 100644 app/Http/Middleware/UserMiddleware.php create mode 100644 app/Http/Middleware/ValidateSignature.php create mode 100644 app/Http/Middleware/VerifyCsrfToken.php create mode 100644 app/Http/Requests/StoreArticleRequest.php create mode 100644 app/Http/Requests/StoreArticleTagRequest.php create mode 100644 app/Http/Requests/StoreCardArticleRequest.php create mode 100644 app/Http/Requests/StoreHarianAyamRequest.php create mode 100644 app/Http/Requests/StoreKandangAyamRequest.php create mode 100644 app/Http/Requests/StorePakanRequest.php create mode 100644 app/Http/Requests/StorePendapatanRequest.php create mode 100644 app/Http/Requests/StorePengeluaranRequest.php create mode 100644 app/Http/Requests/StorePenggunaanPakanRequest.php create mode 100644 app/Http/Requests/StorePopulasiAyamRequest.php create mode 100644 app/Http/Requests/StoreSubArticleRequest.php create mode 100644 app/Http/Requests/StoreTagRequest.php create mode 100644 app/Http/Requests/UpdateArticleRequest.php create mode 100644 app/Http/Requests/UpdateArticleTagRequest.php create mode 100644 app/Http/Requests/UpdateCardArticleRequest.php create mode 100644 app/Http/Requests/UpdateHarianAyamRequest.php create mode 100644 app/Http/Requests/UpdateKandangAyamRequest.php create mode 100644 app/Http/Requests/UpdatePakanRequest.php create mode 100644 app/Http/Requests/UpdatePendapatanRequest.php create mode 100644 app/Http/Requests/UpdatePengeluaranRequest.php create mode 100644 app/Http/Requests/UpdatePenggunaanPakanRequest.php create mode 100644 app/Http/Requests/UpdatePopulasiAyamRequest.php create mode 100644 app/Http/Requests/UpdateSubArticleRequest.php create mode 100644 app/Http/Requests/UpdateTagRequest.php create mode 100644 app/Livewire/Actions/Logout.php create mode 100644 app/Livewire/Forms/LoginForm.php create mode 100644 app/Livewire/Forum/CommentList.php create mode 100644 app/Livewire/Forum/CreateTopic.php create mode 100644 app/Livewire/Forum/LikeButton.php create mode 100644 app/Livewire/Forum/TopicList.php create mode 100644 app/Livewire/Forum/TopicView.php create mode 100644 app/Models/Article.php create mode 100644 app/Models/ArticleTag.php create mode 100644 app/Models/CardArticle.php create mode 100644 app/Models/Comment.php create mode 100644 app/Models/HarianAyam.php create mode 100644 app/Models/KandangAyam.php create mode 100644 app/Models/Like.php create mode 100644 app/Models/Pakan.php create mode 100644 app/Models/Pendapatan.php create mode 100644 app/Models/Pengeluaran.php create mode 100644 app/Models/PenggunaanPakan.php create mode 100644 app/Models/PopulasiAyam.php create mode 100644 app/Models/SubArticle.php create mode 100644 app/Models/Tag.php create mode 100644 app/Models/Topic.php create mode 100644 app/Models/User.php create mode 100644 app/Policies/ArticlePolicy.php create mode 100644 app/Policies/ArticleTagPolicy.php create mode 100644 app/Policies/CardArticlePolicy.php create mode 100644 app/Policies/HarianAyamPolicy.php create mode 100644 app/Policies/KandangAyamPolicy.php create mode 100644 app/Policies/PakanPolicy.php create mode 100644 app/Policies/PendapatanPolicy.php create mode 100644 app/Policies/PengeluaranPolicy.php create mode 100644 app/Policies/PenggunaanPakanPolicy.php create mode 100644 app/Policies/PopulasiAyamPolicy.php create mode 100644 app/Policies/SubArticlePolicy.php create mode 100644 app/Policies/TagPolicy.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 app/Providers/VoltServiceProvider.php create mode 100644 app/View/Components/AppLayout.php create mode 100644 app/View/Components/CardArticle.php create mode 100644 app/View/Components/CardContent.php create mode 100644 app/View/Components/Dropdown.php create mode 100644 app/View/Components/GuestLayout.php create mode 100644 app/View/Components/Navbar.php create mode 100644 artisan create mode 100644 bootstrap/app.php create mode 100644 bootstrap/cache/.gitignore create mode 100644 composer.json create mode 100644 composer.lock create mode 100644 config/app.php create mode 100644 config/auth.php create mode 100644 config/blade-icons.php create mode 100644 config/broadcasting.php create mode 100644 config/cache.php create mode 100644 config/captcha.php create mode 100644 config/cors.php create mode 100644 config/database.php create mode 100644 config/filesystems.php create mode 100644 config/hashing.php create mode 100644 config/livewire.php create mode 100644 config/logging.php create mode 100644 config/mail.php create mode 100644 config/queue.php create mode 100644 config/sanctum.php create mode 100644 config/services.php create mode 100644 config/session.php create mode 100644 config/view.php create mode 100644 database/.gitignore create mode 100644 database/factories/ArticleFactory.php create mode 100644 database/factories/ArticleTagFactory.php create mode 100644 database/factories/CardArticleFactory.php create mode 100644 database/factories/HarianAyamFactory.php create mode 100644 database/factories/KandangAyamFactory.php create mode 100644 database/factories/PakanFactory.php create mode 100644 database/factories/PendapatanFactory.php create mode 100644 database/factories/PengeluaranFactory.php create mode 100644 database/factories/PenggunaanPakanFactory.php create mode 100644 database/factories/PopulasiAyamFactory.php create mode 100644 database/factories/SubArticleFactory.php create mode 100644 database/factories/TagFactory.php create mode 100644 database/migrations/2014_10_12_000000_create_users_table.php create mode 100644 database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php create mode 100644 database/migrations/2019_08_19_000000_create_failed_jobs_table.php create mode 100644 database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php create mode 100644 database/migrations/2024_12_16_074527_create_card_articles_table.php create mode 100644 database/migrations/2024_12_16_074549_create_articles_table.php create mode 100644 database/migrations/2024_12_16_074601_create_sub_articles_table.php create mode 100644 database/migrations/2024_12_18_140323_create_tags_table.php create mode 100644 database/migrations/2024_12_18_140400_create_article_tags_table.php create mode 100644 database/migrations/2025_01_16_073414_create_populasi_ayams_table.php create mode 100644 database/migrations/2025_01_16_073846_create_harian_ayams_table.php create mode 100644 database/migrations/2025_02_03_173355_create_kandang_ayams_table.php create mode 100644 database/migrations/2025_02_04_092921_add_kandang_id_to_populasi_ayams_table.php create mode 100644 database/migrations/2025_02_13_134531_create_pakans_table.php create mode 100644 database/migrations/2025_02_13_135241_create_penggunaan_pakans_table.php create mode 100644 database/migrations/2025_02_15_135011_create_pendapatans_table.php create mode 100644 database/migrations/2025_02_16_195247_create_pengeluarans_table.php create mode 100644 database/migrations/2025_04_02_001902_create_topics_table.php create mode 100644 database/migrations/2025_04_02_001907_create_comments_table.php create mode 100644 database/migrations/2025_04_02_001913_create_likes_table.php create mode 100644 database/migrations/2025_04_12_210424_add_parent_id_to_comments_table.php create mode 100644 database/seeders/ArticleSeeder.php create mode 100644 database/seeders/ArticleTagSeeder.php create mode 100644 database/seeders/CardArticleSeeder.php create mode 100644 database/seeders/DatabaseSeeder.php create mode 100644 database/seeders/HarianAyamSeeder.php create mode 100644 database/seeders/KandangAyamSeeder.php create mode 100644 database/seeders/PakanSeeder.php create mode 100644 database/seeders/PendapatanSeeder.php create mode 100644 database/seeders/PengeluaranSeeder.php create mode 100644 database/seeders/PenggunaanPakanSeeder.php create mode 100644 database/seeders/PopulasiAyamSeeder.php create mode 100644 database/seeders/SubArticleSeeder.php create mode 100644 database/seeders/TagSeeder.php create mode 100644 lang/id/passwords.php create mode 100644 package-lock.json create mode 100644 package.json create mode 100644 phpunit.xml create mode 100644 postcss.config.js create mode 100644 public/.htaccess create mode 100644 public/css/all.min.css create mode 100644 public/favicon.ico create mode 100644 public/images/about-us.svg create mode 100644 public/images/article.svg create mode 100644 public/images/articles.svg create mode 100644 public/images/ayam.jpg create mode 100644 public/images/cage.svg create mode 100644 public/images/chicken.svg create mode 100644 public/images/feed.svg create mode 100644 public/images/forum.png create mode 100644 public/images/forum.svg create mode 100644 public/images/hero.png create mode 100644 public/images/icons8-disease.svg create mode 100644 public/images/icons8-farmer.svg create mode 100644 public/images/icons8-forum.svg create mode 100644 public/images/icons8-guidebook.svg create mode 100644 public/images/icons8-market.svg create mode 100644 public/images/icons8-question-and-answer.svg create mode 100644 public/images/icons8-rupiah.svg create mode 100644 public/images/icons8-solution.svg create mode 100644 public/images/logo.svg create mode 100644 public/images/logout.svg create mode 100644 public/images/menu.svg create mode 100644 public/images/money.svg create mode 100644 public/images/profile.svg create mode 100644 public/index.php create mode 100644 public/robots.txt create mode 100644 public/vendor/livewire/livewire.esm.js create mode 100644 public/vendor/livewire/livewire.esm.js.map create mode 100644 public/vendor/livewire/livewire.js create mode 100644 public/vendor/livewire/livewire.min.js create mode 100644 public/vendor/livewire/livewire.min.js.map create mode 100644 public/vendor/livewire/manifest.json 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/js/charts/barChart.js create mode 100644 resources/js/sidebar.js create mode 100644 resources/views/add-article-detail.blade.php create mode 100644 resources/views/add-article-sub.blade.php create mode 100644 resources/views/add-card-article.blade.php create mode 100644 resources/views/admin/add-article-detail.blade.php create mode 100644 resources/views/admin/add-article-sub.blade.php create mode 100644 resources/views/admin/add-card-article.blade.php create mode 100644 resources/views/admin/article-management-edit.blade.php create mode 100644 resources/views/admin/article-management.blade.php create mode 100644 resources/views/cage-management.blade.php create mode 100644 resources/views/cetak/laporan-keuangan.blade.php create mode 100644 resources/views/cetak/laporan-populasi.blade.php create mode 100644 resources/views/chicken-management.blade.php create mode 100644 resources/views/components/action-message.blade.php create mode 100644 resources/views/components/application-logo.blade.php create mode 100644 resources/views/components/auth-session-status.blade.php create mode 100644 resources/views/components/card-article.blade.php create mode 100644 resources/views/components/card-content.blade.php create mode 100644 resources/views/components/danger-button.blade.php create mode 100644 resources/views/components/dropdown-dashboard.blade.php create mode 100644 resources/views/components/dropdown-link.blade.php create mode 100644 resources/views/components/dropdown.blade.php create mode 100644 resources/views/components/input-error.blade.php create mode 100644 resources/views/components/input-label.blade.php create mode 100644 resources/views/components/layouts/app.blade.php create mode 100644 resources/views/components/modal.blade.php create mode 100644 resources/views/components/nav-link.blade.php create mode 100644 resources/views/components/navbar.blade.php create mode 100644 resources/views/components/popup-form-edit-harian-ayam.blade.php create mode 100644 resources/views/components/popup-form-edit-jumlah-ayam.blade.php create mode 100644 resources/views/components/popup-form-harian-ayam.blade.php create mode 100644 resources/views/components/popup-form-jumlah-ayam.blade.php create mode 100644 resources/views/components/primary-button.blade.php create mode 100644 resources/views/components/responsive-nav-link.blade.php create mode 100644 resources/views/components/search-input.blade.php create mode 100644 resources/views/components/sidebar-admin.blade.php create mode 100644 resources/views/components/sidebar.blade.php create mode 100644 resources/views/components/text-input.blade.php create mode 100644 resources/views/dashboard.blade.php create mode 100644 resources/views/finance-management-income.blade.php create mode 100644 resources/views/finance-management-outcome.blade.php create mode 100644 resources/views/finance-management.blade.php create mode 100644 resources/views/food-management.blade.php create mode 100644 resources/views/home.blade.php create mode 100644 resources/views/layouts/admin-layout.blade.php create mode 100644 resources/views/layouts/dashboard-layout.blade.php create mode 100644 resources/views/layouts/guest.blade.php create mode 100644 resources/views/layouts/home.blade.php create mode 100644 resources/views/livewire/forum/comment-list.blade.php create mode 100644 resources/views/livewire/forum/create-topic.blade.php create mode 100644 resources/views/livewire/forum/like-button.blade.php create mode 100644 resources/views/livewire/forum/topic-list.blade.php create mode 100644 resources/views/livewire/forum/topic-view.blade.php create mode 100644 resources/views/livewire/layout/navigation.blade.php create mode 100644 resources/views/livewire/pages/auth/confirm-password.blade.php create mode 100644 resources/views/livewire/pages/auth/forgot-password.blade.php create mode 100644 resources/views/livewire/pages/auth/login.blade.php create mode 100644 resources/views/livewire/pages/auth/register.blade.php create mode 100644 resources/views/livewire/pages/auth/reset-password.blade.php create mode 100644 resources/views/livewire/pages/auth/verify-email.blade.php create mode 100644 resources/views/livewire/pages/home/all-cards.blade.php create mode 100644 resources/views/livewire/pages/home/article-detail.blade.php create mode 100644 resources/views/livewire/pages/home/article.blade.php create mode 100644 resources/views/livewire/pages/home/articles.blade.php create mode 100644 resources/views/livewire/pages/home/faq.blade.php create mode 100644 resources/views/livewire/pages/home/footer.blade.php create mode 100644 resources/views/livewire/pages/home/forum.blade.php create mode 100644 resources/views/livewire/pages/home/hero.blade.php create mode 100644 resources/views/livewire/profile/delete-user-form.blade.php create mode 100644 resources/views/livewire/profile/update-password-form.blade.php create mode 100644 resources/views/livewire/profile/update-profile-information-form.blade.php create mode 100644 resources/views/profile.blade.php create mode 100644 resources/views/vendor/livewire/bootstrap.blade.php create mode 100644 resources/views/vendor/livewire/simple-bootstrap.blade.php create mode 100644 resources/views/vendor/livewire/simple-tailwind.blade.php create mode 100644 resources/views/vendor/livewire/tailwind.blade.php create mode 100644 resources/views/vendor/pagination/bootstrap-4.blade.php create mode 100644 resources/views/vendor/pagination/bootstrap-5.blade.php create mode 100644 resources/views/vendor/pagination/default.blade.php create mode 100644 resources/views/vendor/pagination/semantic-ui.blade.php create mode 100644 resources/views/vendor/pagination/simple-bootstrap-4.blade.php create mode 100644 resources/views/vendor/pagination/simple-bootstrap-5.blade.php create mode 100644 resources/views/vendor/pagination/simple-default.blade.php create mode 100644 resources/views/vendor/pagination/simple-tailwind.blade.php create mode 100644 resources/views/vendor/pagination/tailwind.blade.php create mode 100644 routes/api.php create mode 100644 routes/auth.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 tailwind.config.js create mode 100644 tests/CreatesApplication.php create mode 100644 tests/Feature/Auth/AuthenticationTest.php create mode 100644 tests/Feature/Auth/EmailVerificationTest.php create mode 100644 tests/Feature/Auth/PasswordConfirmationTest.php create mode 100644 tests/Feature/Auth/PasswordResetTest.php create mode 100644 tests/Feature/Auth/PasswordUpdateTest.php create mode 100644 tests/Feature/Auth/RegistrationTest.php create mode 100644 tests/Feature/ExampleTest.php create mode 100644 tests/Feature/ProfileTest.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..d38e394 --- /dev/null +++ b/.env.example @@ -0,0 +1,59 @@ +APP_NAME=Laravel +APP_ENV=local +APP_KEY= +APP_DEBUG=true +APP_URL=http://localhost + +LOG_CHANNEL=stack +LOG_DEPRECATIONS_CHANNEL=null +LOG_LEVEL=debug + +DB_CONNECTION=mysql +DB_HOST=127.0.0.1 +DB_PORT=3306 +DB_DATABASE=ternakq_animal_husbandry_education +DB_USERNAME=root +DB_PASSWORD= + +BROADCAST_DRIVER=log +CACHE_DRIVER=file +FILESYSTEM_DISK=local +QUEUE_CONNECTION=sync +SESSION_DRIVER=file +SESSION_LIFETIME=120 + +MEMCACHED_HOST=127.0.0.1 + +REDIS_HOST=127.0.0.1 +REDIS_PASSWORD=null +REDIS_PORT=6379 + +MAIL_MAILER=smtp +MAIL_HOST=mailpit +MAIL_PORT=1025 +MAIL_USERNAME=null +MAIL_PASSWORD=null +MAIL_ENCRYPTION=null +MAIL_FROM_ADDRESS="hello@example.com" +MAIL_FROM_NAME="${APP_NAME}" + +AWS_ACCESS_KEY_ID= +AWS_SECRET_ACCESS_KEY= +AWS_DEFAULT_REGION=us-east-1 +AWS_BUCKET= +AWS_USE_PATH_STYLE_ENDPOINT=false + +PUSHER_APP_ID= +PUSHER_APP_KEY= +PUSHER_APP_SECRET= +PUSHER_HOST= +PUSHER_PORT=443 +PUSHER_SCHEME=https +PUSHER_APP_CLUSTER=mt1 + +VITE_APP_NAME="${APP_NAME}" +VITE_PUSHER_APP_KEY="${PUSHER_APP_KEY}" +VITE_PUSHER_HOST="${PUSHER_HOST}" +VITE_PUSHER_PORT="${PUSHER_PORT}" +VITE_PUSHER_SCHEME="${PUSHER_SCHEME}" +VITE_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}" diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..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..7fe978f --- /dev/null +++ b/.gitignore @@ -0,0 +1,19 @@ +/.phpunit.cache +/node_modules +/public/build +/public/hot +/public/storage +/storage/*.key +/vendor +.env +.env.backup +.env.production +.phpunit.result.cache +Homestead.json +Homestead.yaml +auth.json +npm-debug.log +yarn-error.log +/.fleet +/.idea +/.vscode diff --git a/README.md b/README.md new file mode 100644 index 0000000..1a4c26b --- /dev/null +++ b/README.md @@ -0,0 +1,66 @@ +

Laravel Logo

+ +

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

+ +## About Laravel + +Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as: + +- [Simple, fast routing engine](https://laravel.com/docs/routing). +- [Powerful dependency injection container](https://laravel.com/docs/container). +- Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage. +- Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent). +- Database agnostic [schema migrations](https://laravel.com/docs/migrations). +- [Robust background job processing](https://laravel.com/docs/queues). +- [Real-time event broadcasting](https://laravel.com/docs/broadcasting). + +Laravel is accessible, powerful, and provides tools required for large, robust applications. + +## Learning Laravel + +Laravel has the most extensive and thorough [documentation](https://laravel.com/docs) and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework. + +You may also try the [Laravel Bootcamp](https://bootcamp.laravel.com), where you will be guided through building a modern Laravel application from scratch. + +If you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains thousands of video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library. + +## Laravel Sponsors + +We would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the [Laravel Partners program](https://partners.laravel.com). + +### Premium Partners + +- **[Vehikl](https://vehikl.com/)** +- **[Tighten Co.](https://tighten.co)** +- **[WebReinvent](https://webreinvent.com/)** +- **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)** +- **[64 Robots](https://64robots.com)** +- **[Curotec](https://www.curotec.com/services/technologies/laravel/)** +- **[Cyber-Duck](https://cyber-duck.co.uk)** +- **[DevSquad](https://devsquad.com/hire-laravel-developers)** +- **[Jump24](https://jump24.co.uk)** +- **[Redberry](https://redberry.international/laravel/)** +- **[Active Logic](https://activelogic.com)** +- **[byte5](https://byte5.de)** +- **[OP.GG](https://op.gg)** + +## Contributing + +Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions). + +## Code of Conduct + +In order to ensure that the Laravel community is welcoming to all, please review and abide by the [Code of Conduct](https://laravel.com/docs/contributions#code-of-conduct). + +## Security Vulnerabilities + +If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [taylor@laravel.com](mailto:taylor@laravel.com). All security vulnerabilities will be promptly addressed. + +## License + +The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT). diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php new file mode 100644 index 0000000..e6b9960 --- /dev/null +++ b/app/Console/Kernel.php @@ -0,0 +1,27 @@ +command('inspire')->hourly(); + } + + /** + * Register the commands for the application. + */ + protected function commands(): void + { + $this->load(__DIR__.'/Commands'); + + require base_path('routes/console.php'); + } +} diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php new file mode 100644 index 0000000..56af264 --- /dev/null +++ b/app/Exceptions/Handler.php @@ -0,0 +1,30 @@ + + */ + protected $dontFlash = [ + 'current_password', + 'password', + 'password_confirmation', + ]; + + /** + * Register the exception handling callbacks for the application. + */ + public function register(): void + { + $this->reportable(function (Throwable $e) { + // + }); + } +} diff --git a/app/Http/Controllers/AdminArticleAccController.php b/app/Http/Controllers/AdminArticleAccController.php new file mode 100644 index 0000000..704b38b --- /dev/null +++ b/app/Http/Controllers/AdminArticleAccController.php @@ -0,0 +1,83 @@ +get('article_page', 1); + $articles = Article::latest()->paginate(10, ['*'], 'article_page', $articlePage); + return view('admin.article-management', compact('articles')); + } catch (\Exception $e) { + Log::error('Gagal memuat data artikel: ' . $e->getMessage()); + return redirect()->route('admin.article-management')->with([ + 'status' => 'error', + 'message' => 'Terjadi kesalahan saat memuat data artikel.', + ]); + } + } + + public function editArticle($id) + { + try { + $article = Article::with(['subArticles' => function ($query) { + $query->orderBy('order_number', 'asc'); + }])->findOrFail($id); + return view('admin.article-management-edit', compact('article')); + } catch (\Exception $e) { + Log::error('Gagal memuat artikel untuk edit: ' . $e->getMessage()); + return redirect()->route('admin.article-management-edit') + ->with('status', 'error') + ->with('message', 'Terjadi kesalahan saat memuat artikel.'); + } + } + + public function updateArticle(Request $request, $id) + { + try { + $validated = $request->validate([ + 'catatan' => 'nullable|string', + 'status' => 'required|in:Tertunda,Disetujui,Ditolak', + ]); + $article = Article::findOrFail($id); + $article->update($validated); + return redirect()->route('admin.article-management')->with([ + 'status' => 'success', + 'message' => 'Status artikel berhasil diperbarui!', + ]); + } catch (\Exception $e) { + Log::error('Gagal memperbarui artikel: ' . $e->getMessage()); + return redirect()->route('admin.article-management')->with([ + 'status' => 'error', + 'message' => 'Terjadi kesalahan saat memperbarui artikel.', + ]); + } + } + + public function deleteArticle($id) + { + try { + $article = Article::findOrFail($id); + + $article->tags()->detach(); + + if ($article->image && Storage::disk('public')->exists($article->image)) { + Storage::disk('public')->delete($article->image); + } + + $article->delete(); + + return response()->json(['success' => true, 'message' => 'Artikel berhasil dihapus.']); + } catch (\Exception $e) { + Log::error('Gagal menghapus artikel: ' . $e->getMessage()); + return response()->json(['success' => false, 'message' => 'Gagal menghapus artikel: ' . $e->getMessage()], 500); + } + } +} diff --git a/app/Http/Controllers/AdminArticleController.php b/app/Http/Controllers/AdminArticleController.php new file mode 100644 index 0000000..dda765e --- /dev/null +++ b/app/Http/Controllers/AdminArticleController.php @@ -0,0 +1,201 @@ +get('article_page', 1); + + $articles = Article::with('cardArticle') + ->where('user_id', Auth::id()) + ->latest() + ->paginate(4, ['*'], 'article_page', $articlePage); + + $cardArticles = CardArticle::where('user_id', Auth::id())->get(); + $tags = Tag::all(); + + $articles->appends(['article_page' => $articlePage]); + + $totalArticles = Article::where('user_id', Auth::id())->count(); + $todayArticles = Article::where('user_id', Auth::id()) + ->whereDate('created_at', now()) + ->count(); + + return view('admin.add-article-detail', compact('articles', 'cardArticles', 'tags', 'totalArticles', 'todayArticles')); + } catch (\Exception $e) { + Log::error('Gagal memuat data artikel: ' . $e->getMessage()); + + return redirect()->route('admin.add-article-detail')->with([ + 'status' => 'error', + 'message' => 'Terjadi kesalahan saat memuat data artikel.', + ]); + } + } + + public function storeAdminArtikel(Request $request) + { + try { + $validated = $request->validate([ + 'card_id' => 'required|exists:card_articles,id', + 'title' => 'required|string|max:255', + 'description' => 'required|string', + 'status' => 'required|string|in:Tertunda,Disetujui,Ditolak', + 'tags' => 'required|array|min:1|max:3', + 'tags.*' => 'exists:tags,id', + 'image' => 'required|image|mimes:jpeg,png,jpg,gif|max:2048', + ], [ + 'card_id.required' => 'Artikel grup harus dipilih', + 'card_id.exists' => 'Artikel grup yang dipilih tidak valid', + 'title.required' => 'Judul artikel harus diisi', + 'title.max' => 'Judul artikel maksimal 255 karakter', + 'description.required' => 'Deskripsi artikel harus diisi', + 'tags.required' => 'Minimal satu tag harus dipilih', + 'tags.array' => 'Format tag tidak valid', + 'tags.min' => 'Minimal satu tag harus dipilih', + 'tags.max' => 'Maksimal tiga tag yang dapat dipilih', + 'tags.*.exists' => 'Tag yang dipilih tidak valid', + 'image.required' => 'Gambar artikel harus diunggah', + 'image.image' => 'File harus berupa gambar', + 'image.mimes' => 'Format gambar harus jpeg, png, jpg, atau gif', + 'image.max' => 'Ukuran gambar maksimal 2MB', + ]); + + $imagePath = null; + if ($request->hasFile('image')) { + $imagePath = $request->file('image')->store('articles', 'public'); + } + + $article = Article::create([ + 'card_id' => $validated['card_id'], + 'title' => $validated['title'], + 'description' => $validated['description'], + 'status' => $validated['status'], + 'image' => $imagePath, + 'user_id' => Auth::id(), + ]); + + if (!empty($validated['tags'])) { + $article->tags()->attach($validated['tags']); + } + + return redirect()->route('admin.add-article-detail')->with([ + 'status' => 'success', + 'message' => 'Artikel berhasil dibuat!', + ]); + } catch (ValidationException $e) { + return redirect()->back() + ->withErrors($e->validator) + ->withInput(); + } catch (\Exception $e) { + Log::error('Gagal menyimpan artikel: ' . $e->getMessage()); + + return redirect()->back()->withInput()->with([ + 'status' => 'error', + 'message' => 'Terjadi kesalahan saat menyimpan artikel: ' . $e->getMessage(), + ]); + } + } + + public function updateAdminArtikel(Request $request, $id) + { + try { + $validated = $request->validate([ + 'card_id' => 'required|exists:card_articles,id', + 'title' => 'required|string|max:255', + 'description' => 'required|string', + 'status' => 'required|string|in:Tertunda,Disetujui,Ditolak', + 'tags' => 'required|array|min:1|max:3', + 'tags.*' => 'exists:tags,id', + 'image' => 'nullable|image|mimes:jpeg,png,jpg,gif|max:2048', + ], [ + 'card_id.required' => 'Artikel grup harus dipilih', + 'card_id.exists' => 'Artikel grup yang dipilih tidak valid', + 'title.required' => 'Judul artikel harus diisi', + 'title.max' => 'Judul artikel maksimal 255 karakter', + 'description.required' => 'Deskripsi artikel harus diisi', + 'tags.required' => 'Minimal satu tag harus dipilih', + 'tags.array' => 'Format tag tidak valid', + 'tags.min' => 'Minimal satu tag harus dipilih', + 'tags.max' => 'Maksimal tiga tag yang dapat dipilih', + 'tags.*.exists' => 'Tag yang dipilih tidak valid', + 'image.image' => 'File harus berupa gambar', + 'image.mimes' => 'Format gambar harus jpeg, png, jpg, atau gif', + 'image.max' => 'Ukuran gambar maksimal 2MB', + ]); + + $article = Article::where('id', $id) + ->where('user_id', Auth::id()) + ->firstOrFail(); + + $imagePath = $article->image; + if ($request->hasFile('image')) { + if ($article->image && Storage::disk('public')->exists($article->image)) { + Storage::disk('public')->delete($article->image); + } + $imagePath = $request->file('image')->store('articles', 'public'); + } + + $article->update([ + 'card_id' => $validated['card_id'], + 'title' => $validated['title'], + 'description' => $validated['description'], + 'status' => $validated['status'], + 'image' => $imagePath, + ]); + + if (!empty($validated['tags'])) { + $article->tags()->sync($validated['tags']); + } else { + $article->tags()->detach(); + } + + return redirect()->route('admin.add-article-detail')->with([ + 'status' => 'success', + 'message' => 'Artikel berhasil diperbarui!', + ]); + } catch (ValidationException $e) { + return redirect()->back() + ->withErrors($e->validator) + ->withInput(); + } catch (\Exception $e) { + Log::error('Gagal memperbarui artikel: ' . $e->getMessage()); + return redirect()->back()->withInput()->with([ + 'status' => 'error', + 'message' => 'Terjadi kesalahan saat memperbarui artikel: ' . $e->getMessage(), + ]); + } + } + + public function deleteAdminArtikel($id) + { + try { + $article = Article::where('id', $id) + ->where('user_id', Auth::id()) + ->firstOrFail(); + + $article->tags()->detach(); + if ($article->image) { + Storage::disk('public')->delete($article->image); + } + $article->delete(); + + return response()->json(['success' => true, 'message' => 'Artikel berhasil dihapus.']); + } catch (\Exception $e) { + Log::error('Gagal menghapus artikel: ' . $e->getMessage()); + + return response()->json(['success' => false, 'message' => 'Gagal menghapus artikel.'], 500); + } + } +} \ No newline at end of file diff --git a/app/Http/Controllers/AdminCardArticleController.php b/app/Http/Controllers/AdminCardArticleController.php new file mode 100644 index 0000000..804af92 --- /dev/null +++ b/app/Http/Controllers/AdminCardArticleController.php @@ -0,0 +1,165 @@ +get('artikel_page', 1); + $articles = CardArticle::where('user_id', Auth::id()) + ->withCount('articles') + ->latest() + ->paginate(5, ['*'], 'artikel_page', $artikelPage); + + $approvedCount = Article::where('status', 'Disetujui') + ->where('user_id', Auth::id()) + ->count(); + + return view('admin.add-card-article', compact('articles', 'approvedCount')); + } catch (\Exception $e) { + Log::error('Gagal memuat data artikel: ' . $e->getMessage()); + return redirect()->route('admin.add-article')->with([ + 'status' => 'error', + 'message' => 'Terjadi kesalahan saat memuat data artikel.', + ]); + } + } + + public function storeAdminArtikel(Request $request) + { + try { + $validated = $request->validate([ + 'title' => 'required|string|max:255', + 'description' => 'required|string', + 'image' => 'required|image|mimes:jpeg,png,jpg,gif|max:2048', + ], [ + 'title.required' => 'Judul grup artikel harus diisi.', + 'title.max' => 'Judul grup artikel maksimal 255 karakter.', + 'description.required' => 'Deskripsi grup artikel harus diisi.', + 'image.required' => 'Gambar grup artikel harus diunggah.', + 'image.image' => 'File harus berupa gambar.', + 'image.mimes' => 'Format gambar harus jpeg, png, jpg, atau gif.', + 'image.max' => 'Ukuran gambar maksimal 2MB.' + ]); + + $imagePath = null; + if ($request->hasFile('image')) { + $imagePath = $request->file('image')->store('card_articles', 'public'); + } + + $cardArticle = CardArticle::create([ + 'title' => $validated['title'], + 'description' => $validated['description'], + 'image' => $imagePath, + 'user_id' => Auth::id(), + ]); + + return redirect()->route('admin.add-article')->with([ + 'status' => 'success', + 'message' => 'Artikel grup berhasil ditambahkan!', + ]); + } catch (ValidationException $e) { + return redirect()->back() + ->withErrors($e->validator) + ->withInput(); + } catch (\Exception $e) { + Log::error('Gagal menyimpan artikel: ' . $e->getMessage()); + + return redirect()->route('admin.add-article')->with([ + 'status' => 'error', + 'message' => 'Terjadi kesalahan saat menyimpan artikel.', + ]); + } + } + + public function updateAdminArtikel(Request $request, $id) + { + try { + $validated = $request->validate([ + 'title' => 'required|string|max:255', + 'description' => 'required|string', + 'image' => 'nullable|image|mimes:jpeg,png,jpg,gif|max:2048', + ], [ + 'title.required' => 'Judul grup artikel harus diisi.', + 'title.max' => 'Judul grup artikel maksimal 255 karakter.', + 'description.required' => 'Deskripsi grup artikel harus diisi.', + 'image.image' => 'File harus berupa gambar.', + 'image.mimes' => 'Format gambar harus jpeg, png, jpg, atau gif.', + 'image.max' => 'Ukuran gambar maksimal 2MB.' + ]); + + $card = CardArticle::where('id', $id) + ->where('user_id', Auth::id()) + ->firstOrFail(); + + $imagePath = $card->image; + + if ($request->hasFile('image')) { + if ($imagePath && Storage::disk('public')->exists($imagePath)) { + Storage::disk('public')->delete($imagePath); + Log::info('Gambar lama berhasil dihapus: ' . $imagePath); + } + + $newImagePath = $request->file('image')->store('card_articles', 'public'); + Log::info('Gambar baru berhasil disimpan: ' . $newImagePath); + $imagePath = $newImagePath; + } + + $card->update([ + 'title' => $validated['title'], + 'description' => $validated['description'], + 'image' => $imagePath, + ]); + + return redirect()->route('admin.add-article')->with([ + 'status' => 'success', + 'message' => 'Artikel grup berhasil diperbarui!', + ]); + } catch (ValidationException $e) { + return redirect()->back() + ->withErrors($e->validator) + ->withInput(); + } catch (ModelNotFoundException $e) { + return redirect()->route('admin.add-article')->with([ + 'status' => 'error', + 'message' => 'Artikel grup tidak ditemukan.', + ]); + } catch (\Exception $e) { + Log::error('Gagal memperbarui artikel grup: ' . $e->getMessage()); + + return redirect()->route('admin.add-article')->with([ + 'status' => 'error', + 'message' => 'Terjadi kesalahan saat memperbarui artikel grup.', + ]); + } + } + + public function deleteAdminArtikel($id) + { + try { + $cardArticle = CardArticle::where('id', $id) + ->where('user_id', Auth::id()) + ->firstOrFail(); + + if ($cardArticle->image) { + Storage::disk('public')->delete($cardArticle->image); + } + $cardArticle->delete(); + + return response()->json(['success' => true, 'message' => 'Grup artikel berhasil dihapus.']); + } catch (\Exception $e) { + Log::error('Gagal menghapus artikel: ' . $e->getMessage()); + return response()->json(['success' => false, 'message' => 'Gagal menghapus artikel.'], 500); + } + } +} diff --git a/app/Http/Controllers/AdminSubArticleController.php b/app/Http/Controllers/AdminSubArticleController.php new file mode 100644 index 0000000..798cba9 --- /dev/null +++ b/app/Http/Controllers/AdminSubArticleController.php @@ -0,0 +1,261 @@ +get(); + $selectedArticle = null; + $subArticles = collect(); + + $articleId = $request->query('article_id'); + if ($articleId) { + $selectedArticle = Article::with(['subArticles' => function ($query) { + $query->orderBy('order_number', 'asc') + ->orderBy('id', 'desc'); + }])->where('user_id', Auth::id())->find($articleId); + + if ($selectedArticle) { + $subArticles = $selectedArticle->subArticles; + } + } + + $editId = $request->query('edit_id'); + if ($editId) { + $subArticle = SubArticle::where('id', $editId) + ->whereHas('article', function ($query) { + $query->where('user_id', Auth::id()); + }) + ->first(); + } + + return view('admin.add-article-sub', compact('subArticles', 'articles', 'selectedArticle', 'subArticle')); + } catch (\Exception $e) { + Log::error('Gagal memuat sub-artikel: ' . $e->getMessage()); + + return redirect()->route('admin.add-article-sub')->with([ + 'status' => 'error', + 'message' => 'Terjadi kesalahan saat memuat data sub-artikel.', + ]); + } + } + + public function storeMultipleSubArticles(Request $request) + { + try { + $validated = $request->validate([ + 'article_id' => 'required|exists:articles,id', + 'sub_articles' => 'required|array|min:1', + 'sub_articles.*.title' => 'required|string|max:255', + 'sub_articles.*.content' => 'required|string', + 'sub_articles.*.order_number' => 'required|integer|min:1', + 'sub_articles.*.image' => 'nullable|image|mimes:jpeg,png,jpg,gif|max:2048', + 'sub_articles.*.remove_image' => 'nullable|in:0,1', + ], [ + 'article_id.required' => 'Artikel induk harus dipilih.', + 'article_id.exists' => 'Artikel induk tidak ditemukan.', + 'sub_articles.required' => 'Minimal satu sub artikel harus diisi.', + 'sub_articles.min' => 'Minimal satu sub artikel harus diisi.', + 'sub_articles.*.title.required' => 'Judul sub artikel harus diisi.', + 'sub_articles.*.title.max' => 'Judul sub artikel maksimal 255 karakter.', + 'sub_articles.*.content.required' => 'Konten sub artikel harus diisi.', + 'sub_articles.*.order_number.required' => 'Urutan sub artikel harus diisi.', + 'sub_articles.*.order_number.integer' => 'Urutan sub artikel harus berupa angka.', + 'sub_articles.*.order_number.min' => 'Urutan sub artikel minimal 1.', + 'sub_articles.*.image.image' => 'File harus berupa gambar.', + 'sub_articles.*.image.mimes' => 'Format gambar harus jpeg, png, jpg, atau gif.', + 'sub_articles.*.image.max' => 'Ukuran gambar maksimal 2MB.', + ]); + + $article = Article::where('id', $validated['article_id']) + ->where('user_id', Auth::id()) + ->firstOrFail(); + + $subArticlesData = []; + foreach ($validated['sub_articles'] as $subArticle) { + $imagePath = null; + + if (isset($subArticle['image']) && $subArticle['image'] instanceof \Illuminate\Http\UploadedFile) { + $imagePath = $subArticle['image']->store('sub_articles', 'public'); + } + + $subArticlesData[] = [ + 'article_id' => $validated['article_id'], + 'title' => $subArticle['title'], + 'content' => $subArticle['content'], + 'order_number' => $subArticle['order_number'], + 'image' => $imagePath, + 'user_id' => Auth::id(), + 'created_at' => now(), + 'updated_at' => now(), + ]; + } + + SubArticle::insert($subArticlesData); + + return redirect()->route('admin.add-article-sub', ['article_id' => $validated['article_id']])->with([ + 'status' => 'success', + 'message' => 'Semua sub-artikel berhasil disimpan!', + ]); + } catch (ValidationException $e) { + return redirect()->back()->withErrors($e->validator)->withInput(); + } catch (\Exception $e) { + Log::error('Gagal menyimpan sub-artikel: ' . $e->getMessage()); + return redirect()->route('admin.add-article-sub')->with([ + 'status' => 'error', + 'message' => 'Terjadi kesalahan saat menyimpan sub-artikel: ' . $e->getMessage(), + ]); + } + } + + public function updateAdminArtikel(Request $request, $id) + { + try { + $subArticle = SubArticle::where('id', $id) + ->whereHas('article', function ($query) { + $query->where('user_id', Auth::id()); + }) + ->firstOrFail(); + + $validated = $request->validate([ + 'article_id' => 'required|exists:articles,id', + 'sub_articles' => 'required|array', + 'sub_articles.*.title' => 'required|string|max:255', + 'sub_articles.*.content' => 'required|string', + 'sub_articles.*.order_number' => 'required|integer|min:1', + 'sub_articles.*.image' => 'nullable|image|mimes:jpeg,png,jpg,gif|max:2048', + 'sub_articles.*.remove_image' => 'nullable|in:0,1', + ], [ + 'article_id.required' => 'Artikel induk harus dipilih.', + 'article_id.exists' => 'Artikel induk tidak ditemukan.', + 'sub_articles.required' => 'Data sub artikel harus diisi.', + 'sub_articles.*.title.required' => 'Judul sub artikel harus diisi.', + 'sub_articles.*.title.max' => 'Judul sub artikel maksimal 255 karakter.', + 'sub_articles.*.content.required' => 'Konten sub artikel harus diisi.', + 'sub_articles.*.order_number.required' => 'Urutan sub artikel harus diisi.', + 'sub_articles.*.order_number.integer' => 'Urutan sub artikel harus berupa angka.', + 'sub_articles.*.order_number.min' => 'Urutan sub artikel minimal 1.', + 'sub_articles.*.image.image' => 'File harus berupa gambar.', + 'sub_articles.*.image.mimes' => 'Format gambar harus jpeg, png, jpg, atau gif.', + 'sub_articles.*.image.max' => 'Ukuran gambar maksimal 2MB.', + ]); + + $removeImage = $request->input('sub_articles.0.remove_image', '0'); + $imagePath = $subArticle->image; + + if ($removeImage === '1') { + if ($imagePath && Storage::disk('public')->exists($imagePath)) { + Storage::disk('public')->delete($imagePath); + } + $imagePath = null; + } + elseif ($request->hasFile('sub_articles.0.image')) { + if ($imagePath && Storage::disk('public')->exists($imagePath)) { + Storage::disk('public')->delete($imagePath); + } + $imagePath = $request->file('sub_articles.0.image')->store('sub_articles', 'public'); + } + + $subArticle->update([ + 'article_id' => $validated['article_id'], + 'title' => $validated['sub_articles'][0]['title'], + 'content' => $validated['sub_articles'][0]['content'], + 'order_number' => $validated['sub_articles'][0]['order_number'], + 'image' => $imagePath, + ]); + + return redirect()->route('admin.add-article-sub', ['article_id' => $validated['article_id']])->with([ + 'status' => 'success', + 'message' => 'Sub-artikel berhasil diperbarui!', + ]); + } catch (ValidationException $e) { + return redirect()->back()->withErrors($e->validator)->withInput(); + } catch (\Exception $e) { + Log::error('Gagal memperbarui sub-artikel: ' . $e->getMessage()); + return redirect()->route('admin.add-article-sub')->with([ + 'status' => 'error', + 'message' => 'Terjadi kesalahan saat memperbarui sub-artikel: ' . $e->getMessage(), + ]); + } + } + + public function editAdminArtikel($id) + { + try { + $subArticle = SubArticle::where('id', $id) + ->whereHas('article', function ($query) { + $query->where('user_id', Auth::id()); + }) + ->firstOrFail(); + + $selectedArticle = $subArticle->article; + + $articles = Article::where('user_id', Auth::id())->get(); + + return view('admin.add-article-sub', compact('subArticle', 'selectedArticle', 'articles')); + } catch (\Exception $e) { + return redirect()->route('admin.add-article-sub')->with([ + 'status' => 'error', + 'message' => 'Sub-artikel tidak ditemukan atau tidak dapat diakses.', + ]); + } + } + + public function deleteAdminArtikel($id) + { + try { + $subArticle = SubArticle::where('id', $id) + ->whereHas('article', function ($query) { + $query->where('user_id', Auth::id()); + }) + ->firstOrFail(); + + $articleId = $subArticle->article_id; + + if ($subArticle->image) { + Storage::disk('public')->delete($subArticle->image); + } + + $subArticle->delete(); + + if (request()->ajax() || request()->wantsJson()) { + return response()->json([ + 'success' => true, + 'message' => 'Sub-artikel berhasil dihapus!' + ]); + } + + return redirect()->route('admin.add-article-sub', ['article_id' => $articleId])->with([ + 'status' => 'success', + 'message' => 'Sub-artikel berhasil dihapus!', + ]); + } catch (\Exception $e) { + Log::error('Gagal menghapus sub-artikel: ' . $e->getMessage()); + + if (request()->ajax() || request()->wantsJson()) { + return response()->json([ + 'success' => false, + 'message' => 'Terjadi kesalahan saat menghapus sub-artikel: ' . $e->getMessage() + ], 500); + } + + return redirect()->route('admin.add-article-sub')->with([ + 'status' => 'error', + 'message' => 'Terjadi kesalahan saat menghapus sub-artikel.', + ]); + } + } +} diff --git a/app/Http/Controllers/ArticleController.php b/app/Http/Controllers/ArticleController.php new file mode 100644 index 0000000..279514f --- /dev/null +++ b/app/Http/Controllers/ArticleController.php @@ -0,0 +1,152 @@ +where('status', 'Disetujui'); + }) + ->with(['articles' => function($q) { + $q->where('status', 'Disetujui')->with('subArticles'); + }]) + ->withCount(['articles' => function($q) { + $q->where('status', 'Disetujui'); + }]) + ->latest() + ->take(8) + ->get(); + + $readingSpeed = 200; + + foreach ($cardArticles as $card) { + $totalReadingTime = 0; + foreach ($card->articles as $article) { + $text = $article->title . ' ' . $article->description; + if ($article->subArticles && $article->subArticles->isNotEmpty()) { + $subText = $article->subArticles + ->map(function ($sub) { + return $sub->title . ' ' . $sub->content; + }) + ->implode(' '); + $text .= ' ' . $subText; + } + $wordCount = str_word_count(strip_tags($text)); + $articleReadingTime = ceil($wordCount / $readingSpeed); + $totalReadingTime += $articleReadingTime; + } + $card->readingTime = $totalReadingTime; + } + + $totalArticles = Article::where('status', 'Disetujui')->count(); + $totalUsers = User::count(); + + return view('home', compact('cardArticles', 'totalArticles', 'totalUsers')); +} + +public function showAllCards(Request $request) +{ + $search = $request->get('search'); + $cardArticlesQuery = CardArticle::whereHas('articles', function ($q) { + $q->where('status', 'Disetujui'); + }) + ->withCount(['articles' => function ($q) { + $q->where('status', 'Disetujui'); + }]) + ->latest(); + + if ($search) { + $cardArticlesQuery->where('title', 'like', '%' . $search . '%'); + } + + $cardArticles = $cardArticlesQuery->paginate(8); + + $readingSpeed = 200; + + foreach ($cardArticles as $card) { + $totalReadingTime = 0; + foreach ($card->articles as $article) { + $text = $article->title . ' ' . $article->description; + + if ($article->subArticles && $article->subArticles->isNotEmpty()) { + $subText = $article->subArticles + ->map(function ($sub) { + return $sub->title . ' ' . $sub->content; + }) + ->implode(' '); + + $text .= ' ' . $subText; + } + + $wordCount = str_word_count(strip_tags($text)); + $articleReadingTime = ceil($wordCount / $readingSpeed); + $totalReadingTime += $articleReadingTime; + } + + $card->readingTime = $totalReadingTime; + } + + return view('livewire.pages.home.all-cards', compact('cardArticles')); +} + +public function showArticles(Request $request, $id) +{ + try { + $card = CardArticle::whereHas('articles', function($query) { + $query->where('status', 'Disetujui'); + })->findOrFail($id); + + $articlesQuery = $card->articles() + ->with('subArticles') + ->where('status', 'Disetujui'); + + if ($request->has('search')) { + $search = $request->get('search'); + $articlesQuery->where('title', 'like', '%' . $search . '%'); + } + + $articles = $articlesQuery->latest()->paginate(8); + $readingSpeed = 200; + + foreach ($articles as $article) { + $text = $article->title . ' ' . $article->description; + + if ($article->subArticles && $article->subArticles->isNotEmpty()) { + $subText = $article->subArticles->map(function ($sub) { + return $sub->title . ' ' . $sub->content; + })->implode(' '); + + $text .= ' ' . $subText; + } + + $wordCount = str_word_count(strip_tags($text)); + $article->readingTime = ceil($wordCount / $readingSpeed); + } + + $totalReadingTime = $articles->sum('readingTime'); + $card->readingTime = $totalReadingTime; + + return view('livewire.pages.home.articles', compact('card', 'articles')); + } catch (\Exception $e) { + return redirect('/')->with('error', 'Card artikel tidak ditemukan atau tidak memiliki artikel yang disetujui.'); + } +} + + public function showArticleDetail($id) +{ + $article = Article::with(['subArticles' => function ($query) { + $query->orderBy('order_number', 'asc'); + }])->findOrFail($id); + + return view('livewire.pages.home.article-detail', compact('article')); +} + +} diff --git a/app/Http/Controllers/Auth/AuthenticatedSessionController.php b/app/Http/Controllers/Auth/AuthenticatedSessionController.php new file mode 100644 index 0000000..af5ce91 --- /dev/null +++ b/app/Http/Controllers/Auth/AuthenticatedSessionController.php @@ -0,0 +1,59 @@ +middleware('auth')->except('store'); + } + + /** + * Handle login and redirect based on role. + * + * @param \Illuminate\Http\Request $request + * @return \Illuminate\Http\RedirectResponse + */ + public function store(Request $request) +{ + $request->validate([ + 'email' => ['required', 'email'], + 'password' => ['required'], + ]); + + if (Auth::attempt($request->only('email', 'password'), $request->boolean('remember'))) { + $request->session()->regenerate(); + + return redirect()->intended(RouteServiceProvider::HOME); + } + + return back()->withErrors([ + 'email' => 'Kredensial yang diberikan salah.', + ]); +} + + /** + * Logout the authenticated user and invalidate their session. + * + * @param \Illuminate\Http\Request $request + * @return \Illuminate\Http\RedirectResponse + */ + public function destroy(Request $request) + { + Auth::logout(); + + $request->session()->invalidate(); + $request->session()->regenerateToken(); + + return redirect('/'); + } +} diff --git a/app/Http/Controllers/Auth/VerifyEmailController.php b/app/Http/Controllers/Auth/VerifyEmailController.php new file mode 100644 index 0000000..f411a4d --- /dev/null +++ b/app/Http/Controllers/Auth/VerifyEmailController.php @@ -0,0 +1,26 @@ +user()->hasVerifiedEmail()) { + return redirect()->intended(RouteServiceProvider::HOME.'?verified=1'); + } + + if ($request->user()->markEmailAsVerified()) { + event(new Verified($request->user())); + } + + return redirect()->intended(RouteServiceProvider::HOME.'?verified=1'); + } +} \ No newline at end of file diff --git a/app/Http/Controllers/Controller.php b/app/Http/Controllers/Controller.php new file mode 100644 index 0000000..77ec359 --- /dev/null +++ b/app/Http/Controllers/Controller.php @@ -0,0 +1,12 @@ +where('user_id', $userId) + ->count(); + + $totalCapacity = KandangAyam::where('status_kandang', 'Aktif') + ->where('user_id', $userId) + ->sum('kapasitas'); + + $totalDeathsThisMonth = DB::table('harian_ayam') + ->whereMonth('tanggal_input', Carbon::now()->month) + ->whereYear('tanggal_input', Carbon::now()->year) + ->whereIn('id_populasi', function ($query) use ($userId) { + $query->select('id')->from('populasi_ayam')->where('user_id', $userId); + }) + ->sum('jumlah_ayam_mati'); + + $currentMonthDeaths = DB::table('harian_ayam') + ->whereYear('tanggal_input', Carbon::now()->year) + ->whereMonth('tanggal_input', Carbon::now()->month) + ->whereIn('id_populasi', function ($query) use ($userId) { + $query->select('id')->from('populasi_ayam')->where('user_id', $userId); + }) + ->sum('jumlah_ayam_mati'); + + $previousMonthDeaths = DB::table('harian_ayam') + ->whereYear('tanggal_input', Carbon::now()->year) + ->whereMonth('tanggal_input', Carbon::now()->subMonth()->month) + ->whereIn('id_populasi', function ($query) use ($userId) { + $query->select('id')->from('populasi_ayam')->where('user_id', $userId); + }) + ->sum('jumlah_ayam_mati'); + + $percentageChange = 0; + if ($previousMonthDeaths > 0) { + $percentageChange = (($currentMonthDeaths - $previousMonthDeaths) / $previousMonthDeaths) * 100; + } + + $populasiSub = DB::table('populasi_ayam') + ->whereIn('status_ayam', ['Proses', 'Siap Panen']) + ->where('user_id', $userId) + ->select('kandang_id', DB::raw('SUM(jumlah_ayam_masuk) as total_ayam')) + ->groupBy('kandang_id'); + + $harianSub = DB::table('harian_ayam') + ->join('populasi_ayam', 'harian_ayam.id_populasi', '=', 'populasi_ayam.id') + ->whereIn('populasi_ayam.status_ayam', ['Proses', 'Siap Panen']) + ->where('populasi_ayam.user_id', $userId) + ->select('populasi_ayam.kandang_id', + DB::raw('SUM(jumlah_ayam_sakit) as total_sick'), + DB::raw('SUM(jumlah_ayam_mati) as total_dead')) + ->groupBy('populasi_ayam.kandang_id'); + $KandangAyams = DB::table('kandang_ayam') + ->where('user_id', $userId) + ->leftJoinSub($populasiSub, 'populasi', function ($join) { + $join->on('kandang_ayam.id', '=', 'populasi.kandang_id'); + }) + ->leftJoinSub($harianSub, 'harian', function ($join) { + $join->on('kandang_ayam.id', '=', 'harian.kandang_id'); + }) + ->select( + 'kandang_ayam.*', + DB::raw('COALESCE(populasi.total_ayam, 0) as total_ayam'), + DB::raw('COALESCE(harian.total_sick, 0) as total_sick'), + DB::raw('COALESCE(harian.total_dead, 0) as total_dead') + ) + ->having('total_ayam', '>', 0) + ->paginate(5); + + $pendapatanBulanIni = DB::table('pendapatan') + ->whereMonth('tanggal_transaksi', Carbon::now()->month) + ->whereYear('tanggal_transaksi', Carbon::now()->year) + ->where('user_id', $userId) + ->sum('total_pendapatan'); + + $pengeluaranBulanIni = DB::table('pengeluaran') + ->whereMonth('tanggal_pembelian', Carbon::now()->month) + ->whereYear('tanggal_pembelian', Carbon::now()->year) + ->where('user_id', $userId) + ->sum('total_biaya'); + + return view('dashboard', compact( + 'totalKandangAyams', + 'totalCapacity', + 'totalDeathsThisMonth', + 'percentageChange', + 'KandangAyams', + 'pendapatanBulanIni', + 'pengeluaranBulanIni', + )); + } +} diff --git a/app/Http/Controllers/KandangAyamController.php b/app/Http/Controllers/KandangAyamController.php new file mode 100644 index 0000000..712d76d --- /dev/null +++ b/app/Http/Controllers/KandangAyamController.php @@ -0,0 +1,121 @@ +get('kandang_page', 1); + $kandang = KandangAyam::where('user_id', Auth::id()) + ->latest() + ->paginate(4, ['*'], 'kandang_page', $kandangPage); + return view('cage-management', compact('kandang')); + } catch (\Exception $e) { + Log::error('Gagal memuat data kandang: ' . $e->getMessage()); + + return redirect()->route('cage-management')->with([ + 'status' => 'error', + 'message' => 'Terjadi kesalahan saat memuat data kandang.', + ]); + } + } + + public function storeKandang(Request $request) + { + $validated = $request->validate([ + 'nama_kandang' => 'required|string|max:255', + 'kapasitas' => 'required|integer|min:1', + 'status_kandang' => 'required|in:Aktif,Tidak Aktif', + ], [ + 'nama_kandang.required' => 'Nama kandang harus diisi.', + 'nama_kandang.max' => 'Nama kandang maksimal 255 karakter.', + 'kapasitas.required' => 'Kapasitas kandang harus diisi.', + 'kapasitas.integer' => 'Kapasitas harus berupa angka.', + 'kapasitas.min' => 'Kapasitas kandang minimal 1.', + 'status_kandang.required' => 'Status kandang harus dipilih.', + 'status_kandang.in' => 'Status kandang tidak valid.', + ]); + + try { + $validated['user_id'] = Auth::id(); + KandangAyam::create($validated); + return redirect()->route('cage-management')->with([ + 'status' => 'success', + 'message' => 'Kandang berhasil ditambahkan.', + ]); + } catch (\Exception $e) { + Log::error('Gagal menyimpan kandang: ' . $e->getMessage()); + return redirect()->route('cage-management')->with([ + 'status' => 'error', + 'message' => 'Terjadi kesalahan saat menyimpan data kandang.', + ]); + } + } + + public function updateKandang(Request $request, $id) + { + $validated = $request->validate([ + 'nama_kandang' => 'required|string|max:255', + 'kapasitas' => 'required|integer|min:1', + 'status_kandang' => 'required|in:Aktif,Tidak Aktif', + ], [ + 'nama_kandang.required' => 'Nama kandang harus diisi.', + 'nama_kandang.max' => 'Nama kandang maksimal 255 karakter.', + 'kapasitas.required' => 'Kapasitas kandang harus diisi.', + 'kapasitas.integer' => 'Kapasitas harus berupa angka.', + 'kapasitas.min' => 'Kapasitas kandang minimal 1.', + 'status_kandang.required' => 'Status kandang harus dipilih.', + 'status_kandang.in' => 'Status kandang tidak valid.', + ]); + + try { + $kandang = KandangAyam::where('id', $id)->where('user_id', Auth::id())->firstOrFail(); + + if ($kandang->status_kandang === 'Aktif' && $validated['status_kandang'] === 'Tidak Aktif') { + $activePopulations = $kandang->populasiAyam() + ->whereIn('status_ayam', ['Proses', 'Siap Panen']) + ->count(); + + if ($activePopulations > 0) { + return redirect()->back()->with([ + 'status' => 'warning', + 'message' => "Kandang ini memiliki $activePopulations populasi ayam aktif. Pastikan semua populasi sudah dipanen sebelum menonaktifkan kandang.", + ]); + } + } + + $kandang->update($validated); + return redirect()->route('cage-management')->with([ + 'status' => 'success', + 'message' => 'Kandang berhasil diperbarui.', + ]); + } catch (\Exception $e) { + Log::error('Gagal menyimpan kandang: ' . $e->getMessage()); + return redirect()->route('cage-management')->with([ + 'status' => 'error', + 'message' => 'Terjadi kesalahan saat menyimpan data kandang.', + ]); + } + } + + public function destroyKandang($id) + { + try { + $kandang = KandangAyam::where('id', $id)->where('user_id', Auth::id())->firstOrFail(); + $kandang->delete(); + + return response()->json(['success' => true, 'message' => 'Kandang berhasil dihapus.']); + } catch (\Exception $e) { + Log::error('Gagal menghapus kandang: ' . $e->getMessage()); + + return response()->json(['success' => false, 'message' => 'Gagal menghapus kandang.'], 500); + } + } +} diff --git a/app/Http/Controllers/KeuanganController.php b/app/Http/Controllers/KeuanganController.php new file mode 100644 index 0000000..d59f16d --- /dev/null +++ b/app/Http/Controllers/KeuanganController.php @@ -0,0 +1,133 @@ +get('bulan', Carbon::now()->format('m')); + $tahun = $request->get('tahun', Carbon::now()->format('Y')); + if ($tahun == Carbon::now()->format('Y') && $bulan > Carbon::now()->format('m')) { + $bulan = Carbon::now()->format('m'); + } + if ($tahun > Carbon::now()->format('Y')) { + $tahun = Carbon::now()->format('Y'); + } + $namaBulan = Carbon::create()->month($bulan)->translatedFormat('F'); + $pendapatan = Pendapatan::where('user_id', Auth::id()) + ->whereYear('tanggal_transaksi', $tahun) + ->whereMonth('tanggal_transaksi', $bulan) + ->orderBy('tanggal_transaksi', 'asc') + ->get() + ->map(function ($item) { + return [ + 'tanggal' => $item->tanggal_transaksi, + 'keterangan' => $item->kategori, + 'jumlah' => $item->jumlah * $item->harga_per_satuan, + 'tipe' => 'pendapatan', + ]; + }); + + $pengeluaran = Pengeluaran::where('user_id', Auth::id()) + ->whereYear('tanggal_pembelian', $tahun) + ->whereMonth('tanggal_pembelian', $bulan) + ->orderBy('tanggal_pembelian', 'asc') + ->get() + ->map(function ($item) { + return [ + 'tanggal' => $item->tanggal_pembelian, + 'keterangan' => $item->category . ' - ' . $item->description, + 'jumlah' => $item->jumlah * $item->harga_per_satuan, + 'tipe' => 'pengeluaran', + ]; + }); + + $transaksi = collect($pendapatan)->merge($pengeluaran)->sortBy('tanggal'); + + $totalPendapatan = $pendapatan->sum('jumlah'); + $totalPengeluaran = $pengeluaran->sum('jumlah'); + $labaBersih = $totalPendapatan - $totalPengeluaran; + + $totalPendapatanHarian = $transaksi->filter(fn($trx) => $trx['tipe'] === 'pendapatan')->sum('jumlah'); + $totalPengeluaranHarian = $transaksi->filter(fn($trx) => $trx['tipe'] === 'pengeluaran')->sum('jumlah'); + $totalSaldoHarian = $totalPendapatanHarian - $totalPengeluaranHarian; + + return view('finance-management', compact( + 'transaksi', + 'totalPendapatan', + 'totalPengeluaran', + 'labaBersih', + 'bulan', + 'tahun', + 'namaBulan', + 'totalPendapatanHarian', + 'totalPengeluaranHarian', + 'totalSaldoHarian' + )); + } catch (\Exception $e) { + Log::error('Gagal memuat laporan keuangan: ' . $e->getMessage()); + + return redirect()->route('finance-management')->with([ + 'status' => 'error', + 'message' => 'Terjadi kesalahan saat memuat laporan keuangan.', + ]); + } + } + + public function exportPDF(Request $request) +{ + $bulan = $request->get('bulan', Carbon::now()->format('m')); + $tahun = $request->get('tahun', Carbon::now()->format('Y')); + $namaBulan = Carbon::create()->month($bulan)->translatedFormat('F'); + $userId = Auth::id(); // Simpan user ID dalam variabel agar konsisten + + $pendapatan = Pendapatan::where('user_id', $userId) + ->whereYear('tanggal_transaksi', $tahun) + ->whereMonth('tanggal_transaksi', $bulan) + ->orderBy('tanggal_transaksi', 'asc') + ->get() + ->map(fn($item) => [ + 'tanggal' => $item->tanggal_transaksi, + 'keterangan' => $item->kategori, + 'jumlah' => $item->jumlah * $item->harga_per_satuan, + 'tipe' => 'pendapatan', + ]); + + $pengeluaran = Pengeluaran::where('user_id', $userId) // Tambahkan filter user_id di sini + ->whereYear('tanggal_pembelian', $tahun) + ->whereMonth('tanggal_pembelian', $bulan) + ->orderBy('tanggal_pembelian', 'asc') + ->get() + ->map(fn($item) => [ + 'tanggal' => $item->tanggal_pembelian, + 'keterangan' => $item->category . ' - ' . $item->description, + 'jumlah' => $item->jumlah * $item->harga_per_satuan, + 'tipe' => 'pengeluaran', + ]); + + $transaksi = collect($pendapatan)->merge($pengeluaran)->sortBy('tanggal'); + $totalPendapatan = $pendapatan->sum('jumlah'); + $totalPengeluaran = $pengeluaran->sum('jumlah'); + $totalSaldo = $totalPendapatan - $totalPengeluaran; + + // Tambahkan nama user ke dalam view untuk ditampilkan dalam PDF + $user = Auth::user(); + + $pdf = Pdf::loadView('cetak.laporan-keuangan', compact( + 'transaksi', 'totalPendapatan', 'totalPengeluaran', 'totalSaldo', 'namaBulan', 'tahun', 'user' + )); + + return $pdf->download("Laporan-Keuangan-{$user->name}-{$namaBulan}-{$tahun}.pdf"); +} +} \ No newline at end of file diff --git a/app/Http/Controllers/PakanController.php b/app/Http/Controllers/PakanController.php new file mode 100644 index 0000000..2b79c0c --- /dev/null +++ b/app/Http/Controllers/PakanController.php @@ -0,0 +1,141 @@ +get('pakan_page', 1); + $pakan = Pakan::where('user_id', Auth::id()) + ->latest() + ->paginate(5, ['*'], 'pakan_page', $pakanPage); + + return view('food-management', compact('pakan')); + } catch (\Exception $e) { + Log::error('Gagal memuat data pakan: ' . $e->getMessage()); + + return redirect()->route('food-management')->with([ + 'status' => 'error', + 'message' => 'Terjadi kesalahan saat memuat data pakan.', + ]); + } + } + + public function storePakan(Request $request) + { + try { + $validated = $request->validate([ + 'nama_pakan' => 'required|string|max:255', + 'jenis_pakan' => 'required|string|max:255', + 'berat' => 'required|numeric|min:1', + 'tanggal_masuk' => 'required|date', + 'harga_per_kg' => 'required|numeric|min:1000' + ], [ + 'nama_pakan.required' => 'Nama pakan harus diisi.', + 'nama_pakan.max' => 'Nama pakan maksimal 255 karakter.', + 'jenis_pakan.required' => 'Jenis pakan harus diisi.', + 'jenis_pakan.max' => 'Jenis pakan maksimal 255 karakter.', + 'berat.required' => 'Berat pakan harus diisi.', + 'berat.numeric' => 'Berat pakan harus berupa angka.', + 'berat.min' => 'Berat pakan minimal 1 kg.', + 'tanggal_masuk.required' => 'Tanggal masuk harus diisi.', + 'tanggal_masuk.date' => 'Format tanggal masuk tidak valid.', + 'harga_per_kg.required' => 'Harga per kg harus diisi.', + 'harga_per_kg.numeric' => 'Harga per kg harus berupa angka.', + 'harga_per_kg.min' => 'Harga per kg minimal Rp 1.000.' + ]); + + $validated['user_id'] = Auth::id(); + Pakan::create($validated); + + return redirect()->route('food-management')->with([ + 'status' => 'success', + 'message' => 'Pakan berhasil ditambahkan.' + ]); + } catch (ValidationException $e) { + return redirect()->back()->withErrors($e->validator)->withInput(); + } catch (\Exception $e) { + Log::error('Gagal menambah pakan: ' . $e->getMessage()); + return redirect()->route('food-management')->with([ + 'status' => 'error', + 'message' => 'Terjadi kesalahan saat menambahkan pakan.' + ]); + } + } + + public function updatePakan(Request $request, $id) + { + try { + $validated = $request->validate([ + 'nama_pakan' => 'required|string|max:255', + 'jenis_pakan' => 'required|string|max:255', + 'berat' => 'required|numeric|min:1', + 'tanggal_masuk' => 'required|date', + 'harga_per_kg' => 'required|numeric|min:1000' + ], [ + 'nama_pakan.required' => 'Nama pakan harus diisi.', + 'nama_pakan.max' => 'Nama pakan maksimal 255 karakter.', + 'jenis_pakan.required' => 'Jenis pakan harus diisi.', + 'jenis_pakan.max' => 'Jenis pakan maksimal 255 karakter.', + 'berat.required' => 'Berat pakan harus diisi.', + 'berat.numeric' => 'Berat pakan harus berupa angka.', + 'berat.min' => 'Berat pakan minimal 1 kg.', + 'tanggal_masuk.required' => 'Tanggal masuk harus diisi.', + 'tanggal_masuk.date' => 'Format tanggal masuk tidak valid.', + 'harga_per_kg.required' => 'Harga per kg harus diisi.', + 'harga_per_kg.numeric' => 'Harga per kg harus berupa angka.', + 'harga_per_kg.min' => 'Harga per kg minimal Rp 1.000.' + ]); + + $pakan = Pakan::where('id', $id) + ->where('user_id', Auth::id()) + ->firstOrFail(); + + $pakan->update($validated); + + return redirect()->route('food-management')->with([ + 'status' => 'success', + 'message' => 'Pakan berhasil diperbarui.' + ]); + + } catch (ValidationException $e) { + return redirect()->back()->withErrors($e->validator)->withInput(); + } catch (\Exception $e) { + Log::error('Gagal memperbarui pakan: ' . $e->getMessage()); + return redirect()->route('food-management')->with([ + 'status' => 'error', + 'message' => 'Terjadi kesalahan saat memperbarui pakan.' + ]); + } + } + + public function destroyPakan($id) + { + try { + $pakan = Pakan::where('id', $id) + ->where('user_id', Auth::id()) + ->firstOrFail(); + $pakan->delete(); + + return response()->json([ + 'success' => true, + 'message' => 'Pakan berhasil dihapus.' + ]); + + } catch (\Exception $e) { + Log::error('Gagal menghapus pakan: ' . $e->getMessage()); + return response()->json([ + 'success' => false, + 'message' => 'Terjadi kesalahan saat menghapus pakan.' + ], 500); + } + } +} diff --git a/app/Http/Controllers/PendapatanController.php b/app/Http/Controllers/PendapatanController.php new file mode 100644 index 0000000..f1aca77 --- /dev/null +++ b/app/Http/Controllers/PendapatanController.php @@ -0,0 +1,159 @@ +get('pendapatan_page', 1); + + $pendapatan = Pendapatan::where('user_id', Auth::id()) + ->orderBy('tanggal_transaksi', 'desc') + ->paginate(10, ['*'], 'pendapatan_page', $pendapatanPage); + + return view('finance-management-income', compact('pendapatan')); + } catch (\Exception $e) { + Log::error('Gagal memuat data pendapatan: ' . $e->getMessage()); + + return redirect()->route('finance-management-income')->with([ + 'status' => 'error', + 'message' => 'Terjadi kesalahan saat memuat data pendapatan.', + ]); + } + } + + public function storePendapatan(Request $request) + { + try { + $validated = $request->validate([ + 'kategori' => 'required|in:Penjualan Ayam,Penjualan Kotoran,Pendapatan Kemitraan', + 'jumlah' => 'required|numeric|min:1', + 'satuan' => 'required|in:ekor,kg,karung', + 'harga_per_satuan' => 'required|numeric|min:1000', + 'tanggal_transaksi' => 'required|date', + 'nama_pembeli' => 'nullable|string|max:255', + 'nama_perusahaan' => 'nullable|string|max:255', + ], [ + 'kategori.required' => 'Kategori harus dipilih.', + 'kategori.in' => 'Kategori tidak valid.', + 'jumlah.required' => 'Jumlah harus diisi.', + 'jumlah.numeric' => 'Jumlah harus berupa angka.', + 'jumlah.min' => 'Jumlah minimal 1.', + 'satuan.required' => 'Satuan harus dipilih.', + 'satuan.in' => 'Satuan tidak valid.', + 'harga_per_satuan.required' => 'Harga per satuan harus diisi.', + 'harga_per_satuan.numeric' => 'Harga per satuan harus berupa angka.', + 'harga_per_satuan.min' => 'Harga per satuan minimal Rp 1.000.', + 'tanggal_transaksi.required' => 'Tanggal transaksi harus diisi.', + 'tanggal_transaksi.date' => 'Format tanggal transaksi tidak valid.', + 'nama_pembeli.max' => 'Nama pembeli maksimal 255 karakter.', + 'nama_perusahaan.max' => 'Nama perusahaan maksimal 255 karakter.' + ]); + + $validated['user_id'] = Auth::id(); + + Pendapatan::create($validated); + + return redirect()->route('finance-management-income')->with([ + 'status' => 'success', + 'message' => 'Pendapatan berhasil ditambahkan.', + ]); + + } catch (ValidationException $e) { + return redirect()->back() + ->withErrors($e->validator) + ->withInput(); + } catch (\Exception $e) { + Log::error('Gagal menyimpan pendapatan: ' . $e->getMessage()); + + return redirect()->route('finance-management-income')->with([ + 'status' => 'error', + 'message' => 'Terjadi kesalahan saat menyimpan pendapatan.', + ]); + } + } + + public function updatePendapatan(Request $request, $id) + { + try { + $validated = $request->validate([ + 'kategori' => 'required|in:Penjualan Ayam,Penjualan Kotoran,Pendapatan Kemitraan', + 'jumlah' => 'required|numeric|min:1', + 'satuan' => 'required|in:ekor,kg,karung', + 'harga_per_satuan' => 'required|numeric|min:1000', + 'tanggal_transaksi' => 'required|date', + 'nama_pembeli' => 'nullable|string|max:255', + 'nama_perusahaan' => 'nullable|string|max:255', + ], [ + 'kategori.required' => 'Kategori harus dipilih.', + 'kategori.in' => 'Kategori tidak valid.', + 'jumlah.required' => 'Jumlah harus diisi.', + 'jumlah.numeric' => 'Jumlah harus berupa angka.', + 'jumlah.min' => 'Jumlah minimal 1.', + 'satuan.required' => 'Satuan harus dipilih.', + 'satuan.in' => 'Satuan tidak valid.', + 'harga_per_satuan.required' => 'Harga per satuan harus diisi.', + 'harga_per_satuan.numeric' => 'Harga per satuan harus berupa angka.', + 'harga_per_satuan.min' => 'Harga per satuan minimal Rp 1.000.', + 'tanggal_transaksi.required' => 'Tanggal transaksi harus diisi.', + 'tanggal_transaksi.date' => 'Format tanggal transaksi tidak valid.', + 'nama_pembeli.max' => 'Nama pembeli maksimal 255 karakter.', + 'nama_perusahaan.max' => 'Nama perusahaan maksimal 255 karakter.' + ]); + + $pendapatan = Pendapatan::where('id', $id) + ->where('user_id', Auth::id()) + ->firstOrFail(); + + $pendapatan->update($validated); + + return redirect()->route('finance-management-income')->with([ + 'status' => 'success', + 'message' => 'Pendapatan berhasil diperbarui.', + ]); + + } catch (ValidationException $e) { + return redirect()->back() + ->withErrors($e->validator) + ->withInput(); + } catch (ModelNotFoundException $e) { + return redirect()->route('finance-management-income')->with([ + 'status' => 'error', + 'message' => 'Data pendapatan tidak ditemukan.', + ]); + } catch (\Exception $e) { + Log::error('Gagal memperbarui pendapatan: ' . $e->getMessage()); + + return redirect()->route('finance-management-income')->with([ + 'status' => 'error', + 'message' => 'Terjadi kesalahan saat memperbarui pendapatan.', + ]); + } + } + + public function destroyPendapatan(Request $request, $id) + { + try { + $pendapatan = Pendapatan::where('id', $id) + ->where('user_id', Auth::id()) + ->firstOrFail(); + + $pendapatan->delete(); + + return response()->json(['success' => true, 'message' => 'Pendapatan berhasil dihapus.']); + } catch (\Exception $e) { + Log::error('Gagal menghapus pendapatan: ' . $e->getMessage()); + + return response()->json(['success' => false, 'message' => 'Gagal menghapus pendapatan.'], 500); + } + } +} diff --git a/app/Http/Controllers/PengeluaranController.php b/app/Http/Controllers/PengeluaranController.php new file mode 100644 index 0000000..6eb696a --- /dev/null +++ b/app/Http/Controllers/PengeluaranController.php @@ -0,0 +1,160 @@ +get('pengeluaran_page', 1); + $pengeluaran = Pengeluaran::where('user_id', Auth::id()) + ->orderBy('tanggal_pembelian', 'desc') + ->paginate(10, ['*'], 'pengeluaran_page', $pengeluaranPage); + + return view('finance-management-outcome', compact('pengeluaran')); + } catch (\Exception $e) { + Log::error('Gagal memuat data pengeluaran: ' . $e->getMessage()); + + return redirect()->route('finance-management-outcome')->with([ + 'status' => 'error', + 'message' => 'Terjadi kesalahan saat memuat data pengeluaran.', + ]); + } + } + + public function storePengeluaran(Request $request) + { + try { + $validated = $request->validate([ + 'category' => 'required|in:Pembelian Ayam,Pakan Ayam,Vitamin', + 'description' => 'nullable|string|max:255', + 'jumlah' => 'required|numeric|min:1', + 'satuan' => 'required|in:ekor,kg,karung,unit', + 'harga_per_satuan' => 'required|numeric|min:1', + 'tanggal_pembelian' => 'required|date', + 'supplier' => 'nullable|string|max:255', + ], [ + 'category.required' => 'Kategori harus dipilih.', + 'category.in' => 'Kategori tidak valid.', + 'description.max' => 'Deskripsi pengeluaran maksimal 255 karakter.', + 'jumlah.required' => 'Jumlah harus diisi.', + 'jumlah.numeric' => 'Jumlah harus berupa angka.', + 'jumlah.min' => 'Jumlah minimal 1.', + 'satuan.required' => 'Satuan harus dipilih.', + 'satuan.in' => 'Satuan tidak valid.', + 'harga_per_satuan.required' => 'Harga per satuan harus diisi.', + 'harga_per_satuan.numeric' => 'Harga per satuan harus berupa angka.', + 'harga_per_satuan.min' => 'Harga per satuan minimal Rp 1.', + 'tanggal_pembelian.required' => 'Tanggal pembelian harus diisi.', + 'tanggal_pembelian.date' => 'Format tanggal pembelian tidak valid.', + 'supplier.max' => 'Nama supplier maksimal 255 karakter.', + ]); + + $validated['user_id'] = Auth::id(); + $validated['total_biaya'] = $request->jumlah * $request->harga_per_satuan; + + Pengeluaran::create($validated); + + return redirect()->route('finance-management-outcome')->with([ + 'status' => 'success', + 'message' => 'Pengeluaran berhasil ditambahkan.', + ]); + + } catch (ValidationException $e) { + return redirect()->back() + ->withErrors($e->validator) + ->withInput(); + } catch (\Exception $e) { + Log::error('Gagal menyimpan pengeluaran: ' . $e->getMessage()); + + return redirect()->route('finance-management-outcome')->with([ + 'status' => 'error', + 'message' => 'Terjadi kesalahan saat menyimpan pengeluaran.', + ]); + } + } + + public function updatePengeluaran(Request $request, $id) + { + try { + $validated = $request->validate([ + 'category' => 'required|in:Pembelian Ayam,Pakan Ayam,Vitamin', + 'description' => 'nullable|string|max:255', + 'jumlah' => 'required|numeric|min:1', + 'satuan' => 'required|in:ekor,kg,karung,unit', + 'harga_per_satuan' => 'required|numeric|min:1', + 'tanggal_pembelian' => 'required|date', + 'supplier' => 'nullable|string|max:255', + ], [ + 'category.required' => 'Kategori harus dipilih.', + 'category.in' => 'Kategori tidak valid.', + 'description.required' => 'Deskripsi pengeluaran harus diisi.', + 'description.max' => 'Deskripsi pengeluaran maksimal 255 karakter.', + 'jumlah.required' => 'Jumlah harus diisi.', + 'jumlah.numeric' => 'Jumlah harus berupa angka.', + 'jumlah.min' => 'Jumlah minimal 1.', + 'satuan.required' => 'Satuan harus dipilih.', + 'satuan.in' => 'Satuan tidak valid.', + 'harga_per_satuan.required' => 'Harga per satuan harus diisi.', + 'harga_per_satuan.numeric' => 'Harga per satuan harus berupa angka.', + 'harga_per_satuan.min' => 'Harga per satuan minimal Rp 1.', + 'tanggal_pembelian.required' => 'Tanggal pembelian harus diisi.', + 'tanggal_pembelian.date' => 'Format tanggal pembelian tidak valid.', + 'supplier.max' => 'Nama supplier maksimal 255 karakter.', + ]); + + $pengeluaran = Pengeluaran::where('id', $id) + ->where('user_id', Auth::id()) + ->firstOrFail(); + + $validated['total_biaya'] = $request->jumlah * $request->harga_per_satuan; + $pengeluaran->update($validated); + + return redirect()->route('finance-management-outcome')->with([ + 'status' => 'success', + 'message' => 'Pengeluaran berhasil diperbarui.', + ]); + + } catch (ValidationException $e) { + return redirect()->back() + ->withErrors($e->validator) + ->withInput(); + } catch (ModelNotFoundException $e) { + return redirect()->route('finance-management-outcome')->with([ + 'status' => 'error', + 'message' => 'Data pengeluaran tidak ditemukan.', + ]); + } catch (\Exception $e) { + Log::error('Gagal memperbarui pengeluaran: ' . $e->getMessage()); + + return redirect()->route('finance-management-outcome')->with([ + 'status' => 'error', + 'message' => 'Terjadi kesalahan saat memperbarui pengeluaran.', + ]); + } + } + + public function destroyPengeluaran(Request $request, $id) + { + try { + $pengeluaran = Pengeluaran::where('id', $id) + ->where('user_id', Auth::id()) + ->firstOrFail(); + + $pengeluaran->delete(); + + return response()->json(['success' => true, 'message' => 'Pengeluaran berhasil dihapus.']); + } catch (\Exception $e) { + Log::error('Gagal menghapus pengeluaran: ' . $e->getMessage()); + + return response()->json(['success' => false, 'message' => 'Gagal menghapus pengeluaran.'], 500); + } + } +} diff --git a/app/Http/Controllers/PenggunaanPakanController.php b/app/Http/Controllers/PenggunaanPakanController.php new file mode 100644 index 0000000..2bbc8a4 --- /dev/null +++ b/app/Http/Controllers/PenggunaanPakanController.php @@ -0,0 +1,70 @@ +validate([ + 'nama_pakan' => 'required|string|max:255', + 'tanggal_pakai' => 'required|date', + 'jumlah_pakai' => 'required|numeric|min:1', + ], [ + 'nama_pakan.required' => 'Nama pakan harus dipilih.', + 'nama_pakan.max' => 'Nama pakan maksimal 255 karakter.', + 'tanggal_pakai.required' => 'Tanggal pakai harus diisi.', + 'tanggal_pakai.date' => 'Format tanggal pakai tidak valid.', + 'jumlah_pakai.required' => 'Jumlah pakai harus diisi.', + 'jumlah_pakai.numeric' => 'Jumlah pakai harus berupa angka.', + 'jumlah_pakai.min' => 'Minimal jumlah pakai adalah 1 kg.' + ]); + + $pakan = Pakan::where('nama_pakan', $request->nama_pakan)->first(); + + if (!$pakan) { + return redirect()->back() + ->withInput() + ->withErrors(['nama_pakan' => 'Pakan tidak ditemukan.']); + } + + if ($pakan->berat < $request->jumlah_pakai) { + return redirect()->back() + ->withInput() + ->withErrors(['jumlah_pakai' => "Stok pakan tidak mencukupi. Tersedia: {$pakan->berat} kg"]); + } + + PenggunaanPakan::create([ + 'pakan_id' => $pakan->id, + 'tanggal_pakai' => $request->tanggal_pakai, + 'jumlah_pakai' => $request->jumlah_pakai + ]); + + $pakan->update([ + 'berat' => $pakan->berat - $request->jumlah_pakai + ]); + + return redirect()->route('food-management')->with([ + 'status' => 'success', + 'message' => 'Penggunaan pakan berhasil disimpan.' + ]); + } catch (ValidationException $e) { + return redirect()->back() + ->withErrors($e->validator) + ->withInput(); + } catch (\Exception $e) { + Log::error('Gagal menyimpan penggunaan pakan: ' . $e->getMessage()); + return redirect()->route('food-management')->with([ + 'status' => 'error', + 'message' => 'Terjadi kesalahan saat menyimpan penggunaan pakan.' + ]); + } + } +} diff --git a/app/Http/Controllers/PopulasiHarianController.php b/app/Http/Controllers/PopulasiHarianController.php new file mode 100644 index 0000000..b3797d9 --- /dev/null +++ b/app/Http/Controllers/PopulasiHarianController.php @@ -0,0 +1,518 @@ +get('populasi_page', 1); + $harianPage = $request->get('harian_page', 1); + $populasi = PopulasiAyam::with('kandang') + ->where('user_id', Auth::id()) + ->latest() + ->paginate(5, ['*'], 'populasi_page', $populasiPage); + $harian = HarianAyam::whereHas('populasiAyam', function($query) { + $query->where('user_id', Auth::id()); + }) + ->latest() + ->paginate(5, ['*'], 'harian_page', $harianPage); + + $batches = PopulasiAyam::where('user_id', Auth::id())->get(); + $kandang = KandangAyam::where('status_kandang', 'Aktif') + ->where('user_id', Auth::id()) + ->get(); + $userId = Auth::id(); + $monthlyData = DB::table('harian_ayam') + ->join('populasi_ayam', 'harian_ayam.id_populasi', '=', 'populasi_ayam.id') + ->whereIn('populasi_ayam.status_ayam', ['Proses', 'Siap Panen']) + ->where('populasi_ayam.user_id', $userId) + ->select( + DB::raw('MONTH(harian_ayam.tanggal_input) as month'), + DB::raw('SUM(harian_ayam.jumlah_ayam_sakit) as sick'), + DB::raw('SUM(harian_ayam.jumlah_ayam_mati) as dead') + ) + ->whereYear('harian_ayam.tanggal_input', Carbon::now()->year) + ->groupBy(DB::raw('MONTH(harian_ayam.tanggal_input)')) + ->orderBy('month') + ->get(); + + $todayData = DB::table('harian_ayam') + ->join('populasi_ayam', 'harian_ayam.id_populasi', '=', 'populasi_ayam.id') + ->whereIn('populasi_ayam.status_ayam', ['Proses', 'Siap Panen']) + ->where('populasi_ayam.user_id', $userId) + ->whereDate('harian_ayam.tanggal_input', Carbon::today()) + ->select( + DB::raw('SUM(harian_ayam.jumlah_ayam_sakit) as sick'), + DB::raw('SUM(harian_ayam.jumlah_ayam_mati) as dead') + ) + ->first(); + + return view('chicken-management', compact('populasi', 'harian', 'batches', 'kandang', 'monthlyData', 'todayData')); + } catch (\Exception $e) { + Log::error('Gagal memuat data: ' . $e->getMessage()); + return redirect()->back()->with([ + 'status' => 'error', + 'message' => 'Terjadi kesalahan saat memuat data.', + ]); + } + } + + public function storePopulasi(Request $request) + { + try { + $request->validate([ + 'kandang_id' => 'required|exists:kandang_ayam,id', + 'batchCodeSuffix' => 'required|alpha_num|size:3|unique:populasi_ayam,kode_batch', + 'batchName' => 'required|string|max:255', + 'docDate' => 'required|date', + 'chickenQuantity' => 'required|integer|min:1', + ], [ + 'kandang_id.required' => 'Kandang harus dipilih.', + 'kandang_id.exists' => 'Kandang yang dipilih tidak valid.', + 'batchCodeSuffix.required' => 'Kode populasi harus diisi.', + 'batchCodeSuffix.alpha_num' => 'Kode populasi hanya boleh berisi huruf dan angka.', + 'batchCodeSuffix.size' => 'Kode populasi harus terdiri dari 3 karakter.', + 'batchCodeSuffix.unique' => 'Kode populasi ini sudah digunakan, silakan gunakan kode lain.', + 'batchName.required' => 'Nama populasi harus diisi.', + 'batchName.max' => 'Nama populasi maksimal 255 karakter.', + 'docDate.required' => 'Tanggal DOC harus diisi.', + 'docDate.date' => 'Format tanggal DOC tidak valid.', + 'docDate.before_or_equal' => 'Tanggal DOC tidak boleh lebih dari hari ini.', + 'chickenQuantity.required' => 'Jumlah ayam masuk harus diisi.', + 'chickenQuantity.integer' => 'Jumlah ayam masuk harus berupa angka.', + 'chickenQuantity.min' => 'Jumlah ayam masuk minimal 1 ekor.', + ]); + + $kandang = KandangAyam::where('id', $request->kandang_id) + ->where('user_id', Auth::id()) + ->firstOrFail(); + + $totalAyamDiKandang = PopulasiAyam::where('kandang_id', $kandang->id) + ->where('user_id', Auth::id()) + ->sum('jumlah_ayam_masuk'); + + if ($totalAyamDiKandang + $request->chickenQuantity > $kandang->kapasitas) { + $sisaKapasitas = $kandang->kapasitas - $totalAyamDiKandang; + + return redirect()->back()->with([ + 'status' => 'error', + 'message' => 'Jumlah ayam yang ingin ditambahkan melebihi kapasitas kandang. Kapasitas tersisa: ' . + $sisaKapasitas . ' ekor, sedangkan Anda mencoba menambahkan ' . + $request->chickenQuantity . ' ekor.' + ]); + } + $batchCode = 'POPULASI-' . strtoupper($request->batchCodeSuffix); + + PopulasiAyam::create([ + 'kode_batch' => $batchCode, + 'nama_batch' => $request->batchName, + 'tanggal_doc' => $request->docDate, + 'jumlah_ayam_masuk' => $request->chickenQuantity, + 'status_ayam' => 'Proses', + 'kandang_id' => $kandang->id, + 'user_id' => Auth::id(), + ]); + + return redirect()->route('chicken-management')->with([ + 'status' => 'success', + 'message' => 'Data populasi Ayam berhasil disimpan.' + ]); + } catch (ValidationException $e) { + $errors = $e->validator->errors()->all(); + return redirect()->back()->with('status', 'error')->with('message', $errors[0]); + } catch (\Exception $e) { + Log::error('Gagal menyimpan data populasi ayam: ' . $e->getMessage()); + return redirect()->route('chicken-management')->with([ + 'status' => 'error', + 'message' => 'Terjadi kesalahan saat menyimpan data populasi ayam.' + ]); + } + } + + public function storeHarian(Request $request) + { + try { + $request->validate([ + 'dailyBatchName' => 'required|exists:populasi_ayam,id', + 'dailyDate' => 'required|date', + 'sickChicken' => 'required|integer|min:0', + 'deadChicken' => 'required|integer|min:0', + ], [ + 'dailyBatchName.required' => 'Populasi ayam harus dipilih.', + 'dailyBatchName.exists' => 'Populasi ayam yang dipilih tidak valid.', + 'dailyDate.required' => 'Tanggal input harus diisi.', + 'dailyDate.date' => 'Format tanggal tidak valid.', + 'sickChicken.required' => 'Jumlah ayam sakit harus diisi.', + 'sickChicken.integer' => 'Jumlah ayam sakit harus berupa angka.', + 'sickChicken.min' => 'Jumlah ayam sakit tidak boleh negatif.', + 'deadChicken.required' => 'Jumlah ayam mati harus diisi.', + 'deadChicken.integer' => 'Jumlah ayam mati harus berupa angka.', + 'deadChicken.min' => 'Jumlah ayam mati tidak boleh negatif.', + ]); + + $populasi = PopulasiAyam::where('id', $request->dailyBatchName) + ->where('user_id', Auth::id()) + ->firstOrFail(); + + $totalMatiSebelumnya = HarianAyam::where('id_populasi', $populasi->id)->sum('jumlah_ayam_mati'); + $totalSakitSebelumnya = HarianAyam::where('id_populasi', $populasi->id)->sum('jumlah_ayam_sakit'); + + $newSick = (int)$request->sickChicken; + $newDead = (int)$request->deadChicken; + + $totalMatiBaru = $totalMatiSebelumnya + $newDead; + $totalSakitBaru = $totalSakitSebelumnya + $newSick; + $totalKeseluruhan = $totalMatiBaru + $totalSakitBaru; + + Log::info('Validation harian ayam:', [ + 'populasi_id' => $populasi->id, + 'jumlah_ayam_masuk' => $populasi->jumlah_ayam_masuk, + 'total_mati_sebelumnya' => $totalMatiSebelumnya, + 'total_sakit_sebelumnya' => $totalSakitSebelumnya, + 'new_sick' => $newSick, + 'new_dead' => $newDead, + 'total_mati_baru' => $totalMatiBaru, + 'total_sakit_baru' => $totalSakitBaru, + 'total_keseluruhan' => $totalKeseluruhan + ]); + + if ($totalKeseluruhan > $populasi->jumlah_ayam_masuk) { + $availableCount = $populasi->jumlah_ayam_masuk - $totalMatiSebelumnya - $totalSakitSebelumnya; + + return redirect()->back()->with([ + 'status' => 'error', + 'message' => "Jumlah ayam sakit dan mati melebihi jumlah ayam tersedia. Jumlah tersedia: {$availableCount} ekor, sedangkan Anda mencoba menambahkan {$newSick} sakit dan {$newDead} mati (total: " . ($newSick + $newDead) . " ekor)." + ]); + } + + HarianAyam::create([ + 'id_populasi' => $populasi->id, + 'nama_batch' => $populasi->nama_batch, + 'tanggal_input' => $request->dailyDate, + 'jumlah_ayam_sakit' => $newSick, + 'jumlah_ayam_mati' => $newDead, + 'user_id' => Auth::id(), + ]); + + if ($totalMatiBaru == $populasi->jumlah_ayam_masuk) { + $populasi->update(['status_ayam' => 'Sudah Panen']); + } + + return redirect()->route('chicken-management')->with([ + 'status' => 'success', + 'message' => 'Data Harian Ayam berhasil disimpan.' + ]); + + } catch (\Exception $e) { + Log::error('Gagal menyimpan data harian ayam: ' . $e->getMessage()); + return redirect()->route('chicken-management')->with([ + 'status' => 'error', + 'message' => 'Terjadi kesalahan saat menyimpan data harian ayam: ' . $e->getMessage() + ]); + } + } + + public function destroyPopulasi($id) + { + try { + $populasi = PopulasiAyam::where('id', $id) + ->where('user_id', Auth::id()) + ->firstOrFail(); + $populasi->delete(); + + return response()->json(['success' => true, 'message' => 'Data berhasil dihapus.']); + } catch (\Exception $e) { + Log::error('Gagal menghapus data populasi: ' . $e->getMessage()); + return response()->json(['success' => false, 'message' => 'Gagal menghapus data.'], 500); + } + } + + public function destroyHarian($id) + { + try { + $harian = HarianAyam::where('id', $id) + ->whereHas('populasiAyam', function($query) { + $query->where('user_id', Auth::id()); + }) + ->firstOrFail(); + $harian->delete(); + + return response()->json([ + 'success' => true, + 'message' => 'Data Harian Ayam berhasil dihapus.' + ]); + } catch (\Exception $e) { + Log::error('Gagal menghapus data harian ayam: ' . $e->getMessage()); + + return response()->json([ + 'success' => false, + 'message' => 'Terjadi kesalahan saat menghapus data harian ayam.' + ], 500); + } + } + + public function updatePopulasi(Request $request, $id) + { + try { + $populasi = PopulasiAyam::where('id', $id) + ->where('user_id', Auth::id()) + ->firstOrFail(); + + $validated = $request->validate([ + 'kandang_id' => 'required|exists:kandang_ayam,id', + 'batchCodeSuffix' => 'required|alpha_num|size:3|unique:populasi_ayam,kode_batch,'.$id.',id', + 'nama_batch' => 'required|string|max:255', + 'tanggal_doc' => 'required|date', + 'jumlah_ayam_masuk' => 'required|integer|min:1', + 'status_ayam' => 'required|in:Proses,Siap Panen,Sudah Panen', + ], [ + 'kandang_id.required' => 'Kandang harus dipilih.', + 'kandang_id.exists' => 'Kandang yang dipilih tidak valid.', + 'batchCodeSuffix.required' => 'Kode populasi harus diisi.', + 'batchCodeSuffix.alpha_num' => 'Kode populasi hanya boleh berisi huruf dan angka.', + 'batchCodeSuffix.size' => 'Kode populasi harus terdiri dari 3 karakter.', + 'batchCodeSuffix.unique' => 'Kode populasi ini sudah digunakan, silakan gunakan kode lain.', + 'nama_batch.required' => 'Nama populasi harus diisi.', + 'nama_batch.max' => 'Nama populasi maksimal 255 karakter.', + 'tanggal_doc.required' => 'Tanggal DOC harus diisi.', + 'tanggal_doc.date' => 'Format tanggal DOC tidak valid.', + 'jumlah_ayam_masuk.required' => 'Jumlah ayam masuk harus diisi.', + 'jumlah_ayam_masuk.integer' => 'Jumlah ayam masuk harus berupa angka.', + 'jumlah_ayam_masuk.min' => 'Jumlah ayam masuk minimal 1 ekor.', + 'status_ayam.required' => 'Status ayam harus dipilih.', + 'status_ayam.in' => 'Status ayam tidak valid.', + ]); + + $kandang = KandangAyam::where('id', $validated['kandang_id']) + ->where('user_id', Auth::id()) + ->firstOrFail(); + + $changingCage = $populasi->kandang_id != $validated['kandang_id']; + $totalAyamDiKandangBaru = PopulasiAyam::where('kandang_id', $validated['kandang_id']) + ->where('user_id', Auth::id()) + ->where('id', '!=', $id) + ->sum('jumlah_ayam_masuk'); + + Log::info('Perhitungan kapasitas kandang:', [ + 'kandang_id' => $validated['kandang_id'], + 'kapasitas_kandang' => $kandang->kapasitas, + 'total_populasi_lain' => $totalAyamDiKandangBaru, + 'populasi_yang_diedit_id' => $id, + 'jumlah_ayam_masuk_lama' => $populasi->jumlah_ayam_masuk, + 'jumlah_ayam_masuk_baru' => $validated['jumlah_ayam_masuk'], + 'sisa_kapasitas' => $kandang->kapasitas - $totalAyamDiKandangBaru + ]); + + if ($totalAyamDiKandangBaru + $validated['jumlah_ayam_masuk'] > $kandang->kapasitas) { + $sisaKapasitas = $kandang->kapasitas - $totalAyamDiKandangBaru; + + return redirect()->back()->with([ + 'status' => 'error', + 'message' => 'Jumlah ayam yang ingin ditambahkan melebihi kapasitas kandang. Kapasitas tersisa: ' . + $sisaKapasitas . ' ekor dari ' . $kandang->kapasitas . ' total kapasitas, sedangkan Anda mencoba menambahkan ' . + $validated['jumlah_ayam_masuk'] . ' ekor.' + ]); + } + + $batchCode = 'POPULASI-' . strtoupper($validated['batchCodeSuffix']); + + $populasi->update([ + 'kode_batch' => $batchCode, + 'nama_batch' => $validated['nama_batch'], + 'tanggal_doc' => $validated['tanggal_doc'], + 'jumlah_ayam_masuk' => $validated['jumlah_ayam_masuk'], + 'status_ayam' => $validated['status_ayam'], + 'kandang_id' => $validated['kandang_id'], + ]); + + return redirect()->route('chicken-management')->with([ + 'status' => 'success', + 'message' => 'Data populasi Ayam berhasil diperbarui.' + ]); + + } catch (ValidationException $e) { + $errors = $e->validator->errors()->all(); + return redirect()->back()->with('status', 'error')->with('message', $errors[0]); + } catch (\Exception $e) { + Log::error('Gagal memperbarui data populasi ayam: ' . $e->getMessage()); + return redirect()->route('chicken-management')->with([ + 'status' => 'error', + 'message' => 'Terjadi kesalahan saat memperbarui data populasi ayam: ' . $e->getMessage() + ]); + } + } + + public function updateHarian(Request $request, $id) +{ + try { + $validated = $request->validate([ + 'dailyBatchName' => 'required|exists:populasi_ayam,id', + 'tanggal_input' => 'required|date', + 'jumlah_ayam_sakit' => 'required|integer|min:0', + 'jumlah_ayam_mati' => 'required|integer|min:0', + ], [ + 'dailyBatchName.required' => 'Populasi ayam harus dipilih.', + 'dailyBatchName.exists' => 'Populasi ayam yang dipilih tidak valid.', + 'tanggal_input.required' => 'Tanggal input harus diisi.', + 'tanggal_input.date' => 'Format tanggal tidak valid.', + 'jumlah_ayam_sakit.required' => 'Jumlah ayam sakit harus diisi.', + 'jumlah_ayam_sakit.integer' => 'Jumlah ayam sakit harus berupa angka.', + 'jumlah_ayam_sakit.min' => 'Jumlah ayam sakit tidak boleh negatif.', + 'jumlah_ayam_mati.required' => 'Jumlah ayam mati harus diisi.', + 'jumlah_ayam_mati.integer' => 'Jumlah ayam mati harus berupa angka.', + 'jumlah_ayam_mati.min' => 'Jumlah ayam mati tidak boleh negatif.', + ]); + + $harian = HarianAyam::where('id', $id) + ->whereHas('populasiAyam', function($query) { + $query->where('user_id', Auth::id()); + }) + ->firstOrFail(); + + $populasi = PopulasiAyam::where('id', $validated['dailyBatchName']) + ->where('user_id', Auth::id()) + ->firstOrFail(); + + $totalMatiDariRecordLain = HarianAyam::where('id_populasi', $populasi->id) + ->where('id', '!=', $id) + ->sum('jumlah_ayam_mati'); + + $totalSakitDariRecordLain = HarianAyam::where('id_populasi', $populasi->id) + ->where('id', '!=', $id) + ->sum('jumlah_ayam_sakit'); + + $newSick = (int)$validated['jumlah_ayam_sakit']; + $newDead = (int)$validated['jumlah_ayam_mati']; + + $totalTerpantau = $totalMatiDariRecordLain + $totalSakitDariRecordLain + $newSick + $newDead; + + Log::info('Update harian ayam calculation:', [ + 'record_id' => $id, + 'populasi_id' => $populasi->id, + 'total_population' => $populasi->jumlah_ayam_masuk, + 'total_mati_record_lain' => $totalMatiDariRecordLain, + 'total_sakit_record_lain' => $totalSakitDariRecordLain, + 'new_sick' => $newSick, + 'new_dead' => $newDead, + 'total_terpantau' => $totalTerpantau + ]); + + if ($totalTerpantau > $populasi->jumlah_ayam_masuk) { + $availableCount = $populasi->jumlah_ayam_masuk - $totalMatiDariRecordLain - $totalSakitDariRecordLain; + + return redirect()->back()->with([ + 'status' => 'error', + 'message' => "Jumlah ayam sakit dan mati melebihi jumlah ayam tersedia. Jumlah tersedia: {$availableCount} ekor, sedangkan Anda mencoba mencatat {$newSick} sakit dan {$newDead} mati (total: " . ($newSick + $newDead) . " ekor)." + ]); + } + + $harian->update([ + 'id_populasi' => $validated['dailyBatchName'], + 'nama_batch' => $populasi->nama_batch, + 'tanggal_input' => $validated['tanggal_input'], + 'jumlah_ayam_sakit' => $newSick, + 'jumlah_ayam_mati' => $newDead, + ]); + + $totalMatiSetelahUpdate = HarianAyam::where('id_populasi', $populasi->id)->sum('jumlah_ayam_mati'); + if ($totalMatiSetelahUpdate == $populasi->jumlah_ayam_masuk) { + $populasi->update(['status_ayam' => 'Sudah Panen']); + } + + return redirect()->route('chicken-management')->with([ + 'status' => 'success', + 'message' => 'Data harian Ayam berhasil diperbarui.' + ]); + + } catch (ValidationException $e) { + $errors = $e->validator->errors()->all(); + return redirect()->back()->with('status', 'error')->with('message', $errors[0]); + } catch (\Exception $e) { + Log::error('Gagal memperbarui data harian ayam: ' . $e->getMessage()); + return redirect()->route('chicken-management')->with([ + 'status' => 'error', + 'message' => 'Terjadi kesalahan saat memperbarui data harian ayam: ' . $e->getMessage() + ]); + } +} + + public function cetak($id) + { + try { + $populasi = PopulasiAyam::with('harianAyam')->findOrFail($id); + $pdf = Pdf::loadView('cetak.laporan-populasi', compact('populasi')); + return $pdf->download("Laporan_Manajemen_Ayam_{$populasi->kode_batch}.pdf"); + } catch (\Exception $e) { + return redirect()->back()->with('error', 'Gagal mencetak laporan.'); + } + } + + public function getAvailableChickenCount($batchId, $recordId = null) + { + try { + $populasi = PopulasiAyam::where('id', $batchId) + ->where('user_id', Auth::id()) + ->firstOrFail(); + + $harianQuery = HarianAyam::where('id_populasi', $batchId); + if ($recordId) { + $harianQuery->where('id', '!=', $recordId); + } + + $totalSick = $harianQuery->sum('jumlah_ayam_sakit'); + $totalDead = $harianQuery->sum('jumlah_ayam_mati'); + + $availableCount = $populasi->jumlah_ayam_masuk - $totalSick - $totalDead; + $availableCount = max(0, $availableCount); + + return response()->json([ + 'success' => true, + 'available_count' => $availableCount, + 'total_population' => $populasi->jumlah_ayam_masuk, + 'recorded_sick' => $totalSick, + 'recorded_dead' => $totalDead + ]); + } catch (\Exception $e) { + Log::error('Error retrieving chicken count: ' . $e->getMessage()); + return response()->json([ + 'success' => false, + 'message' => 'Error retrieving data: ' . $e->getMessage() + ], 500); + } + } + + public function getHarianRecord($id) + { + try { + $harian = HarianAyam::where('id', $id) + ->whereHas('populasiAyam', function($query) { + $query->where('user_id', Auth::id()); + }) + ->firstOrFail(); + + return response()->json([ + 'success' => true, + 'data' => $harian + ]); + } catch (\Exception $e) { + Log::error('Error retrieving harian record: ' . $e->getMessage()); + return response()->json([ + 'success' => false, + 'message' => 'Error retrieving record data: ' . $e->getMessage() + ], 500); + } + } +} diff --git a/app/Http/Controllers/UserArticleController.php b/app/Http/Controllers/UserArticleController.php new file mode 100644 index 0000000..bcab20e --- /dev/null +++ b/app/Http/Controllers/UserArticleController.php @@ -0,0 +1,201 @@ +get('article_page', 1); + $articles = Article::with('cardArticle') + ->where('user_id', Auth::id()) + ->latest() + ->paginate(4, ['*'], 'article_page', $articlePage); + $cardArticles = CardArticle::where('user_id', Auth::id())->get(); + $tags = Tag::all(); + $articles->appends(['article_page' => $articlePage]); + $totalArticles = Article::where('user_id', Auth::id())->count(); + $todayArticles = Article::where('user_id', Auth::id()) + ->whereDate('created_at', now()) + ->count(); + return view('add-article-detail', compact( + 'articles', + 'cardArticles', + 'tags', + 'totalArticles', + 'todayArticles' + )); + } catch (\Exception $e) { + Log::error('Gagal memuat data artikel: ' . $e->getMessage()); + return redirect()->route('add-article-detail')->with([ + 'status' => 'error', + 'message' => 'Terjadi kesalahan saat memuat data artikel.', + ]); + } + } + + public function storeUserArtikel(Request $request) + { + try { + $validated = $request->validate([ + 'card_id' => 'required|exists:card_articles,id', + 'title' => 'required|string|max:255', + 'description' => 'required|string', + 'status' => 'required|string|in:Tertunda,Disetujui,Ditolak', + 'tags' => 'required|array|min:1|max:3', + 'tags.*' => 'exists:tags,id', + 'image' => 'required|image|mimes:jpeg,png,jpg,gif|max:2048', + ], [ + 'card_id.required' => 'Artikel grup harus dipilih', + 'card_id.exists' => 'Artikel grup yang dipilih tidak valid', + 'title.required' => 'Judul artikel harus diisi', + 'title.max' => 'Judul artikel maksimal 255 karakter', + 'description.required' => 'Deskripsi artikel harus diisi', + 'tags.required' => 'Minimal satu tag harus dipilih', + 'tags.array' => 'Format tag tidak valid', + 'tags.min' => 'Minimal satu tag harus dipilih', + 'tags.max' => 'Maksimal tiga tag yang dapat dipilih', + 'tags.*.exists' => 'Tag yang dipilih tidak valid', + 'image.required' => 'Gambar artikel harus diunggah', + 'image.image' => 'File harus berupa gambar', + 'image.mimes' => 'Format gambar harus jpeg, png, jpg, atau gif', + 'image.max' => 'Ukuran gambar maksimal 2MB', + ]); + + $imagePath = null; + if ($request->hasFile('image')) { + $imagePath = $request->file('image')->store('articles', 'public'); + } + + $article = Article::create([ + 'card_id' => $validated['card_id'], + 'title' => $validated['title'], + 'description' => $validated['description'], + 'status' => $validated['status'], + 'image' => $imagePath, + 'user_id' => Auth::id(), + ]); + + if (!empty($validated['tags'])) { + $article->tags()->attach($validated['tags']); + } + + return redirect()->route('add-article-detail')->with([ + 'status' => 'success', + 'message' => 'Artikel berhasil dibuat!', + ]); + } catch (ValidationException $e) { + return redirect()->back() + ->withErrors($e->validator) + ->withInput(); + } catch (\Exception $e) { + Log::error('Gagal menyimpan artikel: ' . $e->getMessage()); + + return redirect()->back()->withInput()->with([ + 'status' => 'error', + 'message' => 'Terjadi kesalahan saat menyimpan artikel: ' . $e->getMessage(), + ]); + } + } + + public function updateUserArtikel(Request $request, $id) + { + try { + $validated = $request->validate([ + 'card_id' => 'required|exists:card_articles,id', + 'title' => 'required|string|max:255', + 'description' => 'required|string', + 'status' => 'required|string|in:Tertunda,Disetujui,Ditolak', + 'tags' => 'required|array|min:1|max:3', + 'tags.*' => 'exists:tags,id', + 'image' => 'nullable|image|mimes:jpeg,png,jpg,gif|max:2048', + ], [ + 'card_id.required' => 'Artikel grup harus dipilih', + 'card_id.exists' => 'Artikel grup yang dipilih tidak valid', + 'title.required' => 'Judul artikel harus diisi', + 'title.max' => 'Judul artikel maksimal 255 karakter', + 'description.required' => 'Deskripsi artikel harus diisi', + 'tags.required' => 'Minimal satu tag harus dipilih', + 'tags.array' => 'Format tag tidak valid', + 'tags.min' => 'Minimal satu tag harus dipilih', + 'tags.max' => 'Maksimal tiga tag yang dapat dipilih', + 'tags.*.exists' => 'Tag yang dipilih tidak valid', + 'image.image' => 'File harus berupa gambar', + 'image.mimes' => 'Format gambar harus jpeg, png, jpg, atau gif', + 'image.max' => 'Ukuran gambar maksimal 2MB', + ]); + + $article = Article::where('id', $id) + ->where('user_id', Auth::id()) + ->firstOrFail(); + + $imagePath = $article->image; + if ($request->hasFile('image')) { + if ($article->image && Storage::disk('public')->exists($article->image)) { + Storage::disk('public')->delete($article->image); + } + $imagePath = $request->file('image')->store('articles', 'public'); + } + + $article->update([ + 'card_id' => $validated['card_id'], + 'title' => $validated['title'], + 'description' => $validated['description'], + 'status' => $validated['status'], + 'image' => $imagePath, + ]); + + if (!empty($validated['tags'])) { + $article->tags()->sync($validated['tags']); + } else { + $article->tags()->detach(); + } + + return redirect()->route('add-article-detail')->with([ + 'status' => 'success', + 'message' => 'Artikel berhasil diperbarui!', + ]); + } catch (ValidationException $e) { + return redirect()->back() + ->withErrors($e->validator) + ->withInput(); + } catch (\Exception $e) { + Log::error('Gagal memperbarui artikel: ' . $e->getMessage()); + return redirect()->back()->withInput()->with([ + 'status' => 'error', + 'message' => 'Terjadi kesalahan saat memperbarui artikel: ' . $e->getMessage(), + ]); + } + } + + public function deleteUserArtikel($id) + { + try { + $article = Article::where('id', $id) + ->where('user_id', Auth::id()) + ->firstOrFail(); + + $article->tags()->detach(); + if ($article->image) { + Storage::disk('public')->delete($article->image); + } + $article->delete(); + + return response()->json(['success' => true, 'message' => 'Artikel berhasil dihapus.']); + } catch (\Exception $e) { + Log::error('Gagal menghapus artikel: ' . $e->getMessage()); + + return response()->json(['success' => false, 'message' => 'Gagal menghapus artikel.'], 500); + } + } +} diff --git a/app/Http/Controllers/UserCardArticleController.php b/app/Http/Controllers/UserCardArticleController.php new file mode 100644 index 0000000..05a2d8c --- /dev/null +++ b/app/Http/Controllers/UserCardArticleController.php @@ -0,0 +1,171 @@ +get('artikel_page', 1); + $articles = CardArticle::where('user_id', Auth::id()) + ->withCount('articles') + ->latest() + ->paginate(5, ['*'], 'artikel_page', $artikelPage); + + $pendingCount = Article::where('status', 'Tertunda') + ->where('user_id', Auth::id()) + ->count(); + $approvedCount = Article::where('status', 'Disetujui') + ->where('user_id', Auth::id()) + ->count(); + $rejectedCount = Article::where('status', 'Ditolak') + ->where('user_id', Auth::id()) + ->count(); + + return view('add-card-article', compact('articles', 'pendingCount', 'approvedCount', 'rejectedCount')); + } catch (\Exception $e) { + Log::error('Gagal memuat data artikel: ' . $e->getMessage()); + return redirect()->route('add-article')->with([ + 'status' => 'error', + 'message' => 'Terjadi kesalahan saat memuat data artikel.', + ]); + } + } + + public function storeUserArtikel(Request $request) + { + try { + $validated = $request->validate([ + 'title' => 'required|string|max:255', + 'description' => 'required|string', + 'image' => 'required|image|mimes:jpeg,png,jpg,gif|max:2048', + ], [ + 'title.required' => 'Judul grup artikel harus diisi.', + 'title.max' => 'Judul grup artikel maksimal 255 karakter.', + 'description.required' => 'Deskripsi grup artikel harus diisi.', + 'image.required' => 'Gambar grup artikel harus diunggah.', + 'image.image' => 'File harus berupa gambar.', + 'image.mimes' => 'Format gambar harus jpeg, png, jpg, atau gif.', + 'image.max' => 'Ukuran gambar maksimal 2MB.' + ]); + + $imagePath = null; + if ($request->hasFile('image')) { + $imagePath = $request->file('image')->store('card_articles', 'public'); + } + + $cardArticle = CardArticle::create([ + 'title' => $validated['title'], + 'description' => $validated['description'], + 'image' => $imagePath, + 'user_id' => Auth::id(), + ]); + + return redirect()->route('add-article')->with([ + 'status' => 'success', + 'message' => 'Artikel grup berhasil ditambahkan!', + ]); + } catch (ValidationException $e) { + return redirect()->back() + ->withErrors($e->validator) + ->withInput(); + } catch (\Exception $e) { + Log::error('Gagal menyimpan artikel: ' . $e->getMessage()); + + return redirect()->route('add-article')->with([ + 'status' => 'error', + 'message' => 'Terjadi kesalahan saat menyimpan artikel.', + ]); + } + } + + public function updateUserArtikel(Request $request, $id) + { + try { + $validated = $request->validate([ + 'title' => 'required|string|max:255', + 'description' => 'required|string', + 'image' => 'nullable|image|mimes:jpeg,png,jpg,gif|max:2048', + ], [ + 'title.required' => 'Judul grup artikel harus diisi.', + 'title.max' => 'Judul grup artikel maksimal 255 karakter.', + 'description.required' => 'Deskripsi grup artikel harus diisi.', + 'image.image' => 'File harus berupa gambar.', + 'image.mimes' => 'Format gambar harus jpeg, png, jpg, atau gif.', + 'image.max' => 'Ukuran gambar maksimal 2MB.' + ]); + + $card = CardArticle::where('id', $id) + ->where('user_id', Auth::id()) + ->firstOrFail(); + + $imagePath = $card->image; + + if ($request->hasFile('image')) { + if ($imagePath && Storage::disk('public')->exists($imagePath)) { + Storage::disk('public')->delete($imagePath); + Log::info('Gambar lama berhasil dihapus: ' . $imagePath); + } + + $newImagePath = $request->file('image')->store('card_articles', 'public'); + Log::info('Gambar baru berhasil disimpan: ' . $newImagePath); + $imagePath = $newImagePath; + } + + $card->update([ + 'title' => $validated['title'], + 'description' => $validated['description'], + 'image' => $imagePath, + ]); + + return redirect()->route('add-article')->with([ + 'status' => 'success', + 'message' => 'Artikel grup berhasil diperbarui!', + ]); + } catch (ValidationException $e) { + return redirect()->back() + ->withErrors($e->validator) + ->withInput(); + } catch (ModelNotFoundException $e) { + return redirect()->route('add-article')->with([ + 'status' => 'error', + 'message' => 'Artikel grup tidak ditemukan.', + ]); + } catch (\Exception $e) { + Log::error('Gagal memperbarui artikel grup: ' . $e->getMessage()); + + return redirect()->route('add-article')->with([ + 'status' => 'error', + 'message' => 'Terjadi kesalahan saat memperbarui artikel grup.', + ]); + } + } + + public function deleteUserArtikel($id) + { + try { + $cardArticle = CardArticle::where('id', $id) + ->where('user_id', Auth::id()) + ->firstOrFail(); + + if ($cardArticle->image) { + Storage::disk('public')->delete($cardArticle->image); + } + $cardArticle->delete(); + + return response()->json(['success' => true, 'message' => 'Grup artikel berhasil dihapus.']); + } catch (\Exception $e) { + Log::error('Gagal menghapus artikel: ' . $e->getMessage()); + return response()->json(['success' => false, 'message' => 'Gagal menghapus artikel.'], 500); + } + } +} diff --git a/app/Http/Controllers/UserSubArticleController.php b/app/Http/Controllers/UserSubArticleController.php new file mode 100644 index 0000000..b4b3632 --- /dev/null +++ b/app/Http/Controllers/UserSubArticleController.php @@ -0,0 +1,261 @@ +get(); + $selectedArticle = null; + $subArticles = collect(); + $articleId = $request->query('article_id'); + if ($articleId) { + $selectedArticle = Article::with(['subArticles' => function ($query) { + $query->orderBy('order_number', 'asc') + ->orderBy('id', 'desc'); + }])->where('user_id', Auth::id())->find($articleId); + + if ($selectedArticle) { + $subArticles = $selectedArticle->subArticles; + } + } + + $editId = $request->query('edit_id'); + if ($editId) { + $subArticle = SubArticle::where('id', $editId) + ->whereHas('article', function ($query) { + $query->where('user_id', Auth::id()); + }) + ->first(); + } + + return view('add-article-sub', compact('subArticles', 'articles', 'selectedArticle', 'subArticle')); + } catch (\Exception $e) { + Log::error('Gagal memuat sub-artikel: ' . $e->getMessage()); + + return redirect()->route('add-article-sub')->with([ + 'status' => 'error', + 'message' => 'Terjadi kesalahan saat memuat data sub-artikel.', + ]); + } + } + + public function storeMultipleSubArticles(Request $request) + { + try { + $validated = $request->validate([ + 'article_id' => 'required|exists:articles,id', + 'sub_articles' => 'required|array|min:1', + 'sub_articles.*.title' => 'required|string|max:255', + 'sub_articles.*.content' => 'required|string', + 'sub_articles.*.order_number' => 'required|integer|min:1', + 'sub_articles.*.image' => 'nullable|image|mimes:jpeg,png,jpg,gif|max:2048', + 'sub_articles.*.remove_image' => 'nullable|in:0,1', + ], [ + 'article_id.required' => 'Artikel induk harus dipilih.', + 'article_id.exists' => 'Artikel induk tidak ditemukan.', + 'sub_articles.required' => 'Minimal satu sub artikel harus diisi.', + 'sub_articles.min' => 'Minimal satu sub artikel harus diisi.', + 'sub_articles.*.title.required' => 'Judul sub artikel harus diisi.', + 'sub_articles.*.title.max' => 'Judul sub artikel maksimal 255 karakter.', + 'sub_articles.*.content.required' => 'Konten sub artikel harus diisi.', + 'sub_articles.*.order_number.required' => 'Urutan sub artikel harus diisi.', + 'sub_articles.*.order_number.integer' => 'Urutan sub artikel harus berupa angka.', + 'sub_articles.*.order_number.min' => 'Urutan sub artikel minimal 1.', + 'sub_articles.*.image.image' => 'File harus berupa gambar.', + 'sub_articles.*.image.mimes' => 'Format gambar harus jpeg, png, jpg, atau gif.', + 'sub_articles.*.image.max' => 'Ukuran gambar maksimal 2MB.', + ]); + + $article = Article::where('id', $validated['article_id']) + ->where('user_id', Auth::id()) + ->firstOrFail(); + + $subArticlesData = []; + foreach ($validated['sub_articles'] as $subArticle) { + $imagePath = null; + + if (isset($subArticle['image']) && $subArticle['image'] instanceof \Illuminate\Http\UploadedFile) { + $imagePath = $subArticle['image']->store('sub_articles', 'public'); + } + + $subArticlesData[] = [ + 'article_id' => $validated['article_id'], + 'title' => $subArticle['title'], + 'content' => $subArticle['content'], + 'order_number' => $subArticle['order_number'], + 'image' => $imagePath, + 'user_id' => Auth::id(), + 'created_at' => now(), + 'updated_at' => now(), + ]; + } + + SubArticle::insert($subArticlesData); + + return redirect()->route('add-article-sub', ['article_id' => $validated['article_id']])->with([ + 'status' => 'success', + 'message' => 'Semua sub-artikel berhasil disimpan!', + ]); + } catch (ValidationException $e) { + return redirect()->back()->withErrors($e->validator)->withInput(); + } catch (\Exception $e) { + Log::error('Gagal menyimpan sub-artikel: ' . $e->getMessage()); + return redirect()->route('add-article-sub')->with([ + 'status' => 'error', + 'message' => 'Terjadi kesalahan saat menyimpan sub-artikel: ' . $e->getMessage(), + ]); + } + } + + public function updateUserArtikel(Request $request, $id) + { + try { + $subArticle = SubArticle::where('id', $id) + ->whereHas('article', function ($query) { + $query->where('user_id', Auth::id()); + }) + ->firstOrFail(); + + $validated = $request->validate([ + 'article_id' => 'required|exists:articles,id', + 'sub_articles' => 'required|array', + 'sub_articles.*.title' => 'required|string|max:255', + 'sub_articles.*.content' => 'required|string', + 'sub_articles.*.order_number' => 'required|integer|min:1', + 'sub_articles.*.image' => 'nullable|image|mimes:jpeg,png,jpg,gif|max:2048', + 'sub_articles.*.remove_image' => 'nullable|in:0,1', + ], [ + 'article_id.required' => 'Artikel induk harus dipilih.', + 'article_id.exists' => 'Artikel induk tidak ditemukan.', + 'sub_articles.required' => 'Data sub artikel harus diisi.', + 'sub_articles.*.title.required' => 'Judul sub artikel harus diisi.', + 'sub_articles.*.title.max' => 'Judul sub artikel maksimal 255 karakter.', + 'sub_articles.*.content.required' => 'Konten sub artikel harus diisi.', + 'sub_articles.*.order_number.required' => 'Urutan sub artikel harus diisi.', + 'sub_articles.*.order_number.integer' => 'Urutan sub artikel harus berupa angka.', + 'sub_articles.*.order_number.min' => 'Urutan sub artikel minimal 1.', + 'sub_articles.*.image.image' => 'File harus berupa gambar.', + 'sub_articles.*.image.mimes' => 'Format gambar harus jpeg, png, jpg, atau gif.', + 'sub_articles.*.image.max' => 'Ukuran gambar maksimal 2MB.', + ]); + + $removeImage = $request->input('sub_articles.0.remove_image', '0'); + $imagePath = $subArticle->image; + + if ($removeImage === '1') { + if ($imagePath && Storage::disk('public')->exists($imagePath)) { + Storage::disk('public')->delete($imagePath); + } + $imagePath = null; + } + elseif ($request->hasFile('sub_articles.0.image')) { + if ($imagePath && Storage::disk('public')->exists($imagePath)) { + Storage::disk('public')->delete($imagePath); + } + $imagePath = $request->file('sub_articles.0.image')->store('sub_articles', 'public'); + } + + $subArticle->update([ + 'article_id' => $validated['article_id'], + 'title' => $validated['sub_articles'][0]['title'], + 'content' => $validated['sub_articles'][0]['content'], + 'order_number' => $validated['sub_articles'][0]['order_number'], + 'image' => $imagePath, + ]); + + return redirect()->route('add-article-sub', ['article_id' => $validated['article_id']])->with([ + 'status' => 'success', + 'message' => 'Sub-artikel berhasil diperbarui!', + ]); + } catch (ValidationException $e) { + return redirect()->back()->withErrors($e->validator)->withInput(); + } catch (\Exception $e) { + Log::error('Gagal memperbarui sub-artikel: ' . $e->getMessage()); + return redirect()->route('add-article-sub')->with([ + 'status' => 'error', + 'message' => 'Terjadi kesalahan saat memperbarui sub-artikel: ' . $e->getMessage(), + ]); + } + } + + public function editUserArtikel($id) + { + try { + $subArticle = SubArticle::where('id', $id) + ->whereHas('article', function ($query) { + $query->where('user_id', Auth::id()); + }) + ->firstOrFail(); + + $selectedArticle = $subArticle->article; + + $articles = Article::where('user_id', Auth::id())->get(); + + return view('add-article-sub', compact('subArticle', 'selectedArticle', 'articles')); + } catch (\Exception $e) { + return redirect()->route('add-article-sub')->with([ + 'status' => 'error', + 'message' => 'Sub-artikel tidak ditemukan atau tidak dapat diakses.', + ]); + } + } + + public function deleteUserArtikel($id) + { + try { + $subArticle = SubArticle::where('id', $id) + ->whereHas('article', function ($query) { + $query->where('user_id', Auth::id()); + }) + ->firstOrFail(); + + $articleId = $subArticle->article_id; + + if ($subArticle->image) { + Storage::disk('public')->delete($subArticle->image); + } + + $subArticle->delete(); + + if (request()->ajax() || request()->wantsJson()) { + return response()->json([ + 'success' => true, + 'message' => 'Sub-artikel berhasil dihapus!' + ]); + } + + return redirect()->route('add-article-sub', ['article_id' => $articleId])->with([ + 'status' => 'success', + 'message' => 'Sub-artikel berhasil dihapus!', + ]); + } catch (\Exception $e) { + Log::error('Gagal menghapus sub-artikel: ' . $e->getMessage()); + + if (request()->ajax() || request()->wantsJson()) { + return response()->json([ + 'success' => false, + 'message' => 'Terjadi kesalahan saat menghapus sub-artikel: ' . $e->getMessage() + ], 500); + } + + return redirect()->route('add-article-sub')->with([ + 'status' => 'error', + 'message' => 'Terjadi kesalahan saat menghapus sub-artikel.', + ]); + } + } + +} diff --git a/app/Http/Kernel.php b/app/Http/Kernel.php new file mode 100644 index 0000000..e34170a --- /dev/null +++ b/app/Http/Kernel.php @@ -0,0 +1,70 @@ + + */ + protected $middleware = [ + // \App\Http\Middleware\TrustHosts::class, + \App\Http\Middleware\TrustProxies::class, + \Illuminate\Http\Middleware\HandleCors::class, + \App\Http\Middleware\PreventRequestsDuringMaintenance::class, + \Illuminate\Foundation\Http\Middleware\ValidatePostSize::class, + \App\Http\Middleware\TrimStrings::class, + \Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull::class, + ]; + + /** + * The application's route middleware groups. + * + * @var array> + */ + protected $middlewareGroups = [ + 'web' => [ + \App\Http\Middleware\EncryptCookies::class, + \Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class, + \Illuminate\Session\Middleware\StartSession::class, + \Illuminate\View\Middleware\ShareErrorsFromSession::class, + \App\Http\Middleware\VerifyCsrfToken::class, + \Illuminate\Routing\Middleware\SubstituteBindings::class, + ], + + 'api' => [ + // \Laravel\Sanctum\Http\Middleware\EnsureFrontendRequestsAreStateful::class, + \Illuminate\Routing\Middleware\ThrottleRequests::class.':api', + \Illuminate\Routing\Middleware\SubstituteBindings::class, + ], + ]; + + /** + * The application's middleware aliases. + * + * Aliases may be used instead of class names to conveniently assign middleware to routes and groups. + * + * @var array + */ + protected $middlewareAliases = [ + 'auth' => \App\Http\Middleware\Authenticate::class, + 'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class, + 'auth.session' => \Illuminate\Session\Middleware\AuthenticateSession::class, + 'cache.headers' => \Illuminate\Http\Middleware\SetCacheHeaders::class, + 'can' => \Illuminate\Auth\Middleware\Authorize::class, + 'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class, + 'password.confirm' => \Illuminate\Auth\Middleware\RequirePassword::class, + 'precognitive' => \Illuminate\Foundation\Http\Middleware\HandlePrecognitiveRequests::class, + 'signed' => \App\Http\Middleware\ValidateSignature::class, + 'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class, + 'verified' => \Illuminate\Auth\Middleware\EnsureEmailIsVerified::class, + 'admin' => \App\Http\Middleware\AdminMiddleware::class, + 'user' => \App\Http\Middleware\UserMiddleware::class, + ]; +} diff --git a/app/Http/Middleware/AdminMiddleware.php b/app/Http/Middleware/AdminMiddleware.php new file mode 100644 index 0000000..aca1201 --- /dev/null +++ b/app/Http/Middleware/AdminMiddleware.php @@ -0,0 +1,18 @@ +role === 'admin') { + return $next($request); + } + return redirect()->route('dashboard'); // Redirect user biasa ke dashboard + } +} diff --git a/app/Http/Middleware/Authenticate.php b/app/Http/Middleware/Authenticate.php new file mode 100644 index 0000000..d4ef644 --- /dev/null +++ b/app/Http/Middleware/Authenticate.php @@ -0,0 +1,17 @@ +expectsJson() ? null : route('login'); + } +} diff --git a/app/Http/Middleware/EncryptCookies.php b/app/Http/Middleware/EncryptCookies.php new file mode 100644 index 0000000..867695b --- /dev/null +++ b/app/Http/Middleware/EncryptCookies.php @@ -0,0 +1,17 @@ + + */ + protected $except = [ + // + ]; +} diff --git a/app/Http/Middleware/PreventRequestsDuringMaintenance.php b/app/Http/Middleware/PreventRequestsDuringMaintenance.php new file mode 100644 index 0000000..74cbd9a --- /dev/null +++ b/app/Http/Middleware/PreventRequestsDuringMaintenance.php @@ -0,0 +1,17 @@ + + */ + protected $except = [ + // + ]; +} diff --git a/app/Http/Middleware/RedirectIfAuthenticated.php b/app/Http/Middleware/RedirectIfAuthenticated.php new file mode 100644 index 0000000..add81e7 --- /dev/null +++ b/app/Http/Middleware/RedirectIfAuthenticated.php @@ -0,0 +1,25 @@ +check()) { + return redirect()->intended(RouteServiceProvider::HOME); + } + } + + return $next($request); + } +} diff --git a/app/Http/Middleware/TrimStrings.php b/app/Http/Middleware/TrimStrings.php new file mode 100644 index 0000000..88cadca --- /dev/null +++ b/app/Http/Middleware/TrimStrings.php @@ -0,0 +1,19 @@ + + */ + protected $except = [ + 'current_password', + 'password', + 'password_confirmation', + ]; +} diff --git a/app/Http/Middleware/TrustHosts.php b/app/Http/Middleware/TrustHosts.php new file mode 100644 index 0000000..c9c58bd --- /dev/null +++ b/app/Http/Middleware/TrustHosts.php @@ -0,0 +1,20 @@ + + */ + public function hosts(): array + { + return [ + $this->allSubdomainsOfApplicationUrl(), + ]; + } +} diff --git a/app/Http/Middleware/TrustProxies.php b/app/Http/Middleware/TrustProxies.php new file mode 100644 index 0000000..3391630 --- /dev/null +++ b/app/Http/Middleware/TrustProxies.php @@ -0,0 +1,28 @@ +|string|null + */ + protected $proxies; + + /** + * The headers that should be used to detect proxies. + * + * @var int + */ + protected $headers = + Request::HEADER_X_FORWARDED_FOR | + Request::HEADER_X_FORWARDED_HOST | + Request::HEADER_X_FORWARDED_PORT | + Request::HEADER_X_FORWARDED_PROTO | + Request::HEADER_X_FORWARDED_AWS_ELB; +} diff --git a/app/Http/Middleware/UserMiddleware.php b/app/Http/Middleware/UserMiddleware.php new file mode 100644 index 0000000..5d5401c --- /dev/null +++ b/app/Http/Middleware/UserMiddleware.php @@ -0,0 +1,19 @@ +role === 'user') { + return $next($request); + } + return redirect()->route('dashboard'); // Redirect jika bukan user + } +} diff --git a/app/Http/Middleware/ValidateSignature.php b/app/Http/Middleware/ValidateSignature.php new file mode 100644 index 0000000..093bf64 --- /dev/null +++ b/app/Http/Middleware/ValidateSignature.php @@ -0,0 +1,22 @@ + + */ + protected $except = [ + // 'fbclid', + // 'utm_campaign', + // 'utm_content', + // 'utm_medium', + // 'utm_source', + // 'utm_term', + ]; +} diff --git a/app/Http/Middleware/VerifyCsrfToken.php b/app/Http/Middleware/VerifyCsrfToken.php new file mode 100644 index 0000000..9e86521 --- /dev/null +++ b/app/Http/Middleware/VerifyCsrfToken.php @@ -0,0 +1,17 @@ + + */ + protected $except = [ + // + ]; +} diff --git a/app/Http/Requests/StoreArticleRequest.php b/app/Http/Requests/StoreArticleRequest.php new file mode 100644 index 0000000..19691d6 --- /dev/null +++ b/app/Http/Requests/StoreArticleRequest.php @@ -0,0 +1,28 @@ +|string> + */ + public function rules(): array + { + return [ + // + ]; + } +} diff --git a/app/Http/Requests/StoreArticleTagRequest.php b/app/Http/Requests/StoreArticleTagRequest.php new file mode 100644 index 0000000..bdda924 --- /dev/null +++ b/app/Http/Requests/StoreArticleTagRequest.php @@ -0,0 +1,28 @@ +|string> + */ + public function rules(): array + { + return [ + // + ]; + } +} diff --git a/app/Http/Requests/StoreCardArticleRequest.php b/app/Http/Requests/StoreCardArticleRequest.php new file mode 100644 index 0000000..bc8a3d8 --- /dev/null +++ b/app/Http/Requests/StoreCardArticleRequest.php @@ -0,0 +1,28 @@ +|string> + */ + public function rules(): array + { + return [ + // + ]; + } +} diff --git a/app/Http/Requests/StoreHarianAyamRequest.php b/app/Http/Requests/StoreHarianAyamRequest.php new file mode 100644 index 0000000..a17d96a --- /dev/null +++ b/app/Http/Requests/StoreHarianAyamRequest.php @@ -0,0 +1,28 @@ +|string> + */ + public function rules(): array + { + return [ + // + ]; + } +} diff --git a/app/Http/Requests/StoreKandangAyamRequest.php b/app/Http/Requests/StoreKandangAyamRequest.php new file mode 100644 index 0000000..5f5ddcb --- /dev/null +++ b/app/Http/Requests/StoreKandangAyamRequest.php @@ -0,0 +1,28 @@ +|string> + */ + public function rules(): array + { + return [ + // + ]; + } +} diff --git a/app/Http/Requests/StorePakanRequest.php b/app/Http/Requests/StorePakanRequest.php new file mode 100644 index 0000000..ef46d38 --- /dev/null +++ b/app/Http/Requests/StorePakanRequest.php @@ -0,0 +1,28 @@ +|string> + */ + public function rules(): array + { + return [ + // + ]; + } +} diff --git a/app/Http/Requests/StorePendapatanRequest.php b/app/Http/Requests/StorePendapatanRequest.php new file mode 100644 index 0000000..c98bf5e --- /dev/null +++ b/app/Http/Requests/StorePendapatanRequest.php @@ -0,0 +1,28 @@ +|string> + */ + public function rules(): array + { + return [ + // + ]; + } +} diff --git a/app/Http/Requests/StorePengeluaranRequest.php b/app/Http/Requests/StorePengeluaranRequest.php new file mode 100644 index 0000000..264b7a5 --- /dev/null +++ b/app/Http/Requests/StorePengeluaranRequest.php @@ -0,0 +1,28 @@ +|string> + */ + public function rules(): array + { + return [ + // + ]; + } +} diff --git a/app/Http/Requests/StorePenggunaanPakanRequest.php b/app/Http/Requests/StorePenggunaanPakanRequest.php new file mode 100644 index 0000000..375afe5 --- /dev/null +++ b/app/Http/Requests/StorePenggunaanPakanRequest.php @@ -0,0 +1,28 @@ +|string> + */ + public function rules(): array + { + return [ + // + ]; + } +} diff --git a/app/Http/Requests/StorePopulasiAyamRequest.php b/app/Http/Requests/StorePopulasiAyamRequest.php new file mode 100644 index 0000000..d24ccc6 --- /dev/null +++ b/app/Http/Requests/StorePopulasiAyamRequest.php @@ -0,0 +1,28 @@ +|string> + */ + public function rules(): array + { + return [ + // + ]; + } +} diff --git a/app/Http/Requests/StoreSubArticleRequest.php b/app/Http/Requests/StoreSubArticleRequest.php new file mode 100644 index 0000000..70f4049 --- /dev/null +++ b/app/Http/Requests/StoreSubArticleRequest.php @@ -0,0 +1,28 @@ +|string> + */ + public function rules(): array + { + return [ + // + ]; + } +} diff --git a/app/Http/Requests/StoreTagRequest.php b/app/Http/Requests/StoreTagRequest.php new file mode 100644 index 0000000..0375aea --- /dev/null +++ b/app/Http/Requests/StoreTagRequest.php @@ -0,0 +1,28 @@ +|string> + */ + public function rules(): array + { + return [ + // + ]; + } +} diff --git a/app/Http/Requests/UpdateArticleRequest.php b/app/Http/Requests/UpdateArticleRequest.php new file mode 100644 index 0000000..44e7da3 --- /dev/null +++ b/app/Http/Requests/UpdateArticleRequest.php @@ -0,0 +1,28 @@ +|string> + */ + public function rules(): array + { + return [ + // + ]; + } +} diff --git a/app/Http/Requests/UpdateArticleTagRequest.php b/app/Http/Requests/UpdateArticleTagRequest.php new file mode 100644 index 0000000..7382a5b --- /dev/null +++ b/app/Http/Requests/UpdateArticleTagRequest.php @@ -0,0 +1,28 @@ +|string> + */ + public function rules(): array + { + return [ + // + ]; + } +} diff --git a/app/Http/Requests/UpdateCardArticleRequest.php b/app/Http/Requests/UpdateCardArticleRequest.php new file mode 100644 index 0000000..69c5bec --- /dev/null +++ b/app/Http/Requests/UpdateCardArticleRequest.php @@ -0,0 +1,28 @@ +|string> + */ + public function rules(): array + { + return [ + // + ]; + } +} diff --git a/app/Http/Requests/UpdateHarianAyamRequest.php b/app/Http/Requests/UpdateHarianAyamRequest.php new file mode 100644 index 0000000..d39c6cd --- /dev/null +++ b/app/Http/Requests/UpdateHarianAyamRequest.php @@ -0,0 +1,28 @@ +|string> + */ + public function rules(): array + { + return [ + // + ]; + } +} diff --git a/app/Http/Requests/UpdateKandangAyamRequest.php b/app/Http/Requests/UpdateKandangAyamRequest.php new file mode 100644 index 0000000..d945833 --- /dev/null +++ b/app/Http/Requests/UpdateKandangAyamRequest.php @@ -0,0 +1,28 @@ +|string> + */ + public function rules(): array + { + return [ + // + ]; + } +} diff --git a/app/Http/Requests/UpdatePakanRequest.php b/app/Http/Requests/UpdatePakanRequest.php new file mode 100644 index 0000000..34646c4 --- /dev/null +++ b/app/Http/Requests/UpdatePakanRequest.php @@ -0,0 +1,28 @@ +|string> + */ + public function rules(): array + { + return [ + // + ]; + } +} diff --git a/app/Http/Requests/UpdatePendapatanRequest.php b/app/Http/Requests/UpdatePendapatanRequest.php new file mode 100644 index 0000000..cbe8b73 --- /dev/null +++ b/app/Http/Requests/UpdatePendapatanRequest.php @@ -0,0 +1,28 @@ +|string> + */ + public function rules(): array + { + return [ + // + ]; + } +} diff --git a/app/Http/Requests/UpdatePengeluaranRequest.php b/app/Http/Requests/UpdatePengeluaranRequest.php new file mode 100644 index 0000000..b23c9e0 --- /dev/null +++ b/app/Http/Requests/UpdatePengeluaranRequest.php @@ -0,0 +1,28 @@ +|string> + */ + public function rules(): array + { + return [ + // + ]; + } +} diff --git a/app/Http/Requests/UpdatePenggunaanPakanRequest.php b/app/Http/Requests/UpdatePenggunaanPakanRequest.php new file mode 100644 index 0000000..f58d464 --- /dev/null +++ b/app/Http/Requests/UpdatePenggunaanPakanRequest.php @@ -0,0 +1,28 @@ +|string> + */ + public function rules(): array + { + return [ + // + ]; + } +} diff --git a/app/Http/Requests/UpdatePopulasiAyamRequest.php b/app/Http/Requests/UpdatePopulasiAyamRequest.php new file mode 100644 index 0000000..f497825 --- /dev/null +++ b/app/Http/Requests/UpdatePopulasiAyamRequest.php @@ -0,0 +1,28 @@ +|string> + */ + public function rules(): array + { + return [ + // + ]; + } +} diff --git a/app/Http/Requests/UpdateSubArticleRequest.php b/app/Http/Requests/UpdateSubArticleRequest.php new file mode 100644 index 0000000..52945b0 --- /dev/null +++ b/app/Http/Requests/UpdateSubArticleRequest.php @@ -0,0 +1,28 @@ +|string> + */ + public function rules(): array + { + return [ + // + ]; + } +} diff --git a/app/Http/Requests/UpdateTagRequest.php b/app/Http/Requests/UpdateTagRequest.php new file mode 100644 index 0000000..8875b03 --- /dev/null +++ b/app/Http/Requests/UpdateTagRequest.php @@ -0,0 +1,28 @@ +|string> + */ + public function rules(): array + { + return [ + // + ]; + } +} diff --git a/app/Livewire/Actions/Logout.php b/app/Livewire/Actions/Logout.php new file mode 100644 index 0000000..5eacb32 --- /dev/null +++ b/app/Livewire/Actions/Logout.php @@ -0,0 +1,17 @@ +logout(); + + Session::invalidate(); + Session::regenerateToken(); + } +} diff --git a/app/Livewire/Forms/LoginForm.php b/app/Livewire/Forms/LoginForm.php new file mode 100644 index 0000000..76c2ca2 --- /dev/null +++ b/app/Livewire/Forms/LoginForm.php @@ -0,0 +1,79 @@ + 'Email wajib diisi.', + 'email.email' => 'Format email tidak valid.', + 'email.max' => 'Email tidak boleh lebih dari 255 karakter.', + 'password.required' => 'Kata sandi wajib diisi.', + 'password.min' => 'Kata sandi minimal terdiri dari 8 karakter.', + ]; + } + + /** + * + * @throws \Illuminate\Validation\ValidationException + */ + public function authenticate(): void + { + $this->validate(); + $this->ensureIsNotRateLimited(); + $user = \App\Models\User::where('email', $this->email)->first(); + if (!$user) { + RateLimiter::hit($this->throttleKey()); + + throw ValidationException::withMessages([ + 'form.email' => 'Email tidak terdaftar.', + ]); + } + if (!Auth::attempt($this->only(['email', 'password']), $this->remember)) { + RateLimiter::hit($this->throttleKey()); + + throw ValidationException::withMessages([ + 'form.password' => 'Kata sandi yang Anda masukkan salah.', + ]); + } + RateLimiter::clear($this->throttleKey()); + } + + protected function ensureIsNotRateLimited(): void + { + if (! RateLimiter::tooManyAttempts($this->throttleKey(), 5)) { + return; + } + event(new Lockout(request())); + $seconds = RateLimiter::availableIn($this->throttleKey()); + throw ValidationException::withMessages([ + 'form.email' => trans('auth.throttle', [ + 'seconds' => $seconds, + 'minutes' => ceil($seconds / 60), + ]), + ]); + } + protected function throttleKey(): string + { + return Str::transliterate(Str::lower($this->email).'|'.request()->ip()); + } +} diff --git a/app/Livewire/Forum/CommentList.php b/app/Livewire/Forum/CommentList.php new file mode 100644 index 0000000..626dbd8 --- /dev/null +++ b/app/Livewire/Forum/CommentList.php @@ -0,0 +1,86 @@ + 'required|min:3|max:500' + ]; + + protected $messages = [ + 'newComment.required' => 'Komentar tidak boleh kosong', + 'newComment.min' => 'Komentar minimal 3 karakter', + 'newComment.max' => 'Komentar maksimsal 500 karakter', + ]; + + #[On('commentAdded')] + public function refreshComments() + { + $this->topic = Topic::with(['comments' => function($query) { + $query->with(['user', 'replies.user']); + }])->find($this->topic->id); + } + + public function mount(Topic $topic) + { + $this->topic = $topic; + } + + public function startReply($commentId) + { + $this->replyingTo = $commentId; + $this->parentComment = Comment::find($commentId); + } + + public function cancelReply() + { + $this->replyingTo = null; + $this->parentComment = null; + } + + public function addComment() + { + $this->validate(); + + $comment = Comment::create([ + 'topic_id' => $this->topic->id, + 'user_id' => auth()->id(), + 'content' => $this->newComment, + 'parent_id' => $this->replyingTo + ]); + + $this->reset('newComment'); + $this->cancelReply(); + + return redirect(request()->header('Referer')); + } + + protected $listeners = [ + 'commentAdded' => '$refresh', + 'refreshComponent' => '$refresh' + ]; + + public function render() + { + $comments = $this->topic->comments() + ->with(['user', 'likes', 'replies.user', 'replies.likes']) + ->whereNull('parent_id') + ->latest() + ->get(); + + return view('livewire.forum.comment-list', [ + 'comments' => $comments + ]); + } +} \ No newline at end of file diff --git a/app/Livewire/Forum/CreateTopic.php b/app/Livewire/Forum/CreateTopic.php new file mode 100644 index 0000000..bca10cc --- /dev/null +++ b/app/Livewire/Forum/CreateTopic.php @@ -0,0 +1,41 @@ + 'required|min:3', + 'content' => 'required|min:10', + ]; + protected $messages = [ + 'title.required' => 'Judul topik tidak boleh kosong', + 'title.min' => 'Judul topik minimal 3 karakter', + 'content.required' => 'Isi topik tidak boleh kosong', + 'content.min' => 'Isi topik minimal 10 karakter' + ]; + public function submit() + { + $validated = $this->validate(); + $topic = Topic::create([ + 'title' => $this->title, + 'content' => $this->content, + 'user_id' => auth()->id(), + ]); + session()->flash('status', 'success'); + session()->flash('message', 'Topik berhasil dibuat!'); + return redirect()->route('forum.index'); + } + + public function render() + { + return view('livewire.forum.create-topic') + ->extends('layouts.dashboard-layout') + ->section('content'); + } +} diff --git a/app/Livewire/Forum/LikeButton.php b/app/Livewire/Forum/LikeButton.php new file mode 100644 index 0000000..9c15ec2 --- /dev/null +++ b/app/Livewire/Forum/LikeButton.php @@ -0,0 +1,65 @@ +model = $model; + $this->updateLikeStatus(); + } + + protected function updateLikeStatus() + { + $this->likesCount = $this->model->likes()->count(); + + $this->isLiked = auth()->check() + ? $this->model->likes()->where('user_id', auth()->id())->exists() + : false; + } + + public function toggleLike() + { + if (!auth()->check()) { + return redirect()->route('login'); + } + + try { + $existingLike = $this->model->likes() + ->where('user_id', auth()->id()) + ->first(); + + if ($existingLike) { + $existingLike->delete(); + } else { + $this->model->likes()->create([ + 'user_id' => auth()->id() + ]); + } + + $this->updateLikeStatus(); + + } catch (\Exception $e) { + Log::error('Like Toggle Error', [ + 'error' => $e->getMessage(), + 'model_type' => get_class($this->model), + 'model_id' => $this->model->id, + 'user_id' => auth()->id() + ]); + + session()->flash('error', 'Unable to process like/unlike'); + } + } + + public function render() + { + return view('livewire.forum.like-button'); + } +} \ No newline at end of file diff --git a/app/Livewire/Forum/TopicList.php b/app/Livewire/Forum/TopicList.php new file mode 100644 index 0000000..103b1a2 --- /dev/null +++ b/app/Livewire/Forum/TopicList.php @@ -0,0 +1,40 @@ + '$refresh']; + public function mount() + { + $this->search = request()->get('search', ''); + $this->dispatch('listen-for-new-topic'); + } + public function setSearch($value) + { + $this->search = $value; + $this->resetPage(); + } + public function render() + { + $topics = Topic::with('user') + ->withCount('comments', 'likes') + ->when($this->search, function($query) { + return $query->where('title', 'like', '%' . $this->search . '%'); + }) + ->latest() + ->paginate(10); + return view('livewire.forum.topic-list', [ + 'topics' => $topics + ]); + } +} \ No newline at end of file diff --git a/app/Livewire/Forum/TopicView.php b/app/Livewire/Forum/TopicView.php new file mode 100644 index 0000000..9e23093 --- /dev/null +++ b/app/Livewire/Forum/TopicView.php @@ -0,0 +1,38 @@ +topic = is_numeric($topic) + ? Topic::findOrFail($topic) + : $topic; + Log::info('Topic loaded', [ + 'topic_id' => $this->topic->id, + 'topic_title' => $this->topic->title + ]); + } catch (\Exception $e) { + Log::error('Topic loading error', [ + 'error' => $e->getMessage(), + 'topic' => $topic + ]); + + session()->flash('error', 'Topic not found'); + return redirect()->route('forum.index'); + } + } + public function render() + { + $topic = Topic::with(['user', 'comments']) + ->findOrFail($this->topic->id); + return view('livewire.forum.topic-view'); + } +} diff --git a/app/Models/Article.php b/app/Models/Article.php new file mode 100644 index 0000000..bc7ef9b --- /dev/null +++ b/app/Models/Article.php @@ -0,0 +1,41 @@ +belongsTo(CardArticle::class, 'card_id'); + } + + public function subArticles(): HasMany + { + return $this->hasMany(SubArticle::class, 'article_id'); + } + + public function tags() + { + return $this->belongsToMany(Tag::class, 'article_tags'); + } + + public function user() + { + return $this->belongsTo(User::class); + } +} diff --git a/app/Models/ArticleTag.php b/app/Models/ArticleTag.php new file mode 100644 index 0000000..81c5c63 --- /dev/null +++ b/app/Models/ArticleTag.php @@ -0,0 +1,11 @@ +hasMany(Article::class, 'card_id'); + } + + public function user() + { + return $this->belongsTo(User::class); + } + + protected static function booted() + { + static::deleting(function ($card) { + // Hapus semua Articles terkait + $card->articles()->each(function ($article) { + // Hapus semua SubArticles terkait dengan Article + $article->subArticles()->delete(); + // Hapus Article + $article->delete(); + }); + }); + } +} diff --git a/app/Models/Comment.php b/app/Models/Comment.php new file mode 100644 index 0000000..8fa787e --- /dev/null +++ b/app/Models/Comment.php @@ -0,0 +1,38 @@ +belongsTo(User::class); + } + + public function topic() + { + return $this->belongsTo(Topic::class); + } + + public function likes() + { + return $this->morphMany(Like::class, 'likeable'); + } + + public function parent() + { + return $this->belongsTo(Comment::class, 'parent_id'); + } + + public function replies() + { + return $this->hasMany(Comment::class, 'parent_id'); + } +} \ No newline at end of file diff --git a/app/Models/HarianAyam.php b/app/Models/HarianAyam.php new file mode 100644 index 0000000..ea789f7 --- /dev/null +++ b/app/Models/HarianAyam.php @@ -0,0 +1,40 @@ +belongsTo(PopulasiAyam::class, 'id_populasi'); + } + + public function user() + { + return $this->belongsTo(User::class); + } + + protected static function booted() + { + static::creating(function ($harian) { + $harian->nama_batch = $harian->populasiAyam->nama_batch; + }); + } + +} diff --git a/app/Models/KandangAyam.php b/app/Models/KandangAyam.php new file mode 100644 index 0000000..e917a9e --- /dev/null +++ b/app/Models/KandangAyam.php @@ -0,0 +1,38 @@ +hasMany(PopulasiAyam::class, 'kandang_id'); + } + + public function user() + { + return $this->belongsTo(User::class); + } +} diff --git a/app/Models/Like.php b/app/Models/Like.php new file mode 100644 index 0000000..a00a755 --- /dev/null +++ b/app/Models/Like.php @@ -0,0 +1,24 @@ +morphTo(); + } + + public function user() + { + return $this->belongsTo(User::class); + } +} \ No newline at end of file diff --git a/app/Models/Pakan.php b/app/Models/Pakan.php new file mode 100644 index 0000000..ea95578 --- /dev/null +++ b/app/Models/Pakan.php @@ -0,0 +1,32 @@ +hasMany(PenggunaanPakan::class, 'pakan_id'); + } + + public function user() + { + return $this->belongsTo(User::class); + } +} diff --git a/app/Models/Pendapatan.php b/app/Models/Pendapatan.php new file mode 100644 index 0000000..268ad8e --- /dev/null +++ b/app/Models/Pendapatan.php @@ -0,0 +1,40 @@ +total_pendapatan = $pendapatan->jumlah * $pendapatan->harga_per_satuan; + }); + + static::updating(function ($pendapatan) { + $pendapatan->total_pendapatan = $pendapatan->jumlah * $pendapatan->harga_per_satuan; + }); + } + + public function user() + { + return $this->belongsTo(User::class); + } +} diff --git a/app/Models/Pengeluaran.php b/app/Models/Pengeluaran.php new file mode 100644 index 0000000..b17682f --- /dev/null +++ b/app/Models/Pengeluaran.php @@ -0,0 +1,41 @@ +total_biaya = $pengeluaran->jumlah * $pengeluaran->harga_per_satuan; + }); + + static::updating(function ($pengeluaran) { + $pengeluaran->total_biaya = $pengeluaran->jumlah * $pengeluaran->harga_per_satuan; + }); + } + + public function user() + { + return $this->belongsTo(User::class); + } +} diff --git a/app/Models/PenggunaanPakan.php b/app/Models/PenggunaanPakan.php new file mode 100644 index 0000000..47dbbac --- /dev/null +++ b/app/Models/PenggunaanPakan.php @@ -0,0 +1,25 @@ +belongsTo(Pakan::class, 'pakan_id'); + } +} diff --git a/app/Models/PopulasiAyam.php b/app/Models/PopulasiAyam.php new file mode 100644 index 0000000..98682f0 --- /dev/null +++ b/app/Models/PopulasiAyam.php @@ -0,0 +1,47 @@ +hasMany(HarianAyam::class, 'id_populasi'); + } + + public function kandang() + { + return $this->belongsTo(KandangAyam::class, 'kandang_id'); + } + + public function user() + { + return $this->belongsTo(User::class); + } + + protected static function booted() + { + static::updated(function ($populasi) { + // Perbarui field nama_batch di semua record harian ayam yang terkait + $populasi->harianAyam()->update(['nama_batch' => $populasi->nama_batch]); + }); + } +} diff --git a/app/Models/SubArticle.php b/app/Models/SubArticle.php new file mode 100644 index 0000000..e972ddf --- /dev/null +++ b/app/Models/SubArticle.php @@ -0,0 +1,28 @@ +belongsTo(Article::class, 'article_id'); + } + + public function user() + { + return $this->belongsTo(User::class); + } +} diff --git a/app/Models/Tag.php b/app/Models/Tag.php new file mode 100644 index 0000000..b654ee5 --- /dev/null +++ b/app/Models/Tag.php @@ -0,0 +1,15 @@ +belongsToMany(Article::class, 'article_tags'); + } +} diff --git a/app/Models/Topic.php b/app/Models/Topic.php new file mode 100644 index 0000000..0b41901 --- /dev/null +++ b/app/Models/Topic.php @@ -0,0 +1,28 @@ +belongsTo(User::class); + } + + public function comments() + { + return $this->hasMany(Comment::class); + } + + public function likes() + { + return $this->morphMany(Like::class, 'likeable'); + } +} diff --git a/app/Models/User.php b/app/Models/User.php new file mode 100644 index 0000000..364920d --- /dev/null +++ b/app/Models/User.php @@ -0,0 +1,61 @@ + + */ + protected $fillable = [ + 'name', + 'email', + 'password', + 'role', + ]; + + /** + * The attributes that should be hidden for serialization. + * + * @var array + */ + protected $hidden = [ + 'password', + 'remember_token', + ]; + + /** + * The attributes that should be cast. + * + * @var array + */ + protected $casts = [ + 'email_verified_at' => 'datetime', + 'password' => 'hashed', + ]; + + public function topics() + { + return $this->hasMany(Topic::class); + } + + public function comments() + { + return $this->hasMany(Comment::class); + } + + public function likes() + { + return $this->hasMany(Like::class); + } +} diff --git a/app/Policies/ArticlePolicy.php b/app/Policies/ArticlePolicy.php new file mode 100644 index 0000000..f1b5106 --- /dev/null +++ b/app/Policies/ArticlePolicy.php @@ -0,0 +1,66 @@ + + */ + protected $policies = [ + // + ]; + + /** + * Register any authentication / authorization services. + */ + public function boot(): void + { + // + } +} diff --git a/app/Providers/BroadcastServiceProvider.php b/app/Providers/BroadcastServiceProvider.php new file mode 100644 index 0000000..2be04f5 --- /dev/null +++ b/app/Providers/BroadcastServiceProvider.php @@ -0,0 +1,19 @@ +> + */ + protected $listen = [ + Registered::class => [ + SendEmailVerificationNotification::class, + ], + ]; + + /** + * Register any events for your application. + */ + public function boot(): void + { + // + } + + /** + * Determine if events and listeners should be automatically discovered. + */ + public function shouldDiscoverEvents(): bool + { + return false; + } +} diff --git a/app/Providers/RouteServiceProvider.php b/app/Providers/RouteServiceProvider.php new file mode 100644 index 0000000..910d614 --- /dev/null +++ b/app/Providers/RouteServiceProvider.php @@ -0,0 +1,40 @@ +by($request->user()?->id ?: $request->ip()); + }); + + $this->routes(function () { + Route::middleware('api') + ->prefix('api') + ->group(base_path('routes/api.php')); + + Route::middleware('web') + ->group(base_path('routes/web.php')); + }); + } +} diff --git a/app/Providers/VoltServiceProvider.php b/app/Providers/VoltServiceProvider.php new file mode 100644 index 0000000..e61d984 --- /dev/null +++ b/app/Providers/VoltServiceProvider.php @@ -0,0 +1,28 @@ +items = $items; + } + + public function render(): View|Closure|string + { + return view('components.dropdown'); + } +} diff --git a/app/View/Components/GuestLayout.php b/app/View/Components/GuestLayout.php new file mode 100644 index 0000000..d1f6253 --- /dev/null +++ b/app/View/Components/GuestLayout.php @@ -0,0 +1,17 @@ +make(Illuminate\Contracts\Console\Kernel::class); + +$status = $kernel->handle( + $input = new Symfony\Component\Console\Input\ArgvInput, + new Symfony\Component\Console\Output\ConsoleOutput +); + +/* +|-------------------------------------------------------------------------- +| Shutdown The Application +|-------------------------------------------------------------------------- +| +| Once Artisan has finished running, we will fire off the shutdown events +| so that any final work may be done by the application before we shut +| down the process. This is the last thing to happen to the request. +| +*/ + +$kernel->terminate($input, $status); + +exit($status); diff --git a/bootstrap/app.php b/bootstrap/app.php new file mode 100644 index 0000000..037e17d --- /dev/null +++ b/bootstrap/app.php @@ -0,0 +1,55 @@ +singleton( + Illuminate\Contracts\Http\Kernel::class, + App\Http\Kernel::class +); + +$app->singleton( + Illuminate\Contracts\Console\Kernel::class, + App\Console\Kernel::class +); + +$app->singleton( + Illuminate\Contracts\Debug\ExceptionHandler::class, + App\Exceptions\Handler::class +); + +/* +|-------------------------------------------------------------------------- +| Return The Application +|-------------------------------------------------------------------------- +| +| This script returns the application instance. The instance is given to +| the calling script so we can separate the building of the instances +| from the actual running of the application and sending responses. +| +*/ + +return $app; diff --git a/bootstrap/cache/.gitignore b/bootstrap/cache/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/bootstrap/cache/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..3e0758e --- /dev/null +++ b/composer.json @@ -0,0 +1,71 @@ +{ + "name": "laravel/laravel", + "type": "project", + "description": "The skeleton application for the Laravel framework.", + "keywords": ["laravel", "framework"], + "license": "MIT", + "require": { + "php": "^8.1", + "anhskohbo/no-captcha": "^3.7", + "barryvdh/laravel-dompdf": "^3.1", + "guzzlehttp/guzzle": "^7.2", + "laravel/breeze": "^1.29", + "laravel/framework": "^10.10", + "laravel/sanctum": "^3.3", + "laravel/tinker": "^2.8", + "livewire/livewire": "^3.4", + "livewire/volt": "^1.0" + }, + "require-dev": { + "fakerphp/faker": "^1.9.1", + "laravel/pint": "^1.0", + "laravel/sail": "^1.18", + "mockery/mockery": "^1.4.4", + "nunomaduro/collision": "^7.0", + "phpunit/phpunit": "^10.1", + "spatie/laravel-ignition": "^2.0" + }, + "autoload": { + "psr-4": { + "App\\": "app/", + "Database\\Factories\\": "database/factories/", + "Database\\Seeders\\": "database/seeders/" + } + }, + "autoload-dev": { + "psr-4": { + "Tests\\": "tests/" + } + }, + "scripts": { + "post-autoload-dump": [ + "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", + "@php artisan package:discover --ansi" + ], + "post-update-cmd": [ + "@php artisan vendor:publish --tag=laravel-assets --ansi --force" + ], + "post-root-package-install": [ + "@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" + ], + "post-create-project-cmd": [ + "@php artisan key:generate --ansi" + ] + }, + "extra": { + "laravel": { + "dont-discover": [] + } + }, + "config": { + "optimize-autoloader": true, + "preferred-install": "dist", + "sort-packages": true, + "allow-plugins": { + "pestphp/pest-plugin": true, + "php-http/discovery": true + } + }, + "minimum-stability": "stable", + "prefer-stable": true +} diff --git a/composer.lock b/composer.lock new file mode 100644 index 0000000..20fbd43 --- /dev/null +++ b/composer.lock @@ -0,0 +1,8772 @@ +{ + "_readme": [ + "This file locks the dependencies of your project to a known state", + "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", + "This file is @generated automatically" + ], + "content-hash": "45ea69e5dbfb18415b8541545c986487", + "packages": [ + { + "name": "anhskohbo/no-captcha", + "version": "3.7.0", + "source": { + "type": "git", + "url": "https://github.com/anhskohbo/no-captcha.git", + "reference": "87666572f0dbe1e3380a2e9ae7574bf3a2d0804e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/anhskohbo/no-captcha/zipball/87666572f0dbe1e3380a2e9ae7574bf3a2d0804e", + "reference": "87666572f0dbe1e3380a2e9ae7574bf3a2d0804e", + "shasum": "" + }, + "require": { + "guzzlehttp/guzzle": "^6.2|^7.0", + "illuminate/support": "^5.0|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0", + "php": ">=5.5.5" + }, + "require-dev": { + "phpunit/phpunit": "~4.8|^9.5.10|^10.5" + }, + "type": "library", + "extra": { + "laravel": { + "aliases": { + "NoCaptcha": "Anhskohbo\\NoCaptcha\\Facades\\NoCaptcha" + }, + "providers": [ + "Anhskohbo\\NoCaptcha\\NoCaptchaServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Anhskohbo\\NoCaptcha\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "anhskohbo", + "email": "anhskohbo@gmail.com" + } + ], + "description": "No CAPTCHA reCAPTCHA For Laravel.", + "keywords": [ + "captcha", + "laravel", + "laravel4", + "laravel5", + "laravel6", + "no-captcha", + "recaptcha" + ], + "support": { + "issues": "https://github.com/anhskohbo/no-captcha/issues", + "source": "https://github.com/anhskohbo/no-captcha/tree/3.7.0" + }, + "time": "2025-02-25T18:53:34+00:00" + }, + { + "name": "barryvdh/laravel-dompdf", + "version": "v3.1.0", + "source": { + "type": "git", + "url": "https://github.com/barryvdh/laravel-dompdf.git", + "reference": "8d698b4aec2be91fe1e47ba71ba258acbf23357d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/barryvdh/laravel-dompdf/zipball/8d698b4aec2be91fe1e47ba71ba258acbf23357d", + "reference": "8d698b4aec2be91fe1e47ba71ba258acbf23357d", + "shasum": "" + }, + "require": { + "dompdf/dompdf": "^3.0", + "illuminate/support": "^9|^10|^11", + "php": "^8.1" + }, + "require-dev": { + "larastan/larastan": "^2.7.0", + "orchestra/testbench": "^7|^8|^9", + "phpro/grumphp": "^2.5", + "squizlabs/php_codesniffer": "^3.5" + }, + "type": "library", + "extra": { + "laravel": { + "aliases": { + "PDF": "Barryvdh\\DomPDF\\Facade\\Pdf", + "Pdf": "Barryvdh\\DomPDF\\Facade\\Pdf" + }, + "providers": [ + "Barryvdh\\DomPDF\\ServiceProvider" + ] + }, + "branch-alias": { + "dev-master": "3.0-dev" + } + }, + "autoload": { + "psr-4": { + "Barryvdh\\DomPDF\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Barry vd. Heuvel", + "email": "barryvdh@gmail.com" + } + ], + "description": "A DOMPDF Wrapper for Laravel", + "keywords": [ + "dompdf", + "laravel", + "pdf" + ], + "support": { + "issues": "https://github.com/barryvdh/laravel-dompdf/issues", + "source": "https://github.com/barryvdh/laravel-dompdf/tree/v3.1.0" + }, + "funding": [ + { + "url": "https://fruitcake.nl", + "type": "custom" + }, + { + "url": "https://github.com/barryvdh", + "type": "github" + } + ], + "time": "2025-01-21T20:24:00+00:00" + }, + { + "name": "brick/math", + "version": "0.12.1", + "source": { + "type": "git", + "url": "https://github.com/brick/math.git", + "reference": "f510c0a40911935b77b86859eb5223d58d660df1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/brick/math/zipball/f510c0a40911935b77b86859eb5223d58d660df1", + "reference": "f510c0a40911935b77b86859eb5223d58d660df1", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "require-dev": { + "php-coveralls/php-coveralls": "^2.2", + "phpunit/phpunit": "^10.1", + "vimeo/psalm": "5.16.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Brick\\Math\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Arbitrary-precision arithmetic library", + "keywords": [ + "Arbitrary-precision", + "BigInteger", + "BigRational", + "arithmetic", + "bigdecimal", + "bignum", + "bignumber", + "brick", + "decimal", + "integer", + "math", + "mathematics", + "rational" + ], + "support": { + "issues": "https://github.com/brick/math/issues", + "source": "https://github.com/brick/math/tree/0.12.1" + }, + "funding": [ + { + "url": "https://github.com/BenMorel", + "type": "github" + } + ], + "time": "2023-11-29T23:19:16+00:00" + }, + { + "name": "carbonphp/carbon-doctrine-types", + "version": "2.1.0", + "source": { + "type": "git", + "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git", + "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb", + "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb", + "shasum": "" + }, + "require": { + "php": "^7.4 || ^8.0" + }, + "conflict": { + "doctrine/dbal": "<3.7.0 || >=4.0.0" + }, + "require-dev": { + "doctrine/dbal": "^3.7.0", + "nesbot/carbon": "^2.71.0 || ^3.0.0", + "phpunit/phpunit": "^10.3" + }, + "type": "library", + "autoload": { + "psr-4": { + "Carbon\\Doctrine\\": "src/Carbon/Doctrine/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "KyleKatarn", + "email": "kylekatarnls@gmail.com" + } + ], + "description": "Types to use Carbon in Doctrine", + "keywords": [ + "carbon", + "date", + "datetime", + "doctrine", + "time" + ], + "support": { + "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues", + "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/2.1.0" + }, + "funding": [ + { + "url": "https://github.com/kylekatarnls", + "type": "github" + }, + { + "url": "https://opencollective.com/Carbon", + "type": "open_collective" + }, + { + "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon", + "type": "tidelift" + } + ], + "time": "2023-12-11T17:09:12+00:00" + }, + { + "name": "dflydev/dot-access-data", + "version": "v3.0.3", + "source": { + "type": "git", + "url": "https://github.com/dflydev/dflydev-dot-access-data.git", + "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f", + "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^0.12.42", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3", + "scrutinizer/ocular": "1.6.0", + "squizlabs/php_codesniffer": "^3.5", + "vimeo/psalm": "^4.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Dflydev\\DotAccessData\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Dragonfly Development Inc.", + "email": "info@dflydev.com", + "homepage": "http://dflydev.com" + }, + { + "name": "Beau Simensen", + "email": "beau@dflydev.com", + "homepage": "http://beausimensen.com" + }, + { + "name": "Carlos Frutos", + "email": "carlos@kiwing.it", + "homepage": "https://github.com/cfrutos" + }, + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com" + } + ], + "description": "Given a deep data structure, access data by dot notation.", + "homepage": "https://github.com/dflydev/dflydev-dot-access-data", + "keywords": [ + "access", + "data", + "dot", + "notation" + ], + "support": { + "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues", + "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3" + }, + "time": "2024-07-08T12:26:09+00:00" + }, + { + "name": "doctrine/inflector", + "version": "2.0.10", + "source": { + "type": "git", + "url": "https://github.com/doctrine/inflector.git", + "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc", + "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^11.0", + "phpstan/phpstan": "^1.8", + "phpstan/phpstan-phpunit": "^1.1", + "phpstan/phpstan-strict-rules": "^1.3", + "phpunit/phpunit": "^8.5 || ^9.5", + "vimeo/psalm": "^4.25 || ^5.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Inflector\\": "lib/Doctrine/Inflector" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.", + "homepage": "https://www.doctrine-project.org/projects/inflector.html", + "keywords": [ + "inflection", + "inflector", + "lowercase", + "manipulation", + "php", + "plural", + "singular", + "strings", + "uppercase", + "words" + ], + "support": { + "issues": "https://github.com/doctrine/inflector/issues", + "source": "https://github.com/doctrine/inflector/tree/2.0.10" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector", + "type": "tidelift" + } + ], + "time": "2024-02-18T20:23:39+00:00" + }, + { + "name": "doctrine/lexer", + "version": "3.0.1", + "source": { + "type": "git", + "url": "https://github.com/doctrine/lexer.git", + "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd", + "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "require-dev": { + "doctrine/coding-standard": "^12", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^10.5", + "psalm/plugin-phpunit": "^0.18.3", + "vimeo/psalm": "^5.21" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Common\\Lexer\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.", + "homepage": "https://www.doctrine-project.org/projects/lexer.html", + "keywords": [ + "annotations", + "docblock", + "lexer", + "parser", + "php" + ], + "support": { + "issues": "https://github.com/doctrine/lexer/issues", + "source": "https://github.com/doctrine/lexer/tree/3.0.1" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer", + "type": "tidelift" + } + ], + "time": "2024-02-05T11:56:58+00:00" + }, + { + "name": "dompdf/dompdf", + "version": "v3.1.0", + "source": { + "type": "git", + "url": "https://github.com/dompdf/dompdf.git", + "reference": "a51bd7a063a65499446919286fb18b518177155a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dompdf/dompdf/zipball/a51bd7a063a65499446919286fb18b518177155a", + "reference": "a51bd7a063a65499446919286fb18b518177155a", + "shasum": "" + }, + "require": { + "dompdf/php-font-lib": "^1.0.0", + "dompdf/php-svg-lib": "^1.0.0", + "ext-dom": "*", + "ext-mbstring": "*", + "masterminds/html5": "^2.0", + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "ext-gd": "*", + "ext-json": "*", + "ext-zip": "*", + "mockery/mockery": "^1.3", + "phpunit/phpunit": "^7.5 || ^8 || ^9 || ^10 || ^11", + "squizlabs/php_codesniffer": "^3.5", + "symfony/process": "^4.4 || ^5.4 || ^6.2 || ^7.0" + }, + "suggest": { + "ext-gd": "Needed to process images", + "ext-gmagick": "Improves image processing performance", + "ext-imagick": "Improves image processing performance", + "ext-zlib": "Needed for pdf stream compression" + }, + "type": "library", + "autoload": { + "psr-4": { + "Dompdf\\": "src/" + }, + "classmap": [ + "lib/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "LGPL-2.1" + ], + "authors": [ + { + "name": "The Dompdf Community", + "homepage": "https://github.com/dompdf/dompdf/blob/master/AUTHORS.md" + } + ], + "description": "DOMPDF is a CSS 2.1 compliant HTML to PDF converter", + "homepage": "https://github.com/dompdf/dompdf", + "support": { + "issues": "https://github.com/dompdf/dompdf/issues", + "source": "https://github.com/dompdf/dompdf/tree/v3.1.0" + }, + "time": "2025-01-15T14:09:04+00:00" + }, + { + "name": "dompdf/php-font-lib", + "version": "1.0.1", + "source": { + "type": "git", + "url": "https://github.com/dompdf/php-font-lib.git", + "reference": "6137b7d4232b7f16c882c75e4ca3991dbcf6fe2d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/6137b7d4232b7f16c882c75e4ca3991dbcf6fe2d", + "reference": "6137b7d4232b7f16c882c75e4ca3991dbcf6fe2d", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "symfony/phpunit-bridge": "^3 || ^4 || ^5 || ^6" + }, + "type": "library", + "autoload": { + "psr-4": { + "FontLib\\": "src/FontLib" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "LGPL-2.1-or-later" + ], + "authors": [ + { + "name": "The FontLib Community", + "homepage": "https://github.com/dompdf/php-font-lib/blob/master/AUTHORS.md" + } + ], + "description": "A library to read, parse, export and make subsets of different types of font files.", + "homepage": "https://github.com/dompdf/php-font-lib", + "support": { + "issues": "https://github.com/dompdf/php-font-lib/issues", + "source": "https://github.com/dompdf/php-font-lib/tree/1.0.1" + }, + "time": "2024-12-02T14:37:59+00:00" + }, + { + "name": "dompdf/php-svg-lib", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/dompdf/php-svg-lib.git", + "reference": "eb045e518185298eb6ff8d80d0d0c6b17aecd9af" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dompdf/php-svg-lib/zipball/eb045e518185298eb6ff8d80d0d0c6b17aecd9af", + "reference": "eb045e518185298eb6ff8d80d0d0c6b17aecd9af", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "php": "^7.1 || ^8.0", + "sabberworm/php-css-parser": "^8.4" + }, + "require-dev": { + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5" + }, + "type": "library", + "autoload": { + "psr-4": { + "Svg\\": "src/Svg" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "LGPL-3.0-or-later" + ], + "authors": [ + { + "name": "The SvgLib Community", + "homepage": "https://github.com/dompdf/php-svg-lib/blob/master/AUTHORS.md" + } + ], + "description": "A library to read, parse and export to PDF SVG files.", + "homepage": "https://github.com/dompdf/php-svg-lib", + "support": { + "issues": "https://github.com/dompdf/php-svg-lib/issues", + "source": "https://github.com/dompdf/php-svg-lib/tree/1.0.0" + }, + "time": "2024-04-29T13:26:35+00:00" + }, + { + "name": "dragonmantank/cron-expression", + "version": "v3.4.0", + "source": { + "type": "git", + "url": "https://github.com/dragonmantank/cron-expression.git", + "reference": "8c784d071debd117328803d86b2097615b457500" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500", + "reference": "8c784d071debd117328803d86b2097615b457500", + "shasum": "" + }, + "require": { + "php": "^7.2|^8.0", + "webmozart/assert": "^1.0" + }, + "replace": { + "mtdowling/cron-expression": "^1.0" + }, + "require-dev": { + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "^1.0", + "phpunit/phpunit": "^7.0|^8.0|^9.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Cron\\": "src/Cron/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Chris Tankersley", + "email": "chris@ctankersley.com", + "homepage": "https://github.com/dragonmantank" + } + ], + "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due", + "keywords": [ + "cron", + "schedule" + ], + "support": { + "issues": "https://github.com/dragonmantank/cron-expression/issues", + "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0" + }, + "funding": [ + { + "url": "https://github.com/dragonmantank", + "type": "github" + } + ], + "time": "2024-10-09T13:47:03+00:00" + }, + { + "name": "egulias/email-validator", + "version": "4.0.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.4", + "source": { + "type": "git", + "url": "https://github.com/guzzle/promises.git", + "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455", + "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455", + "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.4" + }, + "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-10-17T10:06:22+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": "laravel/breeze", + "version": "v1.29.1", + "source": { + "type": "git", + "url": "https://github.com/laravel/breeze.git", + "reference": "22c53b84b7fff91b01a318d71a10dfc251e92849" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/breeze/zipball/22c53b84b7fff91b01a318d71a10dfc251e92849", + "reference": "22c53b84b7fff91b01a318d71a10dfc251e92849", + "shasum": "" + }, + "require": { + "illuminate/console": "^10.17", + "illuminate/filesystem": "^10.17", + "illuminate/support": "^10.17", + "illuminate/validation": "^10.17", + "php": "^8.1.0" + }, + "require-dev": { + "orchestra/testbench": "^8.0", + "phpstan/phpstan": "^1.10" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + }, + "laravel": { + "providers": [ + "Laravel\\Breeze\\BreezeServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Laravel\\Breeze\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Minimal Laravel authentication scaffolding with Blade and Tailwind.", + "keywords": [ + "auth", + "laravel" + ], + "support": { + "issues": "https://github.com/laravel/breeze/issues", + "source": "https://github.com/laravel/breeze" + }, + "time": "2024-03-04T14:35:21+00:00" + }, + { + "name": "laravel/framework", + "version": "v10.48.25", + "source": { + "type": "git", + "url": "https://github.com/laravel/framework.git", + "reference": "f132b23b13909cc22c615c01b0c5640541c3da0c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/framework/zipball/f132b23b13909cc22c615c01b0c5640541c3da0c", + "reference": "f132b23b13909cc22c615c01b0c5640541c3da0c", + "shasum": "" + }, + "require": { + "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12", + "composer-runtime-api": "^2.2", + "doctrine/inflector": "^2.0.5", + "dragonmantank/cron-expression": "^3.3.2", + "egulias/email-validator": "^3.2.1|^4.0", + "ext-ctype": "*", + "ext-filter": "*", + "ext-hash": "*", + "ext-mbstring": "*", + "ext-openssl": "*", + "ext-session": "*", + "ext-tokenizer": "*", + "fruitcake/php-cors": "^1.2", + "guzzlehttp/uri-template": "^1.0", + "laravel/prompts": "^0.1.9", + "laravel/serializable-closure": "^1.3", + "league/commonmark": "^2.2.1", + "league/flysystem": "^3.8.0", + "monolog/monolog": "^3.0", + "nesbot/carbon": "^2.67", + "nunomaduro/termwind": "^1.13", + "php": "^8.1", + "psr/container": "^1.1.1|^2.0.1", + "psr/log": "^1.0|^2.0|^3.0", + "psr/simple-cache": "^1.0|^2.0|^3.0", + "ramsey/uuid": "^4.7", + "symfony/console": "^6.2", + "symfony/error-handler": "^6.2", + "symfony/finder": "^6.2", + "symfony/http-foundation": "^6.4", + "symfony/http-kernel": "^6.2", + "symfony/mailer": "^6.2", + "symfony/mime": "^6.2", + "symfony/process": "^6.2", + "symfony/routing": "^6.2", + "symfony/uid": "^6.2", + "symfony/var-dumper": "^6.2", + "tijsverkoyen/css-to-inline-styles": "^2.2.5", + "vlucas/phpdotenv": "^5.4.1", + "voku/portable-ascii": "^2.0" + }, + "conflict": { + "carbonphp/carbon-doctrine-types": ">=3.0", + "doctrine/dbal": ">=4.0", + "mockery/mockery": "1.6.8", + "phpunit/phpunit": ">=11.0.0", + "tightenco/collect": "<5.5.33" + }, + "provide": { + "psr/container-implementation": "1.1|2.0", + "psr/simple-cache-implementation": "1.0|2.0|3.0" + }, + "replace": { + "illuminate/auth": "self.version", + "illuminate/broadcasting": "self.version", + "illuminate/bus": "self.version", + "illuminate/cache": "self.version", + "illuminate/collections": "self.version", + "illuminate/conditionable": "self.version", + "illuminate/config": "self.version", + "illuminate/console": "self.version", + "illuminate/container": "self.version", + "illuminate/contracts": "self.version", + "illuminate/cookie": "self.version", + "illuminate/database": "self.version", + "illuminate/encryption": "self.version", + "illuminate/events": "self.version", + "illuminate/filesystem": "self.version", + "illuminate/hashing": "self.version", + "illuminate/http": "self.version", + "illuminate/log": "self.version", + "illuminate/macroable": "self.version", + "illuminate/mail": "self.version", + "illuminate/notifications": "self.version", + "illuminate/pagination": "self.version", + "illuminate/pipeline": "self.version", + "illuminate/process": "self.version", + "illuminate/queue": "self.version", + "illuminate/redis": "self.version", + "illuminate/routing": "self.version", + "illuminate/session": "self.version", + "illuminate/support": "self.version", + "illuminate/testing": "self.version", + "illuminate/translation": "self.version", + "illuminate/validation": "self.version", + "illuminate/view": "self.version" + }, + "require-dev": { + "ably/ably-php": "^1.0", + "aws/aws-sdk-php": "^3.235.5", + "doctrine/dbal": "^3.5.1", + "ext-gmp": "*", + "fakerphp/faker": "^1.21", + "guzzlehttp/guzzle": "^7.5", + "league/flysystem-aws-s3-v3": "^3.0", + "league/flysystem-ftp": "^3.0", + "league/flysystem-path-prefixing": "^3.3", + "league/flysystem-read-only": "^3.3", + "league/flysystem-sftp-v3": "^3.0", + "mockery/mockery": "^1.5.1", + "nyholm/psr7": "^1.2", + "orchestra/testbench-core": "^8.23.4", + "pda/pheanstalk": "^4.0", + "phpstan/phpstan": "~1.11.11", + "phpunit/phpunit": "^10.0.7", + "predis/predis": "^2.0.2", + "symfony/cache": "^6.2", + "symfony/http-client": "^6.2.4", + "symfony/psr-http-message-bridge": "^2.0" + }, + "suggest": { + "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).", + "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).", + "brianium/paratest": "Required to run tests in parallel (^6.0).", + "doctrine/dbal": "Required to rename columns and drop SQLite columns (^3.5.1).", + "ext-apcu": "Required to use the APC cache driver.", + "ext-fileinfo": "Required to use the Filesystem class.", + "ext-ftp": "Required to use the Flysystem FTP driver.", + "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().", + "ext-memcached": "Required to use the memcache cache driver.", + "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.", + "ext-pdo": "Required to use all database features.", + "ext-posix": "Required to use all features of the queue worker.", + "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).", + "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).", + "filp/whoops": "Required for friendly error pages in development (^2.14.3).", + "guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.5).", + "laravel/tinker": "Required to use the tinker console command (^2.0).", + "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).", + "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).", + "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).", + "league/flysystem-read-only": "Required to use read-only disks (^3.3)", + "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).", + "mockery/mockery": "Required to use mocking (^1.5.1).", + "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).", + "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).", + "phpunit/phpunit": "Required to use assertions and run tests (^9.5.8|^10.0.7).", + "predis/predis": "Required to use the predis connector (^2.0.2).", + "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).", + "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).", + "symfony/cache": "Required to PSR-6 cache bridge (^6.2).", + "symfony/filesystem": "Required to enable support for relative symbolic links (^6.2).", + "symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.2).", + "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.2).", + "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.2).", + "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "10.x-dev" + } + }, + "autoload": { + "files": [ + "src/Illuminate/Collections/helpers.php", + "src/Illuminate/Events/functions.php", + "src/Illuminate/Filesystem/functions.php", + "src/Illuminate/Foundation/helpers.php", + "src/Illuminate/Support/helpers.php" + ], + "psr-4": { + "Illuminate\\": "src/Illuminate/", + "Illuminate\\Support\\": [ + "src/Illuminate/Macroable/", + "src/Illuminate/Collections/", + "src/Illuminate/Conditionable/" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Laravel Framework.", + "homepage": "https://laravel.com", + "keywords": [ + "framework", + "laravel" + ], + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, + "time": "2024-11-26T15:32:57+00:00" + }, + { + "name": "laravel/prompts", + "version": "v0.1.25", + "source": { + "type": "git", + "url": "https://github.com/laravel/prompts.git", + "reference": "7b4029a84c37cb2725fc7f011586e2997040bc95" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/prompts/zipball/7b4029a84c37cb2725fc7f011586e2997040bc95", + "reference": "7b4029a84c37cb2725fc7f011586e2997040bc95", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "illuminate/collections": "^10.0|^11.0", + "php": "^8.1", + "symfony/console": "^6.2|^7.0" + }, + "conflict": { + "illuminate/console": ">=10.17.0 <10.25.0", + "laravel/framework": ">=10.17.0 <10.25.0" + }, + "require-dev": { + "mockery/mockery": "^1.5", + "pestphp/pest": "^2.3", + "phpstan/phpstan": "^1.11", + "phpstan/phpstan-mockery": "^1.1" + }, + "suggest": { + "ext-pcntl": "Required for the spinner to be animated." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "0.1.x-dev" + } + }, + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Laravel\\Prompts\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Add beautiful and user-friendly forms to your command-line applications.", + "support": { + "issues": "https://github.com/laravel/prompts/issues", + "source": "https://github.com/laravel/prompts/tree/v0.1.25" + }, + "time": "2024-08-12T22:06:33+00:00" + }, + { + "name": "laravel/sanctum", + "version": "v3.3.3", + "source": { + "type": "git", + "url": "https://github.com/laravel/sanctum.git", + "reference": "8c104366459739f3ada0e994bcd3e6fd681ce3d5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/sanctum/zipball/8c104366459739f3ada0e994bcd3e6fd681ce3d5", + "reference": "8c104366459739f3ada0e994bcd3e6fd681ce3d5", + "shasum": "" + }, + "require": { + "ext-json": "*", + "illuminate/console": "^9.21|^10.0", + "illuminate/contracts": "^9.21|^10.0", + "illuminate/database": "^9.21|^10.0", + "illuminate/support": "^9.21|^10.0", + "php": "^8.0.2" + }, + "require-dev": { + "mockery/mockery": "^1.0", + "orchestra/testbench": "^7.28.2|^8.8.3", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^9.6" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + }, + "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": "2023-12-19T18:44:48+00:00" + }, + { + "name": "laravel/serializable-closure", + "version": "v1.3.7", + "source": { + "type": "git", + "url": "https://github.com/laravel/serializable-closure.git", + "reference": "4f48ade902b94323ca3be7646db16209ec76be3d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/4f48ade902b94323ca3be7646db16209ec76be3d", + "reference": "4f48ade902b94323ca3be7646db16209ec76be3d", + "shasum": "" + }, + "require": { + "php": "^7.3|^8.0" + }, + "require-dev": { + "illuminate/support": "^8.0|^9.0|^10.0|^11.0", + "nesbot/carbon": "^2.61|^3.0", + "pestphp/pest": "^1.21.3", + "phpstan/phpstan": "^1.8.2", + "symfony/var-dumper": "^5.4.11|^6.2.0|^7.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Laravel\\SerializableClosure\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + }, + { + "name": "Nuno Maduro", + "email": "nuno@laravel.com" + } + ], + "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.", + "keywords": [ + "closure", + "laravel", + "serializable" + ], + "support": { + "issues": "https://github.com/laravel/serializable-closure/issues", + "source": "https://github.com/laravel/serializable-closure" + }, + "time": "2024-11-14T18:34:49+00:00" + }, + { + "name": "laravel/tinker", + "version": "v2.10.0", + "source": { + "type": "git", + "url": "https://github.com/laravel/tinker.git", + "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/tinker/zipball/ba4d51eb56de7711b3a37d63aa0643e99a339ae5", + "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5", + "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.10.0" + }, + "time": "2024-09-23T13:32:56+00:00" + }, + { + "name": "league/commonmark", + "version": "2.5.3", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/commonmark.git", + "reference": "b650144166dfa7703e62a22e493b853b58d874b0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/b650144166dfa7703e62a22e493b853b58d874b0", + "reference": "b650144166dfa7703e62a22e493b853b58d874b0", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "league/config": "^1.1.1", + "php": "^7.4 || ^8.0", + "psr/event-dispatcher": "^1.0", + "symfony/deprecation-contracts": "^2.1 || ^3.0", + "symfony/polyfill-php80": "^1.16" + }, + "require-dev": { + "cebe/markdown": "^1.0", + "commonmark/cmark": "0.31.1", + "commonmark/commonmark.js": "0.31.1", + "composer/package-versions-deprecated": "^1.8", + "embed/embed": "^4.4", + "erusev/parsedown": "^1.0", + "ext-json": "*", + "github/gfm": "0.29.0", + "michelf/php-markdown": "^1.4 || ^2.0", + "nyholm/psr7": "^1.5", + "phpstan/phpstan": "^1.8.2", + "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0", + "scrutinizer/ocular": "^1.8.1", + "symfony/finder": "^5.3 | ^6.0 || ^7.0", + "symfony/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-08-16T11:46:16+00:00" + }, + { + "name": "league/config", + "version": "v1.2.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/config.git", + "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3", + "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3", + "shasum": "" + }, + "require": { + "dflydev/dot-access-data": "^3.0.1", + "nette/schema": "^1.2", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^1.8.2", + "phpunit/phpunit": "^9.5.5", + "scrutinizer/ocular": "^1.8.1", + "unleashedtech/php-coding-standard": "^3.1", + "vimeo/psalm": "^4.7.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.2-dev" + } + }, + "autoload": { + "psr-4": { + "League\\Config\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com", + "role": "Lead Developer" + } + ], + "description": "Define configuration arrays with strict schemas and access values with dot notation", + "homepage": "https://config.thephpleague.com", + "keywords": [ + "array", + "config", + "configuration", + "dot", + "dot-access", + "nested", + "schema" + ], + "support": { + "docs": "https://config.thephpleague.com/", + "issues": "https://github.com/thephpleague/config/issues", + "rss": "https://github.com/thephpleague/config/releases.atom", + "source": "https://github.com/thephpleague/config" + }, + "funding": [ + { + "url": "https://www.colinodell.com/sponsor", + "type": "custom" + }, + { + "url": "https://www.paypal.me/colinpodell/10.00", + "type": "custom" + }, + { + "url": "https://github.com/colinodell", + "type": "github" + } + ], + "time": "2022-12-11T20:36:23+00:00" + }, + { + "name": "league/flysystem", + "version": "3.29.1", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/flysystem.git", + "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/edc1bb7c86fab0776c3287dbd19b5fa278347319", + "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319", + "shasum": "" + }, + "require": { + "league/flysystem-local": "^3.0.0", + "league/mime-type-detection": "^1.0.0", + "php": "^8.0.2" + }, + "conflict": { + "async-aws/core": "<1.19.0", + "async-aws/s3": "<1.14.0", + "aws/aws-sdk-php": "3.209.31 || 3.210.0", + "guzzlehttp/guzzle": "<7.0", + "guzzlehttp/ringphp": "<1.1.1", + "phpseclib/phpseclib": "3.0.15", + "symfony/http-client": "<5.2" + }, + "require-dev": { + "async-aws/s3": "^1.5 || ^2.0", + "async-aws/simple-s3": "^1.1 || ^2.0", + "aws/aws-sdk-php": "^3.295.10", + "composer/semver": "^3.0", + "ext-fileinfo": "*", + "ext-ftp": "*", + "ext-mongodb": "^1.3", + "ext-zip": "*", + "friendsofphp/php-cs-fixer": "^3.5", + "google/cloud-storage": "^1.23", + "guzzlehttp/psr7": "^2.6", + "microsoft/azure-storage-blob": "^1.1", + "mongodb/mongodb": "^1.2", + "phpseclib/phpseclib": "^3.0.36", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^9.5.11|^10.0", + "sabre/dav": "^4.6.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\Flysystem\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "File storage abstraction for PHP", + "keywords": [ + "WebDAV", + "aws", + "cloud", + "file", + "files", + "filesystem", + "filesystems", + "ftp", + "s3", + "sftp", + "storage" + ], + "support": { + "issues": "https://github.com/thephpleague/flysystem/issues", + "source": "https://github.com/thephpleague/flysystem/tree/3.29.1" + }, + "time": "2024-10-08T08:58:34+00:00" + }, + { + "name": "league/flysystem-local", + "version": "3.29.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/flysystem-local.git", + "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/e0e8d52ce4b2ed154148453d321e97c8e931bd27", + "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", + "league/flysystem": "^3.0.0", + "league/mime-type-detection": "^1.0.0", + "php": "^8.0.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\Flysystem\\Local\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "Local filesystem adapter for Flysystem.", + "keywords": [ + "Flysystem", + "file", + "files", + "filesystem", + "local" + ], + "support": { + "source": "https://github.com/thephpleague/flysystem-local/tree/3.29.0" + }, + "time": "2024-08-09T21:24:39+00:00" + }, + { + "name": "league/mime-type-detection", + "version": "1.16.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/mime-type-detection.git", + "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9", + "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.2", + "phpstan/phpstan": "^0.12.68", + "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\MimeTypeDetection\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "Mime-type detection for Flysystem", + "support": { + "issues": "https://github.com/thephpleague/mime-type-detection/issues", + "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0" + }, + "funding": [ + { + "url": "https://github.com/frankdejonge", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/league/flysystem", + "type": "tidelift" + } + ], + "time": "2024-09-21T08:32:55+00:00" + }, + { + "name": "livewire/livewire", + "version": "v3.5.15", + "source": { + "type": "git", + "url": "https://github.com/livewire/livewire.git", + "reference": "11b54c56a135a4eb7e2dd0fd1d8d884af462597a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/livewire/livewire/zipball/11b54c56a135a4eb7e2dd0fd1d8d884af462597a", + "reference": "11b54c56a135a4eb7e2dd0fd1d8d884af462597a", + "shasum": "" + }, + "require": { + "illuminate/database": "^10.0|^11.0", + "illuminate/routing": "^10.0|^11.0", + "illuminate/support": "^10.0|^11.0", + "illuminate/validation": "^10.0|^11.0", + "laravel/prompts": "^0.1.24|^0.2|^0.3", + "league/mime-type-detection": "^1.9", + "php": "^8.1", + "symfony/console": "^6.0|^7.0", + "symfony/http-kernel": "^6.2|^7.0" + }, + "require-dev": { + "calebporzio/sushi": "^2.1", + "laravel/framework": "^10.15.0|^11.0", + "mockery/mockery": "^1.3.1", + "orchestra/testbench": "^8.21.0|^9.0", + "orchestra/testbench-dusk": "^8.24|^9.1", + "phpunit/phpunit": "^10.4", + "psy/psysh": "^0.11.22|^0.12" + }, + "type": "library", + "extra": { + "laravel": { + "aliases": { + "Livewire": "Livewire\\Livewire" + }, + "providers": [ + "Livewire\\LivewireServiceProvider" + ] + } + }, + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Livewire\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Caleb Porzio", + "email": "calebporzio@gmail.com" + } + ], + "description": "A front-end framework for Laravel.", + "support": { + "issues": "https://github.com/livewire/livewire/issues", + "source": "https://github.com/livewire/livewire/tree/v3.5.15" + }, + "funding": [ + { + "url": "https://github.com/livewire", + "type": "github" + } + ], + "time": "2024-11-29T15:49:18+00:00" + }, + { + "name": "livewire/volt", + "version": "v1.6.6", + "source": { + "type": "git", + "url": "https://github.com/livewire/volt.git", + "reference": "9efa7bd50a71ad166ac44ed9322d2c004e0ece5f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/livewire/volt/zipball/9efa7bd50a71ad166ac44ed9322d2c004e0ece5f", + "reference": "9efa7bd50a71ad166ac44ed9322d2c004e0ece5f", + "shasum": "" + }, + "require": { + "laravel/framework": "^10.38.2|^11.0", + "livewire/livewire": "^3.0", + "php": "^8.1" + }, + "require-dev": { + "laravel/folio": "^1.1", + "mockery/mockery": "^1.6", + "orchestra/testbench": "^8.15.0|^9.0", + "pestphp/pest": "^2.9.5", + "phpstan/phpstan": "^1.10" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + }, + "laravel": { + "providers": [ + "Livewire\\Volt\\VoltServiceProvider" + ] + } + }, + "autoload": { + "files": [ + "functions.php" + ], + "psr-4": { + "Livewire\\Volt\\": "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": "An elegantly crafted functional API for Laravel Livewire.", + "homepage": "https://github.com/livewire/volt", + "keywords": [ + "laravel", + "livewire", + "volt" + ], + "support": { + "issues": "https://github.com/livewire/volt/issues", + "source": "https://github.com/livewire/volt" + }, + "time": "2024-11-12T14:51:01+00:00" + }, + { + "name": "masterminds/html5", + "version": "2.9.0", + "source": { + "type": "git", + "url": "https://github.com/Masterminds/html5-php.git", + "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6", + "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "php": ">=5.3.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.7-dev" + } + }, + "autoload": { + "psr-4": { + "Masterminds\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Matt Butcher", + "email": "technosophos@gmail.com" + }, + { + "name": "Matt Farina", + "email": "matt@mattfarina.com" + }, + { + "name": "Asmir Mustafic", + "email": "goetas@gmail.com" + } + ], + "description": "An HTML5 parser and serializer.", + "homepage": "http://masterminds.github.io/html5-php", + "keywords": [ + "HTML5", + "dom", + "html", + "parser", + "querypath", + "serializer", + "xml" + ], + "support": { + "issues": "https://github.com/Masterminds/html5-php/issues", + "source": "https://github.com/Masterminds/html5-php/tree/2.9.0" + }, + "time": "2024-03-31T07:05:07+00:00" + }, + { + "name": "monolog/monolog", + "version": "3.8.0", + "source": { + "type": "git", + "url": "https://github.com/Seldaek/monolog.git", + "reference": "32e515fdc02cdafbe4593e30a9350d486b125b67" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/32e515fdc02cdafbe4593e30a9350d486b125b67", + "reference": "32e515fdc02cdafbe4593e30a9350d486b125b67", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/log": "^2.0 || ^3.0" + }, + "provide": { + "psr/log-implementation": "3.0.0" + }, + "require-dev": { + "aws/aws-sdk-php": "^3.0", + "doctrine/couchdb": "~1.0@dev", + "elasticsearch/elasticsearch": "^7 || ^8", + "ext-json": "*", + "graylog2/gelf-php": "^1.4.2 || ^2.0", + "guzzlehttp/guzzle": "^7.4.5", + "guzzlehttp/psr7": "^2.2", + "mongodb/mongodb": "^1.8", + "php-amqplib/php-amqplib": "~2.4 || ^3", + "php-console/php-console": "^3.1.8", + "phpstan/phpstan": "^2", + "phpstan/phpstan-deprecation-rules": "^2", + "phpstan/phpstan-strict-rules": "^2", + "phpunit/phpunit": "^10.5.17 || ^11.0.7", + "predis/predis": "^1.1 || ^2", + "rollbar/rollbar": "^4.0", + "ruflin/elastica": "^7 || ^8", + "symfony/mailer": "^5.4 || ^6", + "symfony/mime": "^5.4 || ^6" + }, + "suggest": { + "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", + "doctrine/couchdb": "Allow sending log messages to a CouchDB server", + "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client", + "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)", + "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler", + "ext-mbstring": "Allow to work properly with unicode symbols", + "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)", + "ext-openssl": "Required to send log messages using SSL", + "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)", + "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", + "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)", + "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib", + "rollbar/rollbar": "Allow sending log messages to Rollbar", + "ruflin/elastica": "Allow sending log messages to an Elastic Search server" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Monolog\\": "src/Monolog" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "https://seld.be" + } + ], + "description": "Sends your logs to files, sockets, inboxes, databases and various web services", + "homepage": "https://github.com/Seldaek/monolog", + "keywords": [ + "log", + "logging", + "psr-3" + ], + "support": { + "issues": "https://github.com/Seldaek/monolog/issues", + "source": "https://github.com/Seldaek/monolog/tree/3.8.0" + }, + "funding": [ + { + "url": "https://github.com/Seldaek", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/monolog/monolog", + "type": "tidelift" + } + ], + "time": "2024-11-12T13:57:08+00:00" + }, + { + "name": "nesbot/carbon", + "version": "2.72.5", + "source": { + "type": "git", + "url": "https://github.com/briannesbitt/Carbon.git", + "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed", + "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed", + "shasum": "" + }, + "require": { + "carbonphp/carbon-doctrine-types": "*", + "ext-json": "*", + "php": "^7.1.8 || ^8.0", + "psr/clock": "^1.0", + "symfony/polyfill-mbstring": "^1.0", + "symfony/polyfill-php80": "^1.16", + "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0" + }, + "provide": { + "psr/clock-implementation": "1.0" + }, + "require-dev": { + "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0", + "doctrine/orm": "^2.7 || ^3.0", + "friendsofphp/php-cs-fixer": "^3.0", + "kylekatarnls/multi-tester": "^2.0", + "ondrejmirtes/better-reflection": "*", + "phpmd/phpmd": "^2.9", + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "^0.12.99 || ^1.7.14", + "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6", + "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20", + "squizlabs/php_codesniffer": "^3.4" + }, + "bin": [ + "bin/carbon" + ], + "type": "library", + "extra": { + "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-06-03T19:18:41+00:00" + }, + { + "name": "nette/schema", + "version": "v1.3.2", + "source": { + "type": "git", + "url": "https://github.com/nette/schema.git", + "reference": "da801d52f0354f70a638673c4a0f04e16529431d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d", + "reference": "da801d52f0354f70a638673c4a0f04e16529431d", + "shasum": "" + }, + "require": { + "nette/utils": "^4.0", + "php": "8.1 - 8.4" + }, + "require-dev": { + "nette/tester": "^2.5.2", + "phpstan/phpstan-nette": "^1.0", + "tracy/tracy": "^2.8" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.3-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause", + "GPL-2.0-only", + "GPL-3.0-only" + ], + "authors": [ + { + "name": "David Grudl", + "homepage": "https://davidgrudl.com" + }, + { + "name": "Nette Community", + "homepage": "https://nette.org/contributors" + } + ], + "description": "📐 Nette Schema: validating data structures against a given Schema.", + "homepage": "https://nette.org", + "keywords": [ + "config", + "nette" + ], + "support": { + "issues": "https://github.com/nette/schema/issues", + "source": "https://github.com/nette/schema/tree/v1.3.2" + }, + "time": "2024-10-06T23:10:23+00:00" + }, + { + "name": "nette/utils", + "version": "v4.0.5", + "source": { + "type": "git", + "url": "https://github.com/nette/utils.git", + "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nette/utils/zipball/736c567e257dbe0fcf6ce81b4d6dbe05c6899f96", + "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96", + "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.5" + }, + "time": "2024-08-07T15:39:19+00:00" + }, + { + "name": "nikic/php-parser", + "version": "v5.3.1", + "source": { + "type": "git", + "url": "https://github.com/nikic/PHP-Parser.git", + "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/8eea230464783aa9671db8eea6f8c6ac5285794b", + "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b", + "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.3.1" + }, + "time": "2024-10-08T18:51:32+00:00" + }, + { + "name": "nunomaduro/termwind", + "version": "v1.17.0", + "source": { + "type": "git", + "url": "https://github.com/nunomaduro/termwind.git", + "reference": "5369ef84d8142c1d87e4ec278711d4ece3cbf301" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/5369ef84d8142c1d87e4ec278711d4ece3cbf301", + "reference": "5369ef84d8142c1d87e4ec278711d4ece3cbf301", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "php": "^8.1", + "symfony/console": "^6.4.15" + }, + "require-dev": { + "illuminate/console": "^10.48.24", + "illuminate/support": "^10.48.24", + "laravel/pint": "^1.18.2", + "pestphp/pest": "^2.36.0", + "pestphp/pest-plugin-mock": "2.0.0", + "phpstan/phpstan": "^1.12.11", + "phpstan/phpstan-strict-rules": "^1.6.1", + "symfony/var-dumper": "^6.4.15", + "thecodingmachine/phpstan-strict-rules": "^1.0.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Termwind\\Laravel\\TermwindServiceProvider" + ] + } + }, + "autoload": { + "files": [ + "src/Functions.php" + ], + "psr-4": { + "Termwind\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "Its like Tailwind CSS, but for the console.", + "keywords": [ + "cli", + "console", + "css", + "package", + "php", + "style" + ], + "support": { + "issues": "https://github.com/nunomaduro/termwind/issues", + "source": "https://github.com/nunomaduro/termwind/tree/v1.17.0" + }, + "funding": [ + { + "url": "https://www.paypal.com/paypalme/enunomaduro", + "type": "custom" + }, + { + "url": "https://github.com/nunomaduro", + "type": "github" + }, + { + "url": "https://github.com/xiCO2k", + "type": "github" + } + ], + "time": "2024-11-21T10:36:35+00:00" + }, + { + "name": "phpoption/phpoption", + "version": "1.9.3", + "source": { + "type": "git", + "url": "https://github.com/schmittjoh/php-option.git", + "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54", + "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + }, + "branch-alias": { + "dev-master": "1.9-dev" + } + }, + "autoload": { + "psr-4": { + "PhpOption\\": "src/PhpOption/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Johannes M. Schmitt", + "email": "schmittjoh@gmail.com", + "homepage": "https://github.com/schmittjoh" + }, + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + } + ], + "description": "Option Type for PHP", + "keywords": [ + "language", + "option", + "php", + "type" + ], + "support": { + "issues": "https://github.com/schmittjoh/php-option/issues", + "source": "https://github.com/schmittjoh/php-option/tree/1.9.3" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption", + "type": "tidelift" + } + ], + "time": "2024-07-20T21:41:07+00:00" + }, + { + "name": "psr/clock", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/clock.git", + "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d", + "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d", + "shasum": "" + }, + "require": { + "php": "^7.0 || ^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Psr\\Clock\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for reading the clock.", + "homepage": "https://github.com/php-fig/clock", + "keywords": [ + "clock", + "now", + "psr", + "psr-20", + "time" + ], + "support": { + "issues": "https://github.com/php-fig/clock/issues", + "source": "https://github.com/php-fig/clock/tree/1.0.0" + }, + "time": "2022-11-25T14:36:26+00:00" + }, + { + "name": "psr/container", + "version": "2.0.2", + "source": { + "type": "git", + "url": "https://github.com/php-fig/container.git", + "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963", + "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963", + "shasum": "" + }, + "require": { + "php": ">=7.4.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Container\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common Container Interface (PHP FIG PSR-11)", + "homepage": "https://github.com/php-fig/container", + "keywords": [ + "PSR-11", + "container", + "container-interface", + "container-interop", + "psr" + ], + "support": { + "issues": "https://github.com/php-fig/container/issues", + "source": "https://github.com/php-fig/container/tree/2.0.2" + }, + "time": "2021-11-05T16:47:00+00:00" + }, + { + "name": "psr/event-dispatcher", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/event-dispatcher.git", + "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0", + "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0", + "shasum": "" + }, + "require": { + "php": ">=7.2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\EventDispatcher\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Standard interfaces for event handling.", + "keywords": [ + "events", + "psr", + "psr-14" + ], + "support": { + "issues": "https://github.com/php-fig/event-dispatcher/issues", + "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0" + }, + "time": "2019-01-08T18:20:26+00:00" + }, + { + "name": "psr/http-client", + "version": "1.0.3", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-client.git", + "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90", + "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90", + "shasum": "" + }, + "require": { + "php": "^7.0 || ^8.0", + "psr/http-message": "^1.0 || ^2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Client\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for HTTP clients", + "homepage": "https://github.com/php-fig/http-client", + "keywords": [ + "http", + "http-client", + "psr", + "psr-18" + ], + "support": { + "source": "https://github.com/php-fig/http-client" + }, + "time": "2023-09-23T14:17:50+00:00" + }, + { + "name": "psr/http-factory", + "version": "1.1.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-factory.git", + "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a", + "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a", + "shasum": "" + }, + "require": { + "php": ">=7.1", + "psr/http-message": "^1.0 || ^2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Message\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories", + "keywords": [ + "factory", + "http", + "message", + "psr", + "psr-17", + "psr-7", + "request", + "response" + ], + "support": { + "source": "https://github.com/php-fig/http-factory" + }, + "time": "2024-04-15T12:06:14+00:00" + }, + { + "name": "psr/http-message", + "version": "2.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-message.git", + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71", + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Message\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for HTTP messages", + "homepage": "https://github.com/php-fig/http-message", + "keywords": [ + "http", + "http-message", + "psr", + "psr-7", + "request", + "response" + ], + "support": { + "source": "https://github.com/php-fig/http-message/tree/2.0" + }, + "time": "2023-04-04T09:54:51+00:00" + }, + { + "name": "psr/log", + "version": "3.0.2", + "source": { + "type": "git", + "url": "https://github.com/php-fig/log.git", + "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", + "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", + "shasum": "" + }, + "require": { + "php": ">=8.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Log\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for logging libraries", + "homepage": "https://github.com/php-fig/log", + "keywords": [ + "log", + "psr", + "psr-3" + ], + "support": { + "source": "https://github.com/php-fig/log/tree/3.0.2" + }, + "time": "2024-09-11T13:17:53+00:00" + }, + { + "name": "psr/simple-cache", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/simple-cache.git", + "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865", + "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865", + "shasum": "" + }, + "require": { + "php": ">=8.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\SimpleCache\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interfaces for simple caching", + "keywords": [ + "cache", + "caching", + "psr", + "psr-16", + "simple-cache" + ], + "support": { + "source": "https://github.com/php-fig/simple-cache/tree/3.0.0" + }, + "time": "2021-10-29T13:26:27+00:00" + }, + { + "name": "psy/psysh", + "version": "v0.12.5", + "source": { + "type": "git", + "url": "https://github.com/bobthecow/psysh.git", + "reference": "36a03ff27986682c22985e56aabaf840dd173cb5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/36a03ff27986682c22985e56aabaf840dd173cb5", + "reference": "36a03ff27986682c22985e56aabaf840dd173cb5", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-tokenizer": "*", + "nikic/php-parser": "^5.0 || ^4.0", + "php": "^8.0 || ^7.4", + "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4", + "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4" + }, + "conflict": { + "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.2" + }, + "suggest": { + "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)", + "ext-pdo-sqlite": "The doc command requires SQLite to work.", + "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well." + }, + "bin": [ + "bin/psysh" + ], + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": false, + "forward-command": false + }, + "branch-alias": { + "dev-main": "0.12.x-dev" + } + }, + "autoload": { + "files": [ + "src/functions.php" + ], + "psr-4": { + "Psy\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Justin Hileman", + "email": "justin@justinhileman.info", + "homepage": "http://justinhileman.com" + } + ], + "description": "An interactive shell for modern PHP.", + "homepage": "http://psysh.org", + "keywords": [ + "REPL", + "console", + "interactive", + "shell" + ], + "support": { + "issues": "https://github.com/bobthecow/psysh/issues", + "source": "https://github.com/bobthecow/psysh/tree/v0.12.5" + }, + "time": "2024-11-29T06:14:30+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": "sabberworm/php-css-parser", + "version": "v8.7.0", + "source": { + "type": "git", + "url": "https://github.com/MyIntervals/PHP-CSS-Parser.git", + "reference": "f414ff953002a9b18e3a116f5e462c56f21237cf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/MyIntervals/PHP-CSS-Parser/zipball/f414ff953002a9b18e3a116f5e462c56f21237cf", + "reference": "f414ff953002a9b18e3a116f5e462c56f21237cf", + "shasum": "" + }, + "require": { + "ext-iconv": "*", + "php": "^5.6.20 || ^7.0.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0" + }, + "require-dev": { + "phpunit/phpunit": "5.7.27 || 6.5.14 || 7.5.20 || 8.5.40" + }, + "suggest": { + "ext-mbstring": "for parsing UTF-8 CSS" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "9.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Sabberworm\\CSS\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Raphael Schweikert" + }, + { + "name": "Oliver Klee", + "email": "github@oliverklee.de" + }, + { + "name": "Jake Hotson", + "email": "jake.github@qzdesign.co.uk" + } + ], + "description": "Parser for CSS Files written in PHP", + "homepage": "https://www.sabberworm.com/blog/2010/6/10/php-css-parser", + "keywords": [ + "css", + "parser", + "stylesheet" + ], + "support": { + "issues": "https://github.com/MyIntervals/PHP-CSS-Parser/issues", + "source": "https://github.com/MyIntervals/PHP-CSS-Parser/tree/v8.7.0" + }, + "time": "2024-10-27T17:38:32+00:00" + }, + { + "name": "symfony/console", + "version": "v6.4.15", + "source": { + "type": "git", + "url": "https://github.com/symfony/console.git", + "reference": "f1fc6f47283e27336e7cebb9e8946c8de7bff9bd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/console/zipball/f1fc6f47283e27336e7cebb9e8946c8de7bff9bd", + "reference": "f1fc6f47283e27336e7cebb9e8946c8de7bff9bd", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/string": "^5.4|^6.0|^7.0" + }, + "conflict": { + "symfony/dependency-injection": "<5.4", + "symfony/dotenv": "<5.4", + "symfony/event-dispatcher": "<5.4", + "symfony/lock": "<5.4", + "symfony/process": "<5.4" + }, + "provide": { + "psr/log-implementation": "1.0|2.0|3.0" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^5.4|^6.0|^7.0", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/event-dispatcher": "^5.4|^6.0|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/lock": "^5.4|^6.0|^7.0", + "symfony/messenger": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.0|^7.0", + "symfony/stopwatch": "^5.4|^6.0|^7.0", + "symfony/var-dumper": "^5.4|^6.0|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Console\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Eases the creation of beautiful and testable command line interfaces", + "homepage": "https://symfony.com", + "keywords": [ + "cli", + "command-line", + "console", + "terminal" + ], + "support": { + "source": "https://github.com/symfony/console/tree/v6.4.15" + }, + "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-11-06T14:19:14+00:00" + }, + { + "name": "symfony/css-selector", + "version": "v6.4.13", + "source": { + "type": "git", + "url": "https://github.com/symfony/css-selector.git", + "reference": "cb23e97813c5837a041b73a6d63a9ddff0778f5e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/cb23e97813c5837a041b73a6d63a9ddff0778f5e", + "reference": "cb23e97813c5837a041b73a6d63a9ddff0778f5e", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "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/v6.4.13" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:18:03+00:00" + }, + { + "name": "symfony/deprecation-contracts", + "version": "v3.5.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/deprecation-contracts.git", + "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6", + "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "extra": { + "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.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:20:29+00:00" + }, + { + "name": "symfony/error-handler", + "version": "v6.4.14", + "source": { + "type": "git", + "url": "https://github.com/symfony/error-handler.git", + "reference": "9e024324511eeb00983ee76b9aedc3e6ecd993d9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/9e024324511eeb00983ee76b9aedc3e6ecd993d9", + "reference": "9e024324511eeb00983ee76b9aedc3e6ecd993d9", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/log": "^1|^2|^3", + "symfony/var-dumper": "^5.4|^6.0|^7.0" + }, + "conflict": { + "symfony/deprecation-contracts": "<2.5", + "symfony/http-kernel": "<6.4" + }, + "require-dev": { + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/serializer": "^5.4|^6.0|^7.0" + }, + "bin": [ + "Resources/bin/patch-type-declarations" + ], + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\ErrorHandler\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides tools to manage errors and ease debugging PHP code", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/error-handler/tree/v6.4.14" + }, + "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-11-05T15:34:40+00:00" + }, + { + "name": "symfony/event-dispatcher", + "version": "v6.4.13", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e", + "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/event-dispatcher-contracts": "^2.5|^3" + }, + "conflict": { + "symfony/dependency-injection": "<5.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": "^5.4|^6.0|^7.0", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/error-handler": "^5.4|^6.0|^7.0", + "symfony/expression-language": "^5.4|^6.0|^7.0", + "symfony/http-foundation": "^5.4|^6.0|^7.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/stopwatch": "^5.4|^6.0|^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/v6.4.13" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:18:03+00:00" + }, + { + "name": "symfony/event-dispatcher-contracts", + "version": "v3.5.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher-contracts.git", + "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f", + "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/event-dispatcher": "^1" + }, + "type": "library", + "extra": { + "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.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:20:29+00:00" + }, + { + "name": "symfony/finder", + "version": "v6.4.13", + "source": { + "type": "git", + "url": "https://github.com/symfony/finder.git", + "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/finder/zipball/daea9eca0b08d0ed1dc9ab702a46128fd1be4958", + "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "symfony/filesystem": "^6.0|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Finder\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Finds files and directories via an intuitive fluent interface", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/finder/tree/v6.4.13" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-10-01T08:30:56+00:00" + }, + { + "name": "symfony/http-foundation", + "version": "v6.4.16", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-foundation.git", + "reference": "431771b7a6f662f1575b3cfc8fd7617aa9864d57" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/431771b7a6f662f1575b3cfc8fd7617aa9864d57", + "reference": "431771b7a6f662f1575b3cfc8fd7617aa9864d57", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.1", + "symfony/polyfill-php83": "^1.27" + }, + "conflict": { + "symfony/cache": "<6.4.12|>=7.0,<7.1.5" + }, + "require-dev": { + "doctrine/dbal": "^2.13.1|^3|^4", + "predis/predis": "^1.1|^2.0", + "symfony/cache": "^6.4.12|^7.1.5", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/expression-language": "^5.4|^6.0|^7.0", + "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0", + "symfony/mime": "^5.4|^6.0|^7.0", + "symfony/rate-limiter": "^5.4|^6.0|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\HttpFoundation\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Defines an object-oriented layer for the HTTP specification", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/http-foundation/tree/v6.4.16" + }, + "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-11-13T18:58:10+00:00" + }, + { + "name": "symfony/http-kernel", + "version": "v6.4.16", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-kernel.git", + "reference": "8838b5b21d807923b893ccbfc2cbeda0f1bc00f0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/8838b5b21d807923b893ccbfc2cbeda0f1bc00f0", + "reference": "8838b5b21d807923b893ccbfc2cbeda0f1bc00f0", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/log": "^1|^2|^3", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/error-handler": "^6.4|^7.0", + "symfony/event-dispatcher": "^5.4|^6.0|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/polyfill-ctype": "^1.8" + }, + "conflict": { + "symfony/browser-kit": "<5.4", + "symfony/cache": "<5.4", + "symfony/config": "<6.1", + "symfony/console": "<5.4", + "symfony/dependency-injection": "<6.4", + "symfony/doctrine-bridge": "<5.4", + "symfony/form": "<5.4", + "symfony/http-client": "<5.4", + "symfony/http-client-contracts": "<2.5", + "symfony/mailer": "<5.4", + "symfony/messenger": "<5.4", + "symfony/translation": "<5.4", + "symfony/translation-contracts": "<2.5", + "symfony/twig-bridge": "<5.4", + "symfony/validator": "<6.4", + "symfony/var-dumper": "<6.3", + "twig/twig": "<2.13" + }, + "provide": { + "psr/log-implementation": "1.0|2.0|3.0" + }, + "require-dev": { + "psr/cache": "^1.0|^2.0|^3.0", + "symfony/browser-kit": "^5.4|^6.0|^7.0", + "symfony/clock": "^6.2|^7.0", + "symfony/config": "^6.1|^7.0", + "symfony/console": "^5.4|^6.0|^7.0", + "symfony/css-selector": "^5.4|^6.0|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/dom-crawler": "^5.4|^6.0|^7.0", + "symfony/expression-language": "^5.4|^6.0|^7.0", + "symfony/finder": "^5.4|^6.0|^7.0", + "symfony/http-client-contracts": "^2.5|^3", + "symfony/process": "^5.4|^6.0|^7.0", + "symfony/property-access": "^5.4.5|^6.0.5|^7.0", + "symfony/routing": "^5.4|^6.0|^7.0", + "symfony/serializer": "^6.4.4|^7.0.4", + "symfony/stopwatch": "^5.4|^6.0|^7.0", + "symfony/translation": "^5.4|^6.0|^7.0", + "symfony/translation-contracts": "^2.5|^3", + "symfony/uid": "^5.4|^6.0|^7.0", + "symfony/validator": "^6.4|^7.0", + "symfony/var-dumper": "^5.4|^6.4|^7.0", + "symfony/var-exporter": "^6.2|^7.0", + "twig/twig": "^2.13|^3.0.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\HttpKernel\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides a structured process for converting a Request into a Response", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/http-kernel/tree/v6.4.16" + }, + "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-11-27T12:49:36+00:00" + }, + { + "name": "symfony/mailer", + "version": "v6.4.13", + "source": { + "type": "git", + "url": "https://github.com/symfony/mailer.git", + "reference": "c2f7e0d8d7ac8fe25faccf5d8cac462805db2663" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/mailer/zipball/c2f7e0d8d7ac8fe25faccf5d8cac462805db2663", + "reference": "c2f7e0d8d7ac8fe25faccf5d8cac462805db2663", + "shasum": "" + }, + "require": { + "egulias/email-validator": "^2.1.10|^3|^4", + "php": ">=8.1", + "psr/event-dispatcher": "^1", + "psr/log": "^1|^2|^3", + "symfony/event-dispatcher": "^5.4|^6.0|^7.0", + "symfony/mime": "^6.2|^7.0", + "symfony/service-contracts": "^2.5|^3" + }, + "conflict": { + "symfony/http-client-contracts": "<2.5", + "symfony/http-kernel": "<5.4", + "symfony/messenger": "<6.2", + "symfony/mime": "<6.2", + "symfony/twig-bridge": "<6.2.1" + }, + "require-dev": { + "symfony/console": "^5.4|^6.0|^7.0", + "symfony/http-client": "^5.4|^6.0|^7.0", + "symfony/messenger": "^6.2|^7.0", + "symfony/twig-bridge": "^6.2|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Mailer\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Helps sending emails", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/mailer/tree/v6.4.13" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:18:03+00:00" + }, + { + "name": "symfony/mime", + "version": "v6.4.13", + "source": { + "type": "git", + "url": "https://github.com/symfony/mime.git", + "reference": "1de1cf14d99b12c7ebbb850491ec6ae3ed468855" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/mime/zipball/1de1cf14d99b12c7ebbb850491ec6ae3ed468855", + "reference": "1de1cf14d99b12c7ebbb850491ec6ae3ed468855", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-intl-idn": "^1.10", + "symfony/polyfill-mbstring": "^1.0" + }, + "conflict": { + "egulias/email-validator": "~3.0.0", + "phpdocumentor/reflection-docblock": "<3.2.2", + "phpdocumentor/type-resolver": "<1.4.0", + "symfony/mailer": "<5.4", + "symfony/serializer": "<6.4.3|>7.0,<7.0.3" + }, + "require-dev": { + "egulias/email-validator": "^2.1.10|^3.1|^4", + "league/html-to-markdown": "^5.0", + "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.4|^7.0", + "symfony/property-access": "^5.4|^6.0|^7.0", + "symfony/property-info": "^5.4|^6.0|^7.0", + "symfony/serializer": "^6.4.3|^7.0.3" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Mime\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Allows manipulating MIME messages", + "homepage": "https://symfony.com", + "keywords": [ + "mime", + "mime-type" + ], + "support": { + "source": "https://github.com/symfony/mime/tree/v6.4.13" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-10-25T15:07:50+00:00" + }, + { + "name": "symfony/polyfill-ctype", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-ctype.git", + "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638", + "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "provide": { + "ext-ctype": "*" + }, + "suggest": { + "ext-ctype": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Ctype\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Gert de Pagter", + "email": "BackEndTea@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for ctype functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "ctype", + "polyfill", + "portable" + ], + "support": { + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-intl-grapheme", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-grapheme.git", + "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe", + "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Grapheme\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's grapheme_* functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "grapheme", + "intl", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-intl-idn", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-idn.git", + "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773", + "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773", + "shasum": "" + }, + "require": { + "php": ">=7.2", + "symfony/polyfill-intl-normalizer": "^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.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-intl-normalizer", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-normalizer.git", + "reference": "3833d7255cc303546435cb650316bff708a1c75c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c", + "reference": "3833d7255cc303546435cb650316bff708a1c75c", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Normalizer\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's Normalizer class and related functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "intl", + "normalizer", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-mbstring", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-mbstring.git", + "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341", + "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "provide": { + "ext-mbstring": "*" + }, + "suggest": { + "ext-mbstring": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Mbstring\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for the Mbstring extension", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "mbstring", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-php80", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php80.git", + "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8", + "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php80\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ion Bazan", + "email": "ion.bazan@gmail.com" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-php83", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php83.git", + "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491", + "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "type": "library", + "extra": { + "thanks": { + "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.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-uuid", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-uuid.git", + "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2", + "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "provide": { + "ext-uuid": "*" + }, + "suggest": { + "ext-uuid": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "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.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/process", + "version": "v6.4.15", + "source": { + "type": "git", + "url": "https://github.com/symfony/process.git", + "reference": "3cb242f059c14ae08591c5c4087d1fe443564392" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/process/zipball/3cb242f059c14ae08591c5c4087d1fe443564392", + "reference": "3cb242f059c14ae08591c5c4087d1fe443564392", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Process\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Executes commands in sub-processes", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/process/tree/v6.4.15" + }, + "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-11-06T14:19:14+00:00" + }, + { + "name": "symfony/routing", + "version": "v6.4.16", + "source": { + "type": "git", + "url": "https://github.com/symfony/routing.git", + "reference": "91e02e606b4b705c2f4fb42f7e7708b7923a3220" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/routing/zipball/91e02e606b4b705c2f4fb42f7e7708b7923a3220", + "reference": "91e02e606b4b705c2f4fb42f7e7708b7923a3220", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3" + }, + "conflict": { + "doctrine/annotations": "<1.12", + "symfony/config": "<6.2", + "symfony/dependency-injection": "<5.4", + "symfony/yaml": "<5.4" + }, + "require-dev": { + "doctrine/annotations": "^1.12|^2", + "psr/log": "^1|^2|^3", + "symfony/config": "^6.2|^7.0", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/expression-language": "^5.4|^6.0|^7.0", + "symfony/http-foundation": "^5.4|^6.0|^7.0", + "symfony/yaml": "^5.4|^6.0|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Routing\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Maps an HTTP request to a set of configuration variables", + "homepage": "https://symfony.com", + "keywords": [ + "router", + "routing", + "uri", + "url" + ], + "support": { + "source": "https://github.com/symfony/routing/tree/v6.4.16" + }, + "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-11-13T15:31:34+00:00" + }, + { + "name": "symfony/service-contracts", + "version": "v3.5.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/service-contracts.git", + "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0", + "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/container": "^1.1|^2.0", + "symfony/deprecation-contracts": "^2.5|^3" + }, + "conflict": { + "ext-psr": "<1.1|>=2" + }, + "type": "library", + "extra": { + "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.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:20:29+00:00" + }, + { + "name": "symfony/string", + "version": "v6.4.15", + "source": { + "type": "git", + "url": "https://github.com/symfony/string.git", + "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/string/zipball/73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f", + "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "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/error-handler": "^5.4|^6.0|^7.0", + "symfony/http-client": "^5.4|^6.0|^7.0", + "symfony/intl": "^6.2|^7.0", + "symfony/translation-contracts": "^2.5|^3.0", + "symfony/var-exporter": "^5.4|^6.0|^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/v6.4.15" + }, + "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-11-13T13:31:12+00:00" + }, + { + "name": "symfony/translation", + "version": "v6.4.13", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation.git", + "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation/zipball/bee9bfabfa8b4045a66bf82520e492cddbaffa66", + "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.0", + "symfony/translation-contracts": "^2.5|^3.0" + }, + "conflict": { + "symfony/config": "<5.4", + "symfony/console": "<5.4", + "symfony/dependency-injection": "<5.4", + "symfony/http-client-contracts": "<2.5", + "symfony/http-kernel": "<5.4", + "symfony/service-contracts": "<2.5", + "symfony/twig-bundle": "<5.4", + "symfony/yaml": "<5.4" + }, + "provide": { + "symfony/translation-implementation": "2.3|3.0" + }, + "require-dev": { + "nikic/php-parser": "^4.18|^5.0", + "psr/log": "^1|^2|^3", + "symfony/config": "^5.4|^6.0|^7.0", + "symfony/console": "^5.4|^6.0|^7.0", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/finder": "^5.4|^6.0|^7.0", + "symfony/http-client-contracts": "^2.5|^3.0", + "symfony/http-kernel": "^5.4|^6.0|^7.0", + "symfony/intl": "^5.4|^6.0|^7.0", + "symfony/polyfill-intl-icu": "^1.21", + "symfony/routing": "^5.4|^6.0|^7.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/yaml": "^5.4|^6.0|^7.0" + }, + "type": "library", + "autoload": { + "files": [ + "Resources/functions.php" + ], + "psr-4": { + "Symfony\\Component\\Translation\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides tools to internationalize your application", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/translation/tree/v6.4.13" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-27T18:14:25+00:00" + }, + { + "name": "symfony/translation-contracts", + "version": "v3.5.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation-contracts.git", + "reference": "4667ff3bd513750603a09c8dedbea942487fb07c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c", + "reference": "4667ff3bd513750603a09c8dedbea942487fb07c", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "extra": { + "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.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:20:29+00:00" + }, + { + "name": "symfony/uid", + "version": "v6.4.13", + "source": { + "type": "git", + "url": "https://github.com/symfony/uid.git", + "reference": "18eb207f0436a993fffbdd811b5b8fa35fa5e007" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/uid/zipball/18eb207f0436a993fffbdd811b5b8fa35fa5e007", + "reference": "18eb207f0436a993fffbdd811b5b8fa35fa5e007", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/polyfill-uuid": "^1.15" + }, + "require-dev": { + "symfony/console": "^5.4|^6.0|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Uid\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Grégoire Pineau", + "email": "lyrixx@lyrixx.info" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides an object-oriented API to generate and represent UIDs", + "homepage": "https://symfony.com", + "keywords": [ + "UID", + "ulid", + "uuid" + ], + "support": { + "source": "https://github.com/symfony/uid/tree/v6.4.13" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:18:03+00:00" + }, + { + "name": "symfony/var-dumper", + "version": "v6.4.15", + "source": { + "type": "git", + "url": "https://github.com/symfony/var-dumper.git", + "reference": "38254d5a5ac2e61f2b52f9caf54e7aa3c9d36b80" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/38254d5a5ac2e61f2b52f9caf54e7aa3c9d36b80", + "reference": "38254d5a5ac2e61f2b52f9caf54e7aa3c9d36b80", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/console": "<5.4" + }, + "require-dev": { + "ext-iconv": "*", + "symfony/console": "^5.4|^6.0|^7.0", + "symfony/error-handler": "^6.3|^7.0", + "symfony/http-kernel": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.0|^7.0", + "symfony/uid": "^5.4|^6.0|^7.0", + "twig/twig": "^2.13|^3.0.4" + }, + "bin": [ + "Resources/bin/var-dump-server" + ], + "type": "library", + "autoload": { + "files": [ + "Resources/functions/dump.php" + ], + "psr-4": { + "Symfony\\Component\\VarDumper\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides mechanisms for walking through any arbitrary PHP variable", + "homepage": "https://symfony.com", + "keywords": [ + "debug", + "dump" + ], + "support": { + "source": "https://github.com/symfony/var-dumper/tree/v6.4.15" + }, + "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-11-08T15:28:48+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": "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.3", + "source": { + "type": "git", + "url": "https://github.com/voku/portable-ascii.git", + "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d", + "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d", + "shasum": "" + }, + "require": { + "php": ">=7.0.0" + }, + "require-dev": { + "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0" + }, + "suggest": { + "ext-intl": "Use Intl for transliterator_transliterate() support" + }, + "type": "library", + "autoload": { + "psr-4": { + "voku\\": "src/voku/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Lars Moelleken", + "homepage": "https://www.moelleken.org/" + } + ], + "description": "Portable ASCII library - performance optimized (ascii) string functions for php.", + "homepage": "https://github.com/voku/portable-ascii", + "keywords": [ + "ascii", + "clean", + "php" + ], + "support": { + "issues": "https://github.com/voku/portable-ascii/issues", + "source": "https://github.com/voku/portable-ascii/tree/2.0.3" + }, + "funding": [ + { + "url": "https://www.paypal.me/moelleken", + "type": "custom" + }, + { + "url": "https://github.com/voku", + "type": "github" + }, + { + "url": "https://opencollective.com/portable-ascii", + "type": "open_collective" + }, + { + "url": "https://www.patreon.com/voku", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii", + "type": "tidelift" + } + ], + "time": "2024-11-21T01:49:47+00:00" + }, + { + "name": "webmozart/assert", + "version": "1.11.0", + "source": { + "type": "git", + "url": "https://github.com/webmozarts/assert.git", + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991", + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991", + "shasum": "" + }, + "require": { + "ext-ctype": "*", + "php": "^7.2 || ^8.0" + }, + "conflict": { + "phpstan/phpstan": "<0.12.20", + "vimeo/psalm": "<4.6.1 || 4.6.2" + }, + "require-dev": { + "phpunit/phpunit": "^8.5.13" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.10-dev" + } + }, + "autoload": { + "psr-4": { + "Webmozart\\Assert\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "Assertions to validate method input/output with nice error messages.", + "keywords": [ + "assert", + "check", + "validate" + ], + "support": { + "issues": "https://github.com/webmozarts/assert/issues", + "source": "https://github.com/webmozarts/assert/tree/1.11.0" + }, + "time": "2022-06-03T18:03:27+00:00" + } + ], + "packages-dev": [ + { + "name": "fakerphp/faker", + "version": "v1.24.1", + "source": { + "type": "git", + "url": "https://github.com/FakerPHP/Faker.git", + "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5", + "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5", + "shasum": "" + }, + "require": { + "php": "^7.4 || ^8.0", + "psr/container": "^1.0 || ^2.0", + "symfony/deprecation-contracts": "^2.2 || ^3.0" + }, + "conflict": { + "fzaninotto/faker": "*" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.4.1", + "doctrine/persistence": "^1.3 || ^2.0", + "ext-intl": "*", + "phpunit/phpunit": "^9.5.26", + "symfony/phpunit-bridge": "^5.4.16" + }, + "suggest": { + "doctrine/orm": "Required to use Faker\\ORM\\Doctrine", + "ext-curl": "Required by Faker\\Provider\\Image to download images.", + "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.", + "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.", + "ext-mbstring": "Required for multibyte Unicode string functionality." + }, + "type": "library", + "autoload": { + "psr-4": { + "Faker\\": "src/Faker/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "François Zaninotto" + } + ], + "description": "Faker is a PHP library that generates fake data for you.", + "keywords": [ + "data", + "faker", + "fixtures" + ], + "support": { + "issues": "https://github.com/FakerPHP/Faker/issues", + "source": "https://github.com/FakerPHP/Faker/tree/v1.24.1" + }, + "time": "2024-11-21T13:46:39+00:00" + }, + { + "name": "filp/whoops", + "version": "2.16.0", + "source": { + "type": "git", + "url": "https://github.com/filp/whoops.git", + "reference": "befcdc0e5dce67252aa6322d82424be928214fa2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/filp/whoops/zipball/befcdc0e5dce67252aa6322d82424be928214fa2", + "reference": "befcdc0e5dce67252aa6322d82424be928214fa2", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0", + "psr/log": "^1.0.1 || ^2.0 || ^3.0" + }, + "require-dev": { + "mockery/mockery": "^1.0", + "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3", + "symfony/var-dumper": "^4.0 || ^5.0" + }, + "suggest": { + "symfony/var-dumper": "Pretty print complex values better with var-dumper available", + "whoops/soap": "Formats errors as SOAP responses" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.7-dev" + } + }, + "autoload": { + "psr-4": { + "Whoops\\": "src/Whoops/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Filipe Dobreira", + "homepage": "https://github.com/filp", + "role": "Developer" + } + ], + "description": "php error handling for cool kids", + "homepage": "https://filp.github.io/whoops/", + "keywords": [ + "error", + "exception", + "handling", + "library", + "throwable", + "whoops" + ], + "support": { + "issues": "https://github.com/filp/whoops/issues", + "source": "https://github.com/filp/whoops/tree/2.16.0" + }, + "funding": [ + { + "url": "https://github.com/denis-sokolov", + "type": "github" + } + ], + "time": "2024-09-25T12: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.18.3", + "source": { + "type": "git", + "url": "https://github.com/laravel/pint.git", + "reference": "cef51821608239040ab841ad6e1c6ae502ae3026" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/pint/zipball/cef51821608239040ab841ad6e1c6ae502ae3026", + "reference": "cef51821608239040ab841ad6e1c6ae502ae3026", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-mbstring": "*", + "ext-tokenizer": "*", + "ext-xml": "*", + "php": "^8.1.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.65.0", + "illuminate/view": "^10.48.24", + "larastan/larastan": "^2.9.11", + "laravel-zero/framework": "^10.4.0", + "mockery/mockery": "^1.6.12", + "nunomaduro/termwind": "^1.17.0", + "pestphp/pest": "^2.36.0" + }, + "bin": [ + "builds/pint" + ], + "type": "project", + "autoload": { + "psr-4": { + "App\\": "app/", + "Database\\Seeders\\": "database/seeders/", + "Database\\Factories\\": "database/factories/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "An opinionated code formatter for PHP.", + "homepage": "https://laravel.com", + "keywords": [ + "format", + "formatter", + "lint", + "linter", + "php" + ], + "support": { + "issues": "https://github.com/laravel/pint/issues", + "source": "https://github.com/laravel/pint" + }, + "time": "2024-11-26T15:34:00+00:00" + }, + { + "name": "laravel/sail", + "version": "v1.39.1", + "source": { + "type": "git", + "url": "https://github.com/laravel/sail.git", + "reference": "1a3c7291bc88de983b66688919a4d298d68ddec7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/sail/zipball/1a3c7291bc88de983b66688919a4d298d68ddec7", + "reference": "1a3c7291bc88de983b66688919a4d298d68ddec7", + "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-11-27T15:42:28+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.1", + "source": { + "type": "git", + "url": "https://github.com/myclabs/DeepCopy.git", + "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845", + "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845", + "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.1" + }, + "funding": [ + { + "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", + "type": "tidelift" + } + ], + "time": "2024-11-08T17:47:46+00:00" + }, + { + "name": "nunomaduro/collision", + "version": "v7.11.0", + "source": { + "type": "git", + "url": "https://github.com/nunomaduro/collision.git", + "reference": "994ea93df5d4132f69d3f1bd74730509df6e8a05" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nunomaduro/collision/zipball/994ea93df5d4132f69d3f1bd74730509df6e8a05", + "reference": "994ea93df5d4132f69d3f1bd74730509df6e8a05", + "shasum": "" + }, + "require": { + "filp/whoops": "^2.16.0", + "nunomaduro/termwind": "^1.15.1", + "php": "^8.1.0", + "symfony/console": "^6.4.12" + }, + "conflict": { + "laravel/framework": ">=11.0.0" + }, + "require-dev": { + "brianium/paratest": "^7.3.1", + "laravel/framework": "^10.48.22", + "laravel/pint": "^1.18.1", + "laravel/sail": "^1.36.0", + "laravel/sanctum": "^3.3.3", + "laravel/tinker": "^2.10.0", + "nunomaduro/larastan": "^2.9.8", + "orchestra/testbench-core": "^8.28.3", + "pestphp/pest": "^2.35.1", + "phpunit/phpunit": "^10.5.36", + "sebastian/environment": "^6.1.0", + "spatie/laravel-ignition": "^2.8.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider" + ] + } + }, + "autoload": { + "files": [ + "./src/Adapters/Phpunit/Autoload.php" + ], + "psr-4": { + "NunoMaduro\\Collision\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "Cli error handling for console/command-line PHP applications.", + "keywords": [ + "artisan", + "cli", + "command-line", + "console", + "error", + "handling", + "laravel", + "laravel-zero", + "php", + "symfony" + ], + "support": { + "issues": "https://github.com/nunomaduro/collision/issues", + "source": "https://github.com/nunomaduro/collision" + }, + "funding": [ + { + "url": "https://www.paypal.com/paypalme/enunomaduro", + "type": "custom" + }, + { + "url": "https://github.com/nunomaduro", + "type": "github" + }, + { + "url": "https://www.patreon.com/nunomaduro", + "type": "patreon" + } + ], + "time": "2024-10-15T15:12:40+00:00" + }, + { + "name": "phar-io/manifest", + "version": "2.0.4", + "source": { + "type": "git", + "url": "https://github.com/phar-io/manifest.git", + "reference": "54750ef60c58e43759730615a392c31c80e23176" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176", + "reference": "54750ef60c58e43759730615a392c31c80e23176", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "ext-phar": "*", + "ext-xmlwriter": "*", + "phar-io/version": "^3.0.1", + "php": "^7.2 || ^8.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", + "support": { + "issues": "https://github.com/phar-io/manifest/issues", + "source": "https://github.com/phar-io/manifest/tree/2.0.4" + }, + "funding": [ + { + "url": "https://github.com/theseer", + "type": "github" + } + ], + "time": "2024-03-03T12:33:53+00:00" + }, + { + "name": "phar-io/version", + "version": "3.2.1", + "source": { + "type": "git", + "url": "https://github.com/phar-io/version.git", + "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74", + "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Library for handling version information and constraints", + "support": { + "issues": "https://github.com/phar-io/version/issues", + "source": "https://github.com/phar-io/version/tree/3.2.1" + }, + "time": "2022-02-21T01:04:05+00:00" + }, + { + "name": "phpunit/php-code-coverage", + "version": "10.1.16", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-code-coverage.git", + "reference": "7e308268858ed6baedc8704a304727d20bc07c77" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77", + "reference": "7e308268858ed6baedc8704a304727d20bc07c77", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "ext-xmlwriter": "*", + "nikic/php-parser": "^4.19.1 || ^5.1.0", + "php": ">=8.1", + "phpunit/php-file-iterator": "^4.1.0", + "phpunit/php-text-template": "^3.0.1", + "sebastian/code-unit-reverse-lookup": "^3.0.0", + "sebastian/complexity": "^3.2.0", + "sebastian/environment": "^6.1.0", + "sebastian/lines-of-code": "^2.0.2", + "sebastian/version": "^4.0.1", + "theseer/tokenizer": "^1.2.3" + }, + "require-dev": { + "phpunit/phpunit": "^10.1" + }, + "suggest": { + "ext-pcov": "PHP extension that provides line coverage", + "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "10.1.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", + "homepage": "https://github.com/sebastianbergmann/php-code-coverage", + "keywords": [ + "coverage", + "testing", + "xunit" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", + "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy", + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.16" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-08-22T04:31:57+00:00" + }, + { + "name": "phpunit/php-file-iterator", + "version": "4.1.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-file-iterator.git", + "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c", + "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "FilterIterator implementation that filters files based on a list of suffixes.", + "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", + "keywords": [ + "filesystem", + "iterator" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", + "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy", + "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-08-31T06:24:48+00:00" + }, + { + "name": "phpunit/php-invoker", + "version": "4.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-invoker.git", + "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7", + "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "ext-pcntl": "*", + "phpunit/phpunit": "^10.0" + }, + "suggest": { + "ext-pcntl": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Invoke callables with a timeout", + "homepage": "https://github.com/sebastianbergmann/php-invoker/", + "keywords": [ + "process" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-invoker/issues", + "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T06:56:09+00:00" + }, + { + "name": "phpunit/php-text-template", + "version": "3.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-text-template.git", + "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748", + "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Simple template engine.", + "homepage": "https://github.com/sebastianbergmann/php-text-template/", + "keywords": [ + "template" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-text-template/issues", + "security": "https://github.com/sebastianbergmann/php-text-template/security/policy", + "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-08-31T14:07:24+00:00" + }, + { + "name": "phpunit/php-timer", + "version": "6.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-timer.git", + "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d", + "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Utility class for timing", + "homepage": "https://github.com/sebastianbergmann/php-timer/", + "keywords": [ + "timer" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-timer/issues", + "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T06:57:52+00:00" + }, + { + "name": "phpunit/phpunit", + "version": "10.5.38", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/phpunit.git", + "reference": "a86773b9e887a67bc53efa9da9ad6e3f2498c132" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a86773b9e887a67bc53efa9da9ad6e3f2498c132", + "reference": "a86773b9e887a67bc53efa9da9ad6e3f2498c132", + "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.1", + "phpunit/php-code-coverage": "^10.1.16", + "phpunit/php-file-iterator": "^4.1.0", + "phpunit/php-invoker": "^4.0.0", + "phpunit/php-text-template": "^3.0.1", + "phpunit/php-timer": "^6.0.0", + "sebastian/cli-parser": "^2.0.1", + "sebastian/code-unit": "^2.0.0", + "sebastian/comparator": "^5.0.3", + "sebastian/diff": "^5.1.1", + "sebastian/environment": "^6.1.0", + "sebastian/exporter": "^5.1.2", + "sebastian/global-state": "^6.0.2", + "sebastian/object-enumerator": "^5.0.0", + "sebastian/recursion-context": "^5.0.0", + "sebastian/type": "^4.0.0", + "sebastian/version": "^4.0.1" + }, + "suggest": { + "ext-soap": "To be able to generate mocks based on WSDL files" + }, + "bin": [ + "phpunit" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "10.5-dev" + } + }, + "autoload": { + "files": [ + "src/Framework/Assert/Functions.php" + ], + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "The PHP Unit Testing framework.", + "homepage": "https://phpunit.de/", + "keywords": [ + "phpunit", + "testing", + "xunit" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/phpunit/issues", + "security": "https://github.com/sebastianbergmann/phpunit/security/policy", + "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.38" + }, + "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-10-28T13:06:21+00:00" + }, + { + "name": "sebastian/cli-parser", + "version": "2.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/cli-parser.git", + "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084", + "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for parsing CLI options", + "homepage": "https://github.com/sebastianbergmann/cli-parser", + "support": { + "issues": "https://github.com/sebastianbergmann/cli-parser/issues", + "security": "https://github.com/sebastianbergmann/cli-parser/security/policy", + "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-02T07:12:49+00:00" + }, + { + "name": "sebastian/code-unit", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit.git", + "reference": "a81fee9eef0b7a76af11d121767abc44c104e503" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503", + "reference": "a81fee9eef0b7a76af11d121767abc44c104e503", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Collection of value objects that represent the PHP code units", + "homepage": "https://github.com/sebastianbergmann/code-unit", + "support": { + "issues": "https://github.com/sebastianbergmann/code-unit/issues", + "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T06:58:43+00:00" + }, + { + "name": "sebastian/code-unit-reverse-lookup", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", + "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d", + "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Looks up which function or method a line of code belongs to", + "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", + "support": { + "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues", + "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T06:59:15+00:00" + }, + { + "name": "sebastian/comparator", + "version": "5.0.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/comparator.git", + "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e", + "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-mbstring": "*", + "php": ">=8.1", + "sebastian/diff": "^5.0", + "sebastian/exporter": "^5.0" + }, + "require-dev": { + "phpunit/phpunit": "^10.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@2bepublished.at" + } + ], + "description": "Provides the functionality to compare PHP values for equality", + "homepage": "https://github.com/sebastianbergmann/comparator", + "keywords": [ + "comparator", + "compare", + "equality" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/comparator/issues", + "security": "https://github.com/sebastianbergmann/comparator/security/policy", + "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-10-18T14:56:07+00:00" + }, + { + "name": "sebastian/complexity", + "version": "3.2.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/complexity.git", + "reference": "68ff824baeae169ec9f2137158ee529584553799" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799", + "reference": "68ff824baeae169ec9f2137158ee529584553799", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^4.18 || ^5.0", + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.2-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for calculating the complexity of PHP code units", + "homepage": "https://github.com/sebastianbergmann/complexity", + "support": { + "issues": "https://github.com/sebastianbergmann/complexity/issues", + "security": "https://github.com/sebastianbergmann/complexity/security/policy", + "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-12-21T08:37:17+00:00" + }, + { + "name": "sebastian/diff", + "version": "5.1.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/diff.git", + "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e", + "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0", + "symfony/process": "^6.4" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Kore Nordmann", + "email": "mail@kore-nordmann.de" + } + ], + "description": "Diff implementation", + "homepage": "https://github.com/sebastianbergmann/diff", + "keywords": [ + "diff", + "udiff", + "unidiff", + "unified diff" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/diff/issues", + "security": "https://github.com/sebastianbergmann/diff/security/policy", + "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-02T07:15:17+00:00" + }, + { + "name": "sebastian/environment", + "version": "6.1.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/environment.git", + "reference": "8074dbcd93529b357029f5cc5058fd3e43666984" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984", + "reference": "8074dbcd93529b357029f5cc5058fd3e43666984", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "suggest": { + "ext-posix": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides functionality to handle HHVM/PHP environments", + "homepage": "https://github.com/sebastianbergmann/environment", + "keywords": [ + "Xdebug", + "environment", + "hhvm" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/environment/issues", + "security": "https://github.com/sebastianbergmann/environment/security/policy", + "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-23T08:47:14+00:00" + }, + { + "name": "sebastian/exporter", + "version": "5.1.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/exporter.git", + "reference": "955288482d97c19a372d3f31006ab3f37da47adf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf", + "reference": "955288482d97c19a372d3f31006ab3f37da47adf", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "php": ">=8.1", + "sebastian/recursion-context": "^5.0" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "Provides the functionality to export PHP variables for visualization", + "homepage": "https://www.github.com/sebastianbergmann/exporter", + "keywords": [ + "export", + "exporter" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/exporter/issues", + "security": "https://github.com/sebastianbergmann/exporter/security/policy", + "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-02T07:17:12+00:00" + }, + { + "name": "sebastian/global-state", + "version": "6.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/global-state.git", + "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9", + "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "sebastian/object-reflector": "^3.0", + "sebastian/recursion-context": "^5.0" + }, + "require-dev": { + "ext-dom": "*", + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Snapshotting of global state", + "homepage": "https://www.github.com/sebastianbergmann/global-state", + "keywords": [ + "global state" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/global-state/issues", + "security": "https://github.com/sebastianbergmann/global-state/security/policy", + "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-02T07:19:19+00:00" + }, + { + "name": "sebastian/lines-of-code", + "version": "2.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/lines-of-code.git", + "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0", + "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^4.18 || ^5.0", + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for counting the lines of code in PHP source code", + "homepage": "https://github.com/sebastianbergmann/lines-of-code", + "support": { + "issues": "https://github.com/sebastianbergmann/lines-of-code/issues", + "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy", + "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-12-21T08:38:20+00:00" + }, + { + "name": "sebastian/object-enumerator", + "version": "5.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-enumerator.git", + "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906", + "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "sebastian/object-reflector": "^3.0", + "sebastian/recursion-context": "^5.0" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Traverses array structures and object graphs to enumerate all referenced objects", + "homepage": "https://github.com/sebastianbergmann/object-enumerator/", + "support": { + "issues": "https://github.com/sebastianbergmann/object-enumerator/issues", + "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T07:08:32+00:00" + }, + { + "name": "sebastian/object-reflector", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-reflector.git", + "reference": "24ed13d98130f0e7122df55d06c5c4942a577957" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957", + "reference": "24ed13d98130f0e7122df55d06c5c4942a577957", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Allows reflection of object attributes, including inherited and non-public ones", + "homepage": "https://github.com/sebastianbergmann/object-reflector/", + "support": { + "issues": "https://github.com/sebastianbergmann/object-reflector/issues", + "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T07:06:18+00:00" + }, + { + "name": "sebastian/recursion-context", + "version": "5.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/recursion-context.git", + "reference": "05909fb5bc7df4c52992396d0116aed689f93712" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712", + "reference": "05909fb5bc7df4c52992396d0116aed689f93712", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + } + ], + "description": "Provides functionality to recursively process PHP variables", + "homepage": "https://github.com/sebastianbergmann/recursion-context", + "support": { + "issues": "https://github.com/sebastianbergmann/recursion-context/issues", + "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T07:05:40+00:00" + }, + { + "name": "sebastian/type", + "version": "4.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/type.git", + "reference": "462699a16464c3944eefc02ebdd77882bd3925bf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf", + "reference": "462699a16464c3944eefc02ebdd77882bd3925bf", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Collection of value objects that represent the types of the PHP type system", + "homepage": "https://github.com/sebastianbergmann/type", + "support": { + "issues": "https://github.com/sebastianbergmann/type/issues", + "source": "https://github.com/sebastianbergmann/type/tree/4.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T07:10:45+00:00" + }, + { + "name": "sebastian/version", + "version": "4.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/version.git", + "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17", + "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that helps with managing the version number of Git-hosted PHP projects", + "homepage": "https://github.com/sebastianbergmann/version", + "support": { + "issues": "https://github.com/sebastianbergmann/version/issues", + "source": "https://github.com/sebastianbergmann/version/tree/4.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-07T11:34:05+00:00" + }, + { + "name": "spatie/backtrace", + "version": "1.6.3", + "source": { + "type": "git", + "url": "https://github.com/spatie/backtrace.git", + "reference": "7c18db2bc667ac84e5d7c18e33f16c38ff2d8838" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/backtrace/zipball/7c18db2bc667ac84e5d7c18e33f16c38ff2d8838", + "reference": "7c18db2bc667ac84e5d7c18e33f16c38ff2d8838", + "shasum": "" + }, + "require": { + "php": "^7.3|^8.0" + }, + "require-dev": { + "ext-json": "*", + "laravel/serializable-closure": "^1.3", + "phpunit/phpunit": "^9.3", + "spatie/phpunit-snapshot-assertions": "^4.2", + "symfony/var-dumper": "^5.1" + }, + "type": "library", + "autoload": { + "psr-4": { + "Spatie\\Backtrace\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Freek Van de Herten", + "email": "freek@spatie.be", + "homepage": "https://spatie.be", + "role": "Developer" + } + ], + "description": "A better backtrace", + "homepage": "https://github.com/spatie/backtrace", + "keywords": [ + "Backtrace", + "spatie" + ], + "support": { + "source": "https://github.com/spatie/backtrace/tree/1.6.3" + }, + "funding": [ + { + "url": "https://github.com/sponsors/spatie", + "type": "github" + }, + { + "url": "https://spatie.be/open-source/support-us", + "type": "other" + } + ], + "time": "2024-11-18T14:58:58+00:00" + }, + { + "name": "spatie/error-solutions", + "version": "1.1.1", + "source": { + "type": "git", + "url": "https://github.com/spatie/error-solutions.git", + "reference": "ae7393122eda72eed7cc4f176d1e96ea444f2d67" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/error-solutions/zipball/ae7393122eda72eed7cc4f176d1e96ea444f2d67", + "reference": "ae7393122eda72eed7cc4f176d1e96ea444f2d67", + "shasum": "" + }, + "require": { + "php": "^8.0" + }, + "require-dev": { + "illuminate/broadcasting": "^10.0|^11.0", + "illuminate/cache": "^10.0|^11.0", + "illuminate/support": "^10.0|^11.0", + "livewire/livewire": "^2.11|^3.3.5", + "openai-php/client": "^0.10.1", + "orchestra/testbench": "^7.0|8.22.3|^9.0", + "pestphp/pest": "^2.20", + "phpstan/phpstan": "^1.11", + "psr/simple-cache": "^3.0", + "psr/simple-cache-implementation": "^3.0", + "spatie/ray": "^1.28", + "symfony/cache": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.0|^7.0", + "vlucas/phpdotenv": "^5.5" + }, + "suggest": { + "openai-php/client": "Require get solutions from OpenAI", + "simple-cache-implementation": "To cache solutions from OpenAI" + }, + "type": "library", + "autoload": { + "psr-4": { + "Spatie\\Ignition\\": "legacy/ignition", + "Spatie\\ErrorSolutions\\": "src", + "Spatie\\LaravelIgnition\\": "legacy/laravel-ignition" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ruben Van Assche", + "email": "ruben@spatie.be", + "role": "Developer" + } + ], + "description": "This is my package error-solutions", + "homepage": "https://github.com/spatie/error-solutions", + "keywords": [ + "error-solutions", + "spatie" + ], + "support": { + "issues": "https://github.com/spatie/error-solutions/issues", + "source": "https://github.com/spatie/error-solutions/tree/1.1.1" + }, + "funding": [ + { + "url": "https://github.com/Spatie", + "type": "github" + } + ], + "time": "2024-07-25T11:06:04+00:00" + }, + { + "name": "spatie/flare-client-php", + "version": "1.8.0", + "source": { + "type": "git", + "url": "https://github.com/spatie/flare-client-php.git", + "reference": "180f8ca4c0d0d6fc51477bd8c53ce37ab5a96122" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/180f8ca4c0d0d6fc51477bd8c53ce37ab5a96122", + "reference": "180f8ca4c0d0d6fc51477bd8c53ce37ab5a96122", + "shasum": "" + }, + "require": { + "illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0", + "php": "^8.0", + "spatie/backtrace": "^1.6.1", + "symfony/http-foundation": "^5.2|^6.0|^7.0", + "symfony/mime": "^5.2|^6.0|^7.0", + "symfony/process": "^5.2|^6.0|^7.0", + "symfony/var-dumper": "^5.2|^6.0|^7.0" + }, + "require-dev": { + "dms/phpunit-arraysubset-asserts": "^0.5.0", + "pestphp/pest": "^1.20|^2.0", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan-deprecation-rules": "^1.0", + "phpstan/phpstan-phpunit": "^1.0", + "spatie/pest-plugin-snapshots": "^1.0|^2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.3.x-dev" + } + }, + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Spatie\\FlareClient\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Send PHP errors to Flare", + "homepage": "https://github.com/spatie/flare-client-php", + "keywords": [ + "exception", + "flare", + "reporting", + "spatie" + ], + "support": { + "issues": "https://github.com/spatie/flare-client-php/issues", + "source": "https://github.com/spatie/flare-client-php/tree/1.8.0" + }, + "funding": [ + { + "url": "https://github.com/spatie", + "type": "github" + } + ], + "time": "2024-08-01T08:27:26+00:00" + }, + { + "name": "spatie/ignition", + "version": "1.15.0", + "source": { + "type": "git", + "url": "https://github.com/spatie/ignition.git", + "reference": "e3a68e137371e1eb9edc7f78ffa733f3b98991d2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/ignition/zipball/e3a68e137371e1eb9edc7f78ffa733f3b98991d2", + "reference": "e3a68e137371e1eb9edc7f78ffa733f3b98991d2", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-mbstring": "*", + "php": "^8.0", + "spatie/error-solutions": "^1.0", + "spatie/flare-client-php": "^1.7", + "symfony/console": "^5.4|^6.0|^7.0", + "symfony/var-dumper": "^5.4|^6.0|^7.0" + }, + "require-dev": { + "illuminate/cache": "^9.52|^10.0|^11.0", + "mockery/mockery": "^1.4", + "pestphp/pest": "^1.20|^2.0", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan-deprecation-rules": "^1.0", + "phpstan/phpstan-phpunit": "^1.0", + "psr/simple-cache-implementation": "*", + "symfony/cache": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.0|^7.0", + "vlucas/phpdotenv": "^5.5" + }, + "suggest": { + "openai-php/client": "Require get solutions from OpenAI", + "simple-cache-implementation": "To cache solutions from OpenAI" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.5.x-dev" + } + }, + "autoload": { + "psr-4": { + "Spatie\\Ignition\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Spatie", + "email": "info@spatie.be", + "role": "Developer" + } + ], + "description": "A beautiful error page for PHP applications.", + "homepage": "https://flareapp.io/ignition", + "keywords": [ + "error", + "flare", + "laravel", + "page" + ], + "support": { + "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction", + "forum": "https://twitter.com/flareappio", + "issues": "https://github.com/spatie/ignition/issues", + "source": "https://github.com/spatie/ignition" + }, + "funding": [ + { + "url": "https://github.com/spatie", + "type": "github" + } + ], + "time": "2024-06-12T14:55:22+00:00" + }, + { + "name": "spatie/laravel-ignition", + "version": "2.8.0", + "source": { + "type": "git", + "url": "https://github.com/spatie/laravel-ignition.git", + "reference": "3c067b75bfb50574db8f7e2c3978c65eed71126c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/3c067b75bfb50574db8f7e2c3978c65eed71126c", + "reference": "3c067b75bfb50574db8f7e2c3978c65eed71126c", + "shasum": "" + }, + "require": { + "ext-curl": "*", + "ext-json": "*", + "ext-mbstring": "*", + "illuminate/support": "^10.0|^11.0", + "php": "^8.1", + "spatie/ignition": "^1.15", + "symfony/console": "^6.2.3|^7.0", + "symfony/var-dumper": "^6.2.3|^7.0" + }, + "require-dev": { + "livewire/livewire": "^2.11|^3.3.5", + "mockery/mockery": "^1.5.1", + "openai-php/client": "^0.8.1", + "orchestra/testbench": "8.22.3|^9.0", + "pestphp/pest": "^2.34", + "phpstan/extension-installer": "^1.3.1", + "phpstan/phpstan-deprecation-rules": "^1.1.1", + "phpstan/phpstan-phpunit": "^1.3.16", + "vlucas/phpdotenv": "^5.5" + }, + "suggest": { + "openai-php/client": "Require get solutions from OpenAI", + "psr/simple-cache-implementation": "Needed to cache solutions from OpenAI" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Spatie\\LaravelIgnition\\IgnitionServiceProvider" + ], + "aliases": { + "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare" + } + } + }, + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Spatie\\LaravelIgnition\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Spatie", + "email": "info@spatie.be", + "role": "Developer" + } + ], + "description": "A beautiful error page for Laravel applications.", + "homepage": "https://flareapp.io/ignition", + "keywords": [ + "error", + "flare", + "laravel", + "page" + ], + "support": { + "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction", + "forum": "https://twitter.com/flareappio", + "issues": "https://github.com/spatie/laravel-ignition/issues", + "source": "https://github.com/spatie/laravel-ignition" + }, + "funding": [ + { + "url": "https://github.com/spatie", + "type": "github" + } + ], + "time": "2024-06-12T15:01:18+00:00" + }, + { + "name": "symfony/yaml", + "version": "v6.4.13", + "source": { + "type": "git", + "url": "https://github.com/symfony/yaml.git", + "reference": "e99b4e94d124b29ee4cf3140e1b537d2dad8cec9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/yaml/zipball/e99b4e94d124b29ee4cf3140e1b537d2dad8cec9", + "reference": "e99b4e94d124b29ee4cf3140e1b537d2dad8cec9", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-ctype": "^1.8" + }, + "conflict": { + "symfony/console": "<5.4" + }, + "require-dev": { + "symfony/console": "^5.4|^6.0|^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/v6.4.13" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:18:03+00:00" + }, + { + "name": "theseer/tokenizer", + "version": "1.2.3", + "source": { + "type": "git", + "url": "https://github.com/theseer/tokenizer.git", + "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2", + "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-tokenizer": "*", + "ext-xmlwriter": "*", + "php": "^7.2 || ^8.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + } + ], + "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", + "support": { + "issues": "https://github.com/theseer/tokenizer/issues", + "source": "https://github.com/theseer/tokenizer/tree/1.2.3" + }, + "funding": [ + { + "url": "https://github.com/theseer", + "type": "github" + } + ], + "time": "2024-03-03T12:36:25+00:00" + } + ], + "aliases": [], + "minimum-stability": "stable", + "stability-flags": {}, + "prefer-stable": true, + "prefer-lowest": false, + "platform": { + "php": "^8.1" + }, + "platform-dev": {}, + "plugin-api-version": "2.6.0" +} diff --git a/config/app.php b/config/app.php new file mode 100644 index 0000000..ce56934 --- /dev/null +++ b/config/app.php @@ -0,0 +1,176 @@ + env('APP_NAME', 'Laravel'), + + /* + |-------------------------------------------------------------------------- + | Application Environment + |-------------------------------------------------------------------------- + | + | This value determines the "environment" your application is currently + | running in. This may determine how you prefer to configure various + | services the application utilizes. Set this in your ".env" file. + | + */ + + 'env' => env('APP_ENV', 'production'), + + /* + |-------------------------------------------------------------------------- + | Application Debug Mode + |-------------------------------------------------------------------------- + | + | When your application is in debug mode, detailed error messages with + | stack traces will be shown on every error that occurs within your + | application. If disabled, a simple generic error page is shown. + | + */ + + 'debug' => (bool) env('APP_DEBUG', false), + + /* + |-------------------------------------------------------------------------- + | Application URL + |-------------------------------------------------------------------------- + | + | This URL is used by the console to properly generate URLs when using + | the Artisan command line tool. You should set this to the root of + | your application so that it is used when running Artisan tasks. + | + */ + + 'url' => env('APP_URL', 'http://localhost'), + + 'asset_url' => env('ASSET_URL'), + + /* + |-------------------------------------------------------------------------- + | Application Timezone + |-------------------------------------------------------------------------- + | + | Here you may specify the default timezone for your application, which + | will be used by the PHP date and date-time functions. We have gone + | ahead and set this to a sensible default for you out of the box. + | + */ + + 'timezone' => 'Asia/Jakarta', + + /* + |-------------------------------------------------------------------------- + | Application Locale Configuration + |-------------------------------------------------------------------------- + | + | The application locale determines the default locale that will be used + | by the translation service provider. You are free to set this value + | to any of the locales which will be supported by the application. + | + */ + + 'locale' => 'id', + + /* + |-------------------------------------------------------------------------- + | Application Fallback Locale + |-------------------------------------------------------------------------- + | + | The fallback locale determines the locale to use when the current one + | is not available. You may change the value to correspond to any of + | the language folders that are provided through your application. + | + */ + + 'fallback_locale' => 'id', + + /* + |-------------------------------------------------------------------------- + | Faker Locale + |-------------------------------------------------------------------------- + | + | This locale will be used by the Faker PHP library when generating fake + | data for your database seeds. For example, this will be used to get + | localized telephone numbers, street address information and more. + | + */ + + 'faker_locale' => 'id_ID', + + /* + |-------------------------------------------------------------------------- + | Encryption Key + |-------------------------------------------------------------------------- + | + | This key is used by the Illuminate encrypter service and should be set + | to a random, 32 character string, otherwise these encrypted strings + | will not be safe. Please do this before deploying an application! + | + */ + + 'key' => env('APP_KEY'), + + 'cipher' => 'AES-256-CBC', + + /* + |-------------------------------------------------------------------------- + | Maintenance Mode Driver + |-------------------------------------------------------------------------- + | + | These configuration options determine the driver used to determine and + | manage Laravel's "maintenance mode" status. The "cache" driver will + | allow maintenance mode to be controlled across multiple machines. + | + | Supported drivers: "file", "cache" + | + */ + + 'maintenance' => [ + 'driver' => 'file', + // 'store' => 'redis', + ], + + /* + |-------------------------------------------------------------------------- + | Autoloaded Service Providers + |-------------------------------------------------------------------------- + | + | The service providers listed here will be automatically loaded on the + | request to your application. Feel free to add your own services to + | this array to grant expanded functionality to your applications. + | + */ + + 'providers' => ServiceProvider::defaultProviders()->merge([ + + Barryvdh\DomPDF\ServiceProvider::class, + + App\Providers\AppServiceProvider::class, + App\Providers\AuthServiceProvider::class, + // App\Providers\BroadcastServiceProvider::class, + App\Providers\EventServiceProvider::class, + App\Providers\RouteServiceProvider::class, + App\Providers\VoltServiceProvider::class, + Anhskohbo\NoCaptcha\NoCaptchaServiceProvider::class, + ])->toArray(), + + 'aliases' => Facade::defaultAliases()->merge([ + 'PDF' => Barryvdh\DomPDF\Facade::class, + 'NoCaptcha' => Anhskohbo\NoCaptcha\Facades\NoCaptcha::class, + ])->toArray(), + +]; diff --git a/config/auth.php b/config/auth.php new file mode 100644 index 0000000..9548c15 --- /dev/null +++ b/config/auth.php @@ -0,0 +1,115 @@ + [ + 'guard' => 'web', + 'passwords' => 'users', + ], + + /* + |-------------------------------------------------------------------------- + | Authentication Guards + |-------------------------------------------------------------------------- + | + | Next, you may define every authentication guard for your application. + | Of course, a great default configuration has been defined for you + | here which uses session storage and the Eloquent user provider. + | + | All authentication drivers have a user provider. This defines how the + | users are actually retrieved out of your database or other storage + | mechanisms used by this application to persist your user's data. + | + | Supported: "session" + | + */ + + 'guards' => [ + 'web' => [ + 'driver' => 'session', + 'provider' => 'users', + ], + ], + + /* + |-------------------------------------------------------------------------- + | User Providers + |-------------------------------------------------------------------------- + | + | All authentication drivers have a user provider. This defines how the + | users are actually retrieved out of your database or other storage + | mechanisms used by this application to persist your user's data. + | + | If you have multiple user tables or models you may configure multiple + | sources which represent each model / table. These sources may then + | be assigned to any extra authentication guards you have defined. + | + | Supported: "database", "eloquent" + | + */ + + 'providers' => [ + 'users' => [ + 'driver' => 'eloquent', + 'model' => App\Models\User::class, + ], + + // 'users' => [ + // 'driver' => 'database', + // 'table' => 'users', + // ], + ], + + /* + |-------------------------------------------------------------------------- + | Resetting Passwords + |-------------------------------------------------------------------------- + | + | You may specify multiple password reset configurations if you have more + | than one user table or model in the application and you want to have + | separate password reset settings based on the specific user types. + | + | The expiry time is the number of minutes that each reset token will be + | considered valid. This security feature keeps tokens short-lived so + | they have less time to be guessed. You may change this as needed. + | + | The throttle setting is the number of seconds a user must wait before + | generating more password reset tokens. This prevents the user from + | quickly generating a very large amount of password reset tokens. + | + */ + + 'passwords' => [ + 'users' => [ + 'provider' => 'users', + 'table' => 'password_reset_tokens', + 'expire' => 60, + 'throttle' => 60, + ], + ], + + /* + |-------------------------------------------------------------------------- + | Password Confirmation Timeout + |-------------------------------------------------------------------------- + | + | Here you may define the amount of seconds before a password confirmation + | times out and the user is prompted to re-enter their password via the + | confirmation screen. By default, the timeout lasts for three hours. + | + */ + + 'password_timeout' => 10800, + +]; diff --git a/config/blade-icons.php b/config/blade-icons.php new file mode 100644 index 0000000..5aade2a --- /dev/null +++ b/config/blade-icons.php @@ -0,0 +1,183 @@ + [ + + // 'default' => [ + // + // /* + // |----------------------------------------------------------------- + // | Icons Path + // |----------------------------------------------------------------- + // | + // | Provide the relative path from your app root to your SVG icons + // | directory. Icons are loaded recursively so there's no need to + // | list every sub-directory. + // | + // | Relative to the disk root when the disk option is set. + // | + // */ + // + // 'path' => 'resources/svg', + // + // /* + // |----------------------------------------------------------------- + // | Filesystem Disk + // |----------------------------------------------------------------- + // | + // | Optionally, provide a specific filesystem disk to read + // | icons from. When defining a disk, the "path" option + // | starts relatively from the disk root. + // | + // */ + // + // 'disk' => '', + // + // /* + // |----------------------------------------------------------------- + // | Default Prefix + // |----------------------------------------------------------------- + // | + // | This config option allows you to define a default prefix for + // | your icons. The dash separator will be applied automatically + // | to every icon name. It's required and needs to be unique. + // | + // */ + // + // 'prefix' => 'icon', + // + // /* + // |----------------------------------------------------------------- + // | Fallback Icon + // |----------------------------------------------------------------- + // | + // | This config option allows you to define a fallback + // | icon when an icon in this set cannot be found. + // | + // */ + // + // 'fallback' => '', + // + // /* + // |----------------------------------------------------------------- + // | Default Set Classes + // |----------------------------------------------------------------- + // | + // | This config option allows you to define some classes which + // | will be applied by default to all icons within this set. + // | + // */ + // + // 'class' => '', + // + // /* + // |----------------------------------------------------------------- + // | Default Set Attributes + // |----------------------------------------------------------------- + // | + // | This config option allows you to define some attributes which + // | will be applied by default to all icons within this set. + // | + // */ + // + // 'attributes' => [ + // // 'width' => 50, + // // 'height' => 50, + // ], + // + // ], + + ], + + /* + |-------------------------------------------------------------------------- + | Global Default Classes + |-------------------------------------------------------------------------- + | + | This config option allows you to define some classes which + | will be applied by default to all icons. + | + */ + + 'class' => '', + + /* + |-------------------------------------------------------------------------- + | Global Default Attributes + |-------------------------------------------------------------------------- + | + | This config option allows you to define some attributes which + | will be applied by default to all icons. + | + */ + + 'attributes' => [ + // 'width' => 50, + // 'height' => 50, + ], + + /* + |-------------------------------------------------------------------------- + | Global Fallback Icon + |-------------------------------------------------------------------------- + | + | This config option allows you to define a global fallback + | icon when an icon in any set cannot be found. It can + | reference any icon from any configured set. + | + */ + + 'fallback' => '', + + /* + |-------------------------------------------------------------------------- + | Components + |-------------------------------------------------------------------------- + | + | These config options allow you to define some + | settings related to Blade Components. + | + */ + + 'components' => [ + + /* + |---------------------------------------------------------------------- + | Disable Components + |---------------------------------------------------------------------- + | + | This config option allows you to disable Blade components + | completely. It's useful to avoid performance problems + | when working with large icon libraries. + | + */ + + 'disabled' => false, + + /* + |---------------------------------------------------------------------- + | Default Icon Component Name + |---------------------------------------------------------------------- + | + | This config option allows you to define the name + | for the default Icon class component. + | + */ + + 'default' => 'icon', + + ], + +]; diff --git a/config/broadcasting.php b/config/broadcasting.php new file mode 100644 index 0000000..2410485 --- /dev/null +++ b/config/broadcasting.php @@ -0,0 +1,71 @@ + env('BROADCAST_DRIVER', 'null'), + + /* + |-------------------------------------------------------------------------- + | Broadcast Connections + |-------------------------------------------------------------------------- + | + | Here you may define all of the broadcast connections that will be used + | to broadcast events to other systems or over websockets. Samples of + | each available type of connection are provided inside this array. + | + */ + + 'connections' => [ + + 'pusher' => [ + 'driver' => 'pusher', + 'key' => env('PUSHER_APP_KEY'), + 'secret' => env('PUSHER_APP_SECRET'), + 'app_id' => env('PUSHER_APP_ID'), + 'options' => [ + 'cluster' => env('PUSHER_APP_CLUSTER'), + 'host' => env('PUSHER_HOST') ?: 'api-'.env('PUSHER_APP_CLUSTER', 'mt1').'.pusher.com', + 'port' => env('PUSHER_PORT', 443), + 'scheme' => env('PUSHER_SCHEME', 'https'), + 'encrypted' => true, + 'useTLS' => env('PUSHER_SCHEME', 'https') === 'https', + ], + 'client_options' => [ + // Guzzle client options: https://docs.guzzlephp.org/en/stable/request-options.html + ], + ], + + 'ably' => [ + 'driver' => 'ably', + 'key' => env('ABLY_KEY'), + ], + + 'redis' => [ + 'driver' => 'redis', + 'connection' => 'default', + ], + + 'log' => [ + 'driver' => 'log', + ], + + 'null' => [ + 'driver' => 'null', + ], + + ], + +]; diff --git a/config/cache.php b/config/cache.php new file mode 100644 index 0000000..d4171e2 --- /dev/null +++ b/config/cache.php @@ -0,0 +1,111 @@ + env('CACHE_DRIVER', 'file'), + + /* + |-------------------------------------------------------------------------- + | Cache Stores + |-------------------------------------------------------------------------- + | + | Here you may define all of the cache "stores" for your application as + | well as their drivers. You may even define multiple stores for the + | same cache driver to group types of items stored in your caches. + | + | Supported drivers: "apc", "array", "database", "file", + | "memcached", "redis", "dynamodb", "octane", "null" + | + */ + + 'stores' => [ + + 'apc' => [ + 'driver' => 'apc', + ], + + 'array' => [ + 'driver' => 'array', + 'serialize' => false, + ], + + 'database' => [ + 'driver' => 'database', + 'table' => 'cache', + 'connection' => null, + 'lock_connection' => null, + ], + + 'file' => [ + 'driver' => 'file', + 'path' => storage_path('framework/cache/data'), + 'lock_path' => storage_path('framework/cache/data'), + ], + + 'memcached' => [ + 'driver' => 'memcached', + 'persistent_id' => env('MEMCACHED_PERSISTENT_ID'), + 'sasl' => [ + env('MEMCACHED_USERNAME'), + env('MEMCACHED_PASSWORD'), + ], + 'options' => [ + // Memcached::OPT_CONNECT_TIMEOUT => 2000, + ], + 'servers' => [ + [ + 'host' => env('MEMCACHED_HOST', '127.0.0.1'), + 'port' => env('MEMCACHED_PORT', 11211), + 'weight' => 100, + ], + ], + ], + + 'redis' => [ + 'driver' => 'redis', + 'connection' => 'cache', + 'lock_connection' => 'default', + ], + + 'dynamodb' => [ + 'driver' => 'dynamodb', + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), + 'table' => env('DYNAMODB_CACHE_TABLE', 'cache'), + 'endpoint' => env('DYNAMODB_ENDPOINT'), + ], + + 'octane' => [ + 'driver' => 'octane', + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Cache Key Prefix + |-------------------------------------------------------------------------- + | + | When utilizing the APC, database, memcached, Redis, or DynamoDB cache + | stores there might be other applications using the same cache. For + | that reason, you may prefix every cache key to avoid collisions. + | + */ + + 'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache_'), + +]; diff --git a/config/captcha.php b/config/captcha.php new file mode 100644 index 0000000..cebcaa1 --- /dev/null +++ b/config/captcha.php @@ -0,0 +1,10 @@ + env('NOCAPTCHA_SECRET'), + 'sitekey' => env('NOCAPTCHA_SITEKEY'), + 'version' => 'v2', + 'options' => [ + 'timeout' => 30, + ], +]; diff --git a/config/cors.php b/config/cors.php new file mode 100644 index 0000000..8a39e6d --- /dev/null +++ b/config/cors.php @@ -0,0 +1,34 @@ + ['api/*', 'sanctum/csrf-cookie'], + + 'allowed_methods' => ['*'], + + 'allowed_origins' => ['*'], + + 'allowed_origins_patterns' => [], + + 'allowed_headers' => ['*'], + + 'exposed_headers' => [], + + 'max_age' => 0, + + 'supports_credentials' => false, + +]; diff --git a/config/database.php b/config/database.php new file mode 100644 index 0000000..137ad18 --- /dev/null +++ b/config/database.php @@ -0,0 +1,151 @@ + env('DB_CONNECTION', 'mysql'), + + /* + |-------------------------------------------------------------------------- + | Database Connections + |-------------------------------------------------------------------------- + | + | Here are each of the database connections setup for your application. + | Of course, examples of configuring each database platform that is + | supported by Laravel is shown below to make development simple. + | + | + | All database work in Laravel is done through the PHP PDO facilities + | so make sure you have the driver for your particular database of + | choice installed on your machine before you begin development. + | + */ + + 'connections' => [ + + 'sqlite' => [ + 'driver' => 'sqlite', + 'url' => env('DATABASE_URL'), + 'database' => env('DB_DATABASE', database_path('database.sqlite')), + 'prefix' => '', + 'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true), + ], + + 'mysql' => [ + 'driver' => 'mysql', + 'url' => env('DATABASE_URL'), + 'host' => env('DB_HOST', '127.0.0.1'), + 'port' => env('DB_PORT', '3306'), + 'database' => env('DB_DATABASE', 'forge'), + 'username' => env('DB_USERNAME', 'forge'), + 'password' => env('DB_PASSWORD', ''), + 'unix_socket' => env('DB_SOCKET', ''), + 'charset' => 'utf8mb4', + 'collation' => 'utf8mb4_unicode_ci', + 'prefix' => '', + 'prefix_indexes' => true, + 'strict' => true, + 'engine' => null, + 'options' => extension_loaded('pdo_mysql') ? array_filter([ + PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'), + ]) : [], + ], + + 'pgsql' => [ + 'driver' => 'pgsql', + 'url' => env('DATABASE_URL'), + 'host' => env('DB_HOST', '127.0.0.1'), + 'port' => env('DB_PORT', '5432'), + 'database' => env('DB_DATABASE', 'forge'), + 'username' => env('DB_USERNAME', 'forge'), + 'password' => env('DB_PASSWORD', ''), + 'charset' => 'utf8', + 'prefix' => '', + 'prefix_indexes' => true, + 'search_path' => 'public', + 'sslmode' => 'prefer', + ], + + 'sqlsrv' => [ + 'driver' => 'sqlsrv', + 'url' => env('DATABASE_URL'), + 'host' => env('DB_HOST', 'localhost'), + 'port' => env('DB_PORT', '1433'), + 'database' => env('DB_DATABASE', 'forge'), + 'username' => env('DB_USERNAME', 'forge'), + 'password' => env('DB_PASSWORD', ''), + 'charset' => 'utf8', + 'prefix' => '', + 'prefix_indexes' => true, + // 'encrypt' => env('DB_ENCRYPT', 'yes'), + // 'trust_server_certificate' => env('DB_TRUST_SERVER_CERTIFICATE', 'false'), + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Migration Repository Table + |-------------------------------------------------------------------------- + | + | This table keeps track of all the migrations that have already run for + | your application. Using this information, we can determine which of + | the migrations on disk haven't actually been run in the database. + | + */ + + 'migrations' => 'migrations', + + /* + |-------------------------------------------------------------------------- + | Redis Databases + |-------------------------------------------------------------------------- + | + | Redis is an open source, fast, and advanced key-value store that also + | provides a richer body of commands than a typical key-value system + | such as APC or Memcached. Laravel makes it easy to dig right in. + | + */ + + 'redis' => [ + + 'client' => env('REDIS_CLIENT', 'phpredis'), + + 'options' => [ + 'cluster' => env('REDIS_CLUSTER', 'redis'), + 'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'), + ], + + 'default' => [ + 'url' => env('REDIS_URL'), + 'host' => env('REDIS_HOST', '127.0.0.1'), + 'username' => env('REDIS_USERNAME'), + 'password' => env('REDIS_PASSWORD'), + 'port' => env('REDIS_PORT', '6379'), + 'database' => env('REDIS_DB', '0'), + ], + + 'cache' => [ + 'url' => env('REDIS_URL'), + 'host' => env('REDIS_HOST', '127.0.0.1'), + 'username' => env('REDIS_USERNAME'), + 'password' => env('REDIS_PASSWORD'), + 'port' => env('REDIS_PORT', '6379'), + 'database' => env('REDIS_CACHE_DB', '1'), + ], + + ], + +]; diff --git a/config/filesystems.php b/config/filesystems.php new file mode 100644 index 0000000..e9d9dbd --- /dev/null +++ b/config/filesystems.php @@ -0,0 +1,76 @@ + env('FILESYSTEM_DISK', 'local'), + + /* + |-------------------------------------------------------------------------- + | Filesystem Disks + |-------------------------------------------------------------------------- + | + | Here you may configure as many filesystem "disks" as you wish, and you + | may even configure multiple disks of the same driver. Defaults have + | been set up for each driver as an example of the required values. + | + | Supported Drivers: "local", "ftp", "sftp", "s3" + | + */ + + 'disks' => [ + + 'local' => [ + 'driver' => 'local', + 'root' => storage_path('app'), + 'throw' => false, + ], + + 'public' => [ + 'driver' => 'local', + 'root' => storage_path('app/public'), + 'url' => env('APP_URL').'/storage', + 'visibility' => 'public', + 'throw' => false, + ], + + 's3' => [ + 'driver' => 's3', + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'region' => env('AWS_DEFAULT_REGION'), + 'bucket' => env('AWS_BUCKET'), + 'url' => env('AWS_URL'), + 'endpoint' => env('AWS_ENDPOINT'), + 'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false), + 'throw' => false, + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Symbolic Links + |-------------------------------------------------------------------------- + | + | Here you may configure the symbolic links that will be created when the + | `storage:link` Artisan command is executed. The array keys should be + | the locations of the links and the values should be their targets. + | + */ + + 'links' => [ + public_path('storage') => storage_path('app/public'), + ], + +]; diff --git a/config/hashing.php b/config/hashing.php new file mode 100644 index 0000000..0e8a0bb --- /dev/null +++ b/config/hashing.php @@ -0,0 +1,54 @@ + 'bcrypt', + + /* + |-------------------------------------------------------------------------- + | Bcrypt Options + |-------------------------------------------------------------------------- + | + | Here you may specify the configuration options that should be used when + | passwords are hashed using the Bcrypt algorithm. This will allow you + | to control the amount of time it takes to hash the given password. + | + */ + + 'bcrypt' => [ + 'rounds' => env('BCRYPT_ROUNDS', 12), + 'verify' => true, + ], + + /* + |-------------------------------------------------------------------------- + | Argon Options + |-------------------------------------------------------------------------- + | + | Here you may specify the configuration options that should be used when + | passwords are hashed using the Argon algorithm. These will allow you + | to control the amount of time it takes to hash the given password. + | + */ + + 'argon' => [ + 'memory' => 65536, + 'threads' => 1, + 'time' => 4, + 'verify' => true, + ], + +]; diff --git a/config/livewire.php b/config/livewire.php new file mode 100644 index 0000000..0d2ba89 --- /dev/null +++ b/config/livewire.php @@ -0,0 +1,160 @@ + 'App\\Livewire', + + /* + |--------------------------------------------------------------------------- + | View Path + |--------------------------------------------------------------------------- + | + | This value is used to specify where Livewire component Blade templates are + | stored when running file creation commands like `artisan make:livewire`. + | It is also used if you choose to omit a component's render() method. + | + */ + + 'view_path' => resource_path('views/livewire'), + + /* + |--------------------------------------------------------------------------- + | Layout + |--------------------------------------------------------------------------- + | The view that will be used as the layout when rendering a single component + | as an entire page via `Route::get('/post/create', CreatePost::class);`. + | In this case, the view returned by CreatePost will render into $slot. + | + */ + + 'layout' => 'components.layouts.app', + + /* + |--------------------------------------------------------------------------- + | Lazy Loading Placeholder + |--------------------------------------------------------------------------- + | Livewire allows you to lazy load components that would otherwise slow down + | the initial page load. Every component can have a custom placeholder or + | you can define the default placeholder view for all components below. + | + */ + + 'lazy_placeholder' => null, + + /* + |--------------------------------------------------------------------------- + | Temporary File Uploads + |--------------------------------------------------------------------------- + | + | Livewire handles file uploads by storing uploads in a temporary directory + | before the file is stored permanently. All file uploads are directed to + | a global endpoint for temporary storage. You may configure this below: + | + */ + + 'temporary_file_upload' => [ + 'disk' => null, // Example: 'local', 's3' | Default: 'default' + 'rules' => null, // Example: ['file', 'mimes:png,jpg'] | Default: ['required', 'file', 'max:12288'] (12MB) + 'directory' => null, // Example: 'tmp' | Default: 'livewire-tmp' + 'middleware' => null, // Example: 'throttle:5,1' | Default: 'throttle:60,1' + 'preview_mimes' => [ // Supported file types for temporary pre-signed file URLs... + 'png', 'gif', 'bmp', 'svg', 'wav', 'mp4', + 'mov', 'avi', 'wmv', 'mp3', 'm4a', + 'jpg', 'jpeg', 'mpga', 'webp', 'wma', + ], + 'max_upload_time' => 5, // Max duration (in minutes) before an upload is invalidated... + 'cleanup' => true, // Should cleanup temporary uploads older than 24 hrs... + ], + + /* + |--------------------------------------------------------------------------- + | Render On Redirect + |--------------------------------------------------------------------------- + | + | This value determines if Livewire will run a component's `render()` method + | after a redirect has been triggered using something like `redirect(...)` + | Setting this to true will render the view once more before redirecting + | + */ + + 'render_on_redirect' => false, + + /* + |--------------------------------------------------------------------------- + | Eloquent Model Binding + |--------------------------------------------------------------------------- + | + | Previous versions of Livewire supported binding directly to eloquent model + | properties using wire:model by default. However, this behavior has been + | deemed too "magical" and has therefore been put under a feature flag. + | + */ + + 'legacy_model_binding' => false, + + /* + |--------------------------------------------------------------------------- + | Auto-inject Frontend Assets + |--------------------------------------------------------------------------- + | + | By default, Livewire automatically injects its JavaScript and CSS into the + | and of pages containing Livewire components. By disabling + | this behavior, you need to use @livewireStyles and @livewireScripts. + | + */ + + 'inject_assets' => true, + + /* + |--------------------------------------------------------------------------- + | Navigate (SPA mode) + |--------------------------------------------------------------------------- + | + | By adding `wire:navigate` to links in your Livewire application, Livewire + | will prevent the default link handling and instead request those pages + | via AJAX, creating an SPA-like effect. Configure this behavior here. + | + */ + + 'navigate' => [ + 'show_progress_bar' => true, + 'progress_bar_color' => '#2299dd', + ], + + /* + |--------------------------------------------------------------------------- + | HTML Morph Markers + |--------------------------------------------------------------------------- + | + | Livewire intelligently "morphs" existing HTML into the newly rendered HTML + | after each update. To make this process more reliable, Livewire injects + | "markers" into the rendered Blade surrounding @if, @class & @foreach. + | + */ + + 'inject_morph_markers' => true, + + /* + |--------------------------------------------------------------------------- + | Pagination Theme + |--------------------------------------------------------------------------- + | + | When enabling Livewire's pagination feature by using the `WithPagination` + | trait, Livewire will use Tailwind templates to render pagination views + | on the page. If you want Bootstrap CSS, you can specify: "bootstrap" + | + */ + + 'pagination_theme' => 'tailwind', +]; diff --git a/config/logging.php b/config/logging.php new file mode 100644 index 0000000..c44d276 --- /dev/null +++ b/config/logging.php @@ -0,0 +1,131 @@ + env('LOG_CHANNEL', 'stack'), + + /* + |-------------------------------------------------------------------------- + | Deprecations Log Channel + |-------------------------------------------------------------------------- + | + | This option controls the log channel that should be used to log warnings + | regarding deprecated PHP and library features. This allows you to get + | your application ready for upcoming major versions of dependencies. + | + */ + + 'deprecations' => [ + 'channel' => env('LOG_DEPRECATIONS_CHANNEL', 'null'), + 'trace' => false, + ], + + /* + |-------------------------------------------------------------------------- + | Log Channels + |-------------------------------------------------------------------------- + | + | Here you may configure the log channels for your application. Out of + | the box, Laravel uses the Monolog PHP logging library. This gives + | you a variety of powerful log handlers / formatters to utilize. + | + | Available Drivers: "single", "daily", "slack", "syslog", + | "errorlog", "monolog", + | "custom", "stack" + | + */ + + 'channels' => [ + 'stack' => [ + 'driver' => 'stack', + 'channels' => ['single'], + 'ignore_exceptions' => false, + ], + + 'single' => [ + 'driver' => 'single', + 'path' => storage_path('logs/laravel.log'), + 'level' => env('LOG_LEVEL', 'debug'), + 'replace_placeholders' => true, + ], + + 'daily' => [ + 'driver' => 'daily', + 'path' => storage_path('logs/laravel.log'), + 'level' => env('LOG_LEVEL', 'debug'), + 'days' => 14, + 'replace_placeholders' => true, + ], + + 'slack' => [ + 'driver' => 'slack', + 'url' => env('LOG_SLACK_WEBHOOK_URL'), + 'username' => 'Laravel Log', + 'emoji' => ':boom:', + 'level' => env('LOG_LEVEL', 'critical'), + 'replace_placeholders' => true, + ], + + 'papertrail' => [ + 'driver' => 'monolog', + 'level' => env('LOG_LEVEL', 'debug'), + 'handler' => env('LOG_PAPERTRAIL_HANDLER', SyslogUdpHandler::class), + 'handler_with' => [ + 'host' => env('PAPERTRAIL_URL'), + 'port' => env('PAPERTRAIL_PORT'), + 'connectionString' => 'tls://'.env('PAPERTRAIL_URL').':'.env('PAPERTRAIL_PORT'), + ], + 'processors' => [PsrLogMessageProcessor::class], + ], + + 'stderr' => [ + 'driver' => 'monolog', + 'level' => env('LOG_LEVEL', 'debug'), + 'handler' => StreamHandler::class, + 'formatter' => env('LOG_STDERR_FORMATTER'), + 'with' => [ + 'stream' => 'php://stderr', + ], + 'processors' => [PsrLogMessageProcessor::class], + ], + + 'syslog' => [ + 'driver' => 'syslog', + 'level' => env('LOG_LEVEL', 'debug'), + 'facility' => LOG_USER, + 'replace_placeholders' => true, + ], + + 'errorlog' => [ + 'driver' => 'errorlog', + 'level' => env('LOG_LEVEL', 'debug'), + 'replace_placeholders' => true, + ], + + 'null' => [ + 'driver' => 'monolog', + 'handler' => NullHandler::class, + ], + + 'emergency' => [ + 'path' => storage_path('logs/laravel.log'), + ], + ], + +]; diff --git a/config/mail.php b/config/mail.php new file mode 100644 index 0000000..e894b2e --- /dev/null +++ b/config/mail.php @@ -0,0 +1,134 @@ + env('MAIL_MAILER', 'smtp'), + + /* + |-------------------------------------------------------------------------- + | Mailer Configurations + |-------------------------------------------------------------------------- + | + | Here you may configure all of the mailers used by your application plus + | their respective settings. Several examples have been configured for + | you and you are free to add your own as your application requires. + | + | Laravel supports a variety of mail "transport" drivers to be used while + | sending an e-mail. You will specify which one you are using for your + | mailers below. You are free to add additional mailers as required. + | + | Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2", + | "postmark", "log", "array", "failover", "roundrobin" + | + */ + + 'mailers' => [ + 'smtp' => [ + 'transport' => 'smtp', + 'url' => env('MAIL_URL'), + 'host' => env('MAIL_HOST', 'smtp.mailgun.org'), + 'port' => env('MAIL_PORT', 587), + 'encryption' => env('MAIL_ENCRYPTION', 'tls'), + 'username' => env('MAIL_USERNAME'), + 'password' => env('MAIL_PASSWORD'), + 'timeout' => null, + 'local_domain' => env('MAIL_EHLO_DOMAIN'), + ], + + 'ses' => [ + 'transport' => 'ses', + ], + + 'postmark' => [ + 'transport' => 'postmark', + // 'message_stream_id' => null, + // 'client' => [ + // 'timeout' => 5, + // ], + ], + + 'mailgun' => [ + 'transport' => 'mailgun', + // 'client' => [ + // 'timeout' => 5, + // ], + ], + + 'sendmail' => [ + 'transport' => 'sendmail', + 'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -bs -i'), + ], + + 'log' => [ + 'transport' => 'log', + 'channel' => env('MAIL_LOG_CHANNEL'), + ], + + 'array' => [ + 'transport' => 'array', + ], + + 'failover' => [ + 'transport' => 'failover', + 'mailers' => [ + 'smtp', + 'log', + ], + ], + + 'roundrobin' => [ + 'transport' => 'roundrobin', + 'mailers' => [ + 'ses', + 'postmark', + ], + ], + ], + + /* + |-------------------------------------------------------------------------- + | Global "From" Address + |-------------------------------------------------------------------------- + | + | You may wish for all e-mails sent by your application to be sent from + | the same address. Here, you may specify a name and address that is + | used globally for all e-mails that are sent by your application. + | + */ + + 'from' => [ + 'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'), + 'name' => env('MAIL_FROM_NAME', 'Example'), + ], + + /* + |-------------------------------------------------------------------------- + | Markdown Mail Settings + |-------------------------------------------------------------------------- + | + | If you are using Markdown based email rendering, you may configure your + | theme and component paths here, allowing you to customize the design + | of the emails. Or, you may simply stick with the Laravel defaults! + | + */ + + 'markdown' => [ + 'theme' => 'default', + + 'paths' => [ + resource_path('views/vendor/mail'), + ], + ], + +]; diff --git a/config/queue.php b/config/queue.php new file mode 100644 index 0000000..01c6b05 --- /dev/null +++ b/config/queue.php @@ -0,0 +1,109 @@ + env('QUEUE_CONNECTION', 'sync'), + + /* + |-------------------------------------------------------------------------- + | Queue Connections + |-------------------------------------------------------------------------- + | + | Here you may configure the connection information for each server that + | is used by your application. A default configuration has been added + | for each back-end shipped with Laravel. You are free to add more. + | + | Drivers: "sync", "database", "beanstalkd", "sqs", "redis", "null" + | + */ + + 'connections' => [ + + 'sync' => [ + 'driver' => 'sync', + ], + + 'database' => [ + 'driver' => 'database', + 'table' => 'jobs', + 'queue' => 'default', + 'retry_after' => 90, + 'after_commit' => false, + ], + + 'beanstalkd' => [ + 'driver' => 'beanstalkd', + 'host' => 'localhost', + 'queue' => 'default', + 'retry_after' => 90, + 'block_for' => 0, + 'after_commit' => false, + ], + + 'sqs' => [ + 'driver' => 'sqs', + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'), + 'queue' => env('SQS_QUEUE', 'default'), + 'suffix' => env('SQS_SUFFIX'), + 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), + 'after_commit' => false, + ], + + 'redis' => [ + 'driver' => 'redis', + 'connection' => 'default', + 'queue' => env('REDIS_QUEUE', 'default'), + 'retry_after' => 90, + 'block_for' => null, + 'after_commit' => false, + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Job Batching + |-------------------------------------------------------------------------- + | + | The following options configure the database and table that store job + | batching information. These options can be updated to any database + | connection and table which has been defined by your application. + | + */ + + 'batching' => [ + 'database' => env('DB_CONNECTION', 'mysql'), + 'table' => 'job_batches', + ], + + /* + |-------------------------------------------------------------------------- + | Failed Queue Jobs + |-------------------------------------------------------------------------- + | + | These options configure the behavior of failed queue job logging so you + | can control which database and table are used to store the jobs that + | have failed. You may change them to any database / table you wish. + | + */ + + 'failed' => [ + 'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'), + 'database' => env('DB_CONNECTION', 'mysql'), + 'table' => 'failed_jobs', + ], + +]; diff --git a/config/sanctum.php b/config/sanctum.php new file mode 100644 index 0000000..35d75b3 --- /dev/null +++ b/config/sanctum.php @@ -0,0 +1,83 @@ + explode(',', env('SANCTUM_STATEFUL_DOMAINS', sprintf( + '%s%s', + 'localhost,localhost:3000,127.0.0.1,127.0.0.1:8000,::1', + Sanctum::currentApplicationUrlWithPort() + ))), + + /* + |-------------------------------------------------------------------------- + | Sanctum Guards + |-------------------------------------------------------------------------- + | + | This array contains the authentication guards that will be checked when + | Sanctum is trying to authenticate a request. If none of these guards + | are able to authenticate the request, Sanctum will use the bearer + | token that's present on an incoming request for authentication. + | + */ + + 'guard' => ['web'], + + /* + |-------------------------------------------------------------------------- + | Expiration Minutes + |-------------------------------------------------------------------------- + | + | This value controls the number of minutes until an issued token will be + | considered expired. This will override any values set in the token's + | "expires_at" attribute, but first-party sessions are not affected. + | + */ + + 'expiration' => null, + + /* + |-------------------------------------------------------------------------- + | Token Prefix + |-------------------------------------------------------------------------- + | + | Sanctum can prefix new tokens in order to take advantage of numerous + | security scanning initiatives maintained by open source platforms + | that notify developers if they commit tokens into repositories. + | + | See: https://docs.github.com/en/code-security/secret-scanning/about-secret-scanning + | + */ + + 'token_prefix' => env('SANCTUM_TOKEN_PREFIX', ''), + + /* + |-------------------------------------------------------------------------- + | Sanctum Middleware + |-------------------------------------------------------------------------- + | + | When authenticating your first-party SPA with Sanctum you may need to + | customize some of the middleware Sanctum uses while processing the + | request. You may change the middleware listed below as required. + | + */ + + 'middleware' => [ + 'authenticate_session' => Laravel\Sanctum\Http\Middleware\AuthenticateSession::class, + 'encrypt_cookies' => App\Http\Middleware\EncryptCookies::class, + 'verify_csrf_token' => App\Http\Middleware\VerifyCsrfToken::class, + ], + +]; diff --git a/config/services.php b/config/services.php new file mode 100644 index 0000000..0ace530 --- /dev/null +++ b/config/services.php @@ -0,0 +1,34 @@ + [ + 'domain' => env('MAILGUN_DOMAIN'), + 'secret' => env('MAILGUN_SECRET'), + 'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'), + 'scheme' => 'https', + ], + + 'postmark' => [ + 'token' => env('POSTMARK_TOKEN'), + ], + + 'ses' => [ + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), + ], + +]; diff --git a/config/session.php b/config/session.php new file mode 100644 index 0000000..e738cb3 --- /dev/null +++ b/config/session.php @@ -0,0 +1,214 @@ + env('SESSION_DRIVER', 'file'), + + /* + |-------------------------------------------------------------------------- + | Session Lifetime + |-------------------------------------------------------------------------- + | + | Here you may specify the number of minutes that you wish the session + | to be allowed to remain idle before it expires. If you want them + | to immediately expire on the browser closing, set that option. + | + */ + + 'lifetime' => env('SESSION_LIFETIME', 120), + + 'expire_on_close' => false, + + /* + |-------------------------------------------------------------------------- + | Session Encryption + |-------------------------------------------------------------------------- + | + | This option allows you to easily specify that all of your session data + | should be encrypted before it is stored. All encryption will be run + | automatically by Laravel and you can use the Session like normal. + | + */ + + 'encrypt' => false, + + /* + |-------------------------------------------------------------------------- + | Session File Location + |-------------------------------------------------------------------------- + | + | When using the native session driver, we need a location where session + | files may be stored. A default has been set for you but a different + | location may be specified. This is only needed for file sessions. + | + */ + + 'files' => storage_path('framework/sessions'), + + /* + |-------------------------------------------------------------------------- + | Session Database Connection + |-------------------------------------------------------------------------- + | + | When using the "database" or "redis" session drivers, you may specify a + | connection that should be used to manage these sessions. This should + | correspond to a connection in your database configuration options. + | + */ + + 'connection' => env('SESSION_CONNECTION'), + + /* + |-------------------------------------------------------------------------- + | Session Database Table + |-------------------------------------------------------------------------- + | + | When using the "database" session driver, you may specify the table we + | should use to manage the sessions. Of course, a sensible default is + | provided for you; however, you are free to change this as needed. + | + */ + + 'table' => 'sessions', + + /* + |-------------------------------------------------------------------------- + | Session Cache Store + |-------------------------------------------------------------------------- + | + | While using one of the framework's cache driven session backends you may + | list a cache store that should be used for these sessions. This value + | must match with one of the application's configured cache "stores". + | + | Affects: "apc", "dynamodb", "memcached", "redis" + | + */ + + 'store' => env('SESSION_STORE'), + + /* + |-------------------------------------------------------------------------- + | Session Sweeping Lottery + |-------------------------------------------------------------------------- + | + | Some session drivers must manually sweep their storage location to get + | rid of old sessions from storage. Here are the chances that it will + | happen on a given request. By default, the odds are 2 out of 100. + | + */ + + 'lottery' => [2, 100], + + /* + |-------------------------------------------------------------------------- + | Session Cookie Name + |-------------------------------------------------------------------------- + | + | Here you may change the name of the cookie used to identify a session + | instance by ID. The name specified here will get used every time a + | new session cookie is created by the framework for every driver. + | + */ + + 'cookie' => env( + 'SESSION_COOKIE', + Str::slug(env('APP_NAME', 'laravel'), '_').'_session' + ), + + /* + |-------------------------------------------------------------------------- + | Session Cookie Path + |-------------------------------------------------------------------------- + | + | The session cookie path determines the path for which the cookie will + | be regarded as available. Typically, this will be the root path of + | your application but you are free to change this when necessary. + | + */ + + 'path' => '/', + + /* + |-------------------------------------------------------------------------- + | Session Cookie Domain + |-------------------------------------------------------------------------- + | + | Here you may change the domain of the cookie used to identify a session + | in your application. This will determine which domains the cookie is + | available to in your application. A sensible default has been set. + | + */ + + 'domain' => env('SESSION_DOMAIN'), + + /* + |-------------------------------------------------------------------------- + | HTTPS Only Cookies + |-------------------------------------------------------------------------- + | + | By setting this option to true, session cookies will only be sent back + | to the server if the browser has a HTTPS connection. This will keep + | the cookie from being sent to you when it can't be done securely. + | + */ + + 'secure' => env('SESSION_SECURE_COOKIE'), + + /* + |-------------------------------------------------------------------------- + | HTTP Access Only + |-------------------------------------------------------------------------- + | + | Setting this value to true will prevent JavaScript from accessing the + | value of the cookie and the cookie will only be accessible through + | the HTTP protocol. You are free to modify this option if needed. + | + */ + + 'http_only' => true, + + /* + |-------------------------------------------------------------------------- + | Same-Site Cookies + |-------------------------------------------------------------------------- + | + | This option determines how your cookies behave when cross-site requests + | take place, and can be used to mitigate CSRF attacks. By default, we + | will set this value to "lax" since this is a secure default value. + | + | Supported: "lax", "strict", "none", null + | + */ + + 'same_site' => 'lax', + + /* + |-------------------------------------------------------------------------- + | Partitioned Cookies + |-------------------------------------------------------------------------- + | + | Setting this value to true will tie the cookie to the top-level site for + | a cross-site context. Partitioned cookies are accepted by the browser + | when flagged "secure" and the Same-Site attribute is set to "none". + | + */ + + 'partitioned' => false, + +]; diff --git a/config/view.php b/config/view.php new file mode 100644 index 0000000..22b8a18 --- /dev/null +++ b/config/view.php @@ -0,0 +1,36 @@ + [ + resource_path('views'), + ], + + /* + |-------------------------------------------------------------------------- + | Compiled View Path + |-------------------------------------------------------------------------- + | + | This option determines where all the compiled Blade templates will be + | stored for your application. Typically, this is within the storage + | directory. However, as usual, you are free to change this value. + | + */ + + 'compiled' => env( + 'VIEW_COMPILED_PATH', + realpath(storage_path('framework/views')) + ), + +]; diff --git a/database/.gitignore b/database/.gitignore new file mode 100644 index 0000000..9b19b93 --- /dev/null +++ b/database/.gitignore @@ -0,0 +1 @@ +*.sqlite* diff --git a/database/factories/ArticleFactory.php b/database/factories/ArticleFactory.php new file mode 100644 index 0000000..f62004c --- /dev/null +++ b/database/factories/ArticleFactory.php @@ -0,0 +1,23 @@ + + */ +class ArticleFactory extends Factory +{ + /** + * Define the model's default state. + * + * @return array + */ + public function definition(): array + { + return [ + // + ]; + } +} diff --git a/database/factories/ArticleTagFactory.php b/database/factories/ArticleTagFactory.php new file mode 100644 index 0000000..15a7c5e --- /dev/null +++ b/database/factories/ArticleTagFactory.php @@ -0,0 +1,23 @@ + + */ +class ArticleTagFactory extends Factory +{ + /** + * Define the model's default state. + * + * @return array + */ + public function definition(): array + { + return [ + // + ]; + } +} diff --git a/database/factories/CardArticleFactory.php b/database/factories/CardArticleFactory.php new file mode 100644 index 0000000..be4fcb8 --- /dev/null +++ b/database/factories/CardArticleFactory.php @@ -0,0 +1,23 @@ + + */ +class CardArticleFactory extends Factory +{ + /** + * Define the model's default state. + * + * @return array + */ + public function definition(): array + { + return [ + // + ]; + } +} diff --git a/database/factories/HarianAyamFactory.php b/database/factories/HarianAyamFactory.php new file mode 100644 index 0000000..e476aa3 --- /dev/null +++ b/database/factories/HarianAyamFactory.php @@ -0,0 +1,23 @@ + + */ +class HarianAyamFactory extends Factory +{ + /** + * Define the model's default state. + * + * @return array + */ + public function definition(): array + { + return [ + // + ]; + } +} diff --git a/database/factories/KandangAyamFactory.php b/database/factories/KandangAyamFactory.php new file mode 100644 index 0000000..d742d1e --- /dev/null +++ b/database/factories/KandangAyamFactory.php @@ -0,0 +1,23 @@ + + */ +class KandangAyamFactory extends Factory +{ + /** + * Define the model's default state. + * + * @return array + */ + public function definition(): array + { + return [ + // + ]; + } +} diff --git a/database/factories/PakanFactory.php b/database/factories/PakanFactory.php new file mode 100644 index 0000000..bcfc6c7 --- /dev/null +++ b/database/factories/PakanFactory.php @@ -0,0 +1,23 @@ + + */ +class PakanFactory extends Factory +{ + /** + * Define the model's default state. + * + * @return array + */ + public function definition(): array + { + return [ + // + ]; + } +} diff --git a/database/factories/PendapatanFactory.php b/database/factories/PendapatanFactory.php new file mode 100644 index 0000000..e18de23 --- /dev/null +++ b/database/factories/PendapatanFactory.php @@ -0,0 +1,23 @@ + + */ +class PendapatanFactory extends Factory +{ + /** + * Define the model's default state. + * + * @return array + */ + public function definition(): array + { + return [ + // + ]; + } +} diff --git a/database/factories/PengeluaranFactory.php b/database/factories/PengeluaranFactory.php new file mode 100644 index 0000000..4ceda7f --- /dev/null +++ b/database/factories/PengeluaranFactory.php @@ -0,0 +1,23 @@ + + */ +class PengeluaranFactory extends Factory +{ + /** + * Define the model's default state. + * + * @return array + */ + public function definition(): array + { + return [ + // + ]; + } +} diff --git a/database/factories/PenggunaanPakanFactory.php b/database/factories/PenggunaanPakanFactory.php new file mode 100644 index 0000000..cab7bcd --- /dev/null +++ b/database/factories/PenggunaanPakanFactory.php @@ -0,0 +1,23 @@ + + */ +class PenggunaanPakanFactory extends Factory +{ + /** + * Define the model's default state. + * + * @return array + */ + public function definition(): array + { + return [ + // + ]; + } +} diff --git a/database/factories/PopulasiAyamFactory.php b/database/factories/PopulasiAyamFactory.php new file mode 100644 index 0000000..642fb3f --- /dev/null +++ b/database/factories/PopulasiAyamFactory.php @@ -0,0 +1,23 @@ + + */ +class PopulasiAyamFactory extends Factory +{ + /** + * Define the model's default state. + * + * @return array + */ + public function definition(): array + { + return [ + // + ]; + } +} diff --git a/database/factories/SubArticleFactory.php b/database/factories/SubArticleFactory.php new file mode 100644 index 0000000..3019871 --- /dev/null +++ b/database/factories/SubArticleFactory.php @@ -0,0 +1,23 @@ + + */ +class SubArticleFactory extends Factory +{ + /** + * Define the model's default state. + * + * @return array + */ + public function definition(): array + { + return [ + // + ]; + } +} diff --git a/database/factories/TagFactory.php b/database/factories/TagFactory.php new file mode 100644 index 0000000..ad98a0b --- /dev/null +++ b/database/factories/TagFactory.php @@ -0,0 +1,23 @@ + + */ +class TagFactory extends Factory +{ + /** + * Define the model's default state. + * + * @return array + */ + public function definition(): array + { + return [ + // + ]; + } +} diff --git a/database/migrations/2014_10_12_000000_create_users_table.php b/database/migrations/2014_10_12_000000_create_users_table.php new file mode 100644 index 0000000..6e21b59 --- /dev/null +++ b/database/migrations/2014_10_12_000000_create_users_table.php @@ -0,0 +1,27 @@ +id(); + $table->string('name'); + $table->string('email')->unique(); + $table->timestamp('email_verified_at')->nullable(); + $table->string('password'); + $table->enum('role', ['user', 'admin'])->default('user'); + $table->rememberToken(); + $table->timestamps(); + }); + } + + public function down(): void + { + Schema::dropIfExists('users'); + } +}; diff --git a/database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php b/database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php new file mode 100644 index 0000000..3fa9275 --- /dev/null +++ b/database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php @@ -0,0 +1,22 @@ +string('email')->primary(); + $table->string('token'); + $table->timestamp('created_at')->nullable(); + }); + } + + public function down(): void + { + Schema::dropIfExists('password_reset_tokens'); + } +}; diff --git a/database/migrations/2019_08_19_000000_create_failed_jobs_table.php b/database/migrations/2019_08_19_000000_create_failed_jobs_table.php new file mode 100644 index 0000000..85264d8 --- /dev/null +++ b/database/migrations/2019_08_19_000000_create_failed_jobs_table.php @@ -0,0 +1,26 @@ +id(); + $table->string('uuid')->unique(); + $table->text('connection'); + $table->text('queue'); + $table->longText('payload'); + $table->longText('exception'); + $table->timestamp('failed_at')->useCurrent(); + }); + } + + public function down(): void + { + Schema::dropIfExists('failed_jobs'); + } +}; diff --git a/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php b/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php new file mode 100644 index 0000000..b30c323 --- /dev/null +++ b/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php @@ -0,0 +1,27 @@ +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(); + }); + } + + public function down(): void + { + Schema::dropIfExists('personal_access_tokens'); + } +}; diff --git a/database/migrations/2024_12_16_074527_create_card_articles_table.php b/database/migrations/2024_12_16_074527_create_card_articles_table.php new file mode 100644 index 0000000..5f4b5dc --- /dev/null +++ b/database/migrations/2024_12_16_074527_create_card_articles_table.php @@ -0,0 +1,24 @@ +id(); + $table->string('title'); + $table->text('description'); + $table->string('image'); + $table->timestamps(); + }); + } + + public function down(): void + { + Schema::dropIfExists('card_articles'); + } +}; diff --git a/database/migrations/2024_12_16_074549_create_articles_table.php b/database/migrations/2024_12_16_074549_create_articles_table.php new file mode 100644 index 0000000..6f82978 --- /dev/null +++ b/database/migrations/2024_12_16_074549_create_articles_table.php @@ -0,0 +1,27 @@ +id(); + $table->foreignId('card_id')->constrained('card_articles')->onDelete('cascade'); + $table->string('title'); + $table->text('description'); + $table->text('catatan')->nullable(); + $table->string('image'); + $table->enum('status', ['Tertunda', 'Disetujui', 'Ditolak'])->default('pending'); + $table->timestamps(); + }); + } + + public function down(): void + { + Schema::dropIfExists('articles'); + } +}; diff --git a/database/migrations/2024_12_16_074601_create_sub_articles_table.php b/database/migrations/2024_12_16_074601_create_sub_articles_table.php new file mode 100644 index 0000000..7152508 --- /dev/null +++ b/database/migrations/2024_12_16_074601_create_sub_articles_table.php @@ -0,0 +1,26 @@ +id(); + $table->foreignId('article_id')->constrained('articles')->onDelete('cascade'); + $table->string('title'); + $table->text('content'); + $table->string('image')->nullable(); + $table->integer('order_number'); + $table->timestamps(); + }); + } + + public function down(): void + { + Schema::dropIfExists('sub_articles'); + } +}; diff --git a/database/migrations/2024_12_18_140323_create_tags_table.php b/database/migrations/2024_12_18_140323_create_tags_table.php new file mode 100644 index 0000000..f0a2bc0 --- /dev/null +++ b/database/migrations/2024_12_18_140323_create_tags_table.php @@ -0,0 +1,22 @@ +id(); + $table->string('name')->unique(); + $table->timestamps(); + }); + } + + public function down(): void + { + Schema::dropIfExists('tags'); + } +}; diff --git a/database/migrations/2024_12_18_140400_create_article_tags_table.php b/database/migrations/2024_12_18_140400_create_article_tags_table.php new file mode 100644 index 0000000..7ea9a73 --- /dev/null +++ b/database/migrations/2024_12_18_140400_create_article_tags_table.php @@ -0,0 +1,23 @@ +id(); + $table->foreignId('article_id')->constrained('articles')->onDelete('cascade'); + $table->foreignId('tag_id')->constrained('tags')->onDelete('cascade'); + $table->timestamps(); + }); + } + + public function down(): void + { + Schema::dropIfExists('article_tags'); + } +}; diff --git a/database/migrations/2025_01_16_073414_create_populasi_ayams_table.php b/database/migrations/2025_01_16_073414_create_populasi_ayams_table.php new file mode 100644 index 0000000..431346d --- /dev/null +++ b/database/migrations/2025_01_16_073414_create_populasi_ayams_table.php @@ -0,0 +1,27 @@ +bigIncrements('id'); + $table->foreignId('kandang_id')->nullable()->constrained('kandang_ayam')->onDelete('cascade'); + $table->string('kode_batch')->unique(); + $table->string('nama_batch'); + $table->date('tanggal_doc'); + $table->integer('jumlah_ayam_masuk')->unsigned(); + $table->enum('status_ayam', ['Proses', 'Siap Panen', 'Sudah Panen'])->default('Proses'); + $table->timestamps(); + }); + } + + public function down(): void + { + Schema::dropIfExists('populasi_ayam'); + } +}; diff --git a/database/migrations/2025_01_16_073846_create_harian_ayams_table.php b/database/migrations/2025_01_16_073846_create_harian_ayams_table.php new file mode 100644 index 0000000..f319733 --- /dev/null +++ b/database/migrations/2025_01_16_073846_create_harian_ayams_table.php @@ -0,0 +1,28 @@ +bigIncrements('id'); + $table->unsignedBigInteger('id_populasi'); + $table->string('nama_batch'); + $table->date('tanggal_input'); + $table->integer('jumlah_ayam_mati')->unsigned(); + $table->integer('jumlah_ayam_sakit')->unsigned(); + $table->timestamps(); + + $table->foreignId('id_populasi')->constrained('populasi_ayam')->onDelete('cascade'); + }); + } + + public function down(): void + { + Schema::dropIfExists('harian_ayam'); + } +}; diff --git a/database/migrations/2025_02_03_173355_create_kandang_ayams_table.php b/database/migrations/2025_02_03_173355_create_kandang_ayams_table.php new file mode 100644 index 0000000..ad745d1 --- /dev/null +++ b/database/migrations/2025_02_03_173355_create_kandang_ayams_table.php @@ -0,0 +1,28 @@ +id(); + $table->string('nama_kandang'); + $table->integer('kapasitas')->unsigned(); + $table->enum('status_kandang', ['Aktif', 'Tidak Aktif'])->default('Aktif'); + $table->timestamps(); + }); + } + public function down(): void + { + Schema::dropIfExists('kandang_ayam'); + } + + public function populasiAyam() + { + return $this->hasMany(PopulasiAyam::class, 'kandang_id'); + } +}; diff --git a/database/migrations/2025_02_04_092921_add_kandang_id_to_populasi_ayams_table.php b/database/migrations/2025_02_04_092921_add_kandang_id_to_populasi_ayams_table.php new file mode 100644 index 0000000..77d297c --- /dev/null +++ b/database/migrations/2025_02_04_092921_add_kandang_id_to_populasi_ayams_table.php @@ -0,0 +1,23 @@ +unsignedBigInteger('kandang_id')->nullable()->after('status_ayam'); + $table->foreign('kandang_id')->references('id')->on('kandang_ayam')->onDelete('cascade'); + }); + } + + public function down() + { + Schema::table('populasi_ayam', function (Blueprint $table) { + $table->dropForeign(['kandang_id']); + $table->dropColumn('kandang_id'); + }); + } +}; diff --git a/database/migrations/2025_02_13_134531_create_pakans_table.php b/database/migrations/2025_02_13_134531_create_pakans_table.php new file mode 100644 index 0000000..4f3ec4d --- /dev/null +++ b/database/migrations/2025_02_13_134531_create_pakans_table.php @@ -0,0 +1,26 @@ +id(); + $table->string('nama_pakan'); + $table->string('jenis_pakan'); + $table->decimal('berat'); + $table->date('tanggal_masuk'); + $table->decimal('harga_per_kg'); + $table->timestamps(); + }); + } + + public function down(): void + { + Schema::dropIfExists('pakan'); + } +}; diff --git a/database/migrations/2025_02_13_135241_create_penggunaan_pakans_table.php b/database/migrations/2025_02_13_135241_create_penggunaan_pakans_table.php new file mode 100644 index 0000000..6788344 --- /dev/null +++ b/database/migrations/2025_02_13_135241_create_penggunaan_pakans_table.php @@ -0,0 +1,24 @@ +id(); + $table->foreignId('pakan_id')->constrained('pakan')->onDelete('cascade'); + $table->date('tanggal_pakai'); + $table->decimal('jumlah_pakai', 10, 2); + $table->timestamps(); + }); + } + + public function down(): void + { + Schema::dropIfExists('penggunaan_pakan'); + } +}; diff --git a/database/migrations/2025_02_15_135011_create_pendapatans_table.php b/database/migrations/2025_02_15_135011_create_pendapatans_table.php new file mode 100644 index 0000000..d9f512a --- /dev/null +++ b/database/migrations/2025_02_15_135011_create_pendapatans_table.php @@ -0,0 +1,29 @@ +id(); + $table->enum('kategori', ['Penjualan Ayam', 'Penjualan Kotoran', 'Kemitraan'])->index(); + $table->integer('jumlah')->unsigned(); + $table->enum('satuan', ['ekor', 'kg', 'karung']); + $table->decimal('harga_per_satuan'); + $table->decimal('total_pendapatan'); + $table->date('tanggal_transaksi'); + $table->string('nama_pembeli')->nullable(); + $table->string('nama_perusahaan')->nullable(); + $table->timestamps(); + }); + } + + public function down(): void + { + Schema::dropIfExists('pendapatan'); + } +}; diff --git a/database/migrations/2025_02_16_195247_create_pengeluarans_table.php b/database/migrations/2025_02_16_195247_create_pengeluarans_table.php new file mode 100644 index 0000000..e30286d --- /dev/null +++ b/database/migrations/2025_02_16_195247_create_pengeluarans_table.php @@ -0,0 +1,32 @@ +id(); + $table->enum('category', ['Pembelian Ayam', 'Pakan Ayam', 'Vitamin']); + $table->text('description')->nullable(); + $table->integer('jumlah')->unsigned(); + $table->enum('satuan', ['ekor', 'kg', 'karung', 'unit']); + $table->decimal('harga_per_satuan'); + $table->decimal('total_biaya'); + $table->string('supplier')->nullable(); + $table->date('tanggal_pembelian'); + $table->timestamps(); + }); + } + + public function down(): void + { + Schema::dropIfExists('pengeluaran'); + } +}; diff --git a/database/migrations/2025_04_02_001902_create_topics_table.php b/database/migrations/2025_04_02_001902_create_topics_table.php new file mode 100644 index 0000000..c749a66 --- /dev/null +++ b/database/migrations/2025_04_02_001902_create_topics_table.php @@ -0,0 +1,28 @@ +id(); + $table->foreignId('user_id')->constrained()->onDelete('cascade'); + $table->string('title'); + $table->text('content'); + $table->boolean('is_pinned')->default(false); + $table->timestamps(); + }); + } + + public function down(): void + { + Schema::dropIfExists('topics'); + } +}; diff --git a/database/migrations/2025_04_02_001907_create_comments_table.php b/database/migrations/2025_04_02_001907_create_comments_table.php new file mode 100644 index 0000000..e7deebc --- /dev/null +++ b/database/migrations/2025_04_02_001907_create_comments_table.php @@ -0,0 +1,24 @@ +id(); + $table->foreignId('user_id')->constrained()->onDelete('cascade'); + $table->foreignId('topic_id')->constrained()->onDelete('cascade'); + $table->text('content'); + $table->timestamps(); + }); + } + + public function down(): void + { + Schema::dropIfExists('comments'); + } +}; diff --git a/database/migrations/2025_04_02_001913_create_likes_table.php b/database/migrations/2025_04_02_001913_create_likes_table.php new file mode 100644 index 0000000..4c8ea4e --- /dev/null +++ b/database/migrations/2025_04_02_001913_create_likes_table.php @@ -0,0 +1,23 @@ +id(); + $table->foreignId('user_id')->constrained()->onDelete('cascade'); + $table->morphs('likeable'); + $table->timestamps(); + }); + } + + public function down(): void + { + Schema::dropIfExists('likes'); + } +}; diff --git a/database/migrations/2025_04_12_210424_add_parent_id_to_comments_table.php b/database/migrations/2025_04_12_210424_add_parent_id_to_comments_table.php new file mode 100644 index 0000000..0cfbcd6 --- /dev/null +++ b/database/migrations/2025_04_12_210424_add_parent_id_to_comments_table.php @@ -0,0 +1,23 @@ +foreignId('parent_id')->nullable()->constrained('comments')->onDelete('cascade'); + }); + } + + public function down(): void + { + Schema::table('comments', function (Blueprint $table) { + $table->dropForeign(['parent_id']); + $table->dropColumn('parent_id'); + }); + } +}; \ No newline at end of file diff --git a/database/seeders/ArticleSeeder.php b/database/seeders/ArticleSeeder.php new file mode 100644 index 0000000..8c2a6c3 --- /dev/null +++ b/database/seeders/ArticleSeeder.php @@ -0,0 +1,17 @@ + 'Panduan Beternak Ayam', + 'description' => 'Panduan lengkap untuk pemula dalam beternak ayam, mencakup pemilihan bibit unggul, jenis pakan berkualitas, serta perawatan kandang agar hasil ternak optimal.' + ], + [ + 'title' => 'Pengelolaan Kesehatan Ayam', + 'description' => 'Tips penting untuk menjaga kesehatan ayam broiler, termasuk pencegahan penyakit, vaksinasi rutin, kebersihan kandang, dan pemberian pakan bernutrisi.' + ], + [ + 'title' => 'Analisis Bisnis Ayam', + 'description' => 'Strategi sukses dalam bisnis peternakan ayam, mulai dari perencanaan modal, manajemen operasional, hingga pemasaran hasil ternak untuk meraih keuntungan maksimal.' + ] + ]; + + $tags = ['Pakan Ayam', 'Manajemen Kandang', 'Kesehatan Ayam', 'Panduan', 'Tips', 'Berita', 'Ayam Broiler','Budidaya Ayam', 'Teknologi Peternakan','Pencegahan Penyakit','Teknik Pemeliharaan', 'Kualitas Daging Ayam', 'Peralatan Peternakan', 'Efisiensi Operasional',]; + + $tagIds = []; + foreach ($tags as $tagName) { + $tag = Tag::firstOrCreate(['name' => $tagName]); + $tagIds[] = $tag->id; + } + + foreach ($cards as $cardData) { + $card = CardArticle::create($cardData); + + for ($i = 1; $i <= 3; $i++) { + $article = Article::create([ + 'card_id' => $card->id, + 'title' => "Artikel {$i} untuk {$cardData['title']}", + 'description' => "Deskripsi artikel {$i} terkait {$cardData['title']}", + ]); + + $randomTagIds = array_rand(array_flip($tagIds), rand(1, 2)); + $article->tags()->attach($randomTagIds); + + for ($j = 1; $j <= 2; $j++) { + SubArticle::create([ + 'article_id' => $article->id, + 'title' => "SubArtikel {$j} dari {$article->title}", + 'content' => "Konten sub-artikel {$j} yang menjelaskan {$article->title}.", + 'order_number' => $j, + ]); + } + } + } + } +} diff --git a/database/seeders/DatabaseSeeder.php b/database/seeders/DatabaseSeeder.php new file mode 100644 index 0000000..a9f4519 --- /dev/null +++ b/database/seeders/DatabaseSeeder.php @@ -0,0 +1,22 @@ +create(); + + // \App\Models\User::factory()->create([ + // 'name' => 'Test User', + // 'email' => 'test@example.com', + // ]); + } +} diff --git a/database/seeders/HarianAyamSeeder.php b/database/seeders/HarianAyamSeeder.php new file mode 100644 index 0000000..de8a18f --- /dev/null +++ b/database/seeders/HarianAyamSeeder.php @@ -0,0 +1,17 @@ +hasMany(PenggunaanPakan::class, 'pakan_id'); + } +} diff --git a/database/seeders/PopulasiAyamSeeder.php b/database/seeders/PopulasiAyamSeeder.php new file mode 100644 index 0000000..cee6c43 --- /dev/null +++ b/database/seeders/PopulasiAyamSeeder.php @@ -0,0 +1,17 @@ + 'Kata sandi Anda telah berhasil diatur ulang!', + 'sent' => 'Kami telah mengirim email tautan untuk mengatur ulang kata sandi Anda!', + 'throttled' => 'Harap tunggu sebelum mencoba lagi.', + 'token' => 'Token pengaturan ulang kata sandi tidak valid.', + 'user' => "Kami tidak dapat menemukan pengguna dengan alamat email tersebut.", +]; \ No newline at end of file diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..269d562 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,4004 @@ +{ + "name": "TernakQ-Animal-Husbandry-Education", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "dependencies": { + "@fortawesome/fontawesome-free": "^6.7.1", + "chart.js": "^4.4.7", + "toastr": "^2.1.4" + }, + "devDependencies": { + "@tailwindcss/forms": "^0.5.2", + "autoprefixer": "^10.4.2", + "axios": "^1.6.4", + "laravel-vite-plugin": "^1.0.0", + "postcss": "^8.4.31", + "tailwindcss": "^3.1.0", + "vite": "^5.0.0" + } + }, + "node_modules/@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", + "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", + "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", + "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", + "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", + "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", + "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", + "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", + "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", + "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", + "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", + "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", + "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", + "cpu": [ + "loong64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", + "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", + "cpu": [ + "mips64el" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", + "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", + "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", + "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", + "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", + "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", + "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", + "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", + "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", + "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", + "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@fortawesome/fontawesome-free": { + "version": "6.7.1", + "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-free/-/fontawesome-free-6.7.1.tgz", + "integrity": "sha512-ALIk/MOh5gYe1TG/ieS5mVUsk7VUIJTJKPMK9rFFqOgfp0Q3d5QiBXbcOMwUvs37fyZVCz46YjOE6IFeOAXCHA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@kurkle/color": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/@kurkle/color/-/color-0.3.4.tgz", + "integrity": "sha512-M5UknZPHRu3DEDWoipU6sE8PdkZ6Z/S+v4dD+Ke8IaNlpdSQah50lz1KtcFBa2vsdOnwbbnxJwVM4wty6udA5w==" + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.28.0.tgz", + "integrity": "sha512-wLJuPLT6grGZsy34g4N1yRfYeouklTgPhH1gWXCYspenKYD0s3cR99ZevOGw5BexMNywkbV3UkjADisozBmpPQ==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.28.0.tgz", + "integrity": "sha512-eiNkznlo0dLmVG/6wf+Ifi/v78G4d4QxRhuUl+s8EWZpDewgk7PX3ZyECUXU0Zq/Ca+8nU8cQpNC4Xgn2gFNDA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.28.0.tgz", + "integrity": "sha512-lmKx9yHsppblnLQZOGxdO66gT77bvdBtr/0P+TPOseowE7D9AJoBw8ZDULRasXRWf1Z86/gcOdpBrV6VDUY36Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.28.0.tgz", + "integrity": "sha512-8hxgfReVs7k9Js1uAIhS6zq3I+wKQETInnWQtgzt8JfGx51R1N6DRVy3F4o0lQwumbErRz52YqwjfvuwRxGv1w==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.28.0.tgz", + "integrity": "sha512-lA1zZB3bFx5oxu9fYud4+g1mt+lYXCoch0M0V/xhqLoGatbzVse0wlSQ1UYOWKpuSu3gyN4qEc0Dxf/DII1bhQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.28.0.tgz", + "integrity": "sha512-aI2plavbUDjCQB/sRbeUZWX9qp12GfYkYSJOrdYTL/C5D53bsE2/nBPuoiJKoWp5SN78v2Vr8ZPnB+/VbQ2pFA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.28.0.tgz", + "integrity": "sha512-WXveUPKtfqtaNvpf0iOb0M6xC64GzUX/OowbqfiCSXTdi/jLlOmH0Ba94/OkiY2yTGTwteo4/dsHRfh5bDCZ+w==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.28.0.tgz", + "integrity": "sha512-yLc3O2NtOQR67lI79zsSc7lk31xjwcaocvdD1twL64PK1yNaIqCeWI9L5B4MFPAVGEVjH5k1oWSGuYX1Wutxpg==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.28.0.tgz", + "integrity": "sha512-+P9G9hjEpHucHRXqesY+3X9hD2wh0iNnJXX/QhS/J5vTdG6VhNYMxJ2rJkQOxRUd17u5mbMLHM7yWGZdAASfcg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.28.0.tgz", + "integrity": "sha512-1xsm2rCKSTpKzi5/ypT5wfc+4bOGa/9yI/eaOLW0oMs7qpC542APWhl4A37AENGZ6St6GBMWhCCMM6tXgTIplw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.28.0.tgz", + "integrity": "sha512-zgWxMq8neVQeXL+ouSf6S7DoNeo6EPgi1eeqHXVKQxqPy1B2NvTbaOUWPn/7CfMKL7xvhV0/+fq/Z/J69g1WAQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.28.0.tgz", + "integrity": "sha512-VEdVYacLniRxbRJLNtzwGt5vwS0ycYshofI7cWAfj7Vg5asqj+pt+Q6x4n+AONSZW/kVm+5nklde0qs2EUwU2g==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.28.0.tgz", + "integrity": "sha512-LQlP5t2hcDJh8HV8RELD9/xlYtEzJkm/aWGsauvdO2ulfl3QYRjqrKW+mGAIWP5kdNCBheqqqYIGElSRCaXfpw==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.28.0.tgz", + "integrity": "sha512-Nl4KIzteVEKE9BdAvYoTkW19pa7LR/RBrT6F1dJCV/3pbjwDcaOq+edkP0LXuJ9kflW/xOK414X78r+K84+msw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.28.0.tgz", + "integrity": "sha512-eKpJr4vBDOi4goT75MvW+0dXcNUqisK4jvibY9vDdlgLx+yekxSm55StsHbxUsRxSTt3JEQvlr3cGDkzcSP8bw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.28.0.tgz", + "integrity": "sha512-Vi+WR62xWGsE/Oj+mD0FNAPY2MEox3cfyG0zLpotZdehPFXwz6lypkGs5y38Jd/NVSbOD02aVad6q6QYF7i8Bg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.28.0.tgz", + "integrity": "sha512-kN/Vpip8emMLn/eOza+4JwqDZBL6MPNpkdaEsgUtW1NYN3DZvZqSQrbKzJcTL6hd8YNmFTn7XGWMwccOcJBL0A==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.28.0.tgz", + "integrity": "sha512-Bvno2/aZT6usSa7lRDL2+hMjVAGjuqaymF1ApZm31JXzniR/hvr14jpU+/z4X6Gt5BPlzosscyJZGUvguXIqeQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@tailwindcss/forms": { + "version": "0.5.9", + "resolved": "https://registry.npmjs.org/@tailwindcss/forms/-/forms-0.5.9.tgz", + "integrity": "sha512-tM4XVr2+UVTxXJzey9Twx48c1gcxFStqn1pQz0tRsX8o3DvxhN5oY5pvyAbUx7VTaZxpej4Zzvc6h+1RJBzpIg==", + "dev": true, + "dependencies": { + "mini-svg-data-uri": "^1.2.3" + }, + "peerDependencies": { + "tailwindcss": ">=3.0.0 || >= 3.0.0-alpha.1 || >= 4.0.0-alpha.20" + } + }, + "node_modules/@types/estree": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", + "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", + "dev": true + }, + "node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "dev": true + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "dev": true + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true + }, + "node_modules/autoprefixer": { + "version": "10.4.20", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.20.tgz", + "integrity": "sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "browserslist": "^4.23.3", + "caniuse-lite": "^1.0.30001646", + "fraction.js": "^4.3.7", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.1", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/axios": { + "version": "1.7.8", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.8.tgz", + "integrity": "sha512-Uu0wb7KNqK2t5K+YQyVCLM76prD5sRFjKHbJYCP1J7JFGEQ6nN7HWn9+04LAeiJ3ji54lgS/gZCH1oxyrf1SPw==", + "dev": true, + "dependencies": { + "follow-redirects": "^1.15.6", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.24.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz", + "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001669", + "electron-to-chromium": "^1.5.41", + "node-releases": "^2.0.18", + "update-browserslist-db": "^1.1.1" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001685", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001685.tgz", + "integrity": "sha512-e/kJN1EMyHQzgcMEEgoo+YTCO1NGCmIYHk5Qk8jT6AazWemS5QFKJ5ShCJlH3GZrNIdZofcNCEwZqbMjjKzmnA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/chart.js": { + "version": "4.4.7", + "resolved": "https://registry.npmjs.org/chart.js/-/chart.js-4.4.7.tgz", + "integrity": "sha512-pwkcKfdzTMAU/+jNosKhNL2bHtJc/sSmYgVbuGTEDhzkrhmyihmP7vUc/5ZK9WopidMDHNe3Wm7jOd/WhuHWuw==", + "dependencies": { + "@kurkle/color": "^0.3.0" + }, + "engines": { + "pnpm": ">=8" + } + }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chokidar/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true, + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", + "dev": true + }, + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", + "dev": true + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true + }, + "node_modules/electron-to-chromium": { + "version": "1.5.67", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.67.tgz", + "integrity": "sha512-nz88NNBsD7kQSAGGJyp8hS6xSPtWwqNogA0mjtc2nUYeEf3nURK9qpV18TuBdDmEDgVWotS8Wkzf+V52dSQ/LQ==", + "dev": true + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "node_modules/esbuild": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", + "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.21.5", + "@esbuild/android-arm": "0.21.5", + "@esbuild/android-arm64": "0.21.5", + "@esbuild/android-x64": "0.21.5", + "@esbuild/darwin-arm64": "0.21.5", + "@esbuild/darwin-x64": "0.21.5", + "@esbuild/freebsd-arm64": "0.21.5", + "@esbuild/freebsd-x64": "0.21.5", + "@esbuild/linux-arm": "0.21.5", + "@esbuild/linux-arm64": "0.21.5", + "@esbuild/linux-ia32": "0.21.5", + "@esbuild/linux-loong64": "0.21.5", + "@esbuild/linux-mips64el": "0.21.5", + "@esbuild/linux-ppc64": "0.21.5", + "@esbuild/linux-riscv64": "0.21.5", + "@esbuild/linux-s390x": "0.21.5", + "@esbuild/linux-x64": "0.21.5", + "@esbuild/netbsd-x64": "0.21.5", + "@esbuild/openbsd-x64": "0.21.5", + "@esbuild/sunos-x64": "0.21.5", + "@esbuild/win32-arm64": "0.21.5", + "@esbuild/win32-ia32": "0.21.5", + "@esbuild/win32-x64": "0.21.5" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/follow-redirects": { + "version": "1.15.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", + "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/foreground-child": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz", + "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/form-data": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.1.tgz", + "integrity": "sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fraction.js": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", + "dev": true, + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://github.com/sponsors/rawify" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "dev": true, + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-core-module": { + "version": "2.15.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz", + "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==", + "dev": true, + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "dev": true, + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/jiti": { + "version": "1.21.6", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.6.tgz", + "integrity": "sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==", + "dev": true, + "bin": { + "jiti": "bin/jiti.js" + } + }, + "node_modules/jquery": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.7.1.tgz", + "integrity": "sha512-m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg==" + }, + "node_modules/laravel-vite-plugin": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/laravel-vite-plugin/-/laravel-vite-plugin-1.0.6.tgz", + "integrity": "sha512-B34OqmZc/rV1KvSjst8SsUm/LKHsuDusw8jiZCIhlnTHXbXnK89JUM9pTJuk6E/Vc/1DT2gX7qNfhipak1WS8w==", + "dev": true, + "dependencies": { + "picocolors": "^1.0.0", + "vite-plugin-full-reload": "^1.1.0" + }, + "bin": { + "clean-orphaned-assets": "bin/clean.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "peerDependencies": { + "vite": "^5.0.0" + } + }, + "node_modules/lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "dev": true + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "dev": true, + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mini-svg-data-uri": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/mini-svg-data-uri/-/mini-svg-data-uri-1.4.4.tgz", + "integrity": "sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==", + "dev": true, + "bin": { + "mini-svg-data-uri": "cli.js" + } + }, + "node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "dev": true, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "dev": true, + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "node_modules/nanoid": { + "version": "3.3.8", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", + "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/node-releases": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", + "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==", + "dev": true + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", + "dev": true + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "dev": true, + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/postcss": { + "version": "8.4.49", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.49.tgz", + "integrity": "sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.7", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-import": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-js": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", + "dev": true, + "dependencies": { + "camelcase-css": "^2.0.1" + }, + "engines": { + "node": "^12 || ^14 || >= 16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.4.21" + } + }, + "node_modules/postcss-load-config": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz", + "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "lilconfig": "^3.0.0", + "yaml": "^2.3.4" + }, + "engines": { + "node": ">= 14" + }, + "peerDependencies": { + "postcss": ">=8.0.9", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "postcss": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/postcss-load-config/node_modules/lilconfig": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.2.tgz", + "integrity": "sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antonk52" + } + }, + "node_modules/postcss-nested": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz", + "integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "postcss-selector-parser": "^6.1.1" + }, + "engines": { + "node": ">=12.0" + }, + "peerDependencies": { + "postcss": "^8.2.14" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", + "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", + "dev": true, + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true + }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "dev": true + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "dev": true, + "dependencies": { + "pify": "^2.3.0" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rollup": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.28.0.tgz", + "integrity": "sha512-G9GOrmgWHBma4YfCcX8PjH0qhXSdH8B4HDE2o4/jaxj93S4DPCIDoLcXz99eWMji4hB29UFCEd7B2gwGJDR9cQ==", + "dev": true, + "dependencies": { + "@types/estree": "1.0.6" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.28.0", + "@rollup/rollup-android-arm64": "4.28.0", + "@rollup/rollup-darwin-arm64": "4.28.0", + "@rollup/rollup-darwin-x64": "4.28.0", + "@rollup/rollup-freebsd-arm64": "4.28.0", + "@rollup/rollup-freebsd-x64": "4.28.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.28.0", + "@rollup/rollup-linux-arm-musleabihf": "4.28.0", + "@rollup/rollup-linux-arm64-gnu": "4.28.0", + "@rollup/rollup-linux-arm64-musl": "4.28.0", + "@rollup/rollup-linux-powerpc64le-gnu": "4.28.0", + "@rollup/rollup-linux-riscv64-gnu": "4.28.0", + "@rollup/rollup-linux-s390x-gnu": "4.28.0", + "@rollup/rollup-linux-x64-gnu": "4.28.0", + "@rollup/rollup-linux-x64-musl": "4.28.0", + "@rollup/rollup-win32-arm64-msvc": "4.28.0", + "@rollup/rollup-win32-ia32-msvc": "4.28.0", + "@rollup/rollup-win32-x64-msvc": "4.28.0", + "fsevents": "~2.3.2" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/string-width-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/sucrase": { + "version": "3.35.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", + "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "^10.3.10", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + }, + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/tailwindcss": { + "version": "3.4.15", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.15.tgz", + "integrity": "sha512-r4MeXnfBmSOuKUWmXe6h2CcyfzJCEk4F0pptO5jlnYSIViUkVmsawj80N5h2lO3gwcmSb4n3PuN+e+GC1Guylw==", + "dev": true, + "dependencies": { + "@alloc/quick-lru": "^5.2.0", + "arg": "^5.0.2", + "chokidar": "^3.6.0", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.3.2", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "jiti": "^1.21.6", + "lilconfig": "^2.1.0", + "micromatch": "^4.0.8", + "normalize-path": "^3.0.0", + "object-hash": "^3.0.0", + "picocolors": "^1.1.1", + "postcss": "^8.4.47", + "postcss-import": "^15.1.0", + "postcss-js": "^4.0.1", + "postcss-load-config": "^4.0.2", + "postcss-nested": "^6.2.0", + "postcss-selector-parser": "^6.1.2", + "resolve": "^1.22.8", + "sucrase": "^3.35.0" + }, + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "dev": true, + "dependencies": { + "any-promise": "^1.0.0" + } + }, + "node_modules/thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "dev": true, + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/toastr": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/toastr/-/toastr-2.1.4.tgz", + "integrity": "sha512-LIy77F5n+sz4tefMmFOntcJ6HL0Fv3k1TDnNmFZ0bU/GcvIIfy6eG2v7zQmMiYgaalAiUv75ttFrPn5s0gyqlA==", + "dependencies": { + "jquery": ">=1.12.0" + } + }, + "node_modules/ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", + "dev": true + }, + "node_modules/update-browserslist-db": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz", + "integrity": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/vite": { + "version": "5.4.11", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.11.tgz", + "integrity": "sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q==", + "dev": true, + "dependencies": { + "esbuild": "^0.21.3", + "postcss": "^8.4.43", + "rollup": "^4.20.0" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || >=20.0.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "sass-embedded": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/vite-plugin-full-reload": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/vite-plugin-full-reload/-/vite-plugin-full-reload-1.2.0.tgz", + "integrity": "sha512-kz18NW79x0IHbxRSHm0jttP4zoO9P9gXh+n6UTwlNKnviTTEpOlum6oS9SmecrTtSr+muHEn5TUuC75UovQzcA==", + "dev": true, + "dependencies": { + "picocolors": "^1.0.0", + "picomatch": "^2.3.1" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/wrap-ansi-cjs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yaml": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.6.1.tgz", + "integrity": "sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==", + "dev": true, + "bin": { + "yaml": "bin.mjs" + }, + "engines": { + "node": ">= 14" + } + } + }, + "dependencies": { + "@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "dev": true + }, + "@esbuild/aix-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", + "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", + "dev": true, + "optional": true + }, + "@esbuild/android-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", + "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", + "dev": true, + "optional": true + }, + "@esbuild/android-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", + "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", + "dev": true, + "optional": true + }, + "@esbuild/android-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", + "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", + "dev": true, + "optional": true + }, + "@esbuild/darwin-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", + "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", + "dev": true, + "optional": true + }, + "@esbuild/darwin-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", + "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", + "dev": true, + "optional": true + }, + "@esbuild/freebsd-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", + "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", + "dev": true, + "optional": true + }, + "@esbuild/freebsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", + "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", + "dev": true, + "optional": true + }, + "@esbuild/linux-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", + "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", + "dev": true, + "optional": true + }, + "@esbuild/linux-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", + "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", + "dev": true, + "optional": true + }, + "@esbuild/linux-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", + "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", + "dev": true, + "optional": true + }, + "@esbuild/linux-loong64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", + "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", + "dev": true, + "optional": true + }, + "@esbuild/linux-mips64el": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", + "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", + "dev": true, + "optional": true + }, + "@esbuild/linux-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", + "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", + "dev": true, + "optional": true + }, + "@esbuild/linux-riscv64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", + "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", + "dev": true, + "optional": true + }, + "@esbuild/linux-s390x": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", + "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", + "dev": true, + "optional": true + }, + "@esbuild/linux-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", + "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", + "dev": true, + "optional": true + }, + "@esbuild/netbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", + "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", + "dev": true, + "optional": true + }, + "@esbuild/openbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", + "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", + "dev": true, + "optional": true + }, + "@esbuild/sunos-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", + "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", + "dev": true, + "optional": true + }, + "@esbuild/win32-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", + "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", + "dev": true, + "optional": true + }, + "@esbuild/win32-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", + "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", + "dev": true, + "optional": true + }, + "@esbuild/win32-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", + "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", + "dev": true, + "optional": true + }, + "@fortawesome/fontawesome-free": { + "version": "6.7.1", + "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-free/-/fontawesome-free-6.7.1.tgz", + "integrity": "sha512-ALIk/MOh5gYe1TG/ieS5mVUsk7VUIJTJKPMK9rFFqOgfp0Q3d5QiBXbcOMwUvs37fyZVCz46YjOE6IFeOAXCHA==" + }, + "@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "requires": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + } + }, + "@jridgewell/gen-mapping": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", + "dev": true, + "requires": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true + }, + "@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "dev": true + }, + "@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", + "dev": true + }, + "@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "dev": true, + "requires": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "@kurkle/color": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/@kurkle/color/-/color-0.3.4.tgz", + "integrity": "sha512-M5UknZPHRu3DEDWoipU6sE8PdkZ6Z/S+v4dD+Ke8IaNlpdSQah50lz1KtcFBa2vsdOnwbbnxJwVM4wty6udA5w==" + }, + "@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true + }, + "@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "requires": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + } + }, + "@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "optional": true + }, + "@rollup/rollup-android-arm-eabi": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.28.0.tgz", + "integrity": "sha512-wLJuPLT6grGZsy34g4N1yRfYeouklTgPhH1gWXCYspenKYD0s3cR99ZevOGw5BexMNywkbV3UkjADisozBmpPQ==", + "dev": true, + "optional": true + }, + "@rollup/rollup-android-arm64": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.28.0.tgz", + "integrity": "sha512-eiNkznlo0dLmVG/6wf+Ifi/v78G4d4QxRhuUl+s8EWZpDewgk7PX3ZyECUXU0Zq/Ca+8nU8cQpNC4Xgn2gFNDA==", + "dev": true, + "optional": true + }, + "@rollup/rollup-darwin-arm64": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.28.0.tgz", + "integrity": "sha512-lmKx9yHsppblnLQZOGxdO66gT77bvdBtr/0P+TPOseowE7D9AJoBw8ZDULRasXRWf1Z86/gcOdpBrV6VDUY36Q==", + "dev": true, + "optional": true + }, + "@rollup/rollup-darwin-x64": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.28.0.tgz", + "integrity": "sha512-8hxgfReVs7k9Js1uAIhS6zq3I+wKQETInnWQtgzt8JfGx51R1N6DRVy3F4o0lQwumbErRz52YqwjfvuwRxGv1w==", + "dev": true, + "optional": true + }, + "@rollup/rollup-freebsd-arm64": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.28.0.tgz", + "integrity": "sha512-lA1zZB3bFx5oxu9fYud4+g1mt+lYXCoch0M0V/xhqLoGatbzVse0wlSQ1UYOWKpuSu3gyN4qEc0Dxf/DII1bhQ==", + "dev": true, + "optional": true + }, + "@rollup/rollup-freebsd-x64": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.28.0.tgz", + "integrity": "sha512-aI2plavbUDjCQB/sRbeUZWX9qp12GfYkYSJOrdYTL/C5D53bsE2/nBPuoiJKoWp5SN78v2Vr8ZPnB+/VbQ2pFA==", + "dev": true, + "optional": true + }, + "@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.28.0.tgz", + "integrity": "sha512-WXveUPKtfqtaNvpf0iOb0M6xC64GzUX/OowbqfiCSXTdi/jLlOmH0Ba94/OkiY2yTGTwteo4/dsHRfh5bDCZ+w==", + "dev": true, + "optional": true + }, + "@rollup/rollup-linux-arm-musleabihf": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.28.0.tgz", + "integrity": "sha512-yLc3O2NtOQR67lI79zsSc7lk31xjwcaocvdD1twL64PK1yNaIqCeWI9L5B4MFPAVGEVjH5k1oWSGuYX1Wutxpg==", + "dev": true, + "optional": true + }, + "@rollup/rollup-linux-arm64-gnu": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.28.0.tgz", + "integrity": "sha512-+P9G9hjEpHucHRXqesY+3X9hD2wh0iNnJXX/QhS/J5vTdG6VhNYMxJ2rJkQOxRUd17u5mbMLHM7yWGZdAASfcg==", + "dev": true, + "optional": true + }, + "@rollup/rollup-linux-arm64-musl": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.28.0.tgz", + "integrity": "sha512-1xsm2rCKSTpKzi5/ypT5wfc+4bOGa/9yI/eaOLW0oMs7qpC542APWhl4A37AENGZ6St6GBMWhCCMM6tXgTIplw==", + "dev": true, + "optional": true + }, + "@rollup/rollup-linux-powerpc64le-gnu": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.28.0.tgz", + "integrity": "sha512-zgWxMq8neVQeXL+ouSf6S7DoNeo6EPgi1eeqHXVKQxqPy1B2NvTbaOUWPn/7CfMKL7xvhV0/+fq/Z/J69g1WAQ==", + "dev": true, + "optional": true + }, + "@rollup/rollup-linux-riscv64-gnu": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.28.0.tgz", + "integrity": "sha512-VEdVYacLniRxbRJLNtzwGt5vwS0ycYshofI7cWAfj7Vg5asqj+pt+Q6x4n+AONSZW/kVm+5nklde0qs2EUwU2g==", + "dev": true, + "optional": true + }, + "@rollup/rollup-linux-s390x-gnu": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.28.0.tgz", + "integrity": "sha512-LQlP5t2hcDJh8HV8RELD9/xlYtEzJkm/aWGsauvdO2ulfl3QYRjqrKW+mGAIWP5kdNCBheqqqYIGElSRCaXfpw==", + "dev": true, + "optional": true + }, + "@rollup/rollup-linux-x64-gnu": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.28.0.tgz", + "integrity": "sha512-Nl4KIzteVEKE9BdAvYoTkW19pa7LR/RBrT6F1dJCV/3pbjwDcaOq+edkP0LXuJ9kflW/xOK414X78r+K84+msw==", + "dev": true, + "optional": true + }, + "@rollup/rollup-linux-x64-musl": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.28.0.tgz", + "integrity": "sha512-eKpJr4vBDOi4goT75MvW+0dXcNUqisK4jvibY9vDdlgLx+yekxSm55StsHbxUsRxSTt3JEQvlr3cGDkzcSP8bw==", + "dev": true, + "optional": true + }, + "@rollup/rollup-win32-arm64-msvc": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.28.0.tgz", + "integrity": "sha512-Vi+WR62xWGsE/Oj+mD0FNAPY2MEox3cfyG0zLpotZdehPFXwz6lypkGs5y38Jd/NVSbOD02aVad6q6QYF7i8Bg==", + "dev": true, + "optional": true + }, + "@rollup/rollup-win32-ia32-msvc": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.28.0.tgz", + "integrity": "sha512-kN/Vpip8emMLn/eOza+4JwqDZBL6MPNpkdaEsgUtW1NYN3DZvZqSQrbKzJcTL6hd8YNmFTn7XGWMwccOcJBL0A==", + "dev": true, + "optional": true + }, + "@rollup/rollup-win32-x64-msvc": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.28.0.tgz", + "integrity": "sha512-Bvno2/aZT6usSa7lRDL2+hMjVAGjuqaymF1ApZm31JXzniR/hvr14jpU+/z4X6Gt5BPlzosscyJZGUvguXIqeQ==", + "dev": true, + "optional": true + }, + "@tailwindcss/forms": { + "version": "0.5.9", + "resolved": "https://registry.npmjs.org/@tailwindcss/forms/-/forms-0.5.9.tgz", + "integrity": "sha512-tM4XVr2+UVTxXJzey9Twx48c1gcxFStqn1pQz0tRsX8o3DvxhN5oY5pvyAbUx7VTaZxpej4Zzvc6h+1RJBzpIg==", + "dev": true, + "requires": { + "mini-svg-data-uri": "^1.2.3" + } + }, + "@types/estree": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", + "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", + "dev": true + }, + "ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "dev": true + }, + "ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true + }, + "any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "dev": true + }, + "anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "dev": true + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true + }, + "autoprefixer": { + "version": "10.4.20", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.20.tgz", + "integrity": "sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==", + "dev": true, + "requires": { + "browserslist": "^4.23.3", + "caniuse-lite": "^1.0.30001646", + "fraction.js": "^4.3.7", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.1", + "postcss-value-parser": "^4.2.0" + } + }, + "axios": { + "version": "1.7.8", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.8.tgz", + "integrity": "sha512-Uu0wb7KNqK2t5K+YQyVCLM76prD5sRFjKHbJYCP1J7JFGEQ6nN7HWn9+04LAeiJ3ji54lgS/gZCH1oxyrf1SPw==", + "dev": true, + "requires": { + "follow-redirects": "^1.15.6", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "dev": true + }, + "brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0" + } + }, + "braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "requires": { + "fill-range": "^7.1.1" + } + }, + "browserslist": { + "version": "4.24.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz", + "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==", + "dev": true, + "requires": { + "caniuse-lite": "^1.0.30001669", + "electron-to-chromium": "^1.5.41", + "node-releases": "^2.0.18", + "update-browserslist-db": "^1.1.1" + } + }, + "camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "dev": true + }, + "caniuse-lite": { + "version": "1.0.30001685", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001685.tgz", + "integrity": "sha512-e/kJN1EMyHQzgcMEEgoo+YTCO1NGCmIYHk5Qk8jT6AazWemS5QFKJ5ShCJlH3GZrNIdZofcNCEwZqbMjjKzmnA==", + "dev": true + }, + "chart.js": { + "version": "4.4.7", + "resolved": "https://registry.npmjs.org/chart.js/-/chart.js-4.4.7.tgz", + "integrity": "sha512-pwkcKfdzTMAU/+jNosKhNL2bHtJc/sSmYgVbuGTEDhzkrhmyihmP7vUc/5ZK9WopidMDHNe3Wm7jOd/WhuHWuw==", + "requires": { + "@kurkle/color": "^0.3.0" + } + }, + "chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "dependencies": { + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + } + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true + }, + "cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true + }, + "didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", + "dev": true + }, + "dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", + "dev": true + }, + "eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true + }, + "electron-to-chromium": { + "version": "1.5.67", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.67.tgz", + "integrity": "sha512-nz88NNBsD7kQSAGGJyp8hS6xSPtWwqNogA0mjtc2nUYeEf3nURK9qpV18TuBdDmEDgVWotS8Wkzf+V52dSQ/LQ==", + "dev": true + }, + "emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "esbuild": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", + "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", + "dev": true, + "requires": { + "@esbuild/aix-ppc64": "0.21.5", + "@esbuild/android-arm": "0.21.5", + "@esbuild/android-arm64": "0.21.5", + "@esbuild/android-x64": "0.21.5", + "@esbuild/darwin-arm64": "0.21.5", + "@esbuild/darwin-x64": "0.21.5", + "@esbuild/freebsd-arm64": "0.21.5", + "@esbuild/freebsd-x64": "0.21.5", + "@esbuild/linux-arm": "0.21.5", + "@esbuild/linux-arm64": "0.21.5", + "@esbuild/linux-ia32": "0.21.5", + "@esbuild/linux-loong64": "0.21.5", + "@esbuild/linux-mips64el": "0.21.5", + "@esbuild/linux-ppc64": "0.21.5", + "@esbuild/linux-riscv64": "0.21.5", + "@esbuild/linux-s390x": "0.21.5", + "@esbuild/linux-x64": "0.21.5", + "@esbuild/netbsd-x64": "0.21.5", + "@esbuild/openbsd-x64": "0.21.5", + "@esbuild/sunos-x64": "0.21.5", + "@esbuild/win32-arm64": "0.21.5", + "@esbuild/win32-ia32": "0.21.5", + "@esbuild/win32-x64": "0.21.5" + } + }, + "escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true + }, + "fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "dependencies": { + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + } + } + }, + "fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "dev": true, + "requires": { + "reusify": "^1.0.4" + } + }, + "fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "follow-redirects": { + "version": "1.15.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", + "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", + "dev": true + }, + "foreground-child": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz", + "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + } + }, + "form-data": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.1.tgz", + "integrity": "sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==", + "dev": true, + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + } + }, + "fraction.js": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", + "dev": true + }, + "fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "optional": true + }, + "function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true + }, + "glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "dev": true, + "requires": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + } + }, + "glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "requires": { + "is-glob": "^4.0.3" + } + }, + "hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "requires": { + "function-bind": "^1.1.2" + } + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-core-module": { + "version": "2.15.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz", + "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==", + "dev": true, + "requires": { + "hasown": "^2.0.2" + } + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "dev": true, + "requires": { + "@isaacs/cliui": "^8.0.2", + "@pkgjs/parseargs": "^0.11.0" + } + }, + "jiti": { + "version": "1.21.6", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.6.tgz", + "integrity": "sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==", + "dev": true + }, + "jquery": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.7.1.tgz", + "integrity": "sha512-m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg==" + }, + "laravel-vite-plugin": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/laravel-vite-plugin/-/laravel-vite-plugin-1.0.6.tgz", + "integrity": "sha512-B34OqmZc/rV1KvSjst8SsUm/LKHsuDusw8jiZCIhlnTHXbXnK89JUM9pTJuk6E/Vc/1DT2gX7qNfhipak1WS8w==", + "dev": true, + "requires": { + "picocolors": "^1.0.0", + "vite-plugin-full-reload": "^1.1.0" + } + }, + "lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "dev": true + }, + "lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "dev": true + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true + }, + "micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "dev": true, + "requires": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + } + }, + "mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true + }, + "mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "requires": { + "mime-db": "1.52.0" + } + }, + "mini-svg-data-uri": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/mini-svg-data-uri/-/mini-svg-data-uri-1.4.4.tgz", + "integrity": "sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==", + "dev": true + }, + "minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "requires": { + "brace-expansion": "^2.0.1" + } + }, + "minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "dev": true + }, + "mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "dev": true, + "requires": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "nanoid": { + "version": "3.3.8", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", + "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", + "dev": true + }, + "node-releases": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", + "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==", + "dev": true + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + }, + "normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "dev": true + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true + }, + "object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", + "dev": true + }, + "package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", + "dev": true + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "dev": true, + "requires": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + } + }, + "picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true + }, + "pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "dev": true + }, + "postcss": { + "version": "8.4.49", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.49.tgz", + "integrity": "sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==", + "dev": true, + "requires": { + "nanoid": "^3.3.7", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + } + }, + "postcss-import": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + } + }, + "postcss-js": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", + "dev": true, + "requires": { + "camelcase-css": "^2.0.1" + } + }, + "postcss-load-config": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz", + "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==", + "dev": true, + "requires": { + "lilconfig": "^3.0.0", + "yaml": "^2.3.4" + }, + "dependencies": { + "lilconfig": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.2.tgz", + "integrity": "sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==", + "dev": true + } + } + }, + "postcss-nested": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz", + "integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==", + "dev": true, + "requires": { + "postcss-selector-parser": "^6.1.1" + } + }, + "postcss-selector-parser": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", + "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", + "dev": true, + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + } + }, + "postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true + }, + "proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "dev": true + }, + "queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true + }, + "read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "dev": true, + "requires": { + "pify": "^2.3.0" + } + }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "requires": { + "picomatch": "^2.2.1" + } + }, + "resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "requires": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + } + }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true + }, + "rollup": { + "version": "4.28.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.28.0.tgz", + "integrity": "sha512-G9GOrmgWHBma4YfCcX8PjH0qhXSdH8B4HDE2o4/jaxj93S4DPCIDoLcXz99eWMji4hB29UFCEd7B2gwGJDR9cQ==", + "dev": true, + "requires": { + "@rollup/rollup-android-arm-eabi": "4.28.0", + "@rollup/rollup-android-arm64": "4.28.0", + "@rollup/rollup-darwin-arm64": "4.28.0", + "@rollup/rollup-darwin-x64": "4.28.0", + "@rollup/rollup-freebsd-arm64": "4.28.0", + "@rollup/rollup-freebsd-x64": "4.28.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.28.0", + "@rollup/rollup-linux-arm-musleabihf": "4.28.0", + "@rollup/rollup-linux-arm64-gnu": "4.28.0", + "@rollup/rollup-linux-arm64-musl": "4.28.0", + "@rollup/rollup-linux-powerpc64le-gnu": "4.28.0", + "@rollup/rollup-linux-riscv64-gnu": "4.28.0", + "@rollup/rollup-linux-s390x-gnu": "4.28.0", + "@rollup/rollup-linux-x64-gnu": "4.28.0", + "@rollup/rollup-linux-x64-musl": "4.28.0", + "@rollup/rollup-win32-arm64-msvc": "4.28.0", + "@rollup/rollup-win32-ia32-msvc": "4.28.0", + "@rollup/rollup-win32-x64-msvc": "4.28.0", + "@types/estree": "1.0.6", + "fsevents": "~2.3.2" + } + }, + "run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "requires": { + "queue-microtask": "^1.2.2" + } + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, + "signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true + }, + "source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "dev": true + }, + "string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "requires": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + } + }, + "string-width-cjs": { + "version": "npm:string-width@4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + } + } + }, + "strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "requires": { + "ansi-regex": "^6.0.1" + } + }, + "strip-ansi-cjs": { + "version": "npm:strip-ansi@6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + } + } + }, + "sucrase": { + "version": "3.35.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", + "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", + "dev": true, + "requires": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "^10.3.10", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + } + }, + "supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true + }, + "tailwindcss": { + "version": "3.4.15", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.15.tgz", + "integrity": "sha512-r4MeXnfBmSOuKUWmXe6h2CcyfzJCEk4F0pptO5jlnYSIViUkVmsawj80N5h2lO3gwcmSb4n3PuN+e+GC1Guylw==", + "dev": true, + "requires": { + "@alloc/quick-lru": "^5.2.0", + "arg": "^5.0.2", + "chokidar": "^3.6.0", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.3.2", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "jiti": "^1.21.6", + "lilconfig": "^2.1.0", + "micromatch": "^4.0.8", + "normalize-path": "^3.0.0", + "object-hash": "^3.0.0", + "picocolors": "^1.1.1", + "postcss": "^8.4.47", + "postcss-import": "^15.1.0", + "postcss-js": "^4.0.1", + "postcss-load-config": "^4.0.2", + "postcss-nested": "^6.2.0", + "postcss-selector-parser": "^6.1.2", + "resolve": "^1.22.8", + "sucrase": "^3.35.0" + } + }, + "thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "dev": true, + "requires": { + "any-promise": "^1.0.0" + } + }, + "thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "dev": true, + "requires": { + "thenify": ">= 3.1.0 < 4" + } + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } + }, + "toastr": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/toastr/-/toastr-2.1.4.tgz", + "integrity": "sha512-LIy77F5n+sz4tefMmFOntcJ6HL0Fv3k1TDnNmFZ0bU/GcvIIfy6eG2v7zQmMiYgaalAiUv75ttFrPn5s0gyqlA==", + "requires": { + "jquery": ">=1.12.0" + } + }, + "ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", + "dev": true + }, + "update-browserslist-db": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz", + "integrity": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==", + "dev": true, + "requires": { + "escalade": "^3.2.0", + "picocolors": "^1.1.0" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "vite": { + "version": "5.4.11", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.11.tgz", + "integrity": "sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q==", + "dev": true, + "requires": { + "esbuild": "^0.21.3", + "fsevents": "~2.3.3", + "postcss": "^8.4.43", + "rollup": "^4.20.0" + } + }, + "vite-plugin-full-reload": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/vite-plugin-full-reload/-/vite-plugin-full-reload-1.2.0.tgz", + "integrity": "sha512-kz18NW79x0IHbxRSHm0jttP4zoO9P9gXh+n6UTwlNKnviTTEpOlum6oS9SmecrTtSr+muHEn5TUuC75UovQzcA==", + "dev": true, + "requires": { + "picocolors": "^1.0.0", + "picomatch": "^2.3.1" + } + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "requires": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + } + }, + "wrap-ansi-cjs": { + "version": "npm:wrap-ansi@7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + } + } + }, + "yaml": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.6.1.tgz", + "integrity": "sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==", + "dev": true + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..bc8f78e --- /dev/null +++ b/package.json @@ -0,0 +1,22 @@ +{ + "private": true, + "type": "module", + "scripts": { + "dev": "vite", + "build": "vite build" + }, + "devDependencies": { + "@tailwindcss/forms": "^0.5.2", + "autoprefixer": "^10.4.2", + "axios": "^1.6.4", + "laravel-vite-plugin": "^1.0.0", + "postcss": "^8.4.31", + "tailwindcss": "^3.1.0", + "vite": "^5.0.0" + }, + "dependencies": { + "@fortawesome/fontawesome-free": "^6.7.1", + "chart.js": "^4.4.7", + "toastr": "^2.1.4" + } +} diff --git a/phpunit.xml b/phpunit.xml new file mode 100644 index 0000000..bc86714 --- /dev/null +++ b/phpunit.xml @@ -0,0 +1,32 @@ + + + + + tests/Unit + + + tests/Feature + + + + + app + + + + + + + + + + + + + + + diff --git a/postcss.config.js b/postcss.config.js new file mode 100644 index 0000000..49c0612 --- /dev/null +++ b/postcss.config.js @@ -0,0 +1,6 @@ +export default { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +}; diff --git a/public/.htaccess b/public/.htaccess new file mode 100644 index 0000000..68af186 --- /dev/null +++ b/public/.htaccess @@ -0,0 +1,35 @@ + + + Options -MultiViews -Indexes + + + RewriteEngine On + + # Handle Authorization Header + RewriteCond %{HTTP:Authorization} . + RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] + + # Redirect Trailing Slashes If Not A Folder... + RewriteCond %{REQUEST_FILENAME} !-d + RewriteCond %{REQUEST_URI} (.+)/$ + RewriteRule ^ %1 [L,R=301] + + # Send Requests To Front Controller... + RewriteCond %{REQUEST_FILENAME} !-d + RewriteCond %{REQUEST_FILENAME} !-f + RewriteRule ^ index.php [L] + + + + php_value upload_max_filesize 2M + php_value post_max_size 2M + + + + FcgidMaxRequestLen 2097152 + + + + php_value upload_max_filesize 2M + php_value post_max_size 2M + \ No newline at end of file diff --git a/public/css/all.min.css b/public/css/all.min.css new file mode 100644 index 0000000..71623db --- /dev/null +++ b/public/css/all.min.css @@ -0,0 +1,8194 @@ +/*! + * Font Awesome Free 6.7.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + * Copyright 2024 Fonticons, Inc. + */ +.fa { + font-family: var(--fa-style-family, "Font Awesome 6 Free"); + font-weight: var(--fa-style, 900); +} +.fa, +.fa-brands, +.fa-regular, +.fa-solid, +.fab, +.far, +.fas { + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + display: var(--fa-display, inline-block); + font-style: normal; + font-variant: normal; + line-height: 1; + text-rendering: auto; +} +.fa-brands:before, +.fa-regular:before, +.fa-solid:before, +.fa:before, +.fab:before, +.far:before, +.fas:before { + content: var(--fa); +} +.fa-classic, +.fa-regular, +.fa-solid, +.far, +.fas { + font-family: "Font Awesome 6 Free"; +} +.fa-brands, +.fab { + font-family: "Font Awesome 6 Brands"; +} +.fa-1x { + font-size: 1em; +} +.fa-2x { + font-size: 2em; +} +.fa-3x { + font-size: 3em; +} +.fa-4x { + font-size: 4em; +} +.fa-5x { + font-size: 5em; +} +.fa-6x { + font-size: 6em; +} +.fa-7x { + font-size: 7em; +} +.fa-8x { + font-size: 8em; +} +.fa-9x { + font-size: 9em; +} +.fa-10x { + font-size: 10em; +} +.fa-2xs { + font-size: 0.625em; + line-height: 0.1em; + vertical-align: 0.225em; +} +.fa-xs { + font-size: 0.75em; + line-height: 0.08333em; + vertical-align: 0.125em; +} +.fa-sm { + font-size: 0.875em; + line-height: 0.07143em; + vertical-align: 0.05357em; +} +.fa-lg { + font-size: 1.25em; + line-height: 0.05em; + vertical-align: -0.075em; +} +.fa-xl { + font-size: 1.5em; + line-height: 0.04167em; + vertical-align: -0.125em; +} +.fa-2xl { + font-size: 2em; + line-height: 0.03125em; + vertical-align: -0.1875em; +} +.fa-fw { + text-align: center; + width: 1.25em; +} +.fa-ul { + list-style-type: none; + margin-left: var(--fa-li-margin, 2.5em); + padding-left: 0; +} +.fa-ul > li { + position: relative; +} +.fa-li { + left: calc(var(--fa-li-width, 2em) * -1); + position: absolute; + text-align: center; + width: var(--fa-li-width, 2em); + line-height: inherit; +} +.fa-border { + border-radius: var(--fa-border-radius, 0.1em); + border: var(--fa-border-width, 0.08em) var(--fa-border-style, solid) + var(--fa-border-color, #eee); + padding: var(--fa-border-padding, 0.2em 0.25em 0.15em); +} +.fa-pull-left { + float: left; + margin-right: var(--fa-pull-margin, 0.3em); +} +.fa-pull-right { + float: right; + margin-left: var(--fa-pull-margin, 0.3em); +} +.fa-beat { + animation-name: fa-beat; + animation-delay: var(--fa-animation-delay, 0s); + animation-direction: var(--fa-animation-direction, normal); + animation-duration: var(--fa-animation-duration, 1s); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-timing-function: var(--fa-animation-timing, ease-in-out); +} +.fa-bounce { + animation-name: fa-bounce; + animation-delay: var(--fa-animation-delay, 0s); + animation-direction: var(--fa-animation-direction, normal); + animation-duration: var(--fa-animation-duration, 1s); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-timing-function: var( + --fa-animation-timing, + cubic-bezier(0.28, 0.84, 0.42, 1) + ); +} +.fa-fade { + animation-name: fa-fade; + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-timing-function: var( + --fa-animation-timing, + cubic-bezier(0.4, 0, 0.6, 1) + ); +} +.fa-beat-fade, +.fa-fade { + animation-delay: var(--fa-animation-delay, 0s); + animation-direction: var(--fa-animation-direction, normal); + animation-duration: var(--fa-animation-duration, 1s); +} +.fa-beat-fade { + animation-name: fa-beat-fade; + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-timing-function: var( + --fa-animation-timing, + cubic-bezier(0.4, 0, 0.6, 1) + ); +} +.fa-flip { + animation-name: fa-flip; + animation-delay: var(--fa-animation-delay, 0s); + animation-direction: var(--fa-animation-direction, normal); + animation-duration: var(--fa-animation-duration, 1s); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-timing-function: var(--fa-animation-timing, ease-in-out); +} +.fa-shake { + animation-name: fa-shake; + animation-duration: var(--fa-animation-duration, 1s); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-timing-function: var(--fa-animation-timing, linear); +} +.fa-shake, +.fa-spin { + animation-delay: var(--fa-animation-delay, 0s); + animation-direction: var(--fa-animation-direction, normal); +} +.fa-spin { + animation-name: fa-spin; + animation-duration: var(--fa-animation-duration, 2s); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-timing-function: var(--fa-animation-timing, linear); +} +.fa-spin-reverse { + --fa-animation-direction: reverse; +} +.fa-pulse, +.fa-spin-pulse { + animation-name: fa-spin; + animation-direction: var(--fa-animation-direction, normal); + animation-duration: var(--fa-animation-duration, 1s); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-timing-function: var(--fa-animation-timing, steps(8)); +} +@media (prefers-reduced-motion: reduce) { + .fa-beat, + .fa-beat-fade, + .fa-bounce, + .fa-fade, + .fa-flip, + .fa-pulse, + .fa-shake, + .fa-spin, + .fa-spin-pulse { + animation-delay: -1ms; + animation-duration: 1ms; + animation-iteration-count: 1; + transition-delay: 0s; + transition-duration: 0s; + } +} +@keyframes fa-beat { + 0%, + 90% { + transform: scale(1); + } + 45% { + transform: scale(var(--fa-beat-scale, 1.25)); + } +} +@keyframes fa-bounce { + 0% { + transform: scale(1) translateY(0); + } + 10% { + transform: scale( + var(--fa-bounce-start-scale-x, 1.1), + var(--fa-bounce-start-scale-y, 0.9) + ) + translateY(0); + } + 30% { + transform: scale( + var(--fa-bounce-jump-scale-x, 0.9), + var(--fa-bounce-jump-scale-y, 1.1) + ) + translateY(var(--fa-bounce-height, -0.5em)); + } + 50% { + transform: scale( + var(--fa-bounce-land-scale-x, 1.05), + var(--fa-bounce-land-scale-y, 0.95) + ) + translateY(0); + } + 57% { + transform: scale(1) translateY(var(--fa-bounce-rebound, -0.125em)); + } + 64% { + transform: scale(1) translateY(0); + } + to { + transform: scale(1) translateY(0); + } +} +@keyframes fa-fade { + 50% { + opacity: var(--fa-fade-opacity, 0.4); + } +} +@keyframes fa-beat-fade { + 0%, + to { + opacity: var(--fa-beat-fade-opacity, 0.4); + transform: scale(1); + } + 50% { + opacity: 1; + transform: scale(var(--fa-beat-fade-scale, 1.125)); + } +} +@keyframes fa-flip { + 50% { + transform: rotate3d( + var(--fa-flip-x, 0), + var(--fa-flip-y, 1), + var(--fa-flip-z, 0), + var(--fa-flip-angle, -180deg) + ); + } +} +@keyframes fa-shake { + 0% { + transform: rotate(-15deg); + } + 4% { + transform: rotate(15deg); + } + 8%, + 24% { + transform: rotate(-18deg); + } + 12%, + 28% { + transform: rotate(18deg); + } + 16% { + transform: rotate(-22deg); + } + 20% { + transform: rotate(22deg); + } + 32% { + transform: rotate(-12deg); + } + 36% { + transform: rotate(12deg); + } + 40%, + to { + transform: rotate(0deg); + } +} +@keyframes fa-spin { + 0% { + transform: rotate(0deg); + } + to { + transform: rotate(1turn); + } +} +.fa-rotate-90 { + transform: rotate(90deg); +} +.fa-rotate-180 { + transform: rotate(180deg); +} +.fa-rotate-270 { + transform: rotate(270deg); +} +.fa-flip-horizontal { + transform: scaleX(-1); +} +.fa-flip-vertical { + transform: scaleY(-1); +} +.fa-flip-both, +.fa-flip-horizontal.fa-flip-vertical { + transform: scale(-1); +} +.fa-rotate-by { + transform: rotate(var(--fa-rotate-angle, 0)); +} +.fa-stack { + display: inline-block; + height: 2em; + line-height: 2em; + position: relative; + vertical-align: middle; + width: 2.5em; +} +.fa-stack-1x, +.fa-stack-2x { + left: 0; + position: absolute; + text-align: center; + width: 100%; + z-index: var(--fa-stack-z-index, auto); +} +.fa-stack-1x { + line-height: inherit; +} +.fa-stack-2x { + font-size: 2em; +} +.fa-inverse { + color: var(--fa-inverse, #fff); +} + +.fa-0 { + --fa: "\30"; + --fa--fa: "\30\30"; +} +.fa-1 { + --fa: "\31"; + --fa--fa: "\31\31"; +} +.fa-2 { + --fa: "\32"; + --fa--fa: "\32\32"; +} +.fa-3 { + --fa: "\33"; + --fa--fa: "\33\33"; +} +.fa-4 { + --fa: "\34"; + --fa--fa: "\34\34"; +} +.fa-5 { + --fa: "\35"; + --fa--fa: "\35\35"; +} +.fa-6 { + --fa: "\36"; + --fa--fa: "\36\36"; +} +.fa-7 { + --fa: "\37"; + --fa--fa: "\37\37"; +} +.fa-8 { + --fa: "\38"; + --fa--fa: "\38\38"; +} +.fa-9 { + --fa: "\39"; + --fa--fa: "\39\39"; +} +.fa-fill-drip { + --fa: "\f576"; + --fa--fa: "\f576\f576"; +} +.fa-arrows-to-circle { + --fa: "\e4bd"; + --fa--fa: "\e4bd\e4bd"; +} +.fa-chevron-circle-right, +.fa-circle-chevron-right { + --fa: "\f138"; + --fa--fa: "\f138\f138"; +} +.fa-at { + --fa: "\40"; + --fa--fa: "\40\40"; +} +.fa-trash-alt, +.fa-trash-can { + --fa: "\f2ed"; + --fa--fa: "\f2ed\f2ed"; +} +.fa-text-height { + --fa: "\f034"; + --fa--fa: "\f034\f034"; +} +.fa-user-times, +.fa-user-xmark { + --fa: "\f235"; + --fa--fa: "\f235\f235"; +} +.fa-stethoscope { + --fa: "\f0f1"; + --fa--fa: "\f0f1\f0f1"; +} +.fa-comment-alt, +.fa-message { + --fa: "\f27a"; + --fa--fa: "\f27a\f27a"; +} +.fa-info { + --fa: "\f129"; + --fa--fa: "\f129\f129"; +} +.fa-compress-alt, +.fa-down-left-and-up-right-to-center { + --fa: "\f422"; + --fa--fa: "\f422\f422"; +} +.fa-explosion { + --fa: "\e4e9"; + --fa--fa: "\e4e9\e4e9"; +} +.fa-file-alt, +.fa-file-lines, +.fa-file-text { + --fa: "\f15c"; + --fa--fa: "\f15c\f15c"; +} +.fa-wave-square { + --fa: "\f83e"; + --fa--fa: "\f83e\f83e"; +} +.fa-ring { + --fa: "\f70b"; + --fa--fa: "\f70b\f70b"; +} +.fa-building-un { + --fa: "\e4d9"; + --fa--fa: "\e4d9\e4d9"; +} +.fa-dice-three { + --fa: "\f527"; + --fa--fa: "\f527\f527"; +} +.fa-calendar-alt, +.fa-calendar-days { + --fa: "\f073"; + --fa--fa: "\f073\f073"; +} +.fa-anchor-circle-check { + --fa: "\e4aa"; + --fa--fa: "\e4aa\e4aa"; +} +.fa-building-circle-arrow-right { + --fa: "\e4d1"; + --fa--fa: "\e4d1\e4d1"; +} +.fa-volleyball, +.fa-volleyball-ball { + --fa: "\f45f"; + --fa--fa: "\f45f\f45f"; +} +.fa-arrows-up-to-line { + --fa: "\e4c2"; + --fa--fa: "\e4c2\e4c2"; +} +.fa-sort-desc, +.fa-sort-down { + --fa: "\f0dd"; + --fa--fa: "\f0dd\f0dd"; +} +.fa-circle-minus, +.fa-minus-circle { + --fa: "\f056"; + --fa--fa: "\f056\f056"; +} +.fa-door-open { + --fa: "\f52b"; + --fa--fa: "\f52b\f52b"; +} +.fa-right-from-bracket, +.fa-sign-out-alt { + --fa: "\f2f5"; + --fa--fa: "\f2f5\f2f5"; +} +.fa-atom { + --fa: "\f5d2"; + --fa--fa: "\f5d2\f5d2"; +} +.fa-soap { + --fa: "\e06e"; + --fa--fa: "\e06e\e06e"; +} +.fa-heart-music-camera-bolt, +.fa-icons { + --fa: "\f86d"; + --fa--fa: "\f86d\f86d"; +} +.fa-microphone-alt-slash, +.fa-microphone-lines-slash { + --fa: "\f539"; + --fa--fa: "\f539\f539"; +} +.fa-bridge-circle-check { + --fa: "\e4c9"; + --fa--fa: "\e4c9\e4c9"; +} +.fa-pump-medical { + --fa: "\e06a"; + --fa--fa: "\e06a\e06a"; +} +.fa-fingerprint { + --fa: "\f577"; + --fa--fa: "\f577\f577"; +} +.fa-hand-point-right { + --fa: "\f0a4"; + --fa--fa: "\f0a4\f0a4"; +} +.fa-magnifying-glass-location, +.fa-search-location { + --fa: "\f689"; + --fa--fa: "\f689\f689"; +} +.fa-forward-step, +.fa-step-forward { + --fa: "\f051"; + --fa--fa: "\f051\f051"; +} +.fa-face-smile-beam, +.fa-smile-beam { + --fa: "\f5b8"; + --fa--fa: "\f5b8\f5b8"; +} +.fa-flag-checkered { + --fa: "\f11e"; + --fa--fa: "\f11e\f11e"; +} +.fa-football, +.fa-football-ball { + --fa: "\f44e"; + --fa--fa: "\f44e\f44e"; +} +.fa-school-circle-exclamation { + --fa: "\e56c"; + --fa--fa: "\e56c\e56c"; +} +.fa-crop { + --fa: "\f125"; + --fa--fa: "\f125\f125"; +} +.fa-angle-double-down, +.fa-angles-down { + --fa: "\f103"; + --fa--fa: "\f103\f103"; +} +.fa-users-rectangle { + --fa: "\e594"; + --fa--fa: "\e594\e594"; +} +.fa-people-roof { + --fa: "\e537"; + --fa--fa: "\e537\e537"; +} +.fa-people-line { + --fa: "\e534"; + --fa--fa: "\e534\e534"; +} +.fa-beer, +.fa-beer-mug-empty { + --fa: "\f0fc"; + --fa--fa: "\f0fc\f0fc"; +} +.fa-diagram-predecessor { + --fa: "\e477"; + --fa--fa: "\e477\e477"; +} +.fa-arrow-up-long, +.fa-long-arrow-up { + --fa: "\f176"; + --fa--fa: "\f176\f176"; +} +.fa-burn, +.fa-fire-flame-simple { + --fa: "\f46a"; + --fa--fa: "\f46a\f46a"; +} +.fa-male, +.fa-person { + --fa: "\f183"; + --fa--fa: "\f183\f183"; +} +.fa-laptop { + --fa: "\f109"; + --fa--fa: "\f109\f109"; +} +.fa-file-csv { + --fa: "\f6dd"; + --fa--fa: "\f6dd\f6dd"; +} +.fa-menorah { + --fa: "\f676"; + --fa--fa: "\f676\f676"; +} +.fa-truck-plane { + --fa: "\e58f"; + --fa--fa: "\e58f\e58f"; +} +.fa-record-vinyl { + --fa: "\f8d9"; + --fa--fa: "\f8d9\f8d9"; +} +.fa-face-grin-stars, +.fa-grin-stars { + --fa: "\f587"; + --fa--fa: "\f587\f587"; +} +.fa-bong { + --fa: "\f55c"; + --fa--fa: "\f55c\f55c"; +} +.fa-pastafarianism, +.fa-spaghetti-monster-flying { + --fa: "\f67b"; + --fa--fa: "\f67b\f67b"; +} +.fa-arrow-down-up-across-line { + --fa: "\e4af"; + --fa--fa: "\e4af\e4af"; +} +.fa-spoon, +.fa-utensil-spoon { + --fa: "\f2e5"; + --fa--fa: "\f2e5\f2e5"; +} +.fa-jar-wheat { + --fa: "\e517"; + --fa--fa: "\e517\e517"; +} +.fa-envelopes-bulk, +.fa-mail-bulk { + --fa: "\f674"; + --fa--fa: "\f674\f674"; +} +.fa-file-circle-exclamation { + --fa: "\e4eb"; + --fa--fa: "\e4eb\e4eb"; +} +.fa-circle-h, +.fa-hospital-symbol { + --fa: "\f47e"; + --fa--fa: "\f47e\f47e"; +} +.fa-pager { + --fa: "\f815"; + --fa--fa: "\f815\f815"; +} +.fa-address-book, +.fa-contact-book { + --fa: "\f2b9"; + --fa--fa: "\f2b9\f2b9"; +} +.fa-strikethrough { + --fa: "\f0cc"; + --fa--fa: "\f0cc\f0cc"; +} +.fa-k { + --fa: "\4b"; + --fa--fa: "\4b\4b"; +} +.fa-landmark-flag { + --fa: "\e51c"; + --fa--fa: "\e51c\e51c"; +} +.fa-pencil, +.fa-pencil-alt { + --fa: "\f303"; + --fa--fa: "\f303\f303"; +} +.fa-backward { + --fa: "\f04a"; + --fa--fa: "\f04a\f04a"; +} +.fa-caret-right { + --fa: "\f0da"; + --fa--fa: "\f0da\f0da"; +} +.fa-comments { + --fa: "\f086"; + --fa--fa: "\f086\f086"; +} +.fa-file-clipboard, +.fa-paste { + --fa: "\f0ea"; + --fa--fa: "\f0ea\f0ea"; +} +.fa-code-pull-request { + --fa: "\e13c"; + --fa--fa: "\e13c\e13c"; +} +.fa-clipboard-list { + --fa: "\f46d"; + --fa--fa: "\f46d\f46d"; +} +.fa-truck-loading, +.fa-truck-ramp-box { + --fa: "\f4de"; + --fa--fa: "\f4de\f4de"; +} +.fa-user-check { + --fa: "\f4fc"; + --fa--fa: "\f4fc\f4fc"; +} +.fa-vial-virus { + --fa: "\e597"; + --fa--fa: "\e597\e597"; +} +.fa-sheet-plastic { + --fa: "\e571"; + --fa--fa: "\e571\e571"; +} +.fa-blog { + --fa: "\f781"; + --fa--fa: "\f781\f781"; +} +.fa-user-ninja { + --fa: "\f504"; + --fa--fa: "\f504\f504"; +} +.fa-person-arrow-up-from-line { + --fa: "\e539"; + --fa--fa: "\e539\e539"; +} +.fa-scroll-torah, +.fa-torah { + --fa: "\f6a0"; + --fa--fa: "\f6a0\f6a0"; +} +.fa-broom-ball, +.fa-quidditch, +.fa-quidditch-broom-ball { + --fa: "\f458"; + --fa--fa: "\f458\f458"; +} +.fa-toggle-off { + --fa: "\f204"; + --fa--fa: "\f204\f204"; +} +.fa-archive, +.fa-box-archive { + --fa: "\f187"; + --fa--fa: "\f187\f187"; +} +.fa-person-drowning { + --fa: "\e545"; + --fa--fa: "\e545\e545"; +} +.fa-arrow-down-9-1, +.fa-sort-numeric-desc, +.fa-sort-numeric-down-alt { + --fa: "\f886"; + --fa--fa: "\f886\f886"; +} +.fa-face-grin-tongue-squint, +.fa-grin-tongue-squint { + --fa: "\f58a"; + --fa--fa: "\f58a\f58a"; +} +.fa-spray-can { + --fa: "\f5bd"; + --fa--fa: "\f5bd\f5bd"; +} +.fa-truck-monster { + --fa: "\f63b"; + --fa--fa: "\f63b\f63b"; +} +.fa-w { + --fa: "\57"; + --fa--fa: "\57\57"; +} +.fa-earth-africa, +.fa-globe-africa { + --fa: "\f57c"; + --fa--fa: "\f57c\f57c"; +} +.fa-rainbow { + --fa: "\f75b"; + --fa--fa: "\f75b\f75b"; +} +.fa-circle-notch { + --fa: "\f1ce"; + --fa--fa: "\f1ce\f1ce"; +} +.fa-tablet-alt, +.fa-tablet-screen-button { + --fa: "\f3fa"; + --fa--fa: "\f3fa\f3fa"; +} +.fa-paw { + --fa: "\f1b0"; + --fa--fa: "\f1b0\f1b0"; +} +.fa-cloud { + --fa: "\f0c2"; + --fa--fa: "\f0c2\f0c2"; +} +.fa-trowel-bricks { + --fa: "\e58a"; + --fa--fa: "\e58a\e58a"; +} +.fa-face-flushed, +.fa-flushed { + --fa: "\f579"; + --fa--fa: "\f579\f579"; +} +.fa-hospital-user { + --fa: "\f80d"; + --fa--fa: "\f80d\f80d"; +} +.fa-tent-arrow-left-right { + --fa: "\e57f"; + --fa--fa: "\e57f\e57f"; +} +.fa-gavel, +.fa-legal { + --fa: "\f0e3"; + --fa--fa: "\f0e3\f0e3"; +} +.fa-binoculars { + --fa: "\f1e5"; + --fa--fa: "\f1e5\f1e5"; +} +.fa-microphone-slash { + --fa: "\f131"; + --fa--fa: "\f131\f131"; +} +.fa-box-tissue { + --fa: "\e05b"; + --fa--fa: "\e05b\e05b"; +} +.fa-motorcycle { + --fa: "\f21c"; + --fa--fa: "\f21c\f21c"; +} +.fa-bell-concierge, +.fa-concierge-bell { + --fa: "\f562"; + --fa--fa: "\f562\f562"; +} +.fa-pen-ruler, +.fa-pencil-ruler { + --fa: "\f5ae"; + --fa--fa: "\f5ae\f5ae"; +} +.fa-people-arrows, +.fa-people-arrows-left-right { + --fa: "\e068"; + --fa--fa: "\e068\e068"; +} +.fa-mars-and-venus-burst { + --fa: "\e523"; + --fa--fa: "\e523\e523"; +} +.fa-caret-square-right, +.fa-square-caret-right { + --fa: "\f152"; + --fa--fa: "\f152\f152"; +} +.fa-cut, +.fa-scissors { + --fa: "\f0c4"; + --fa--fa: "\f0c4\f0c4"; +} +.fa-sun-plant-wilt { + --fa: "\e57a"; + --fa--fa: "\e57a\e57a"; +} +.fa-toilets-portable { + --fa: "\e584"; + --fa--fa: "\e584\e584"; +} +.fa-hockey-puck { + --fa: "\f453"; + --fa--fa: "\f453\f453"; +} +.fa-table { + --fa: "\f0ce"; + --fa--fa: "\f0ce\f0ce"; +} +.fa-magnifying-glass-arrow-right { + --fa: "\e521"; + --fa--fa: "\e521\e521"; +} +.fa-digital-tachograph, +.fa-tachograph-digital { + --fa: "\f566"; + --fa--fa: "\f566\f566"; +} +.fa-users-slash { + --fa: "\e073"; + --fa--fa: "\e073\e073"; +} +.fa-clover { + --fa: "\e139"; + --fa--fa: "\e139\e139"; +} +.fa-mail-reply, +.fa-reply { + --fa: "\f3e5"; + --fa--fa: "\f3e5\f3e5"; +} +.fa-star-and-crescent { + --fa: "\f699"; + --fa--fa: "\f699\f699"; +} +.fa-house-fire { + --fa: "\e50c"; + --fa--fa: "\e50c\e50c"; +} +.fa-minus-square, +.fa-square-minus { + --fa: "\f146"; + --fa--fa: "\f146\f146"; +} +.fa-helicopter { + --fa: "\f533"; + --fa--fa: "\f533\f533"; +} +.fa-compass { + --fa: "\f14e"; + --fa--fa: "\f14e\f14e"; +} +.fa-caret-square-down, +.fa-square-caret-down { + --fa: "\f150"; + --fa--fa: "\f150\f150"; +} +.fa-file-circle-question { + --fa: "\e4ef"; + --fa--fa: "\e4ef\e4ef"; +} +.fa-laptop-code { + --fa: "\f5fc"; + --fa--fa: "\f5fc\f5fc"; +} +.fa-swatchbook { + --fa: "\f5c3"; + --fa--fa: "\f5c3\f5c3"; +} +.fa-prescription-bottle { + --fa: "\f485"; + --fa--fa: "\f485\f485"; +} +.fa-bars, +.fa-navicon { + --fa: "\f0c9"; + --fa--fa: "\f0c9\f0c9"; +} +.fa-people-group { + --fa: "\e533"; + --fa--fa: "\e533\e533"; +} +.fa-hourglass-3, +.fa-hourglass-end { + --fa: "\f253"; + --fa--fa: "\f253\f253"; +} +.fa-heart-broken, +.fa-heart-crack { + --fa: "\f7a9"; + --fa--fa: "\f7a9\f7a9"; +} +.fa-external-link-square-alt, +.fa-square-up-right { + --fa: "\f360"; + --fa--fa: "\f360\f360"; +} +.fa-face-kiss-beam, +.fa-kiss-beam { + --fa: "\f597"; + --fa--fa: "\f597\f597"; +} +.fa-film { + --fa: "\f008"; + --fa--fa: "\f008\f008"; +} +.fa-ruler-horizontal { + --fa: "\f547"; + --fa--fa: "\f547\f547"; +} +.fa-people-robbery { + --fa: "\e536"; + --fa--fa: "\e536\e536"; +} +.fa-lightbulb { + --fa: "\f0eb"; + --fa--fa: "\f0eb\f0eb"; +} +.fa-caret-left { + --fa: "\f0d9"; + --fa--fa: "\f0d9\f0d9"; +} +.fa-circle-exclamation, +.fa-exclamation-circle { + --fa: "\f06a"; + --fa--fa: "\f06a\f06a"; +} +.fa-school-circle-xmark { + --fa: "\e56d"; + --fa--fa: "\e56d\e56d"; +} +.fa-arrow-right-from-bracket, +.fa-sign-out { + --fa: "\f08b"; + --fa--fa: "\f08b\f08b"; +} +.fa-chevron-circle-down, +.fa-circle-chevron-down { + --fa: "\f13a"; + --fa--fa: "\f13a\f13a"; +} +.fa-unlock-alt, +.fa-unlock-keyhole { + --fa: "\f13e"; + --fa--fa: "\f13e\f13e"; +} +.fa-cloud-showers-heavy { + --fa: "\f740"; + --fa--fa: "\f740\f740"; +} +.fa-headphones-alt, +.fa-headphones-simple { + --fa: "\f58f"; + --fa--fa: "\f58f\f58f"; +} +.fa-sitemap { + --fa: "\f0e8"; + --fa--fa: "\f0e8\f0e8"; +} +.fa-circle-dollar-to-slot, +.fa-donate { + --fa: "\f4b9"; + --fa--fa: "\f4b9\f4b9"; +} +.fa-memory { + --fa: "\f538"; + --fa--fa: "\f538\f538"; +} +.fa-road-spikes { + --fa: "\e568"; + --fa--fa: "\e568\e568"; +} +.fa-fire-burner { + --fa: "\e4f1"; + --fa--fa: "\e4f1\e4f1"; +} +.fa-flag { + --fa: "\f024"; + --fa--fa: "\f024\f024"; +} +.fa-hanukiah { + --fa: "\f6e6"; + --fa--fa: "\f6e6\f6e6"; +} +.fa-feather { + --fa: "\f52d"; + --fa--fa: "\f52d\f52d"; +} +.fa-volume-down, +.fa-volume-low { + --fa: "\f027"; + --fa--fa: "\f027\f027"; +} +.fa-comment-slash { + --fa: "\f4b3"; + --fa--fa: "\f4b3\f4b3"; +} +.fa-cloud-sun-rain { + --fa: "\f743"; + --fa--fa: "\f743\f743"; +} +.fa-compress { + --fa: "\f066"; + --fa--fa: "\f066\f066"; +} +.fa-wheat-alt, +.fa-wheat-awn { + --fa: "\e2cd"; + --fa--fa: "\e2cd\e2cd"; +} +.fa-ankh { + --fa: "\f644"; + --fa--fa: "\f644\f644"; +} +.fa-hands-holding-child { + --fa: "\e4fa"; + --fa--fa: "\e4fa\e4fa"; +} +.fa-asterisk { + --fa: "\2a"; + --fa--fa: "\2a\2a"; +} +.fa-check-square, +.fa-square-check { + --fa: "\f14a"; + --fa--fa: "\f14a\f14a"; +} +.fa-peseta-sign { + --fa: "\e221"; + --fa--fa: "\e221\e221"; +} +.fa-header, +.fa-heading { + --fa: "\f1dc"; + --fa--fa: "\f1dc\f1dc"; +} +.fa-ghost { + --fa: "\f6e2"; + --fa--fa: "\f6e2\f6e2"; +} +.fa-list, +.fa-list-squares { + --fa: "\f03a"; + --fa--fa: "\f03a\f03a"; +} +.fa-phone-square-alt, +.fa-square-phone-flip { + --fa: "\f87b"; + --fa--fa: "\f87b\f87b"; +} +.fa-cart-plus { + --fa: "\f217"; + --fa--fa: "\f217\f217"; +} +.fa-gamepad { + --fa: "\f11b"; + --fa--fa: "\f11b\f11b"; +} +.fa-circle-dot, +.fa-dot-circle { + --fa: "\f192"; + --fa--fa: "\f192\f192"; +} +.fa-dizzy, +.fa-face-dizzy { + --fa: "\f567"; + --fa--fa: "\f567\f567"; +} +.fa-egg { + --fa: "\f7fb"; + --fa--fa: "\f7fb\f7fb"; +} +.fa-house-medical-circle-xmark { + --fa: "\e513"; + --fa--fa: "\e513\e513"; +} +.fa-campground { + --fa: "\f6bb"; + --fa--fa: "\f6bb\f6bb"; +} +.fa-folder-plus { + --fa: "\f65e"; + --fa--fa: "\f65e\f65e"; +} +.fa-futbol, +.fa-futbol-ball, +.fa-soccer-ball { + --fa: "\f1e3"; + --fa--fa: "\f1e3\f1e3"; +} +.fa-paint-brush, +.fa-paintbrush { + --fa: "\f1fc"; + --fa--fa: "\f1fc\f1fc"; +} +.fa-lock { + --fa: "\f023"; + --fa--fa: "\f023\f023"; +} +.fa-gas-pump { + --fa: "\f52f"; + --fa--fa: "\f52f\f52f"; +} +.fa-hot-tub, +.fa-hot-tub-person { + --fa: "\f593"; + --fa--fa: "\f593\f593"; +} +.fa-map-location, +.fa-map-marked { + --fa: "\f59f"; + --fa--fa: "\f59f\f59f"; +} +.fa-house-flood-water { + --fa: "\e50e"; + --fa--fa: "\e50e\e50e"; +} +.fa-tree { + --fa: "\f1bb"; + --fa--fa: "\f1bb\f1bb"; +} +.fa-bridge-lock { + --fa: "\e4cc"; + --fa--fa: "\e4cc\e4cc"; +} +.fa-sack-dollar { + --fa: "\f81d"; + --fa--fa: "\f81d\f81d"; +} +.fa-edit, +.fa-pen-to-square { + --fa: "\f044"; + --fa--fa: "\f044\f044"; +} +.fa-car-side { + --fa: "\f5e4"; + --fa--fa: "\f5e4\f5e4"; +} +.fa-share-alt, +.fa-share-nodes { + --fa: "\f1e0"; + --fa--fa: "\f1e0\f1e0"; +} +.fa-heart-circle-minus { + --fa: "\e4ff"; + --fa--fa: "\e4ff\e4ff"; +} +.fa-hourglass-2, +.fa-hourglass-half { + --fa: "\f252"; + --fa--fa: "\f252\f252"; +} +.fa-microscope { + --fa: "\f610"; + --fa--fa: "\f610\f610"; +} +.fa-sink { + --fa: "\e06d"; + --fa--fa: "\e06d\e06d"; +} +.fa-bag-shopping, +.fa-shopping-bag { + --fa: "\f290"; + --fa--fa: "\f290\f290"; +} +.fa-arrow-down-z-a, +.fa-sort-alpha-desc, +.fa-sort-alpha-down-alt { + --fa: "\f881"; + --fa--fa: "\f881\f881"; +} +.fa-mitten { + --fa: "\f7b5"; + --fa--fa: "\f7b5\f7b5"; +} +.fa-person-rays { + --fa: "\e54d"; + --fa--fa: "\e54d\e54d"; +} +.fa-users { + --fa: "\f0c0"; + --fa--fa: "\f0c0\f0c0"; +} +.fa-eye-slash { + --fa: "\f070"; + --fa--fa: "\f070\f070"; +} +.fa-flask-vial { + --fa: "\e4f3"; + --fa--fa: "\e4f3\e4f3"; +} +.fa-hand, +.fa-hand-paper { + --fa: "\f256"; + --fa--fa: "\f256\f256"; +} +.fa-om { + --fa: "\f679"; + --fa--fa: "\f679\f679"; +} +.fa-worm { + --fa: "\e599"; + --fa--fa: "\e599\e599"; +} +.fa-house-circle-xmark { + --fa: "\e50b"; + --fa--fa: "\e50b\e50b"; +} +.fa-plug { + --fa: "\f1e6"; + --fa--fa: "\f1e6\f1e6"; +} +.fa-chevron-up { + --fa: "\f077"; + --fa--fa: "\f077\f077"; +} +.fa-hand-spock { + --fa: "\f259"; + --fa--fa: "\f259\f259"; +} +.fa-stopwatch { + --fa: "\f2f2"; + --fa--fa: "\f2f2\f2f2"; +} +.fa-face-kiss, +.fa-kiss { + --fa: "\f596"; + --fa--fa: "\f596\f596"; +} +.fa-bridge-circle-xmark { + --fa: "\e4cb"; + --fa--fa: "\e4cb\e4cb"; +} +.fa-face-grin-tongue, +.fa-grin-tongue { + --fa: "\f589"; + --fa--fa: "\f589\f589"; +} +.fa-chess-bishop { + --fa: "\f43a"; + --fa--fa: "\f43a\f43a"; +} +.fa-face-grin-wink, +.fa-grin-wink { + --fa: "\f58c"; + --fa--fa: "\f58c\f58c"; +} +.fa-deaf, +.fa-deafness, +.fa-ear-deaf, +.fa-hard-of-hearing { + --fa: "\f2a4"; + --fa--fa: "\f2a4\f2a4"; +} +.fa-road-circle-check { + --fa: "\e564"; + --fa--fa: "\e564\e564"; +} +.fa-dice-five { + --fa: "\f523"; + --fa--fa: "\f523\f523"; +} +.fa-rss-square, +.fa-square-rss { + --fa: "\f143"; + --fa--fa: "\f143\f143"; +} +.fa-land-mine-on { + --fa: "\e51b"; + --fa--fa: "\e51b\e51b"; +} +.fa-i-cursor { + --fa: "\f246"; + --fa--fa: "\f246\f246"; +} +.fa-stamp { + --fa: "\f5bf"; + --fa--fa: "\f5bf\f5bf"; +} +.fa-stairs { + --fa: "\e289"; + --fa--fa: "\e289\e289"; +} +.fa-i { + --fa: "\49"; + --fa--fa: "\49\49"; +} +.fa-hryvnia, +.fa-hryvnia-sign { + --fa: "\f6f2"; + --fa--fa: "\f6f2\f6f2"; +} +.fa-pills { + --fa: "\f484"; + --fa--fa: "\f484\f484"; +} +.fa-face-grin-wide, +.fa-grin-alt { + --fa: "\f581"; + --fa--fa: "\f581\f581"; +} +.fa-tooth { + --fa: "\f5c9"; + --fa--fa: "\f5c9\f5c9"; +} +.fa-v { + --fa: "\56"; + --fa--fa: "\56\56"; +} +.fa-bangladeshi-taka-sign { + --fa: "\e2e6"; + --fa--fa: "\e2e6\e2e6"; +} +.fa-bicycle { + --fa: "\f206"; + --fa--fa: "\f206\f206"; +} +.fa-rod-asclepius, +.fa-rod-snake, +.fa-staff-aesculapius, +.fa-staff-snake { + --fa: "\e579"; + --fa--fa: "\e579\e579"; +} +.fa-head-side-cough-slash { + --fa: "\e062"; + --fa--fa: "\e062\e062"; +} +.fa-ambulance, +.fa-truck-medical { + --fa: "\f0f9"; + --fa--fa: "\f0f9\f0f9"; +} +.fa-wheat-awn-circle-exclamation { + --fa: "\e598"; + --fa--fa: "\e598\e598"; +} +.fa-snowman { + --fa: "\f7d0"; + --fa--fa: "\f7d0\f7d0"; +} +.fa-mortar-pestle { + --fa: "\f5a7"; + --fa--fa: "\f5a7\f5a7"; +} +.fa-road-barrier { + --fa: "\e562"; + --fa--fa: "\e562\e562"; +} +.fa-school { + --fa: "\f549"; + --fa--fa: "\f549\f549"; +} +.fa-igloo { + --fa: "\f7ae"; + --fa--fa: "\f7ae\f7ae"; +} +.fa-joint { + --fa: "\f595"; + --fa--fa: "\f595\f595"; +} +.fa-angle-right { + --fa: "\f105"; + --fa--fa: "\f105\f105"; +} +.fa-horse { + --fa: "\f6f0"; + --fa--fa: "\f6f0\f6f0"; +} +.fa-q { + --fa: "\51"; + --fa--fa: "\51\51"; +} +.fa-g { + --fa: "\47"; + --fa--fa: "\47\47"; +} +.fa-notes-medical { + --fa: "\f481"; + --fa--fa: "\f481\f481"; +} +.fa-temperature-2, +.fa-temperature-half, +.fa-thermometer-2, +.fa-thermometer-half { + --fa: "\f2c9"; + --fa--fa: "\f2c9\f2c9"; +} +.fa-dong-sign { + --fa: "\e169"; + --fa--fa: "\e169\e169"; +} +.fa-capsules { + --fa: "\f46b"; + --fa--fa: "\f46b\f46b"; +} +.fa-poo-bolt, +.fa-poo-storm { + --fa: "\f75a"; + --fa--fa: "\f75a\f75a"; +} +.fa-face-frown-open, +.fa-frown-open { + --fa: "\f57a"; + --fa--fa: "\f57a\f57a"; +} +.fa-hand-point-up { + --fa: "\f0a6"; + --fa--fa: "\f0a6\f0a6"; +} +.fa-money-bill { + --fa: "\f0d6"; + --fa--fa: "\f0d6\f0d6"; +} +.fa-bookmark { + --fa: "\f02e"; + --fa--fa: "\f02e\f02e"; +} +.fa-align-justify { + --fa: "\f039"; + --fa--fa: "\f039\f039"; +} +.fa-umbrella-beach { + --fa: "\f5ca"; + --fa--fa: "\f5ca\f5ca"; +} +.fa-helmet-un { + --fa: "\e503"; + --fa--fa: "\e503\e503"; +} +.fa-bullseye { + --fa: "\f140"; + --fa--fa: "\f140\f140"; +} +.fa-bacon { + --fa: "\f7e5"; + --fa--fa: "\f7e5\f7e5"; +} +.fa-hand-point-down { + --fa: "\f0a7"; + --fa--fa: "\f0a7\f0a7"; +} +.fa-arrow-up-from-bracket { + --fa: "\e09a"; + --fa--fa: "\e09a\e09a"; +} +.fa-folder, +.fa-folder-blank { + --fa: "\f07b"; + --fa--fa: "\f07b\f07b"; +} +.fa-file-medical-alt, +.fa-file-waveform { + --fa: "\f478"; + --fa--fa: "\f478\f478"; +} +.fa-radiation { + --fa: "\f7b9"; + --fa--fa: "\f7b9\f7b9"; +} +.fa-chart-simple { + --fa: "\e473"; + --fa--fa: "\e473\e473"; +} +.fa-mars-stroke { + --fa: "\f229"; + --fa--fa: "\f229\f229"; +} +.fa-vial { + --fa: "\f492"; + --fa--fa: "\f492\f492"; +} +.fa-dashboard, +.fa-gauge, +.fa-gauge-med, +.fa-tachometer-alt-average { + --fa: "\f624"; + --fa--fa: "\f624\f624"; +} +.fa-magic-wand-sparkles, +.fa-wand-magic-sparkles { + --fa: "\e2ca"; + --fa--fa: "\e2ca\e2ca"; +} +.fa-e { + --fa: "\45"; + --fa--fa: "\45\45"; +} +.fa-pen-alt, +.fa-pen-clip { + --fa: "\f305"; + --fa--fa: "\f305\f305"; +} +.fa-bridge-circle-exclamation { + --fa: "\e4ca"; + --fa--fa: "\e4ca\e4ca"; +} +.fa-user { + --fa: "\f007"; + --fa--fa: "\f007\f007"; +} +.fa-school-circle-check { + --fa: "\e56b"; + --fa--fa: "\e56b\e56b"; +} +.fa-dumpster { + --fa: "\f793"; + --fa--fa: "\f793\f793"; +} +.fa-shuttle-van, +.fa-van-shuttle { + --fa: "\f5b6"; + --fa--fa: "\f5b6\f5b6"; +} +.fa-building-user { + --fa: "\e4da"; + --fa--fa: "\e4da\e4da"; +} +.fa-caret-square-left, +.fa-square-caret-left { + --fa: "\f191"; + --fa--fa: "\f191\f191"; +} +.fa-highlighter { + --fa: "\f591"; + --fa--fa: "\f591\f591"; +} +.fa-key { + --fa: "\f084"; + --fa--fa: "\f084\f084"; +} +.fa-bullhorn { + --fa: "\f0a1"; + --fa--fa: "\f0a1\f0a1"; +} +.fa-globe { + --fa: "\f0ac"; + --fa--fa: "\f0ac\f0ac"; +} +.fa-synagogue { + --fa: "\f69b"; + --fa--fa: "\f69b\f69b"; +} +.fa-person-half-dress { + --fa: "\e548"; + --fa--fa: "\e548\e548"; +} +.fa-road-bridge { + --fa: "\e563"; + --fa--fa: "\e563\e563"; +} +.fa-location-arrow { + --fa: "\f124"; + --fa--fa: "\f124\f124"; +} +.fa-c { + --fa: "\43"; + --fa--fa: "\43\43"; +} +.fa-tablet-button { + --fa: "\f10a"; + --fa--fa: "\f10a\f10a"; +} +.fa-building-lock { + --fa: "\e4d6"; + --fa--fa: "\e4d6\e4d6"; +} +.fa-pizza-slice { + --fa: "\f818"; + --fa--fa: "\f818\f818"; +} +.fa-money-bill-wave { + --fa: "\f53a"; + --fa--fa: "\f53a\f53a"; +} +.fa-area-chart, +.fa-chart-area { + --fa: "\f1fe"; + --fa--fa: "\f1fe\f1fe"; +} +.fa-house-flag { + --fa: "\e50d"; + --fa--fa: "\e50d\e50d"; +} +.fa-person-circle-minus { + --fa: "\e540"; + --fa--fa: "\e540\e540"; +} +.fa-ban, +.fa-cancel { + --fa: "\f05e"; + --fa--fa: "\f05e\f05e"; +} +.fa-camera-rotate { + --fa: "\e0d8"; + --fa--fa: "\e0d8\e0d8"; +} +.fa-air-freshener, +.fa-spray-can-sparkles { + --fa: "\f5d0"; + --fa--fa: "\f5d0\f5d0"; +} +.fa-star { + --fa: "\f005"; + --fa--fa: "\f005\f005"; +} +.fa-repeat { + --fa: "\f363"; + --fa--fa: "\f363\f363"; +} +.fa-cross { + --fa: "\f654"; + --fa--fa: "\f654\f654"; +} +.fa-box { + --fa: "\f466"; + --fa--fa: "\f466\f466"; +} +.fa-venus-mars { + --fa: "\f228"; + --fa--fa: "\f228\f228"; +} +.fa-arrow-pointer, +.fa-mouse-pointer { + --fa: "\f245"; + --fa--fa: "\f245\f245"; +} +.fa-expand-arrows-alt, +.fa-maximize { + --fa: "\f31e"; + --fa--fa: "\f31e\f31e"; +} +.fa-charging-station { + --fa: "\f5e7"; + --fa--fa: "\f5e7\f5e7"; +} +.fa-shapes, +.fa-triangle-circle-square { + --fa: "\f61f"; + --fa--fa: "\f61f\f61f"; +} +.fa-random, +.fa-shuffle { + --fa: "\f074"; + --fa--fa: "\f074\f074"; +} +.fa-person-running, +.fa-running { + --fa: "\f70c"; + --fa--fa: "\f70c\f70c"; +} +.fa-mobile-retro { + --fa: "\e527"; + --fa--fa: "\e527\e527"; +} +.fa-grip-lines-vertical { + --fa: "\f7a5"; + --fa--fa: "\f7a5\f7a5"; +} +.fa-spider { + --fa: "\f717"; + --fa--fa: "\f717\f717"; +} +.fa-hands-bound { + --fa: "\e4f9"; + --fa--fa: "\e4f9\e4f9"; +} +.fa-file-invoice-dollar { + --fa: "\f571"; + --fa--fa: "\f571\f571"; +} +.fa-plane-circle-exclamation { + --fa: "\e556"; + --fa--fa: "\e556\e556"; +} +.fa-x-ray { + --fa: "\f497"; + --fa--fa: "\f497\f497"; +} +.fa-spell-check { + --fa: "\f891"; + --fa--fa: "\f891\f891"; +} +.fa-slash { + --fa: "\f715"; + --fa--fa: "\f715\f715"; +} +.fa-computer-mouse, +.fa-mouse { + --fa: "\f8cc"; + --fa--fa: "\f8cc\f8cc"; +} +.fa-arrow-right-to-bracket, +.fa-sign-in { + --fa: "\f090"; + --fa--fa: "\f090\f090"; +} +.fa-shop-slash, +.fa-store-alt-slash { + --fa: "\e070"; + --fa--fa: "\e070\e070"; +} +.fa-server { + --fa: "\f233"; + --fa--fa: "\f233\f233"; +} +.fa-virus-covid-slash { + --fa: "\e4a9"; + --fa--fa: "\e4a9\e4a9"; +} +.fa-shop-lock { + --fa: "\e4a5"; + --fa--fa: "\e4a5\e4a5"; +} +.fa-hourglass-1, +.fa-hourglass-start { + --fa: "\f251"; + --fa--fa: "\f251\f251"; +} +.fa-blender-phone { + --fa: "\f6b6"; + --fa--fa: "\f6b6\f6b6"; +} +.fa-building-wheat { + --fa: "\e4db"; + --fa--fa: "\e4db\e4db"; +} +.fa-person-breastfeeding { + --fa: "\e53a"; + --fa--fa: "\e53a\e53a"; +} +.fa-right-to-bracket, +.fa-sign-in-alt { + --fa: "\f2f6"; + --fa--fa: "\f2f6\f2f6"; +} +.fa-venus { + --fa: "\f221"; + --fa--fa: "\f221\f221"; +} +.fa-passport { + --fa: "\f5ab"; + --fa--fa: "\f5ab\f5ab"; +} +.fa-thumb-tack-slash, +.fa-thumbtack-slash { + --fa: "\e68f"; + --fa--fa: "\e68f\e68f"; +} +.fa-heart-pulse, +.fa-heartbeat { + --fa: "\f21e"; + --fa--fa: "\f21e\f21e"; +} +.fa-people-carry, +.fa-people-carry-box { + --fa: "\f4ce"; + --fa--fa: "\f4ce\f4ce"; +} +.fa-temperature-high { + --fa: "\f769"; + --fa--fa: "\f769\f769"; +} +.fa-microchip { + --fa: "\f2db"; + --fa--fa: "\f2db\f2db"; +} +.fa-crown { + --fa: "\f521"; + --fa--fa: "\f521\f521"; +} +.fa-weight-hanging { + --fa: "\f5cd"; + --fa--fa: "\f5cd\f5cd"; +} +.fa-xmarks-lines { + --fa: "\e59a"; + --fa--fa: "\e59a\e59a"; +} +.fa-file-prescription { + --fa: "\f572"; + --fa--fa: "\f572\f572"; +} +.fa-weight, +.fa-weight-scale { + --fa: "\f496"; + --fa--fa: "\f496\f496"; +} +.fa-user-friends, +.fa-user-group { + --fa: "\f500"; + --fa--fa: "\f500\f500"; +} +.fa-arrow-up-a-z, +.fa-sort-alpha-up { + --fa: "\f15e"; + --fa--fa: "\f15e\f15e"; +} +.fa-chess-knight { + --fa: "\f441"; + --fa--fa: "\f441\f441"; +} +.fa-face-laugh-squint, +.fa-laugh-squint { + --fa: "\f59b"; + --fa--fa: "\f59b\f59b"; +} +.fa-wheelchair { + --fa: "\f193"; + --fa--fa: "\f193\f193"; +} +.fa-arrow-circle-up, +.fa-circle-arrow-up { + --fa: "\f0aa"; + --fa--fa: "\f0aa\f0aa"; +} +.fa-toggle-on { + --fa: "\f205"; + --fa--fa: "\f205\f205"; +} +.fa-person-walking, +.fa-walking { + --fa: "\f554"; + --fa--fa: "\f554\f554"; +} +.fa-l { + --fa: "\4c"; + --fa--fa: "\4c\4c"; +} +.fa-fire { + --fa: "\f06d"; + --fa--fa: "\f06d\f06d"; +} +.fa-bed-pulse, +.fa-procedures { + --fa: "\f487"; + --fa--fa: "\f487\f487"; +} +.fa-shuttle-space, +.fa-space-shuttle { + --fa: "\f197"; + --fa--fa: "\f197\f197"; +} +.fa-face-laugh, +.fa-laugh { + --fa: "\f599"; + --fa--fa: "\f599\f599"; +} +.fa-folder-open { + --fa: "\f07c"; + --fa--fa: "\f07c\f07c"; +} +.fa-heart-circle-plus { + --fa: "\e500"; + --fa--fa: "\e500\e500"; +} +.fa-code-fork { + --fa: "\e13b"; + --fa--fa: "\e13b\e13b"; +} +.fa-city { + --fa: "\f64f"; + --fa--fa: "\f64f\f64f"; +} +.fa-microphone-alt, +.fa-microphone-lines { + --fa: "\f3c9"; + --fa--fa: "\f3c9\f3c9"; +} +.fa-pepper-hot { + --fa: "\f816"; + --fa--fa: "\f816\f816"; +} +.fa-unlock { + --fa: "\f09c"; + --fa--fa: "\f09c\f09c"; +} +.fa-colon-sign { + --fa: "\e140"; + --fa--fa: "\e140\e140"; +} +.fa-headset { + --fa: "\f590"; + --fa--fa: "\f590\f590"; +} +.fa-store-slash { + --fa: "\e071"; + --fa--fa: "\e071\e071"; +} +.fa-road-circle-xmark { + --fa: "\e566"; + --fa--fa: "\e566\e566"; +} +.fa-user-minus { + --fa: "\f503"; + --fa--fa: "\f503\f503"; +} +.fa-mars-stroke-up, +.fa-mars-stroke-v { + --fa: "\f22a"; + --fa--fa: "\f22a\f22a"; +} +.fa-champagne-glasses, +.fa-glass-cheers { + --fa: "\f79f"; + --fa--fa: "\f79f\f79f"; +} +.fa-clipboard { + --fa: "\f328"; + --fa--fa: "\f328\f328"; +} +.fa-house-circle-exclamation { + --fa: "\e50a"; + --fa--fa: "\e50a\e50a"; +} +.fa-file-arrow-up, +.fa-file-upload { + --fa: "\f574"; + --fa--fa: "\f574\f574"; +} +.fa-wifi, +.fa-wifi-3, +.fa-wifi-strong { + --fa: "\f1eb"; + --fa--fa: "\f1eb\f1eb"; +} +.fa-bath, +.fa-bathtub { + --fa: "\f2cd"; + --fa--fa: "\f2cd\f2cd"; +} +.fa-underline { + --fa: "\f0cd"; + --fa--fa: "\f0cd\f0cd"; +} +.fa-user-edit, +.fa-user-pen { + --fa: "\f4ff"; + --fa--fa: "\f4ff\f4ff"; +} +.fa-signature { + --fa: "\f5b7"; + --fa--fa: "\f5b7\f5b7"; +} +.fa-stroopwafel { + --fa: "\f551"; + --fa--fa: "\f551\f551"; +} +.fa-bold { + --fa: "\f032"; + --fa--fa: "\f032\f032"; +} +.fa-anchor-lock { + --fa: "\e4ad"; + --fa--fa: "\e4ad\e4ad"; +} +.fa-building-ngo { + --fa: "\e4d7"; + --fa--fa: "\e4d7\e4d7"; +} +.fa-manat-sign { + --fa: "\e1d5"; + --fa--fa: "\e1d5\e1d5"; +} +.fa-not-equal { + --fa: "\f53e"; + --fa--fa: "\f53e\f53e"; +} +.fa-border-style, +.fa-border-top-left { + --fa: "\f853"; + --fa--fa: "\f853\f853"; +} +.fa-map-location-dot, +.fa-map-marked-alt { + --fa: "\f5a0"; + --fa--fa: "\f5a0\f5a0"; +} +.fa-jedi { + --fa: "\f669"; + --fa--fa: "\f669\f669"; +} +.fa-poll, +.fa-square-poll-vertical { + --fa: "\f681"; + --fa--fa: "\f681\f681"; +} +.fa-mug-hot { + --fa: "\f7b6"; + --fa--fa: "\f7b6\f7b6"; +} +.fa-battery-car, +.fa-car-battery { + --fa: "\f5df"; + --fa--fa: "\f5df\f5df"; +} +.fa-gift { + --fa: "\f06b"; + --fa--fa: "\f06b\f06b"; +} +.fa-dice-two { + --fa: "\f528"; + --fa--fa: "\f528\f528"; +} +.fa-chess-queen { + --fa: "\f445"; + --fa--fa: "\f445\f445"; +} +.fa-glasses { + --fa: "\f530"; + --fa--fa: "\f530\f530"; +} +.fa-chess-board { + --fa: "\f43c"; + --fa--fa: "\f43c\f43c"; +} +.fa-building-circle-check { + --fa: "\e4d2"; + --fa--fa: "\e4d2\e4d2"; +} +.fa-person-chalkboard { + --fa: "\e53d"; + --fa--fa: "\e53d\e53d"; +} +.fa-mars-stroke-h, +.fa-mars-stroke-right { + --fa: "\f22b"; + --fa--fa: "\f22b\f22b"; +} +.fa-hand-back-fist, +.fa-hand-rock { + --fa: "\f255"; + --fa--fa: "\f255\f255"; +} +.fa-caret-square-up, +.fa-square-caret-up { + --fa: "\f151"; + --fa--fa: "\f151\f151"; +} +.fa-cloud-showers-water { + --fa: "\e4e4"; + --fa--fa: "\e4e4\e4e4"; +} +.fa-bar-chart, +.fa-chart-bar { + --fa: "\f080"; + --fa--fa: "\f080\f080"; +} +.fa-hands-bubbles, +.fa-hands-wash { + --fa: "\e05e"; + --fa--fa: "\e05e\e05e"; +} +.fa-less-than-equal { + --fa: "\f537"; + --fa--fa: "\f537\f537"; +} +.fa-train { + --fa: "\f238"; + --fa--fa: "\f238\f238"; +} +.fa-eye-low-vision, +.fa-low-vision { + --fa: "\f2a8"; + --fa--fa: "\f2a8\f2a8"; +} +.fa-crow { + --fa: "\f520"; + --fa--fa: "\f520\f520"; +} +.fa-sailboat { + --fa: "\e445"; + --fa--fa: "\e445\e445"; +} +.fa-window-restore { + --fa: "\f2d2"; + --fa--fa: "\f2d2\f2d2"; +} +.fa-plus-square, +.fa-square-plus { + --fa: "\f0fe"; + --fa--fa: "\f0fe\f0fe"; +} +.fa-torii-gate { + --fa: "\f6a1"; + --fa--fa: "\f6a1\f6a1"; +} +.fa-frog { + --fa: "\f52e"; + --fa--fa: "\f52e\f52e"; +} +.fa-bucket { + --fa: "\e4cf"; + --fa--fa: "\e4cf\e4cf"; +} +.fa-image { + --fa: "\f03e"; + --fa--fa: "\f03e\f03e"; +} +.fa-microphone { + --fa: "\f130"; + --fa--fa: "\f130\f130"; +} +.fa-cow { + --fa: "\f6c8"; + --fa--fa: "\f6c8\f6c8"; +} +.fa-caret-up { + --fa: "\f0d8"; + --fa--fa: "\f0d8\f0d8"; +} +.fa-screwdriver { + --fa: "\f54a"; + --fa--fa: "\f54a\f54a"; +} +.fa-folder-closed { + --fa: "\e185"; + --fa--fa: "\e185\e185"; +} +.fa-house-tsunami { + --fa: "\e515"; + --fa--fa: "\e515\e515"; +} +.fa-square-nfi { + --fa: "\e576"; + --fa--fa: "\e576\e576"; +} +.fa-arrow-up-from-ground-water { + --fa: "\e4b5"; + --fa--fa: "\e4b5\e4b5"; +} +.fa-glass-martini-alt, +.fa-martini-glass { + --fa: "\f57b"; + --fa--fa: "\f57b\f57b"; +} +.fa-square-binary { + --fa: "\e69b"; + --fa--fa: "\e69b\e69b"; +} +.fa-rotate-back, +.fa-rotate-backward, +.fa-rotate-left, +.fa-undo-alt { + --fa: "\f2ea"; + --fa--fa: "\f2ea\f2ea"; +} +.fa-columns, +.fa-table-columns { + --fa: "\f0db"; + --fa--fa: "\f0db\f0db"; +} +.fa-lemon { + --fa: "\f094"; + --fa--fa: "\f094\f094"; +} +.fa-head-side-mask { + --fa: "\e063"; + --fa--fa: "\e063\e063"; +} +.fa-handshake { + --fa: "\f2b5"; + --fa--fa: "\f2b5\f2b5"; +} +.fa-gem { + --fa: "\f3a5"; + --fa--fa: "\f3a5\f3a5"; +} +.fa-dolly, +.fa-dolly-box { + --fa: "\f472"; + --fa--fa: "\f472\f472"; +} +.fa-smoking { + --fa: "\f48d"; + --fa--fa: "\f48d\f48d"; +} +.fa-compress-arrows-alt, +.fa-minimize { + --fa: "\f78c"; + --fa--fa: "\f78c\f78c"; +} +.fa-monument { + --fa: "\f5a6"; + --fa--fa: "\f5a6\f5a6"; +} +.fa-snowplow { + --fa: "\f7d2"; + --fa--fa: "\f7d2\f7d2"; +} +.fa-angle-double-right, +.fa-angles-right { + --fa: "\f101"; + --fa--fa: "\f101\f101"; +} +.fa-cannabis { + --fa: "\f55f"; + --fa--fa: "\f55f\f55f"; +} +.fa-circle-play, +.fa-play-circle { + --fa: "\f144"; + --fa--fa: "\f144\f144"; +} +.fa-tablets { + --fa: "\f490"; + --fa--fa: "\f490\f490"; +} +.fa-ethernet { + --fa: "\f796"; + --fa--fa: "\f796\f796"; +} +.fa-eur, +.fa-euro, +.fa-euro-sign { + --fa: "\f153"; + --fa--fa: "\f153\f153"; +} +.fa-chair { + --fa: "\f6c0"; + --fa--fa: "\f6c0\f6c0"; +} +.fa-check-circle, +.fa-circle-check { + --fa: "\f058"; + --fa--fa: "\f058\f058"; +} +.fa-circle-stop, +.fa-stop-circle { + --fa: "\f28d"; + --fa--fa: "\f28d\f28d"; +} +.fa-compass-drafting, +.fa-drafting-compass { + --fa: "\f568"; + --fa--fa: "\f568\f568"; +} +.fa-plate-wheat { + --fa: "\e55a"; + --fa--fa: "\e55a\e55a"; +} +.fa-icicles { + --fa: "\f7ad"; + --fa--fa: "\f7ad\f7ad"; +} +.fa-person-shelter { + --fa: "\e54f"; + --fa--fa: "\e54f\e54f"; +} +.fa-neuter { + --fa: "\f22c"; + --fa--fa: "\f22c\f22c"; +} +.fa-id-badge { + --fa: "\f2c1"; + --fa--fa: "\f2c1\f2c1"; +} +.fa-marker { + --fa: "\f5a1"; + --fa--fa: "\f5a1\f5a1"; +} +.fa-face-laugh-beam, +.fa-laugh-beam { + --fa: "\f59a"; + --fa--fa: "\f59a\f59a"; +} +.fa-helicopter-symbol { + --fa: "\e502"; + --fa--fa: "\e502\e502"; +} +.fa-universal-access { + --fa: "\f29a"; + --fa--fa: "\f29a\f29a"; +} +.fa-chevron-circle-up, +.fa-circle-chevron-up { + --fa: "\f139"; + --fa--fa: "\f139\f139"; +} +.fa-lari-sign { + --fa: "\e1c8"; + --fa--fa: "\e1c8\e1c8"; +} +.fa-volcano { + --fa: "\f770"; + --fa--fa: "\f770\f770"; +} +.fa-person-walking-dashed-line-arrow-right { + --fa: "\e553"; + --fa--fa: "\e553\e553"; +} +.fa-gbp, +.fa-pound-sign, +.fa-sterling-sign { + --fa: "\f154"; + --fa--fa: "\f154\f154"; +} +.fa-viruses { + --fa: "\e076"; + --fa--fa: "\e076\e076"; +} +.fa-square-person-confined { + --fa: "\e577"; + --fa--fa: "\e577\e577"; +} +.fa-user-tie { + --fa: "\f508"; + --fa--fa: "\f508\f508"; +} +.fa-arrow-down-long, +.fa-long-arrow-down { + --fa: "\f175"; + --fa--fa: "\f175\f175"; +} +.fa-tent-arrow-down-to-line { + --fa: "\e57e"; + --fa--fa: "\e57e\e57e"; +} +.fa-certificate { + --fa: "\f0a3"; + --fa--fa: "\f0a3\f0a3"; +} +.fa-mail-reply-all, +.fa-reply-all { + --fa: "\f122"; + --fa--fa: "\f122\f122"; +} +.fa-suitcase { + --fa: "\f0f2"; + --fa--fa: "\f0f2\f0f2"; +} +.fa-person-skating, +.fa-skating { + --fa: "\f7c5"; + --fa--fa: "\f7c5\f7c5"; +} +.fa-filter-circle-dollar, +.fa-funnel-dollar { + --fa: "\f662"; + --fa--fa: "\f662\f662"; +} +.fa-camera-retro { + --fa: "\f083"; + --fa--fa: "\f083\f083"; +} +.fa-arrow-circle-down, +.fa-circle-arrow-down { + --fa: "\f0ab"; + --fa--fa: "\f0ab\f0ab"; +} +.fa-arrow-right-to-file, +.fa-file-import { + --fa: "\f56f"; + --fa--fa: "\f56f\f56f"; +} +.fa-external-link-square, +.fa-square-arrow-up-right { + --fa: "\f14c"; + --fa--fa: "\f14c\f14c"; +} +.fa-box-open { + --fa: "\f49e"; + --fa--fa: "\f49e\f49e"; +} +.fa-scroll { + --fa: "\f70e"; + --fa--fa: "\f70e\f70e"; +} +.fa-spa { + --fa: "\f5bb"; + --fa--fa: "\f5bb\f5bb"; +} +.fa-location-pin-lock { + --fa: "\e51f"; + --fa--fa: "\e51f\e51f"; +} +.fa-pause { + --fa: "\f04c"; + --fa--fa: "\f04c\f04c"; +} +.fa-hill-avalanche { + --fa: "\e507"; + --fa--fa: "\e507\e507"; +} +.fa-temperature-0, +.fa-temperature-empty, +.fa-thermometer-0, +.fa-thermometer-empty { + --fa: "\f2cb"; + --fa--fa: "\f2cb\f2cb"; +} +.fa-bomb { + --fa: "\f1e2"; + --fa--fa: "\f1e2\f1e2"; +} +.fa-registered { + --fa: "\f25d"; + --fa--fa: "\f25d\f25d"; +} +.fa-address-card, +.fa-contact-card, +.fa-vcard { + --fa: "\f2bb"; + --fa--fa: "\f2bb\f2bb"; +} +.fa-balance-scale-right, +.fa-scale-unbalanced-flip { + --fa: "\f516"; + --fa--fa: "\f516\f516"; +} +.fa-subscript { + --fa: "\f12c"; + --fa--fa: "\f12c\f12c"; +} +.fa-diamond-turn-right, +.fa-directions { + --fa: "\f5eb"; + --fa--fa: "\f5eb\f5eb"; +} +.fa-burst { + --fa: "\e4dc"; + --fa--fa: "\e4dc\e4dc"; +} +.fa-house-laptop, +.fa-laptop-house { + --fa: "\e066"; + --fa--fa: "\e066\e066"; +} +.fa-face-tired, +.fa-tired { + --fa: "\f5c8"; + --fa--fa: "\f5c8\f5c8"; +} +.fa-money-bills { + --fa: "\e1f3"; + --fa--fa: "\e1f3\e1f3"; +} +.fa-smog { + --fa: "\f75f"; + --fa--fa: "\f75f\f75f"; +} +.fa-crutch { + --fa: "\f7f7"; + --fa--fa: "\f7f7\f7f7"; +} +.fa-cloud-arrow-up, +.fa-cloud-upload, +.fa-cloud-upload-alt { + --fa: "\f0ee"; + --fa--fa: "\f0ee\f0ee"; +} +.fa-palette { + --fa: "\f53f"; + --fa--fa: "\f53f\f53f"; +} +.fa-arrows-turn-right { + --fa: "\e4c0"; + --fa--fa: "\e4c0\e4c0"; +} +.fa-vest { + --fa: "\e085"; + --fa--fa: "\e085\e085"; +} +.fa-ferry { + --fa: "\e4ea"; + --fa--fa: "\e4ea\e4ea"; +} +.fa-arrows-down-to-people { + --fa: "\e4b9"; + --fa--fa: "\e4b9\e4b9"; +} +.fa-seedling, +.fa-sprout { + --fa: "\f4d8"; + --fa--fa: "\f4d8\f4d8"; +} +.fa-arrows-alt-h, +.fa-left-right { + --fa: "\f337"; + --fa--fa: "\f337\f337"; +} +.fa-boxes-packing { + --fa: "\e4c7"; + --fa--fa: "\e4c7\e4c7"; +} +.fa-arrow-circle-left, +.fa-circle-arrow-left { + --fa: "\f0a8"; + --fa--fa: "\f0a8\f0a8"; +} +.fa-group-arrows-rotate { + --fa: "\e4f6"; + --fa--fa: "\e4f6\e4f6"; +} +.fa-bowl-food { + --fa: "\e4c6"; + --fa--fa: "\e4c6\e4c6"; +} +.fa-candy-cane { + --fa: "\f786"; + --fa--fa: "\f786\f786"; +} +.fa-arrow-down-wide-short, +.fa-sort-amount-asc, +.fa-sort-amount-down { + --fa: "\f160"; + --fa--fa: "\f160\f160"; +} +.fa-cloud-bolt, +.fa-thunderstorm { + --fa: "\f76c"; + --fa--fa: "\f76c\f76c"; +} +.fa-remove-format, +.fa-text-slash { + --fa: "\f87d"; + --fa--fa: "\f87d\f87d"; +} +.fa-face-smile-wink, +.fa-smile-wink { + --fa: "\f4da"; + --fa--fa: "\f4da\f4da"; +} +.fa-file-word { + --fa: "\f1c2"; + --fa--fa: "\f1c2\f1c2"; +} +.fa-file-powerpoint { + --fa: "\f1c4"; + --fa--fa: "\f1c4\f1c4"; +} +.fa-arrows-h, +.fa-arrows-left-right { + --fa: "\f07e"; + --fa--fa: "\f07e\f07e"; +} +.fa-house-lock { + --fa: "\e510"; + --fa--fa: "\e510\e510"; +} +.fa-cloud-arrow-down, +.fa-cloud-download, +.fa-cloud-download-alt { + --fa: "\f0ed"; + --fa--fa: "\f0ed\f0ed"; +} +.fa-children { + --fa: "\e4e1"; + --fa--fa: "\e4e1\e4e1"; +} +.fa-blackboard, +.fa-chalkboard { + --fa: "\f51b"; + --fa--fa: "\f51b\f51b"; +} +.fa-user-alt-slash, +.fa-user-large-slash { + --fa: "\f4fa"; + --fa--fa: "\f4fa\f4fa"; +} +.fa-envelope-open { + --fa: "\f2b6"; + --fa--fa: "\f2b6\f2b6"; +} +.fa-handshake-alt-slash, +.fa-handshake-simple-slash { + --fa: "\e05f"; + --fa--fa: "\e05f\e05f"; +} +.fa-mattress-pillow { + --fa: "\e525"; + --fa--fa: "\e525\e525"; +} +.fa-guarani-sign { + --fa: "\e19a"; + --fa--fa: "\e19a\e19a"; +} +.fa-arrows-rotate, +.fa-refresh, +.fa-sync { + --fa: "\f021"; + --fa--fa: "\f021\f021"; +} +.fa-fire-extinguisher { + --fa: "\f134"; + --fa--fa: "\f134\f134"; +} +.fa-cruzeiro-sign { + --fa: "\e152"; + --fa--fa: "\e152\e152"; +} +.fa-greater-than-equal { + --fa: "\f532"; + --fa--fa: "\f532\f532"; +} +.fa-shield-alt, +.fa-shield-halved { + --fa: "\f3ed"; + --fa--fa: "\f3ed\f3ed"; +} +.fa-atlas, +.fa-book-atlas { + --fa: "\f558"; + --fa--fa: "\f558\f558"; +} +.fa-virus { + --fa: "\e074"; + --fa--fa: "\e074\e074"; +} +.fa-envelope-circle-check { + --fa: "\e4e8"; + --fa--fa: "\e4e8\e4e8"; +} +.fa-layer-group { + --fa: "\f5fd"; + --fa--fa: "\f5fd\f5fd"; +} +.fa-arrows-to-dot { + --fa: "\e4be"; + --fa--fa: "\e4be\e4be"; +} +.fa-archway { + --fa: "\f557"; + --fa--fa: "\f557\f557"; +} +.fa-heart-circle-check { + --fa: "\e4fd"; + --fa--fa: "\e4fd\e4fd"; +} +.fa-house-chimney-crack, +.fa-house-damage { + --fa: "\f6f1"; + --fa--fa: "\f6f1\f6f1"; +} +.fa-file-archive, +.fa-file-zipper { + --fa: "\f1c6"; + --fa--fa: "\f1c6\f1c6"; +} +.fa-square { + --fa: "\f0c8"; + --fa--fa: "\f0c8\f0c8"; +} +.fa-glass-martini, +.fa-martini-glass-empty { + --fa: "\f000"; + --fa--fa: "\f000\f000"; +} +.fa-couch { + --fa: "\f4b8"; + --fa--fa: "\f4b8\f4b8"; +} +.fa-cedi-sign { + --fa: "\e0df"; + --fa--fa: "\e0df\e0df"; +} +.fa-italic { + --fa: "\f033"; + --fa--fa: "\f033\f033"; +} +.fa-table-cells-column-lock { + --fa: "\e678"; + --fa--fa: "\e678\e678"; +} +.fa-church { + --fa: "\f51d"; + --fa--fa: "\f51d\f51d"; +} +.fa-comments-dollar { + --fa: "\f653"; + --fa--fa: "\f653\f653"; +} +.fa-democrat { + --fa: "\f747"; + --fa--fa: "\f747\f747"; +} +.fa-z { + --fa: "\5a"; + --fa--fa: "\5a\5a"; +} +.fa-person-skiing, +.fa-skiing { + --fa: "\f7c9"; + --fa--fa: "\f7c9\f7c9"; +} +.fa-road-lock { + --fa: "\e567"; + --fa--fa: "\e567\e567"; +} +.fa-a { + --fa: "\41"; + --fa--fa: "\41\41"; +} +.fa-temperature-arrow-down, +.fa-temperature-down { + --fa: "\e03f"; + --fa--fa: "\e03f\e03f"; +} +.fa-feather-alt, +.fa-feather-pointed { + --fa: "\f56b"; + --fa--fa: "\f56b\f56b"; +} +.fa-p { + --fa: "\50"; + --fa--fa: "\50\50"; +} +.fa-snowflake { + --fa: "\f2dc"; + --fa--fa: "\f2dc\f2dc"; +} +.fa-newspaper { + --fa: "\f1ea"; + --fa--fa: "\f1ea\f1ea"; +} +.fa-ad, +.fa-rectangle-ad { + --fa: "\f641"; + --fa--fa: "\f641\f641"; +} +.fa-arrow-circle-right, +.fa-circle-arrow-right { + --fa: "\f0a9"; + --fa--fa: "\f0a9\f0a9"; +} +.fa-filter-circle-xmark { + --fa: "\e17b"; + --fa--fa: "\e17b\e17b"; +} +.fa-locust { + --fa: "\e520"; + --fa--fa: "\e520\e520"; +} +.fa-sort, +.fa-unsorted { + --fa: "\f0dc"; + --fa--fa: "\f0dc\f0dc"; +} +.fa-list-1-2, +.fa-list-numeric, +.fa-list-ol { + --fa: "\f0cb"; + --fa--fa: "\f0cb\f0cb"; +} +.fa-person-dress-burst { + --fa: "\e544"; + --fa--fa: "\e544\e544"; +} +.fa-money-check-alt, +.fa-money-check-dollar { + --fa: "\f53d"; + --fa--fa: "\f53d\f53d"; +} +.fa-vector-square { + --fa: "\f5cb"; + --fa--fa: "\f5cb\f5cb"; +} +.fa-bread-slice { + --fa: "\f7ec"; + --fa--fa: "\f7ec\f7ec"; +} +.fa-language { + --fa: "\f1ab"; + --fa--fa: "\f1ab\f1ab"; +} +.fa-face-kiss-wink-heart, +.fa-kiss-wink-heart { + --fa: "\f598"; + --fa--fa: "\f598\f598"; +} +.fa-filter { + --fa: "\f0b0"; + --fa--fa: "\f0b0\f0b0"; +} +.fa-question { + --fa: "\3f"; + --fa--fa: "\3f\3f"; +} +.fa-file-signature { + --fa: "\f573"; + --fa--fa: "\f573\f573"; +} +.fa-arrows-alt, +.fa-up-down-left-right { + --fa: "\f0b2"; + --fa--fa: "\f0b2\f0b2"; +} +.fa-house-chimney-user { + --fa: "\e065"; + --fa--fa: "\e065\e065"; +} +.fa-hand-holding-heart { + --fa: "\f4be"; + --fa--fa: "\f4be\f4be"; +} +.fa-puzzle-piece { + --fa: "\f12e"; + --fa--fa: "\f12e\f12e"; +} +.fa-money-check { + --fa: "\f53c"; + --fa--fa: "\f53c\f53c"; +} +.fa-star-half-alt, +.fa-star-half-stroke { + --fa: "\f5c0"; + --fa--fa: "\f5c0\f5c0"; +} +.fa-code { + --fa: "\f121"; + --fa--fa: "\f121\f121"; +} +.fa-glass-whiskey, +.fa-whiskey-glass { + --fa: "\f7a0"; + --fa--fa: "\f7a0\f7a0"; +} +.fa-building-circle-exclamation { + --fa: "\e4d3"; + --fa--fa: "\e4d3\e4d3"; +} +.fa-magnifying-glass-chart { + --fa: "\e522"; + --fa--fa: "\e522\e522"; +} +.fa-arrow-up-right-from-square, +.fa-external-link { + --fa: "\f08e"; + --fa--fa: "\f08e\f08e"; +} +.fa-cubes-stacked { + --fa: "\e4e6"; + --fa--fa: "\e4e6\e4e6"; +} +.fa-krw, +.fa-won, +.fa-won-sign { + --fa: "\f159"; + --fa--fa: "\f159\f159"; +} +.fa-virus-covid { + --fa: "\e4a8"; + --fa--fa: "\e4a8\e4a8"; +} +.fa-austral-sign { + --fa: "\e0a9"; + --fa--fa: "\e0a9\e0a9"; +} +.fa-f { + --fa: "\46"; + --fa--fa: "\46\46"; +} +.fa-leaf { + --fa: "\f06c"; + --fa--fa: "\f06c\f06c"; +} +.fa-road { + --fa: "\f018"; + --fa--fa: "\f018\f018"; +} +.fa-cab, +.fa-taxi { + --fa: "\f1ba"; + --fa--fa: "\f1ba\f1ba"; +} +.fa-person-circle-plus { + --fa: "\e541"; + --fa--fa: "\e541\e541"; +} +.fa-chart-pie, +.fa-pie-chart { + --fa: "\f200"; + --fa--fa: "\f200\f200"; +} +.fa-bolt-lightning { + --fa: "\e0b7"; + --fa--fa: "\e0b7\e0b7"; +} +.fa-sack-xmark { + --fa: "\e56a"; + --fa--fa: "\e56a\e56a"; +} +.fa-file-excel { + --fa: "\f1c3"; + --fa--fa: "\f1c3\f1c3"; +} +.fa-file-contract { + --fa: "\f56c"; + --fa--fa: "\f56c\f56c"; +} +.fa-fish-fins { + --fa: "\e4f2"; + --fa--fa: "\e4f2\e4f2"; +} +.fa-building-flag { + --fa: "\e4d5"; + --fa--fa: "\e4d5\e4d5"; +} +.fa-face-grin-beam, +.fa-grin-beam { + --fa: "\f582"; + --fa--fa: "\f582\f582"; +} +.fa-object-ungroup { + --fa: "\f248"; + --fa--fa: "\f248\f248"; +} +.fa-poop { + --fa: "\f619"; + --fa--fa: "\f619\f619"; +} +.fa-location-pin, +.fa-map-marker { + --fa: "\f041"; + --fa--fa: "\f041\f041"; +} +.fa-kaaba { + --fa: "\f66b"; + --fa--fa: "\f66b\f66b"; +} +.fa-toilet-paper { + --fa: "\f71e"; + --fa--fa: "\f71e\f71e"; +} +.fa-hard-hat, +.fa-hat-hard, +.fa-helmet-safety { + --fa: "\f807"; + --fa--fa: "\f807\f807"; +} +.fa-eject { + --fa: "\f052"; + --fa--fa: "\f052\f052"; +} +.fa-arrow-alt-circle-right, +.fa-circle-right { + --fa: "\f35a"; + --fa--fa: "\f35a\f35a"; +} +.fa-plane-circle-check { + --fa: "\e555"; + --fa--fa: "\e555\e555"; +} +.fa-face-rolling-eyes, +.fa-meh-rolling-eyes { + --fa: "\f5a5"; + --fa--fa: "\f5a5\f5a5"; +} +.fa-object-group { + --fa: "\f247"; + --fa--fa: "\f247\f247"; +} +.fa-chart-line, +.fa-line-chart { + --fa: "\f201"; + --fa--fa: "\f201\f201"; +} +.fa-mask-ventilator { + --fa: "\e524"; + --fa--fa: "\e524\e524"; +} +.fa-arrow-right { + --fa: "\f061"; + --fa--fa: "\f061\f061"; +} +.fa-map-signs, +.fa-signs-post { + --fa: "\f277"; + --fa--fa: "\f277\f277"; +} +.fa-cash-register { + --fa: "\f788"; + --fa--fa: "\f788\f788"; +} +.fa-person-circle-question { + --fa: "\e542"; + --fa--fa: "\e542\e542"; +} +.fa-h { + --fa: "\48"; + --fa--fa: "\48\48"; +} +.fa-tarp { + --fa: "\e57b"; + --fa--fa: "\e57b\e57b"; +} +.fa-screwdriver-wrench, +.fa-tools { + --fa: "\f7d9"; + --fa--fa: "\f7d9\f7d9"; +} +.fa-arrows-to-eye { + --fa: "\e4bf"; + --fa--fa: "\e4bf\e4bf"; +} +.fa-plug-circle-bolt { + --fa: "\e55b"; + --fa--fa: "\e55b\e55b"; +} +.fa-heart { + --fa: "\f004"; + --fa--fa: "\f004\f004"; +} +.fa-mars-and-venus { + --fa: "\f224"; + --fa--fa: "\f224\f224"; +} +.fa-home-user, +.fa-house-user { + --fa: "\e1b0"; + --fa--fa: "\e1b0\e1b0"; +} +.fa-dumpster-fire { + --fa: "\f794"; + --fa--fa: "\f794\f794"; +} +.fa-house-crack { + --fa: "\e3b1"; + --fa--fa: "\e3b1\e3b1"; +} +.fa-cocktail, +.fa-martini-glass-citrus { + --fa: "\f561"; + --fa--fa: "\f561\f561"; +} +.fa-face-surprise, +.fa-surprise { + --fa: "\f5c2"; + --fa--fa: "\f5c2\f5c2"; +} +.fa-bottle-water { + --fa: "\e4c5"; + --fa--fa: "\e4c5\e4c5"; +} +.fa-circle-pause, +.fa-pause-circle { + --fa: "\f28b"; + --fa--fa: "\f28b\f28b"; +} +.fa-toilet-paper-slash { + --fa: "\e072"; + --fa--fa: "\e072\e072"; +} +.fa-apple-alt, +.fa-apple-whole { + --fa: "\f5d1"; + --fa--fa: "\f5d1\f5d1"; +} +.fa-kitchen-set { + --fa: "\e51a"; + --fa--fa: "\e51a\e51a"; +} +.fa-r { + --fa: "\52"; + --fa--fa: "\52\52"; +} +.fa-temperature-1, +.fa-temperature-quarter, +.fa-thermometer-1, +.fa-thermometer-quarter { + --fa: "\f2ca"; + --fa--fa: "\f2ca\f2ca"; +} +.fa-cube { + --fa: "\f1b2"; + --fa--fa: "\f1b2\f1b2"; +} +.fa-bitcoin-sign { + --fa: "\e0b4"; + --fa--fa: "\e0b4\e0b4"; +} +.fa-shield-dog { + --fa: "\e573"; + --fa--fa: "\e573\e573"; +} +.fa-solar-panel { + --fa: "\f5ba"; + --fa--fa: "\f5ba\f5ba"; +} +.fa-lock-open { + --fa: "\f3c1"; + --fa--fa: "\f3c1\f3c1"; +} +.fa-elevator { + --fa: "\e16d"; + --fa--fa: "\e16d\e16d"; +} +.fa-money-bill-transfer { + --fa: "\e528"; + --fa--fa: "\e528\e528"; +} +.fa-money-bill-trend-up { + --fa: "\e529"; + --fa--fa: "\e529\e529"; +} +.fa-house-flood-water-circle-arrow-right { + --fa: "\e50f"; + --fa--fa: "\e50f\e50f"; +} +.fa-poll-h, +.fa-square-poll-horizontal { + --fa: "\f682"; + --fa--fa: "\f682\f682"; +} +.fa-circle { + --fa: "\f111"; + --fa--fa: "\f111\f111"; +} +.fa-backward-fast, +.fa-fast-backward { + --fa: "\f049"; + --fa--fa: "\f049\f049"; +} +.fa-recycle { + --fa: "\f1b8"; + --fa--fa: "\f1b8\f1b8"; +} +.fa-user-astronaut { + --fa: "\f4fb"; + --fa--fa: "\f4fb\f4fb"; +} +.fa-plane-slash { + --fa: "\e069"; + --fa--fa: "\e069\e069"; +} +.fa-trademark { + --fa: "\f25c"; + --fa--fa: "\f25c\f25c"; +} +.fa-basketball, +.fa-basketball-ball { + --fa: "\f434"; + --fa--fa: "\f434\f434"; +} +.fa-satellite-dish { + --fa: "\f7c0"; + --fa--fa: "\f7c0\f7c0"; +} +.fa-arrow-alt-circle-up, +.fa-circle-up { + --fa: "\f35b"; + --fa--fa: "\f35b\f35b"; +} +.fa-mobile-alt, +.fa-mobile-screen-button { + --fa: "\f3cd"; + --fa--fa: "\f3cd\f3cd"; +} +.fa-volume-high, +.fa-volume-up { + --fa: "\f028"; + --fa--fa: "\f028\f028"; +} +.fa-users-rays { + --fa: "\e593"; + --fa--fa: "\e593\e593"; +} +.fa-wallet { + --fa: "\f555"; + --fa--fa: "\f555\f555"; +} +.fa-clipboard-check { + --fa: "\f46c"; + --fa--fa: "\f46c\f46c"; +} +.fa-file-audio { + --fa: "\f1c7"; + --fa--fa: "\f1c7\f1c7"; +} +.fa-burger, +.fa-hamburger { + --fa: "\f805"; + --fa--fa: "\f805\f805"; +} +.fa-wrench { + --fa: "\f0ad"; + --fa--fa: "\f0ad\f0ad"; +} +.fa-bugs { + --fa: "\e4d0"; + --fa--fa: "\e4d0\e4d0"; +} +.fa-rupee, +.fa-rupee-sign { + --fa: "\f156"; + --fa--fa: "\f156\f156"; +} +.fa-file-image { + --fa: "\f1c5"; + --fa--fa: "\f1c5\f1c5"; +} +.fa-circle-question, +.fa-question-circle { + --fa: "\f059"; + --fa--fa: "\f059\f059"; +} +.fa-plane-departure { + --fa: "\f5b0"; + --fa--fa: "\f5b0\f5b0"; +} +.fa-handshake-slash { + --fa: "\e060"; + --fa--fa: "\e060\e060"; +} +.fa-book-bookmark { + --fa: "\e0bb"; + --fa--fa: "\e0bb\e0bb"; +} +.fa-code-branch { + --fa: "\f126"; + --fa--fa: "\f126\f126"; +} +.fa-hat-cowboy { + --fa: "\f8c0"; + --fa--fa: "\f8c0\f8c0"; +} +.fa-bridge { + --fa: "\e4c8"; + --fa--fa: "\e4c8\e4c8"; +} +.fa-phone-alt, +.fa-phone-flip { + --fa: "\f879"; + --fa--fa: "\f879\f879"; +} +.fa-truck-front { + --fa: "\e2b7"; + --fa--fa: "\e2b7\e2b7"; +} +.fa-cat { + --fa: "\f6be"; + --fa--fa: "\f6be\f6be"; +} +.fa-anchor-circle-exclamation { + --fa: "\e4ab"; + --fa--fa: "\e4ab\e4ab"; +} +.fa-truck-field { + --fa: "\e58d"; + --fa--fa: "\e58d\e58d"; +} +.fa-route { + --fa: "\f4d7"; + --fa--fa: "\f4d7\f4d7"; +} +.fa-clipboard-question { + --fa: "\e4e3"; + --fa--fa: "\e4e3\e4e3"; +} +.fa-panorama { + --fa: "\e209"; + --fa--fa: "\e209\e209"; +} +.fa-comment-medical { + --fa: "\f7f5"; + --fa--fa: "\f7f5\f7f5"; +} +.fa-teeth-open { + --fa: "\f62f"; + --fa--fa: "\f62f\f62f"; +} +.fa-file-circle-minus { + --fa: "\e4ed"; + --fa--fa: "\e4ed\e4ed"; +} +.fa-tags { + --fa: "\f02c"; + --fa--fa: "\f02c\f02c"; +} +.fa-wine-glass { + --fa: "\f4e3"; + --fa--fa: "\f4e3\f4e3"; +} +.fa-fast-forward, +.fa-forward-fast { + --fa: "\f050"; + --fa--fa: "\f050\f050"; +} +.fa-face-meh-blank, +.fa-meh-blank { + --fa: "\f5a4"; + --fa--fa: "\f5a4\f5a4"; +} +.fa-parking, +.fa-square-parking { + --fa: "\f540"; + --fa--fa: "\f540\f540"; +} +.fa-house-signal { + --fa: "\e012"; + --fa--fa: "\e012\e012"; +} +.fa-bars-progress, +.fa-tasks-alt { + --fa: "\f828"; + --fa--fa: "\f828\f828"; +} +.fa-faucet-drip { + --fa: "\e006"; + --fa--fa: "\e006\e006"; +} +.fa-cart-flatbed, +.fa-dolly-flatbed { + --fa: "\f474"; + --fa--fa: "\f474\f474"; +} +.fa-ban-smoking, +.fa-smoking-ban { + --fa: "\f54d"; + --fa--fa: "\f54d\f54d"; +} +.fa-terminal { + --fa: "\f120"; + --fa--fa: "\f120\f120"; +} +.fa-mobile-button { + --fa: "\f10b"; + --fa--fa: "\f10b\f10b"; +} +.fa-house-medical-flag { + --fa: "\e514"; + --fa--fa: "\e514\e514"; +} +.fa-basket-shopping, +.fa-shopping-basket { + --fa: "\f291"; + --fa--fa: "\f291\f291"; +} +.fa-tape { + --fa: "\f4db"; + --fa--fa: "\f4db\f4db"; +} +.fa-bus-alt, +.fa-bus-simple { + --fa: "\f55e"; + --fa--fa: "\f55e\f55e"; +} +.fa-eye { + --fa: "\f06e"; + --fa--fa: "\f06e\f06e"; +} +.fa-face-sad-cry, +.fa-sad-cry { + --fa: "\f5b3"; + --fa--fa: "\f5b3\f5b3"; +} +.fa-audio-description { + --fa: "\f29e"; + --fa--fa: "\f29e\f29e"; +} +.fa-person-military-to-person { + --fa: "\e54c"; + --fa--fa: "\e54c\e54c"; +} +.fa-file-shield { + --fa: "\e4f0"; + --fa--fa: "\e4f0\e4f0"; +} +.fa-user-slash { + --fa: "\f506"; + --fa--fa: "\f506\f506"; +} +.fa-pen { + --fa: "\f304"; + --fa--fa: "\f304\f304"; +} +.fa-tower-observation { + --fa: "\e586"; + --fa--fa: "\e586\e586"; +} +.fa-file-code { + --fa: "\f1c9"; + --fa--fa: "\f1c9\f1c9"; +} +.fa-signal, +.fa-signal-5, +.fa-signal-perfect { + --fa: "\f012"; + --fa--fa: "\f012\f012"; +} +.fa-bus { + --fa: "\f207"; + --fa--fa: "\f207\f207"; +} +.fa-heart-circle-xmark { + --fa: "\e501"; + --fa--fa: "\e501\e501"; +} +.fa-home-lg, +.fa-house-chimney { + --fa: "\e3af"; + --fa--fa: "\e3af\e3af"; +} +.fa-window-maximize { + --fa: "\f2d0"; + --fa--fa: "\f2d0\f2d0"; +} +.fa-face-frown, +.fa-frown { + --fa: "\f119"; + --fa--fa: "\f119\f119"; +} +.fa-prescription { + --fa: "\f5b1"; + --fa--fa: "\f5b1\f5b1"; +} +.fa-shop, +.fa-store-alt { + --fa: "\f54f"; + --fa--fa: "\f54f\f54f"; +} +.fa-floppy-disk, +.fa-save { + --fa: "\f0c7"; + --fa--fa: "\f0c7\f0c7"; +} +.fa-vihara { + --fa: "\f6a7"; + --fa--fa: "\f6a7\f6a7"; +} +.fa-balance-scale-left, +.fa-scale-unbalanced { + --fa: "\f515"; + --fa--fa: "\f515\f515"; +} +.fa-sort-asc, +.fa-sort-up { + --fa: "\f0de"; + --fa--fa: "\f0de\f0de"; +} +.fa-comment-dots, +.fa-commenting { + --fa: "\f4ad"; + --fa--fa: "\f4ad\f4ad"; +} +.fa-plant-wilt { + --fa: "\e5aa"; + --fa--fa: "\e5aa\e5aa"; +} +.fa-diamond { + --fa: "\f219"; + --fa--fa: "\f219\f219"; +} +.fa-face-grin-squint, +.fa-grin-squint { + --fa: "\f585"; + --fa--fa: "\f585\f585"; +} +.fa-hand-holding-dollar, +.fa-hand-holding-usd { + --fa: "\f4c0"; + --fa--fa: "\f4c0\f4c0"; +} +.fa-chart-diagram { + --fa: "\e695"; + --fa--fa: "\e695\e695"; +} +.fa-bacterium { + --fa: "\e05a"; + --fa--fa: "\e05a\e05a"; +} +.fa-hand-pointer { + --fa: "\f25a"; + --fa--fa: "\f25a\f25a"; +} +.fa-drum-steelpan { + --fa: "\f56a"; + --fa--fa: "\f56a\f56a"; +} +.fa-hand-scissors { + --fa: "\f257"; + --fa--fa: "\f257\f257"; +} +.fa-hands-praying, +.fa-praying-hands { + --fa: "\f684"; + --fa--fa: "\f684\f684"; +} +.fa-arrow-right-rotate, +.fa-arrow-rotate-forward, +.fa-arrow-rotate-right, +.fa-redo { + --fa: "\f01e"; + --fa--fa: "\f01e\f01e"; +} +.fa-biohazard { + --fa: "\f780"; + --fa--fa: "\f780\f780"; +} +.fa-location, +.fa-location-crosshairs { + --fa: "\f601"; + --fa--fa: "\f601\f601"; +} +.fa-mars-double { + --fa: "\f227"; + --fa--fa: "\f227\f227"; +} +.fa-child-dress { + --fa: "\e59c"; + --fa--fa: "\e59c\e59c"; +} +.fa-users-between-lines { + --fa: "\e591"; + --fa--fa: "\e591\e591"; +} +.fa-lungs-virus { + --fa: "\e067"; + --fa--fa: "\e067\e067"; +} +.fa-face-grin-tears, +.fa-grin-tears { + --fa: "\f588"; + --fa--fa: "\f588\f588"; +} +.fa-phone { + --fa: "\f095"; + --fa--fa: "\f095\f095"; +} +.fa-calendar-times, +.fa-calendar-xmark { + --fa: "\f273"; + --fa--fa: "\f273\f273"; +} +.fa-child-reaching { + --fa: "\e59d"; + --fa--fa: "\e59d\e59d"; +} +.fa-head-side-virus { + --fa: "\e064"; + --fa--fa: "\e064\e064"; +} +.fa-user-cog, +.fa-user-gear { + --fa: "\f4fe"; + --fa--fa: "\f4fe\f4fe"; +} +.fa-arrow-up-1-9, +.fa-sort-numeric-up { + --fa: "\f163"; + --fa--fa: "\f163\f163"; +} +.fa-door-closed { + --fa: "\f52a"; + --fa--fa: "\f52a\f52a"; +} +.fa-shield-virus { + --fa: "\e06c"; + --fa--fa: "\e06c\e06c"; +} +.fa-dice-six { + --fa: "\f526"; + --fa--fa: "\f526\f526"; +} +.fa-mosquito-net { + --fa: "\e52c"; + --fa--fa: "\e52c\e52c"; +} +.fa-file-fragment { + --fa: "\e697"; + --fa--fa: "\e697\e697"; +} +.fa-bridge-water { + --fa: "\e4ce"; + --fa--fa: "\e4ce\e4ce"; +} +.fa-person-booth { + --fa: "\f756"; + --fa--fa: "\f756\f756"; +} +.fa-text-width { + --fa: "\f035"; + --fa--fa: "\f035\f035"; +} +.fa-hat-wizard { + --fa: "\f6e8"; + --fa--fa: "\f6e8\f6e8"; +} +.fa-pen-fancy { + --fa: "\f5ac"; + --fa--fa: "\f5ac\f5ac"; +} +.fa-digging, +.fa-person-digging { + --fa: "\f85e"; + --fa--fa: "\f85e\f85e"; +} +.fa-trash { + --fa: "\f1f8"; + --fa--fa: "\f1f8\f1f8"; +} +.fa-gauge-simple, +.fa-gauge-simple-med, +.fa-tachometer-average { + --fa: "\f629"; + --fa--fa: "\f629\f629"; +} +.fa-book-medical { + --fa: "\f7e6"; + --fa--fa: "\f7e6\f7e6"; +} +.fa-poo { + --fa: "\f2fe"; + --fa--fa: "\f2fe\f2fe"; +} +.fa-quote-right, +.fa-quote-right-alt { + --fa: "\f10e"; + --fa--fa: "\f10e\f10e"; +} +.fa-shirt, +.fa-t-shirt, +.fa-tshirt { + --fa: "\f553"; + --fa--fa: "\f553\f553"; +} +.fa-cubes { + --fa: "\f1b3"; + --fa--fa: "\f1b3\f1b3"; +} +.fa-divide { + --fa: "\f529"; + --fa--fa: "\f529\f529"; +} +.fa-tenge, +.fa-tenge-sign { + --fa: "\f7d7"; + --fa--fa: "\f7d7\f7d7"; +} +.fa-headphones { + --fa: "\f025"; + --fa--fa: "\f025\f025"; +} +.fa-hands-holding { + --fa: "\f4c2"; + --fa--fa: "\f4c2\f4c2"; +} +.fa-hands-clapping { + --fa: "\e1a8"; + --fa--fa: "\e1a8\e1a8"; +} +.fa-republican { + --fa: "\f75e"; + --fa--fa: "\f75e\f75e"; +} +.fa-arrow-left { + --fa: "\f060"; + --fa--fa: "\f060\f060"; +} +.fa-person-circle-xmark { + --fa: "\e543"; + --fa--fa: "\e543\e543"; +} +.fa-ruler { + --fa: "\f545"; + --fa--fa: "\f545\f545"; +} +.fa-align-left { + --fa: "\f036"; + --fa--fa: "\f036\f036"; +} +.fa-dice-d6 { + --fa: "\f6d1"; + --fa--fa: "\f6d1\f6d1"; +} +.fa-restroom { + --fa: "\f7bd"; + --fa--fa: "\f7bd\f7bd"; +} +.fa-j { + --fa: "\4a"; + --fa--fa: "\4a\4a"; +} +.fa-users-viewfinder { + --fa: "\e595"; + --fa--fa: "\e595\e595"; +} +.fa-file-video { + --fa: "\f1c8"; + --fa--fa: "\f1c8\f1c8"; +} +.fa-external-link-alt, +.fa-up-right-from-square { + --fa: "\f35d"; + --fa--fa: "\f35d\f35d"; +} +.fa-table-cells, +.fa-th { + --fa: "\f00a"; + --fa--fa: "\f00a\f00a"; +} +.fa-file-pdf { + --fa: "\f1c1"; + --fa--fa: "\f1c1\f1c1"; +} +.fa-bible, +.fa-book-bible { + --fa: "\f647"; + --fa--fa: "\f647\f647"; +} +.fa-o { + --fa: "\4f"; + --fa--fa: "\4f\4f"; +} +.fa-medkit, +.fa-suitcase-medical { + --fa: "\f0fa"; + --fa--fa: "\f0fa\f0fa"; +} +.fa-user-secret { + --fa: "\f21b"; + --fa--fa: "\f21b\f21b"; +} +.fa-otter { + --fa: "\f700"; + --fa--fa: "\f700\f700"; +} +.fa-female, +.fa-person-dress { + --fa: "\f182"; + --fa--fa: "\f182\f182"; +} +.fa-comment-dollar { + --fa: "\f651"; + --fa--fa: "\f651\f651"; +} +.fa-briefcase-clock, +.fa-business-time { + --fa: "\f64a"; + --fa--fa: "\f64a\f64a"; +} +.fa-table-cells-large, +.fa-th-large { + --fa: "\f009"; + --fa--fa: "\f009\f009"; +} +.fa-book-tanakh, +.fa-tanakh { + --fa: "\f827"; + --fa--fa: "\f827\f827"; +} +.fa-phone-volume, +.fa-volume-control-phone { + --fa: "\f2a0"; + --fa--fa: "\f2a0\f2a0"; +} +.fa-hat-cowboy-side { + --fa: "\f8c1"; + --fa--fa: "\f8c1\f8c1"; +} +.fa-clipboard-user { + --fa: "\f7f3"; + --fa--fa: "\f7f3\f7f3"; +} +.fa-child { + --fa: "\f1ae"; + --fa--fa: "\f1ae\f1ae"; +} +.fa-lira-sign { + --fa: "\f195"; + --fa--fa: "\f195\f195"; +} +.fa-satellite { + --fa: "\f7bf"; + --fa--fa: "\f7bf\f7bf"; +} +.fa-plane-lock { + --fa: "\e558"; + --fa--fa: "\e558\e558"; +} +.fa-tag { + --fa: "\f02b"; + --fa--fa: "\f02b\f02b"; +} +.fa-comment { + --fa: "\f075"; + --fa--fa: "\f075\f075"; +} +.fa-birthday-cake, +.fa-cake, +.fa-cake-candles { + --fa: "\f1fd"; + --fa--fa: "\f1fd\f1fd"; +} +.fa-envelope { + --fa: "\f0e0"; + --fa--fa: "\f0e0\f0e0"; +} +.fa-angle-double-up, +.fa-angles-up { + --fa: "\f102"; + --fa--fa: "\f102\f102"; +} +.fa-paperclip { + --fa: "\f0c6"; + --fa--fa: "\f0c6\f0c6"; +} +.fa-arrow-right-to-city { + --fa: "\e4b3"; + --fa--fa: "\e4b3\e4b3"; +} +.fa-ribbon { + --fa: "\f4d6"; + --fa--fa: "\f4d6\f4d6"; +} +.fa-lungs { + --fa: "\f604"; + --fa--fa: "\f604\f604"; +} +.fa-arrow-up-9-1, +.fa-sort-numeric-up-alt { + --fa: "\f887"; + --fa--fa: "\f887\f887"; +} +.fa-litecoin-sign { + --fa: "\e1d3"; + --fa--fa: "\e1d3\e1d3"; +} +.fa-border-none { + --fa: "\f850"; + --fa--fa: "\f850\f850"; +} +.fa-circle-nodes { + --fa: "\e4e2"; + --fa--fa: "\e4e2\e4e2"; +} +.fa-parachute-box { + --fa: "\f4cd"; + --fa--fa: "\f4cd\f4cd"; +} +.fa-indent { + --fa: "\f03c"; + --fa--fa: "\f03c\f03c"; +} +.fa-truck-field-un { + --fa: "\e58e"; + --fa--fa: "\e58e\e58e"; +} +.fa-hourglass, +.fa-hourglass-empty { + --fa: "\f254"; + --fa--fa: "\f254\f254"; +} +.fa-mountain { + --fa: "\f6fc"; + --fa--fa: "\f6fc\f6fc"; +} +.fa-user-doctor, +.fa-user-md { + --fa: "\f0f0"; + --fa--fa: "\f0f0\f0f0"; +} +.fa-circle-info, +.fa-info-circle { + --fa: "\f05a"; + --fa--fa: "\f05a\f05a"; +} +.fa-cloud-meatball { + --fa: "\f73b"; + --fa--fa: "\f73b\f73b"; +} +.fa-camera, +.fa-camera-alt { + --fa: "\f030"; + --fa--fa: "\f030\f030"; +} +.fa-square-virus { + --fa: "\e578"; + --fa--fa: "\e578\e578"; +} +.fa-meteor { + --fa: "\f753"; + --fa--fa: "\f753\f753"; +} +.fa-car-on { + --fa: "\e4dd"; + --fa--fa: "\e4dd\e4dd"; +} +.fa-sleigh { + --fa: "\f7cc"; + --fa--fa: "\f7cc\f7cc"; +} +.fa-arrow-down-1-9, +.fa-sort-numeric-asc, +.fa-sort-numeric-down { + --fa: "\f162"; + --fa--fa: "\f162\f162"; +} +.fa-hand-holding-droplet, +.fa-hand-holding-water { + --fa: "\f4c1"; + --fa--fa: "\f4c1\f4c1"; +} +.fa-water { + --fa: "\f773"; + --fa--fa: "\f773\f773"; +} +.fa-calendar-check { + --fa: "\f274"; + --fa--fa: "\f274\f274"; +} +.fa-braille { + --fa: "\f2a1"; + --fa--fa: "\f2a1\f2a1"; +} +.fa-prescription-bottle-alt, +.fa-prescription-bottle-medical { + --fa: "\f486"; + --fa--fa: "\f486\f486"; +} +.fa-landmark { + --fa: "\f66f"; + --fa--fa: "\f66f\f66f"; +} +.fa-truck { + --fa: "\f0d1"; + --fa--fa: "\f0d1\f0d1"; +} +.fa-crosshairs { + --fa: "\f05b"; + --fa--fa: "\f05b\f05b"; +} +.fa-person-cane { + --fa: "\e53c"; + --fa--fa: "\e53c\e53c"; +} +.fa-tent { + --fa: "\e57d"; + --fa--fa: "\e57d\e57d"; +} +.fa-vest-patches { + --fa: "\e086"; + --fa--fa: "\e086\e086"; +} +.fa-check-double { + --fa: "\f560"; + --fa--fa: "\f560\f560"; +} +.fa-arrow-down-a-z, +.fa-sort-alpha-asc, +.fa-sort-alpha-down { + --fa: "\f15d"; + --fa--fa: "\f15d\f15d"; +} +.fa-money-bill-wheat { + --fa: "\e52a"; + --fa--fa: "\e52a\e52a"; +} +.fa-cookie { + --fa: "\f563"; + --fa--fa: "\f563\f563"; +} +.fa-arrow-left-rotate, +.fa-arrow-rotate-back, +.fa-arrow-rotate-backward, +.fa-arrow-rotate-left, +.fa-undo { + --fa: "\f0e2"; + --fa--fa: "\f0e2\f0e2"; +} +.fa-hard-drive, +.fa-hdd { + --fa: "\f0a0"; + --fa--fa: "\f0a0\f0a0"; +} +.fa-face-grin-squint-tears, +.fa-grin-squint-tears { + --fa: "\f586"; + --fa--fa: "\f586\f586"; +} +.fa-dumbbell { + --fa: "\f44b"; + --fa--fa: "\f44b\f44b"; +} +.fa-list-alt, +.fa-rectangle-list { + --fa: "\f022"; + --fa--fa: "\f022\f022"; +} +.fa-tarp-droplet { + --fa: "\e57c"; + --fa--fa: "\e57c\e57c"; +} +.fa-house-medical-circle-check { + --fa: "\e511"; + --fa--fa: "\e511\e511"; +} +.fa-person-skiing-nordic, +.fa-skiing-nordic { + --fa: "\f7ca"; + --fa--fa: "\f7ca\f7ca"; +} +.fa-calendar-plus { + --fa: "\f271"; + --fa--fa: "\f271\f271"; +} +.fa-plane-arrival { + --fa: "\f5af"; + --fa--fa: "\f5af\f5af"; +} +.fa-arrow-alt-circle-left, +.fa-circle-left { + --fa: "\f359"; + --fa--fa: "\f359\f359"; +} +.fa-subway, +.fa-train-subway { + --fa: "\f239"; + --fa--fa: "\f239\f239"; +} +.fa-chart-gantt { + --fa: "\e0e4"; + --fa--fa: "\e0e4\e0e4"; +} +.fa-indian-rupee, +.fa-indian-rupee-sign, +.fa-inr { + --fa: "\e1bc"; + --fa--fa: "\e1bc\e1bc"; +} +.fa-crop-alt, +.fa-crop-simple { + --fa: "\f565"; + --fa--fa: "\f565\f565"; +} +.fa-money-bill-1, +.fa-money-bill-alt { + --fa: "\f3d1"; + --fa--fa: "\f3d1\f3d1"; +} +.fa-left-long, +.fa-long-arrow-alt-left { + --fa: "\f30a"; + --fa--fa: "\f30a\f30a"; +} +.fa-dna { + --fa: "\f471"; + --fa--fa: "\f471\f471"; +} +.fa-virus-slash { + --fa: "\e075"; + --fa--fa: "\e075\e075"; +} +.fa-minus, +.fa-subtract { + --fa: "\f068"; + --fa--fa: "\f068\f068"; +} +.fa-chess { + --fa: "\f439"; + --fa--fa: "\f439\f439"; +} +.fa-arrow-left-long, +.fa-long-arrow-left { + --fa: "\f177"; + --fa--fa: "\f177\f177"; +} +.fa-plug-circle-check { + --fa: "\e55c"; + --fa--fa: "\e55c\e55c"; +} +.fa-street-view { + --fa: "\f21d"; + --fa--fa: "\f21d\f21d"; +} +.fa-franc-sign { + --fa: "\e18f"; + --fa--fa: "\e18f\e18f"; +} +.fa-volume-off { + --fa: "\f026"; + --fa--fa: "\f026\f026"; +} +.fa-american-sign-language-interpreting, +.fa-asl-interpreting, +.fa-hands-american-sign-language-interpreting, +.fa-hands-asl-interpreting { + --fa: "\f2a3"; + --fa--fa: "\f2a3\f2a3"; +} +.fa-cog, +.fa-gear { + --fa: "\f013"; + --fa--fa: "\f013\f013"; +} +.fa-droplet-slash, +.fa-tint-slash { + --fa: "\f5c7"; + --fa--fa: "\f5c7\f5c7"; +} +.fa-mosque { + --fa: "\f678"; + --fa--fa: "\f678\f678"; +} +.fa-mosquito { + --fa: "\e52b"; + --fa--fa: "\e52b\e52b"; +} +.fa-star-of-david { + --fa: "\f69a"; + --fa--fa: "\f69a\f69a"; +} +.fa-person-military-rifle { + --fa: "\e54b"; + --fa--fa: "\e54b\e54b"; +} +.fa-cart-shopping, +.fa-shopping-cart { + --fa: "\f07a"; + --fa--fa: "\f07a\f07a"; +} +.fa-vials { + --fa: "\f493"; + --fa--fa: "\f493\f493"; +} +.fa-plug-circle-plus { + --fa: "\e55f"; + --fa--fa: "\e55f\e55f"; +} +.fa-place-of-worship { + --fa: "\f67f"; + --fa--fa: "\f67f\f67f"; +} +.fa-grip-vertical { + --fa: "\f58e"; + --fa--fa: "\f58e\f58e"; +} +.fa-hexagon-nodes { + --fa: "\e699"; + --fa--fa: "\e699\e699"; +} +.fa-arrow-turn-up, +.fa-level-up { + --fa: "\f148"; + --fa--fa: "\f148\f148"; +} +.fa-u { + --fa: "\55"; + --fa--fa: "\55\55"; +} +.fa-square-root-alt, +.fa-square-root-variable { + --fa: "\f698"; + --fa--fa: "\f698\f698"; +} +.fa-clock, +.fa-clock-four { + --fa: "\f017"; + --fa--fa: "\f017\f017"; +} +.fa-backward-step, +.fa-step-backward { + --fa: "\f048"; + --fa--fa: "\f048\f048"; +} +.fa-pallet { + --fa: "\f482"; + --fa--fa: "\f482\f482"; +} +.fa-faucet { + --fa: "\e005"; + --fa--fa: "\e005\e005"; +} +.fa-baseball-bat-ball { + --fa: "\f432"; + --fa--fa: "\f432\f432"; +} +.fa-s { + --fa: "\53"; + --fa--fa: "\53\53"; +} +.fa-timeline { + --fa: "\e29c"; + --fa--fa: "\e29c\e29c"; +} +.fa-keyboard { + --fa: "\f11c"; + --fa--fa: "\f11c\f11c"; +} +.fa-caret-down { + --fa: "\f0d7"; + --fa--fa: "\f0d7\f0d7"; +} +.fa-clinic-medical, +.fa-house-chimney-medical { + --fa: "\f7f2"; + --fa--fa: "\f7f2\f7f2"; +} +.fa-temperature-3, +.fa-temperature-three-quarters, +.fa-thermometer-3, +.fa-thermometer-three-quarters { + --fa: "\f2c8"; + --fa--fa: "\f2c8\f2c8"; +} +.fa-mobile-android-alt, +.fa-mobile-screen { + --fa: "\f3cf"; + --fa--fa: "\f3cf\f3cf"; +} +.fa-plane-up { + --fa: "\e22d"; + --fa--fa: "\e22d\e22d"; +} +.fa-piggy-bank { + --fa: "\f4d3"; + --fa--fa: "\f4d3\f4d3"; +} +.fa-battery-3, +.fa-battery-half { + --fa: "\f242"; + --fa--fa: "\f242\f242"; +} +.fa-mountain-city { + --fa: "\e52e"; + --fa--fa: "\e52e\e52e"; +} +.fa-coins { + --fa: "\f51e"; + --fa--fa: "\f51e\f51e"; +} +.fa-khanda { + --fa: "\f66d"; + --fa--fa: "\f66d\f66d"; +} +.fa-sliders, +.fa-sliders-h { + --fa: "\f1de"; + --fa--fa: "\f1de\f1de"; +} +.fa-folder-tree { + --fa: "\f802"; + --fa--fa: "\f802\f802"; +} +.fa-network-wired { + --fa: "\f6ff"; + --fa--fa: "\f6ff\f6ff"; +} +.fa-map-pin { + --fa: "\f276"; + --fa--fa: "\f276\f276"; +} +.fa-hamsa { + --fa: "\f665"; + --fa--fa: "\f665\f665"; +} +.fa-cent-sign { + --fa: "\e3f5"; + --fa--fa: "\e3f5\e3f5"; +} +.fa-flask { + --fa: "\f0c3"; + --fa--fa: "\f0c3\f0c3"; +} +.fa-person-pregnant { + --fa: "\e31e"; + --fa--fa: "\e31e\e31e"; +} +.fa-wand-sparkles { + --fa: "\f72b"; + --fa--fa: "\f72b\f72b"; +} +.fa-ellipsis-v, +.fa-ellipsis-vertical { + --fa: "\f142"; + --fa--fa: "\f142\f142"; +} +.fa-ticket { + --fa: "\f145"; + --fa--fa: "\f145\f145"; +} +.fa-power-off { + --fa: "\f011"; + --fa--fa: "\f011\f011"; +} +.fa-long-arrow-alt-right, +.fa-right-long { + --fa: "\f30b"; + --fa--fa: "\f30b\f30b"; +} +.fa-flag-usa { + --fa: "\f74d"; + --fa--fa: "\f74d\f74d"; +} +.fa-laptop-file { + --fa: "\e51d"; + --fa--fa: "\e51d\e51d"; +} +.fa-teletype, +.fa-tty { + --fa: "\f1e4"; + --fa--fa: "\f1e4\f1e4"; +} +.fa-diagram-next { + --fa: "\e476"; + --fa--fa: "\e476\e476"; +} +.fa-person-rifle { + --fa: "\e54e"; + --fa--fa: "\e54e\e54e"; +} +.fa-house-medical-circle-exclamation { + --fa: "\e512"; + --fa--fa: "\e512\e512"; +} +.fa-closed-captioning { + --fa: "\f20a"; + --fa--fa: "\f20a\f20a"; +} +.fa-hiking, +.fa-person-hiking { + --fa: "\f6ec"; + --fa--fa: "\f6ec\f6ec"; +} +.fa-venus-double { + --fa: "\f226"; + --fa--fa: "\f226\f226"; +} +.fa-images { + --fa: "\f302"; + --fa--fa: "\f302\f302"; +} +.fa-calculator { + --fa: "\f1ec"; + --fa--fa: "\f1ec\f1ec"; +} +.fa-people-pulling { + --fa: "\e535"; + --fa--fa: "\e535\e535"; +} +.fa-n { + --fa: "\4e"; + --fa--fa: "\4e\4e"; +} +.fa-cable-car, +.fa-tram { + --fa: "\f7da"; + --fa--fa: "\f7da\f7da"; +} +.fa-cloud-rain { + --fa: "\f73d"; + --fa--fa: "\f73d\f73d"; +} +.fa-building-circle-xmark { + --fa: "\e4d4"; + --fa--fa: "\e4d4\e4d4"; +} +.fa-ship { + --fa: "\f21a"; + --fa--fa: "\f21a\f21a"; +} +.fa-arrows-down-to-line { + --fa: "\e4b8"; + --fa--fa: "\e4b8\e4b8"; +} +.fa-download { + --fa: "\f019"; + --fa--fa: "\f019\f019"; +} +.fa-face-grin, +.fa-grin { + --fa: "\f580"; + --fa--fa: "\f580\f580"; +} +.fa-backspace, +.fa-delete-left { + --fa: "\f55a"; + --fa--fa: "\f55a\f55a"; +} +.fa-eye-dropper, +.fa-eye-dropper-empty, +.fa-eyedropper { + --fa: "\f1fb"; + --fa--fa: "\f1fb\f1fb"; +} +.fa-file-circle-check { + --fa: "\e5a0"; + --fa--fa: "\e5a0\e5a0"; +} +.fa-forward { + --fa: "\f04e"; + --fa--fa: "\f04e\f04e"; +} +.fa-mobile, +.fa-mobile-android, +.fa-mobile-phone { + --fa: "\f3ce"; + --fa--fa: "\f3ce\f3ce"; +} +.fa-face-meh, +.fa-meh { + --fa: "\f11a"; + --fa--fa: "\f11a\f11a"; +} +.fa-align-center { + --fa: "\f037"; + --fa--fa: "\f037\f037"; +} +.fa-book-dead, +.fa-book-skull { + --fa: "\f6b7"; + --fa--fa: "\f6b7\f6b7"; +} +.fa-drivers-license, +.fa-id-card { + --fa: "\f2c2"; + --fa--fa: "\f2c2\f2c2"; +} +.fa-dedent, +.fa-outdent { + --fa: "\f03b"; + --fa--fa: "\f03b\f03b"; +} +.fa-heart-circle-exclamation { + --fa: "\e4fe"; + --fa--fa: "\e4fe\e4fe"; +} +.fa-home, +.fa-home-alt, +.fa-home-lg-alt, +.fa-house { + --fa: "\f015"; + --fa--fa: "\f015\f015"; +} +.fa-calendar-week { + --fa: "\f784"; + --fa--fa: "\f784\f784"; +} +.fa-laptop-medical { + --fa: "\f812"; + --fa--fa: "\f812\f812"; +} +.fa-b { + --fa: "\42"; + --fa--fa: "\42\42"; +} +.fa-file-medical { + --fa: "\f477"; + --fa--fa: "\f477\f477"; +} +.fa-dice-one { + --fa: "\f525"; + --fa--fa: "\f525\f525"; +} +.fa-kiwi-bird { + --fa: "\f535"; + --fa--fa: "\f535\f535"; +} +.fa-arrow-right-arrow-left, +.fa-exchange { + --fa: "\f0ec"; + --fa--fa: "\f0ec\f0ec"; +} +.fa-redo-alt, +.fa-rotate-forward, +.fa-rotate-right { + --fa: "\f2f9"; + --fa--fa: "\f2f9\f2f9"; +} +.fa-cutlery, +.fa-utensils { + --fa: "\f2e7"; + --fa--fa: "\f2e7\f2e7"; +} +.fa-arrow-up-wide-short, +.fa-sort-amount-up { + --fa: "\f161"; + --fa--fa: "\f161\f161"; +} +.fa-mill-sign { + --fa: "\e1ed"; + --fa--fa: "\e1ed\e1ed"; +} +.fa-bowl-rice { + --fa: "\e2eb"; + --fa--fa: "\e2eb\e2eb"; +} +.fa-skull { + --fa: "\f54c"; + --fa--fa: "\f54c\f54c"; +} +.fa-broadcast-tower, +.fa-tower-broadcast { + --fa: "\f519"; + --fa--fa: "\f519\f519"; +} +.fa-truck-pickup { + --fa: "\f63c"; + --fa--fa: "\f63c\f63c"; +} +.fa-long-arrow-alt-up, +.fa-up-long { + --fa: "\f30c"; + --fa--fa: "\f30c\f30c"; +} +.fa-stop { + --fa: "\f04d"; + --fa--fa: "\f04d\f04d"; +} +.fa-code-merge { + --fa: "\f387"; + --fa--fa: "\f387\f387"; +} +.fa-upload { + --fa: "\f093"; + --fa--fa: "\f093\f093"; +} +.fa-hurricane { + --fa: "\f751"; + --fa--fa: "\f751\f751"; +} +.fa-mound { + --fa: "\e52d"; + --fa--fa: "\e52d\e52d"; +} +.fa-toilet-portable { + --fa: "\e583"; + --fa--fa: "\e583\e583"; +} +.fa-compact-disc { + --fa: "\f51f"; + --fa--fa: "\f51f\f51f"; +} +.fa-file-arrow-down, +.fa-file-download { + --fa: "\f56d"; + --fa--fa: "\f56d\f56d"; +} +.fa-caravan { + --fa: "\f8ff"; + --fa--fa: "\f8ff\f8ff"; +} +.fa-shield-cat { + --fa: "\e572"; + --fa--fa: "\e572\e572"; +} +.fa-bolt, +.fa-zap { + --fa: "\f0e7"; + --fa--fa: "\f0e7\f0e7"; +} +.fa-glass-water { + --fa: "\e4f4"; + --fa--fa: "\e4f4\e4f4"; +} +.fa-oil-well { + --fa: "\e532"; + --fa--fa: "\e532\e532"; +} +.fa-vault { + --fa: "\e2c5"; + --fa--fa: "\e2c5\e2c5"; +} +.fa-mars { + --fa: "\f222"; + --fa--fa: "\f222\f222"; +} +.fa-toilet { + --fa: "\f7d8"; + --fa--fa: "\f7d8\f7d8"; +} +.fa-plane-circle-xmark { + --fa: "\e557"; + --fa--fa: "\e557\e557"; +} +.fa-cny, +.fa-jpy, +.fa-rmb, +.fa-yen, +.fa-yen-sign { + --fa: "\f157"; + --fa--fa: "\f157\f157"; +} +.fa-rouble, +.fa-rub, +.fa-ruble, +.fa-ruble-sign { + --fa: "\f158"; + --fa--fa: "\f158\f158"; +} +.fa-sun { + --fa: "\f185"; + --fa--fa: "\f185\f185"; +} +.fa-guitar { + --fa: "\f7a6"; + --fa--fa: "\f7a6\f7a6"; +} +.fa-face-laugh-wink, +.fa-laugh-wink { + --fa: "\f59c"; + --fa--fa: "\f59c\f59c"; +} +.fa-horse-head { + --fa: "\f7ab"; + --fa--fa: "\f7ab\f7ab"; +} +.fa-bore-hole { + --fa: "\e4c3"; + --fa--fa: "\e4c3\e4c3"; +} +.fa-industry { + --fa: "\f275"; + --fa--fa: "\f275\f275"; +} +.fa-arrow-alt-circle-down, +.fa-circle-down { + --fa: "\f358"; + --fa--fa: "\f358\f358"; +} +.fa-arrows-turn-to-dots { + --fa: "\e4c1"; + --fa--fa: "\e4c1\e4c1"; +} +.fa-florin-sign { + --fa: "\e184"; + --fa--fa: "\e184\e184"; +} +.fa-arrow-down-short-wide, +.fa-sort-amount-desc, +.fa-sort-amount-down-alt { + --fa: "\f884"; + --fa--fa: "\f884\f884"; +} +.fa-less-than { + --fa: "\3c"; + --fa--fa: "\3c\3c"; +} +.fa-angle-down { + --fa: "\f107"; + --fa--fa: "\f107\f107"; +} +.fa-car-tunnel { + --fa: "\e4de"; + --fa--fa: "\e4de\e4de"; +} +.fa-head-side-cough { + --fa: "\e061"; + --fa--fa: "\e061\e061"; +} +.fa-grip-lines { + --fa: "\f7a4"; + --fa--fa: "\f7a4\f7a4"; +} +.fa-thumbs-down { + --fa: "\f165"; + --fa--fa: "\f165\f165"; +} +.fa-user-lock { + --fa: "\f502"; + --fa--fa: "\f502\f502"; +} +.fa-arrow-right-long, +.fa-long-arrow-right { + --fa: "\f178"; + --fa--fa: "\f178\f178"; +} +.fa-anchor-circle-xmark { + --fa: "\e4ac"; + --fa--fa: "\e4ac\e4ac"; +} +.fa-ellipsis, +.fa-ellipsis-h { + --fa: "\f141"; + --fa--fa: "\f141\f141"; +} +.fa-chess-pawn { + --fa: "\f443"; + --fa--fa: "\f443\f443"; +} +.fa-first-aid, +.fa-kit-medical { + --fa: "\f479"; + --fa--fa: "\f479\f479"; +} +.fa-person-through-window { + --fa: "\e5a9"; + --fa--fa: "\e5a9\e5a9"; +} +.fa-toolbox { + --fa: "\f552"; + --fa--fa: "\f552\f552"; +} +.fa-hands-holding-circle { + --fa: "\e4fb"; + --fa--fa: "\e4fb\e4fb"; +} +.fa-bug { + --fa: "\f188"; + --fa--fa: "\f188\f188"; +} +.fa-credit-card, +.fa-credit-card-alt { + --fa: "\f09d"; + --fa--fa: "\f09d\f09d"; +} +.fa-automobile, +.fa-car { + --fa: "\f1b9"; + --fa--fa: "\f1b9\f1b9"; +} +.fa-hand-holding-hand { + --fa: "\e4f7"; + --fa--fa: "\e4f7\e4f7"; +} +.fa-book-open-reader, +.fa-book-reader { + --fa: "\f5da"; + --fa--fa: "\f5da\f5da"; +} +.fa-mountain-sun { + --fa: "\e52f"; + --fa--fa: "\e52f\e52f"; +} +.fa-arrows-left-right-to-line { + --fa: "\e4ba"; + --fa--fa: "\e4ba\e4ba"; +} +.fa-dice-d20 { + --fa: "\f6cf"; + --fa--fa: "\f6cf\f6cf"; +} +.fa-truck-droplet { + --fa: "\e58c"; + --fa--fa: "\e58c\e58c"; +} +.fa-file-circle-xmark { + --fa: "\e5a1"; + --fa--fa: "\e5a1\e5a1"; +} +.fa-temperature-arrow-up, +.fa-temperature-up { + --fa: "\e040"; + --fa--fa: "\e040\e040"; +} +.fa-medal { + --fa: "\f5a2"; + --fa--fa: "\f5a2\f5a2"; +} +.fa-bed { + --fa: "\f236"; + --fa--fa: "\f236\f236"; +} +.fa-h-square, +.fa-square-h { + --fa: "\f0fd"; + --fa--fa: "\f0fd\f0fd"; +} +.fa-podcast { + --fa: "\f2ce"; + --fa--fa: "\f2ce\f2ce"; +} +.fa-temperature-4, +.fa-temperature-full, +.fa-thermometer-4, +.fa-thermometer-full { + --fa: "\f2c7"; + --fa--fa: "\f2c7\f2c7"; +} +.fa-bell { + --fa: "\f0f3"; + --fa--fa: "\f0f3\f0f3"; +} +.fa-superscript { + --fa: "\f12b"; + --fa--fa: "\f12b\f12b"; +} +.fa-plug-circle-xmark { + --fa: "\e560"; + --fa--fa: "\e560\e560"; +} +.fa-star-of-life { + --fa: "\f621"; + --fa--fa: "\f621\f621"; +} +.fa-phone-slash { + --fa: "\f3dd"; + --fa--fa: "\f3dd\f3dd"; +} +.fa-paint-roller { + --fa: "\f5aa"; + --fa--fa: "\f5aa\f5aa"; +} +.fa-hands-helping, +.fa-handshake-angle { + --fa: "\f4c4"; + --fa--fa: "\f4c4\f4c4"; +} +.fa-location-dot, +.fa-map-marker-alt { + --fa: "\f3c5"; + --fa--fa: "\f3c5\f3c5"; +} +.fa-file { + --fa: "\f15b"; + --fa--fa: "\f15b\f15b"; +} +.fa-greater-than { + --fa: "\3e"; + --fa--fa: "\3e\3e"; +} +.fa-person-swimming, +.fa-swimmer { + --fa: "\f5c4"; + --fa--fa: "\f5c4\f5c4"; +} +.fa-arrow-down { + --fa: "\f063"; + --fa--fa: "\f063\f063"; +} +.fa-droplet, +.fa-tint { + --fa: "\f043"; + --fa--fa: "\f043\f043"; +} +.fa-eraser { + --fa: "\f12d"; + --fa--fa: "\f12d\f12d"; +} +.fa-earth, +.fa-earth-america, +.fa-earth-americas, +.fa-globe-americas { + --fa: "\f57d"; + --fa--fa: "\f57d\f57d"; +} +.fa-person-burst { + --fa: "\e53b"; + --fa--fa: "\e53b\e53b"; +} +.fa-dove { + --fa: "\f4ba"; + --fa--fa: "\f4ba\f4ba"; +} +.fa-battery-0, +.fa-battery-empty { + --fa: "\f244"; + --fa--fa: "\f244\f244"; +} +.fa-socks { + --fa: "\f696"; + --fa--fa: "\f696\f696"; +} +.fa-inbox { + --fa: "\f01c"; + --fa--fa: "\f01c\f01c"; +} +.fa-section { + --fa: "\e447"; + --fa--fa: "\e447\e447"; +} +.fa-gauge-high, +.fa-tachometer-alt, +.fa-tachometer-alt-fast { + --fa: "\f625"; + --fa--fa: "\f625\f625"; +} +.fa-envelope-open-text { + --fa: "\f658"; + --fa--fa: "\f658\f658"; +} +.fa-hospital, +.fa-hospital-alt, +.fa-hospital-wide { + --fa: "\f0f8"; + --fa--fa: "\f0f8\f0f8"; +} +.fa-wine-bottle { + --fa: "\f72f"; + --fa--fa: "\f72f\f72f"; +} +.fa-chess-rook { + --fa: "\f447"; + --fa--fa: "\f447\f447"; +} +.fa-bars-staggered, +.fa-reorder, +.fa-stream { + --fa: "\f550"; + --fa--fa: "\f550\f550"; +} +.fa-dharmachakra { + --fa: "\f655"; + --fa--fa: "\f655\f655"; +} +.fa-hotdog { + --fa: "\f80f"; + --fa--fa: "\f80f\f80f"; +} +.fa-blind, +.fa-person-walking-with-cane { + --fa: "\f29d"; + --fa--fa: "\f29d\f29d"; +} +.fa-drum { + --fa: "\f569"; + --fa--fa: "\f569\f569"; +} +.fa-ice-cream { + --fa: "\f810"; + --fa--fa: "\f810\f810"; +} +.fa-heart-circle-bolt { + --fa: "\e4fc"; + --fa--fa: "\e4fc\e4fc"; +} +.fa-fax { + --fa: "\f1ac"; + --fa--fa: "\f1ac\f1ac"; +} +.fa-paragraph { + --fa: "\f1dd"; + --fa--fa: "\f1dd\f1dd"; +} +.fa-check-to-slot, +.fa-vote-yea { + --fa: "\f772"; + --fa--fa: "\f772\f772"; +} +.fa-star-half { + --fa: "\f089"; + --fa--fa: "\f089\f089"; +} +.fa-boxes, +.fa-boxes-alt, +.fa-boxes-stacked { + --fa: "\f468"; + --fa--fa: "\f468\f468"; +} +.fa-chain, +.fa-link { + --fa: "\f0c1"; + --fa--fa: "\f0c1\f0c1"; +} +.fa-assistive-listening-systems, +.fa-ear-listen { + --fa: "\f2a2"; + --fa--fa: "\f2a2\f2a2"; +} +.fa-tree-city { + --fa: "\e587"; + --fa--fa: "\e587\e587"; +} +.fa-play { + --fa: "\f04b"; + --fa--fa: "\f04b\f04b"; +} +.fa-font { + --fa: "\f031"; + --fa--fa: "\f031\f031"; +} +.fa-table-cells-row-lock { + --fa: "\e67a"; + --fa--fa: "\e67a\e67a"; +} +.fa-rupiah-sign { + --fa: "\e23d"; + --fa--fa: "\e23d\e23d"; +} +.fa-magnifying-glass, +.fa-search { + --fa: "\f002"; + --fa--fa: "\f002\f002"; +} +.fa-ping-pong-paddle-ball, +.fa-table-tennis, +.fa-table-tennis-paddle-ball { + --fa: "\f45d"; + --fa--fa: "\f45d\f45d"; +} +.fa-diagnoses, +.fa-person-dots-from-line { + --fa: "\f470"; + --fa--fa: "\f470\f470"; +} +.fa-trash-can-arrow-up, +.fa-trash-restore-alt { + --fa: "\f82a"; + --fa--fa: "\f82a\f82a"; +} +.fa-naira-sign { + --fa: "\e1f6"; + --fa--fa: "\e1f6\e1f6"; +} +.fa-cart-arrow-down { + --fa: "\f218"; + --fa--fa: "\f218\f218"; +} +.fa-walkie-talkie { + --fa: "\f8ef"; + --fa--fa: "\f8ef\f8ef"; +} +.fa-file-edit, +.fa-file-pen { + --fa: "\f31c"; + --fa--fa: "\f31c\f31c"; +} +.fa-receipt { + --fa: "\f543"; + --fa--fa: "\f543\f543"; +} +.fa-pen-square, +.fa-pencil-square, +.fa-square-pen { + --fa: "\f14b"; + --fa--fa: "\f14b\f14b"; +} +.fa-suitcase-rolling { + --fa: "\f5c1"; + --fa--fa: "\f5c1\f5c1"; +} +.fa-person-circle-exclamation { + --fa: "\e53f"; + --fa--fa: "\e53f\e53f"; +} +.fa-chevron-down { + --fa: "\f078"; + --fa--fa: "\f078\f078"; +} +.fa-battery, +.fa-battery-5, +.fa-battery-full { + --fa: "\f240"; + --fa--fa: "\f240\f240"; +} +.fa-skull-crossbones { + --fa: "\f714"; + --fa--fa: "\f714\f714"; +} +.fa-code-compare { + --fa: "\e13a"; + --fa--fa: "\e13a\e13a"; +} +.fa-list-dots, +.fa-list-ul { + --fa: "\f0ca"; + --fa--fa: "\f0ca\f0ca"; +} +.fa-school-lock { + --fa: "\e56f"; + --fa--fa: "\e56f\e56f"; +} +.fa-tower-cell { + --fa: "\e585"; + --fa--fa: "\e585\e585"; +} +.fa-down-long, +.fa-long-arrow-alt-down { + --fa: "\f309"; + --fa--fa: "\f309\f309"; +} +.fa-ranking-star { + --fa: "\e561"; + --fa--fa: "\e561\e561"; +} +.fa-chess-king { + --fa: "\f43f"; + --fa--fa: "\f43f\f43f"; +} +.fa-person-harassing { + --fa: "\e549"; + --fa--fa: "\e549\e549"; +} +.fa-brazilian-real-sign { + --fa: "\e46c"; + --fa--fa: "\e46c\e46c"; +} +.fa-landmark-alt, +.fa-landmark-dome { + --fa: "\f752"; + --fa--fa: "\f752\f752"; +} +.fa-arrow-up { + --fa: "\f062"; + --fa--fa: "\f062\f062"; +} +.fa-television, +.fa-tv, +.fa-tv-alt { + --fa: "\f26c"; + --fa--fa: "\f26c\f26c"; +} +.fa-shrimp { + --fa: "\e448"; + --fa--fa: "\e448\e448"; +} +.fa-list-check, +.fa-tasks { + --fa: "\f0ae"; + --fa--fa: "\f0ae\f0ae"; +} +.fa-jug-detergent { + --fa: "\e519"; + --fa--fa: "\e519\e519"; +} +.fa-circle-user, +.fa-user-circle { + --fa: "\f2bd"; + --fa--fa: "\f2bd\f2bd"; +} +.fa-user-shield { + --fa: "\f505"; + --fa--fa: "\f505\f505"; +} +.fa-wind { + --fa: "\f72e"; + --fa--fa: "\f72e\f72e"; +} +.fa-car-burst, +.fa-car-crash { + --fa: "\f5e1"; + --fa--fa: "\f5e1\f5e1"; +} +.fa-y { + --fa: "\59"; + --fa--fa: "\59\59"; +} +.fa-person-snowboarding, +.fa-snowboarding { + --fa: "\f7ce"; + --fa--fa: "\f7ce\f7ce"; +} +.fa-shipping-fast, +.fa-truck-fast { + --fa: "\f48b"; + --fa--fa: "\f48b\f48b"; +} +.fa-fish { + --fa: "\f578"; + --fa--fa: "\f578\f578"; +} +.fa-user-graduate { + --fa: "\f501"; + --fa--fa: "\f501\f501"; +} +.fa-adjust, +.fa-circle-half-stroke { + --fa: "\f042"; + --fa--fa: "\f042\f042"; +} +.fa-clapperboard { + --fa: "\e131"; + --fa--fa: "\e131\e131"; +} +.fa-circle-radiation, +.fa-radiation-alt { + --fa: "\f7ba"; + --fa--fa: "\f7ba\f7ba"; +} +.fa-baseball, +.fa-baseball-ball { + --fa: "\f433"; + --fa--fa: "\f433\f433"; +} +.fa-jet-fighter-up { + --fa: "\e518"; + --fa--fa: "\e518\e518"; +} +.fa-diagram-project, +.fa-project-diagram { + --fa: "\f542"; + --fa--fa: "\f542\f542"; +} +.fa-copy { + --fa: "\f0c5"; + --fa--fa: "\f0c5\f0c5"; +} +.fa-volume-mute, +.fa-volume-times, +.fa-volume-xmark { + --fa: "\f6a9"; + --fa--fa: "\f6a9\f6a9"; +} +.fa-hand-sparkles { + --fa: "\e05d"; + --fa--fa: "\e05d\e05d"; +} +.fa-grip, +.fa-grip-horizontal { + --fa: "\f58d"; + --fa--fa: "\f58d\f58d"; +} +.fa-share-from-square, +.fa-share-square { + --fa: "\f14d"; + --fa--fa: "\f14d\f14d"; +} +.fa-child-combatant, +.fa-child-rifle { + --fa: "\e4e0"; + --fa--fa: "\e4e0\e4e0"; +} +.fa-gun { + --fa: "\e19b"; + --fa--fa: "\e19b\e19b"; +} +.fa-phone-square, +.fa-square-phone { + --fa: "\f098"; + --fa--fa: "\f098\f098"; +} +.fa-add, +.fa-plus { + --fa: "\2b"; + --fa--fa: "\2b\2b"; +} +.fa-expand { + --fa: "\f065"; + --fa--fa: "\f065\f065"; +} +.fa-computer { + --fa: "\e4e5"; + --fa--fa: "\e4e5\e4e5"; +} +.fa-close, +.fa-multiply, +.fa-remove, +.fa-times, +.fa-xmark { + --fa: "\f00d"; + --fa--fa: "\f00d\f00d"; +} +.fa-arrows, +.fa-arrows-up-down-left-right { + --fa: "\f047"; + --fa--fa: "\f047\f047"; +} +.fa-chalkboard-teacher, +.fa-chalkboard-user { + --fa: "\f51c"; + --fa--fa: "\f51c\f51c"; +} +.fa-peso-sign { + --fa: "\e222"; + --fa--fa: "\e222\e222"; +} +.fa-building-shield { + --fa: "\e4d8"; + --fa--fa: "\e4d8\e4d8"; +} +.fa-baby { + --fa: "\f77c"; + --fa--fa: "\f77c\f77c"; +} +.fa-users-line { + --fa: "\e592"; + --fa--fa: "\e592\e592"; +} +.fa-quote-left, +.fa-quote-left-alt { + --fa: "\f10d"; + --fa--fa: "\f10d\f10d"; +} +.fa-tractor { + --fa: "\f722"; + --fa--fa: "\f722\f722"; +} +.fa-trash-arrow-up, +.fa-trash-restore { + --fa: "\f829"; + --fa--fa: "\f829\f829"; +} +.fa-arrow-down-up-lock { + --fa: "\e4b0"; + --fa--fa: "\e4b0\e4b0"; +} +.fa-lines-leaning { + --fa: "\e51e"; + --fa--fa: "\e51e\e51e"; +} +.fa-ruler-combined { + --fa: "\f546"; + --fa--fa: "\f546\f546"; +} +.fa-copyright { + --fa: "\f1f9"; + --fa--fa: "\f1f9\f1f9"; +} +.fa-equals { + --fa: "\3d"; + --fa--fa: "\3d\3d"; +} +.fa-blender { + --fa: "\f517"; + --fa--fa: "\f517\f517"; +} +.fa-teeth { + --fa: "\f62e"; + --fa--fa: "\f62e\f62e"; +} +.fa-ils, +.fa-shekel, +.fa-shekel-sign, +.fa-sheqel, +.fa-sheqel-sign { + --fa: "\f20b"; + --fa--fa: "\f20b\f20b"; +} +.fa-map { + --fa: "\f279"; + --fa--fa: "\f279\f279"; +} +.fa-rocket { + --fa: "\f135"; + --fa--fa: "\f135\f135"; +} +.fa-photo-film, +.fa-photo-video { + --fa: "\f87c"; + --fa--fa: "\f87c\f87c"; +} +.fa-folder-minus { + --fa: "\f65d"; + --fa--fa: "\f65d\f65d"; +} +.fa-hexagon-nodes-bolt { + --fa: "\e69a"; + --fa--fa: "\e69a\e69a"; +} +.fa-store { + --fa: "\f54e"; + --fa--fa: "\f54e\f54e"; +} +.fa-arrow-trend-up { + --fa: "\e098"; + --fa--fa: "\e098\e098"; +} +.fa-plug-circle-minus { + --fa: "\e55e"; + --fa--fa: "\e55e\e55e"; +} +.fa-sign, +.fa-sign-hanging { + --fa: "\f4d9"; + --fa--fa: "\f4d9\f4d9"; +} +.fa-bezier-curve { + --fa: "\f55b"; + --fa--fa: "\f55b\f55b"; +} +.fa-bell-slash { + --fa: "\f1f6"; + --fa--fa: "\f1f6\f1f6"; +} +.fa-tablet, +.fa-tablet-android { + --fa: "\f3fb"; + --fa--fa: "\f3fb\f3fb"; +} +.fa-school-flag { + --fa: "\e56e"; + --fa--fa: "\e56e\e56e"; +} +.fa-fill { + --fa: "\f575"; + --fa--fa: "\f575\f575"; +} +.fa-angle-up { + --fa: "\f106"; + --fa--fa: "\f106\f106"; +} +.fa-drumstick-bite { + --fa: "\f6d7"; + --fa--fa: "\f6d7\f6d7"; +} +.fa-holly-berry { + --fa: "\f7aa"; + --fa--fa: "\f7aa\f7aa"; +} +.fa-chevron-left { + --fa: "\f053"; + --fa--fa: "\f053\f053"; +} +.fa-bacteria { + --fa: "\e059"; + --fa--fa: "\e059\e059"; +} +.fa-hand-lizard { + --fa: "\f258"; + --fa--fa: "\f258\f258"; +} +.fa-notdef { + --fa: "\e1fe"; + --fa--fa: "\e1fe\e1fe"; +} +.fa-disease { + --fa: "\f7fa"; + --fa--fa: "\f7fa\f7fa"; +} +.fa-briefcase-medical { + --fa: "\f469"; + --fa--fa: "\f469\f469"; +} +.fa-genderless { + --fa: "\f22d"; + --fa--fa: "\f22d\f22d"; +} +.fa-chevron-right { + --fa: "\f054"; + --fa--fa: "\f054\f054"; +} +.fa-retweet { + --fa: "\f079"; + --fa--fa: "\f079\f079"; +} +.fa-car-alt, +.fa-car-rear { + --fa: "\f5de"; + --fa--fa: "\f5de\f5de"; +} +.fa-pump-soap { + --fa: "\e06b"; + --fa--fa: "\e06b\e06b"; +} +.fa-video-slash { + --fa: "\f4e2"; + --fa--fa: "\f4e2\f4e2"; +} +.fa-battery-2, +.fa-battery-quarter { + --fa: "\f243"; + --fa--fa: "\f243\f243"; +} +.fa-radio { + --fa: "\f8d7"; + --fa--fa: "\f8d7\f8d7"; +} +.fa-baby-carriage, +.fa-carriage-baby { + --fa: "\f77d"; + --fa--fa: "\f77d\f77d"; +} +.fa-traffic-light { + --fa: "\f637"; + --fa--fa: "\f637\f637"; +} +.fa-thermometer { + --fa: "\f491"; + --fa--fa: "\f491\f491"; +} +.fa-vr-cardboard { + --fa: "\f729"; + --fa--fa: "\f729\f729"; +} +.fa-hand-middle-finger { + --fa: "\f806"; + --fa--fa: "\f806\f806"; +} +.fa-percent, +.fa-percentage { + --fa: "\25"; + --fa--fa: "\25\25"; +} +.fa-truck-moving { + --fa: "\f4df"; + --fa--fa: "\f4df\f4df"; +} +.fa-glass-water-droplet { + --fa: "\e4f5"; + --fa--fa: "\e4f5\e4f5"; +} +.fa-display { + --fa: "\e163"; + --fa--fa: "\e163\e163"; +} +.fa-face-smile, +.fa-smile { + --fa: "\f118"; + --fa--fa: "\f118\f118"; +} +.fa-thumb-tack, +.fa-thumbtack { + --fa: "\f08d"; + --fa--fa: "\f08d\f08d"; +} +.fa-trophy { + --fa: "\f091"; + --fa--fa: "\f091\f091"; +} +.fa-person-praying, +.fa-pray { + --fa: "\f683"; + --fa--fa: "\f683\f683"; +} +.fa-hammer { + --fa: "\f6e3"; + --fa--fa: "\f6e3\f6e3"; +} +.fa-hand-peace { + --fa: "\f25b"; + --fa--fa: "\f25b\f25b"; +} +.fa-rotate, +.fa-sync-alt { + --fa: "\f2f1"; + --fa--fa: "\f2f1\f2f1"; +} +.fa-spinner { + --fa: "\f110"; + --fa--fa: "\f110\f110"; +} +.fa-robot { + --fa: "\f544"; + --fa--fa: "\f544\f544"; +} +.fa-peace { + --fa: "\f67c"; + --fa--fa: "\f67c\f67c"; +} +.fa-cogs, +.fa-gears { + --fa: "\f085"; + --fa--fa: "\f085\f085"; +} +.fa-warehouse { + --fa: "\f494"; + --fa--fa: "\f494\f494"; +} +.fa-arrow-up-right-dots { + --fa: "\e4b7"; + --fa--fa: "\e4b7\e4b7"; +} +.fa-splotch { + --fa: "\f5bc"; + --fa--fa: "\f5bc\f5bc"; +} +.fa-face-grin-hearts, +.fa-grin-hearts { + --fa: "\f584"; + --fa--fa: "\f584\f584"; +} +.fa-dice-four { + --fa: "\f524"; + --fa--fa: "\f524\f524"; +} +.fa-sim-card { + --fa: "\f7c4"; + --fa--fa: "\f7c4\f7c4"; +} +.fa-transgender, +.fa-transgender-alt { + --fa: "\f225"; + --fa--fa: "\f225\f225"; +} +.fa-mercury { + --fa: "\f223"; + --fa--fa: "\f223\f223"; +} +.fa-arrow-turn-down, +.fa-level-down { + --fa: "\f149"; + --fa--fa: "\f149\f149"; +} +.fa-person-falling-burst { + --fa: "\e547"; + --fa--fa: "\e547\e547"; +} +.fa-award { + --fa: "\f559"; + --fa--fa: "\f559\f559"; +} +.fa-ticket-alt, +.fa-ticket-simple { + --fa: "\f3ff"; + --fa--fa: "\f3ff\f3ff"; +} +.fa-building { + --fa: "\f1ad"; + --fa--fa: "\f1ad\f1ad"; +} +.fa-angle-double-left, +.fa-angles-left { + --fa: "\f100"; + --fa--fa: "\f100\f100"; +} +.fa-qrcode { + --fa: "\f029"; + --fa--fa: "\f029\f029"; +} +.fa-clock-rotate-left, +.fa-history { + --fa: "\f1da"; + --fa--fa: "\f1da\f1da"; +} +.fa-face-grin-beam-sweat, +.fa-grin-beam-sweat { + --fa: "\f583"; + --fa--fa: "\f583\f583"; +} +.fa-arrow-right-from-file, +.fa-file-export { + --fa: "\f56e"; + --fa--fa: "\f56e\f56e"; +} +.fa-shield, +.fa-shield-blank { + --fa: "\f132"; + --fa--fa: "\f132\f132"; +} +.fa-arrow-up-short-wide, +.fa-sort-amount-up-alt { + --fa: "\f885"; + --fa--fa: "\f885\f885"; +} +.fa-comment-nodes { + --fa: "\e696"; + --fa--fa: "\e696\e696"; +} +.fa-house-medical { + --fa: "\e3b2"; + --fa--fa: "\e3b2\e3b2"; +} +.fa-golf-ball, +.fa-golf-ball-tee { + --fa: "\f450"; + --fa--fa: "\f450\f450"; +} +.fa-chevron-circle-left, +.fa-circle-chevron-left { + --fa: "\f137"; + --fa--fa: "\f137\f137"; +} +.fa-house-chimney-window { + --fa: "\e00d"; + --fa--fa: "\e00d\e00d"; +} +.fa-pen-nib { + --fa: "\f5ad"; + --fa--fa: "\f5ad\f5ad"; +} +.fa-tent-arrow-turn-left { + --fa: "\e580"; + --fa--fa: "\e580\e580"; +} +.fa-tents { + --fa: "\e582"; + --fa--fa: "\e582\e582"; +} +.fa-magic, +.fa-wand-magic { + --fa: "\f0d0"; + --fa--fa: "\f0d0\f0d0"; +} +.fa-dog { + --fa: "\f6d3"; + --fa--fa: "\f6d3\f6d3"; +} +.fa-carrot { + --fa: "\f787"; + --fa--fa: "\f787\f787"; +} +.fa-moon { + --fa: "\f186"; + --fa--fa: "\f186\f186"; +} +.fa-wine-glass-alt, +.fa-wine-glass-empty { + --fa: "\f5ce"; + --fa--fa: "\f5ce\f5ce"; +} +.fa-cheese { + --fa: "\f7ef"; + --fa--fa: "\f7ef\f7ef"; +} +.fa-yin-yang { + --fa: "\f6ad"; + --fa--fa: "\f6ad\f6ad"; +} +.fa-music { + --fa: "\f001"; + --fa--fa: "\f001\f001"; +} +.fa-code-commit { + --fa: "\f386"; + --fa--fa: "\f386\f386"; +} +.fa-temperature-low { + --fa: "\f76b"; + --fa--fa: "\f76b\f76b"; +} +.fa-biking, +.fa-person-biking { + --fa: "\f84a"; + --fa--fa: "\f84a\f84a"; +} +.fa-broom { + --fa: "\f51a"; + --fa--fa: "\f51a\f51a"; +} +.fa-shield-heart { + --fa: "\e574"; + --fa--fa: "\e574\e574"; +} +.fa-gopuram { + --fa: "\f664"; + --fa--fa: "\f664\f664"; +} +.fa-earth-oceania, +.fa-globe-oceania { + --fa: "\e47b"; + --fa--fa: "\e47b\e47b"; +} +.fa-square-xmark, +.fa-times-square, +.fa-xmark-square { + --fa: "\f2d3"; + --fa--fa: "\f2d3\f2d3"; +} +.fa-hashtag { + --fa: "\23"; + --fa--fa: "\23\23"; +} +.fa-expand-alt, +.fa-up-right-and-down-left-from-center { + --fa: "\f424"; + --fa--fa: "\f424\f424"; +} +.fa-oil-can { + --fa: "\f613"; + --fa--fa: "\f613\f613"; +} +.fa-t { + --fa: "\54"; + --fa--fa: "\54\54"; +} +.fa-hippo { + --fa: "\f6ed"; + --fa--fa: "\f6ed\f6ed"; +} +.fa-chart-column { + --fa: "\e0e3"; + --fa--fa: "\e0e3\e0e3"; +} +.fa-infinity { + --fa: "\f534"; + --fa--fa: "\f534\f534"; +} +.fa-vial-circle-check { + --fa: "\e596"; + --fa--fa: "\e596\e596"; +} +.fa-person-arrow-down-to-line { + --fa: "\e538"; + --fa--fa: "\e538\e538"; +} +.fa-voicemail { + --fa: "\f897"; + --fa--fa: "\f897\f897"; +} +.fa-fan { + --fa: "\f863"; + --fa--fa: "\f863\f863"; +} +.fa-person-walking-luggage { + --fa: "\e554"; + --fa--fa: "\e554\e554"; +} +.fa-arrows-alt-v, +.fa-up-down { + --fa: "\f338"; + --fa--fa: "\f338\f338"; +} +.fa-cloud-moon-rain { + --fa: "\f73c"; + --fa--fa: "\f73c\f73c"; +} +.fa-calendar { + --fa: "\f133"; + --fa--fa: "\f133\f133"; +} +.fa-trailer { + --fa: "\e041"; + --fa--fa: "\e041\e041"; +} +.fa-bahai, +.fa-haykal { + --fa: "\f666"; + --fa--fa: "\f666\f666"; +} +.fa-sd-card { + --fa: "\f7c2"; + --fa--fa: "\f7c2\f7c2"; +} +.fa-dragon { + --fa: "\f6d5"; + --fa--fa: "\f6d5\f6d5"; +} +.fa-shoe-prints { + --fa: "\f54b"; + --fa--fa: "\f54b\f54b"; +} +.fa-circle-plus, +.fa-plus-circle { + --fa: "\f055"; + --fa--fa: "\f055\f055"; +} +.fa-face-grin-tongue-wink, +.fa-grin-tongue-wink { + --fa: "\f58b"; + --fa--fa: "\f58b\f58b"; +} +.fa-hand-holding { + --fa: "\f4bd"; + --fa--fa: "\f4bd\f4bd"; +} +.fa-plug-circle-exclamation { + --fa: "\e55d"; + --fa--fa: "\e55d\e55d"; +} +.fa-chain-broken, +.fa-chain-slash, +.fa-link-slash, +.fa-unlink { + --fa: "\f127"; + --fa--fa: "\f127\f127"; +} +.fa-clone { + --fa: "\f24d"; + --fa--fa: "\f24d\f24d"; +} +.fa-person-walking-arrow-loop-left { + --fa: "\e551"; + --fa--fa: "\e551\e551"; +} +.fa-arrow-up-z-a, +.fa-sort-alpha-up-alt { + --fa: "\f882"; + --fa--fa: "\f882\f882"; +} +.fa-fire-alt, +.fa-fire-flame-curved { + --fa: "\f7e4"; + --fa--fa: "\f7e4\f7e4"; +} +.fa-tornado { + --fa: "\f76f"; + --fa--fa: "\f76f\f76f"; +} +.fa-file-circle-plus { + --fa: "\e494"; + --fa--fa: "\e494\e494"; +} +.fa-book-quran, +.fa-quran { + --fa: "\f687"; + --fa--fa: "\f687\f687"; +} +.fa-anchor { + --fa: "\f13d"; + --fa--fa: "\f13d\f13d"; +} +.fa-border-all { + --fa: "\f84c"; + --fa--fa: "\f84c\f84c"; +} +.fa-angry, +.fa-face-angry { + --fa: "\f556"; + --fa--fa: "\f556\f556"; +} +.fa-cookie-bite { + --fa: "\f564"; + --fa--fa: "\f564\f564"; +} +.fa-arrow-trend-down { + --fa: "\e097"; + --fa--fa: "\e097\e097"; +} +.fa-feed, +.fa-rss { + --fa: "\f09e"; + --fa--fa: "\f09e\f09e"; +} +.fa-draw-polygon { + --fa: "\f5ee"; + --fa--fa: "\f5ee\f5ee"; +} +.fa-balance-scale, +.fa-scale-balanced { + --fa: "\f24e"; + --fa--fa: "\f24e\f24e"; +} +.fa-gauge-simple-high, +.fa-tachometer, +.fa-tachometer-fast { + --fa: "\f62a"; + --fa--fa: "\f62a\f62a"; +} +.fa-shower { + --fa: "\f2cc"; + --fa--fa: "\f2cc\f2cc"; +} +.fa-desktop, +.fa-desktop-alt { + --fa: "\f390"; + --fa--fa: "\f390\f390"; +} +.fa-m { + --fa: "\4d"; + --fa--fa: "\4d\4d"; +} +.fa-table-list, +.fa-th-list { + --fa: "\f00b"; + --fa--fa: "\f00b\f00b"; +} +.fa-comment-sms, +.fa-sms { + --fa: "\f7cd"; + --fa--fa: "\f7cd\f7cd"; +} +.fa-book { + --fa: "\f02d"; + --fa--fa: "\f02d\f02d"; +} +.fa-user-plus { + --fa: "\f234"; + --fa--fa: "\f234\f234"; +} +.fa-check { + --fa: "\f00c"; + --fa--fa: "\f00c\f00c"; +} +.fa-battery-4, +.fa-battery-three-quarters { + --fa: "\f241"; + --fa--fa: "\f241\f241"; +} +.fa-house-circle-check { + --fa: "\e509"; + --fa--fa: "\e509\e509"; +} +.fa-angle-left { + --fa: "\f104"; + --fa--fa: "\f104\f104"; +} +.fa-diagram-successor { + --fa: "\e47a"; + --fa--fa: "\e47a\e47a"; +} +.fa-truck-arrow-right { + --fa: "\e58b"; + --fa--fa: "\e58b\e58b"; +} +.fa-arrows-split-up-and-left { + --fa: "\e4bc"; + --fa--fa: "\e4bc\e4bc"; +} +.fa-fist-raised, +.fa-hand-fist { + --fa: "\f6de"; + --fa--fa: "\f6de\f6de"; +} +.fa-cloud-moon { + --fa: "\f6c3"; + --fa--fa: "\f6c3\f6c3"; +} +.fa-briefcase { + --fa: "\f0b1"; + --fa--fa: "\f0b1\f0b1"; +} +.fa-person-falling { + --fa: "\e546"; + --fa--fa: "\e546\e546"; +} +.fa-image-portrait, +.fa-portrait { + --fa: "\f3e0"; + --fa--fa: "\f3e0\f3e0"; +} +.fa-user-tag { + --fa: "\f507"; + --fa--fa: "\f507\f507"; +} +.fa-rug { + --fa: "\e569"; + --fa--fa: "\e569\e569"; +} +.fa-earth-europe, +.fa-globe-europe { + --fa: "\f7a2"; + --fa--fa: "\f7a2\f7a2"; +} +.fa-cart-flatbed-suitcase, +.fa-luggage-cart { + --fa: "\f59d"; + --fa--fa: "\f59d\f59d"; +} +.fa-rectangle-times, +.fa-rectangle-xmark, +.fa-times-rectangle, +.fa-window-close { + --fa: "\f410"; + --fa--fa: "\f410\f410"; +} +.fa-baht-sign { + --fa: "\e0ac"; + --fa--fa: "\e0ac\e0ac"; +} +.fa-book-open { + --fa: "\f518"; + --fa--fa: "\f518\f518"; +} +.fa-book-journal-whills, +.fa-journal-whills { + --fa: "\f66a"; + --fa--fa: "\f66a\f66a"; +} +.fa-handcuffs { + --fa: "\e4f8"; + --fa--fa: "\e4f8\e4f8"; +} +.fa-exclamation-triangle, +.fa-triangle-exclamation, +.fa-warning { + --fa: "\f071"; + --fa--fa: "\f071\f071"; +} +.fa-database { + --fa: "\f1c0"; + --fa--fa: "\f1c0\f1c0"; +} +.fa-mail-forward, +.fa-share { + --fa: "\f064"; + --fa--fa: "\f064\f064"; +} +.fa-bottle-droplet { + --fa: "\e4c4"; + --fa--fa: "\e4c4\e4c4"; +} +.fa-mask-face { + --fa: "\e1d7"; + --fa--fa: "\e1d7\e1d7"; +} +.fa-hill-rockslide { + --fa: "\e508"; + --fa--fa: "\e508\e508"; +} +.fa-exchange-alt, +.fa-right-left { + --fa: "\f362"; + --fa--fa: "\f362\f362"; +} +.fa-paper-plane { + --fa: "\f1d8"; + --fa--fa: "\f1d8\f1d8"; +} +.fa-road-circle-exclamation { + --fa: "\e565"; + --fa--fa: "\e565\e565"; +} +.fa-dungeon { + --fa: "\f6d9"; + --fa--fa: "\f6d9\f6d9"; +} +.fa-align-right { + --fa: "\f038"; + --fa--fa: "\f038\f038"; +} +.fa-money-bill-1-wave, +.fa-money-bill-wave-alt { + --fa: "\f53b"; + --fa--fa: "\f53b\f53b"; +} +.fa-life-ring { + --fa: "\f1cd"; + --fa--fa: "\f1cd\f1cd"; +} +.fa-hands, +.fa-sign-language, +.fa-signing { + --fa: "\f2a7"; + --fa--fa: "\f2a7\f2a7"; +} +.fa-calendar-day { + --fa: "\f783"; + --fa--fa: "\f783\f783"; +} +.fa-ladder-water, +.fa-swimming-pool, +.fa-water-ladder { + --fa: "\f5c5"; + --fa--fa: "\f5c5\f5c5"; +} +.fa-arrows-up-down, +.fa-arrows-v { + --fa: "\f07d"; + --fa--fa: "\f07d\f07d"; +} +.fa-face-grimace, +.fa-grimace { + --fa: "\f57f"; + --fa--fa: "\f57f\f57f"; +} +.fa-wheelchair-alt, +.fa-wheelchair-move { + --fa: "\e2ce"; + --fa--fa: "\e2ce\e2ce"; +} +.fa-level-down-alt, +.fa-turn-down { + --fa: "\f3be"; + --fa--fa: "\f3be\f3be"; +} +.fa-person-walking-arrow-right { + --fa: "\e552"; + --fa--fa: "\e552\e552"; +} +.fa-envelope-square, +.fa-square-envelope { + --fa: "\f199"; + --fa--fa: "\f199\f199"; +} +.fa-dice { + --fa: "\f522"; + --fa--fa: "\f522\f522"; +} +.fa-bowling-ball { + --fa: "\f436"; + --fa--fa: "\f436\f436"; +} +.fa-brain { + --fa: "\f5dc"; + --fa--fa: "\f5dc\f5dc"; +} +.fa-band-aid, +.fa-bandage { + --fa: "\f462"; + --fa--fa: "\f462\f462"; +} +.fa-calendar-minus { + --fa: "\f272"; + --fa--fa: "\f272\f272"; +} +.fa-circle-xmark, +.fa-times-circle, +.fa-xmark-circle { + --fa: "\f057"; + --fa--fa: "\f057\f057"; +} +.fa-gifts { + --fa: "\f79c"; + --fa--fa: "\f79c\f79c"; +} +.fa-hotel { + --fa: "\f594"; + --fa--fa: "\f594\f594"; +} +.fa-earth-asia, +.fa-globe-asia { + --fa: "\f57e"; + --fa--fa: "\f57e\f57e"; +} +.fa-id-card-alt, +.fa-id-card-clip { + --fa: "\f47f"; + --fa--fa: "\f47f\f47f"; +} +.fa-magnifying-glass-plus, +.fa-search-plus { + --fa: "\f00e"; + --fa--fa: "\f00e\f00e"; +} +.fa-thumbs-up { + --fa: "\f164"; + --fa--fa: "\f164\f164"; +} +.fa-user-clock { + --fa: "\f4fd"; + --fa--fa: "\f4fd\f4fd"; +} +.fa-allergies, +.fa-hand-dots { + --fa: "\f461"; + --fa--fa: "\f461\f461"; +} +.fa-file-invoice { + --fa: "\f570"; + --fa--fa: "\f570\f570"; +} +.fa-window-minimize { + --fa: "\f2d1"; + --fa--fa: "\f2d1\f2d1"; +} +.fa-coffee, +.fa-mug-saucer { + --fa: "\f0f4"; + --fa--fa: "\f0f4\f0f4"; +} +.fa-brush { + --fa: "\f55d"; + --fa--fa: "\f55d\f55d"; +} +.fa-file-half-dashed { + --fa: "\e698"; + --fa--fa: "\e698\e698"; +} +.fa-mask { + --fa: "\f6fa"; + --fa--fa: "\f6fa\f6fa"; +} +.fa-magnifying-glass-minus, +.fa-search-minus { + --fa: "\f010"; + --fa--fa: "\f010\f010"; +} +.fa-ruler-vertical { + --fa: "\f548"; + --fa--fa: "\f548\f548"; +} +.fa-user-alt, +.fa-user-large { + --fa: "\f406"; + --fa--fa: "\f406\f406"; +} +.fa-train-tram { + --fa: "\e5b4"; + --fa--fa: "\e5b4\e5b4"; +} +.fa-user-nurse { + --fa: "\f82f"; + --fa--fa: "\f82f\f82f"; +} +.fa-syringe { + --fa: "\f48e"; + --fa--fa: "\f48e\f48e"; +} +.fa-cloud-sun { + --fa: "\f6c4"; + --fa--fa: "\f6c4\f6c4"; +} +.fa-stopwatch-20 { + --fa: "\e06f"; + --fa--fa: "\e06f\e06f"; +} +.fa-square-full { + --fa: "\f45c"; + --fa--fa: "\f45c\f45c"; +} +.fa-magnet { + --fa: "\f076"; + --fa--fa: "\f076\f076"; +} +.fa-jar { + --fa: "\e516"; + --fa--fa: "\e516\e516"; +} +.fa-note-sticky, +.fa-sticky-note { + --fa: "\f249"; + --fa--fa: "\f249\f249"; +} +.fa-bug-slash { + --fa: "\e490"; + --fa--fa: "\e490\e490"; +} +.fa-arrow-up-from-water-pump { + --fa: "\e4b6"; + --fa--fa: "\e4b6\e4b6"; +} +.fa-bone { + --fa: "\f5d7"; + --fa--fa: "\f5d7\f5d7"; +} +.fa-table-cells-row-unlock { + --fa: "\e691"; + --fa--fa: "\e691\e691"; +} +.fa-user-injured { + --fa: "\f728"; + --fa--fa: "\f728\f728"; +} +.fa-face-sad-tear, +.fa-sad-tear { + --fa: "\f5b4"; + --fa--fa: "\f5b4\f5b4"; +} +.fa-plane { + --fa: "\f072"; + --fa--fa: "\f072\f072"; +} +.fa-tent-arrows-down { + --fa: "\e581"; + --fa--fa: "\e581\e581"; +} +.fa-exclamation { + --fa: "\21"; + --fa--fa: "\21\21"; +} +.fa-arrows-spin { + --fa: "\e4bb"; + --fa--fa: "\e4bb\e4bb"; +} +.fa-print { + --fa: "\f02f"; + --fa--fa: "\f02f\f02f"; +} +.fa-try, +.fa-turkish-lira, +.fa-turkish-lira-sign { + --fa: "\e2bb"; + --fa--fa: "\e2bb\e2bb"; +} +.fa-dollar, +.fa-dollar-sign, +.fa-usd { + --fa: "\24"; + --fa--fa: "\24\24"; +} +.fa-x { + --fa: "\58"; + --fa--fa: "\58\58"; +} +.fa-magnifying-glass-dollar, +.fa-search-dollar { + --fa: "\f688"; + --fa--fa: "\f688\f688"; +} +.fa-users-cog, +.fa-users-gear { + --fa: "\f509"; + --fa--fa: "\f509\f509"; +} +.fa-person-military-pointing { + --fa: "\e54a"; + --fa--fa: "\e54a\e54a"; +} +.fa-bank, +.fa-building-columns, +.fa-institution, +.fa-museum, +.fa-university { + --fa: "\f19c"; + --fa--fa: "\f19c\f19c"; +} +.fa-umbrella { + --fa: "\f0e9"; + --fa--fa: "\f0e9\f0e9"; +} +.fa-trowel { + --fa: "\e589"; + --fa--fa: "\e589\e589"; +} +.fa-d { + --fa: "\44"; + --fa--fa: "\44\44"; +} +.fa-stapler { + --fa: "\e5af"; + --fa--fa: "\e5af\e5af"; +} +.fa-masks-theater, +.fa-theater-masks { + --fa: "\f630"; + --fa--fa: "\f630\f630"; +} +.fa-kip-sign { + --fa: "\e1c4"; + --fa--fa: "\e1c4\e1c4"; +} +.fa-hand-point-left { + --fa: "\f0a5"; + --fa--fa: "\f0a5\f0a5"; +} +.fa-handshake-alt, +.fa-handshake-simple { + --fa: "\f4c6"; + --fa--fa: "\f4c6\f4c6"; +} +.fa-fighter-jet, +.fa-jet-fighter { + --fa: "\f0fb"; + --fa--fa: "\f0fb\f0fb"; +} +.fa-share-alt-square, +.fa-square-share-nodes { + --fa: "\f1e1"; + --fa--fa: "\f1e1\f1e1"; +} +.fa-barcode { + --fa: "\f02a"; + --fa--fa: "\f02a\f02a"; +} +.fa-plus-minus { + --fa: "\e43c"; + --fa--fa: "\e43c\e43c"; +} +.fa-video, +.fa-video-camera { + --fa: "\f03d"; + --fa--fa: "\f03d\f03d"; +} +.fa-graduation-cap, +.fa-mortar-board { + --fa: "\f19d"; + --fa--fa: "\f19d\f19d"; +} +.fa-hand-holding-medical { + --fa: "\e05c"; + --fa--fa: "\e05c\e05c"; +} +.fa-person-circle-check { + --fa: "\e53e"; + --fa--fa: "\e53e\e53e"; +} +.fa-level-up-alt, +.fa-turn-up { + --fa: "\f3bf"; + --fa--fa: "\f3bf\f3bf"; +} +.fa-sr-only, +.fa-sr-only-focusable:not(:focus), +.sr-only, +.sr-only-focusable:not(:focus) { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; +} +:host, +:root { + --fa-style-family-brands: "Font Awesome 6 Brands"; + --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands"; +} +@font-face { + font-family: "Font Awesome 6 Brands"; + font-style: normal; + font-weight: 400; + font-display: block; + src: url(../webfonts/fa-brands-400.woff2) format("woff2"), + url(../webfonts/fa-brands-400.ttf) format("truetype"); +} +.fa-brands, +.fab { + font-weight: 400; +} +.fa-monero { + --fa: "\f3d0"; +} +.fa-hooli { + --fa: "\f427"; +} +.fa-yelp { + --fa: "\f1e9"; +} +.fa-cc-visa { + --fa: "\f1f0"; +} +.fa-lastfm { + --fa: "\f202"; +} +.fa-shopware { + --fa: "\f5b5"; +} +.fa-creative-commons-nc { + --fa: "\f4e8"; +} +.fa-aws { + --fa: "\f375"; +} +.fa-redhat { + --fa: "\f7bc"; +} +.fa-yoast { + --fa: "\f2b1"; +} +.fa-cloudflare { + --fa: "\e07d"; +} +.fa-ups { + --fa: "\f7e0"; +} +.fa-pixiv { + --fa: "\e640"; +} +.fa-wpexplorer { + --fa: "\f2de"; +} +.fa-dyalog { + --fa: "\f399"; +} +.fa-bity { + --fa: "\f37a"; +} +.fa-stackpath { + --fa: "\f842"; +} +.fa-buysellads { + --fa: "\f20d"; +} +.fa-first-order { + --fa: "\f2b0"; +} +.fa-modx { + --fa: "\f285"; +} +.fa-guilded { + --fa: "\e07e"; +} +.fa-vnv { + --fa: "\f40b"; +} +.fa-js-square, +.fa-square-js { + --fa: "\f3b9"; +} +.fa-microsoft { + --fa: "\f3ca"; +} +.fa-qq { + --fa: "\f1d6"; +} +.fa-orcid { + --fa: "\f8d2"; +} +.fa-java { + --fa: "\f4e4"; +} +.fa-invision { + --fa: "\f7b0"; +} +.fa-creative-commons-pd-alt { + --fa: "\f4ed"; +} +.fa-centercode { + --fa: "\f380"; +} +.fa-glide-g { + --fa: "\f2a6"; +} +.fa-drupal { + --fa: "\f1a9"; +} +.fa-jxl { + --fa: "\e67b"; +} +.fa-dart-lang { + --fa: "\e693"; +} +.fa-hire-a-helper { + --fa: "\f3b0"; +} +.fa-creative-commons-by { + --fa: "\f4e7"; +} +.fa-unity { + --fa: "\e049"; +} +.fa-whmcs { + --fa: "\f40d"; +} +.fa-rocketchat { + --fa: "\f3e8"; +} +.fa-vk { + --fa: "\f189"; +} +.fa-untappd { + --fa: "\f405"; +} +.fa-mailchimp { + --fa: "\f59e"; +} +.fa-css3-alt { + --fa: "\f38b"; +} +.fa-reddit-square, +.fa-square-reddit { + --fa: "\f1a2"; +} +.fa-vimeo-v { + --fa: "\f27d"; +} +.fa-contao { + --fa: "\f26d"; +} +.fa-square-font-awesome { + --fa: "\e5ad"; +} +.fa-deskpro { + --fa: "\f38f"; +} +.fa-brave { + --fa: "\e63c"; +} +.fa-sistrix { + --fa: "\f3ee"; +} +.fa-instagram-square, +.fa-square-instagram { + --fa: "\e055"; +} +.fa-battle-net { + --fa: "\f835"; +} +.fa-the-red-yeti { + --fa: "\f69d"; +} +.fa-hacker-news-square, +.fa-square-hacker-news { + --fa: "\f3af"; +} +.fa-edge { + --fa: "\f282"; +} +.fa-threads { + --fa: "\e618"; +} +.fa-napster { + --fa: "\f3d2"; +} +.fa-snapchat-square, +.fa-square-snapchat { + --fa: "\f2ad"; +} +.fa-google-plus-g { + --fa: "\f0d5"; +} +.fa-artstation { + --fa: "\f77a"; +} +.fa-markdown { + --fa: "\f60f"; +} +.fa-sourcetree { + --fa: "\f7d3"; +} +.fa-google-plus { + --fa: "\f2b3"; +} +.fa-diaspora { + --fa: "\f791"; +} +.fa-foursquare { + --fa: "\f180"; +} +.fa-stack-overflow { + --fa: "\f16c"; +} +.fa-github-alt { + --fa: "\f113"; +} +.fa-phoenix-squadron { + --fa: "\f511"; +} +.fa-pagelines { + --fa: "\f18c"; +} +.fa-algolia { + --fa: "\f36c"; +} +.fa-red-river { + --fa: "\f3e3"; +} +.fa-creative-commons-sa { + --fa: "\f4ef"; +} +.fa-safari { + --fa: "\f267"; +} +.fa-google { + --fa: "\f1a0"; +} +.fa-font-awesome-alt, +.fa-square-font-awesome-stroke { + --fa: "\f35c"; +} +.fa-atlassian { + --fa: "\f77b"; +} +.fa-linkedin-in { + --fa: "\f0e1"; +} +.fa-digital-ocean { + --fa: "\f391"; +} +.fa-nimblr { + --fa: "\f5a8"; +} +.fa-chromecast { + --fa: "\f838"; +} +.fa-evernote { + --fa: "\f839"; +} +.fa-hacker-news { + --fa: "\f1d4"; +} +.fa-creative-commons-sampling { + --fa: "\f4f0"; +} +.fa-adversal { + --fa: "\f36a"; +} +.fa-creative-commons { + --fa: "\f25e"; +} +.fa-watchman-monitoring { + --fa: "\e087"; +} +.fa-fonticons { + --fa: "\f280"; +} +.fa-weixin { + --fa: "\f1d7"; +} +.fa-shirtsinbulk { + --fa: "\f214"; +} +.fa-codepen { + --fa: "\f1cb"; +} +.fa-git-alt { + --fa: "\f841"; +} +.fa-lyft { + --fa: "\f3c3"; +} +.fa-rev { + --fa: "\f5b2"; +} +.fa-windows { + --fa: "\f17a"; +} +.fa-wizards-of-the-coast { + --fa: "\f730"; +} +.fa-square-viadeo, +.fa-viadeo-square { + --fa: "\f2aa"; +} +.fa-meetup { + --fa: "\f2e0"; +} +.fa-centos { + --fa: "\f789"; +} +.fa-adn { + --fa: "\f170"; +} +.fa-cloudsmith { + --fa: "\f384"; +} +.fa-opensuse { + --fa: "\e62b"; +} +.fa-pied-piper-alt { + --fa: "\f1a8"; +} +.fa-dribbble-square, +.fa-square-dribbble { + --fa: "\f397"; +} +.fa-codiepie { + --fa: "\f284"; +} +.fa-node { + --fa: "\f419"; +} +.fa-mix { + --fa: "\f3cb"; +} +.fa-steam { + --fa: "\f1b6"; +} +.fa-cc-apple-pay { + --fa: "\f416"; +} +.fa-scribd { + --fa: "\f28a"; +} +.fa-debian { + --fa: "\e60b"; +} +.fa-openid { + --fa: "\f19b"; +} +.fa-instalod { + --fa: "\e081"; +} +.fa-files-pinwheel { + --fa: "\e69f"; +} +.fa-expeditedssl { + --fa: "\f23e"; +} +.fa-sellcast { + --fa: "\f2da"; +} +.fa-square-twitter, +.fa-twitter-square { + --fa: "\f081"; +} +.fa-r-project { + --fa: "\f4f7"; +} +.fa-delicious { + --fa: "\f1a5"; +} +.fa-freebsd { + --fa: "\f3a4"; +} +.fa-vuejs { + --fa: "\f41f"; +} +.fa-accusoft { + --fa: "\f369"; +} +.fa-ioxhost { + --fa: "\f208"; +} +.fa-fonticons-fi { + --fa: "\f3a2"; +} +.fa-app-store { + --fa: "\f36f"; +} +.fa-cc-mastercard { + --fa: "\f1f1"; +} +.fa-itunes-note { + --fa: "\f3b5"; +} +.fa-golang { + --fa: "\e40f"; +} +.fa-kickstarter, +.fa-square-kickstarter { + --fa: "\f3bb"; +} +.fa-grav { + --fa: "\f2d6"; +} +.fa-weibo { + --fa: "\f18a"; +} +.fa-uncharted { + --fa: "\e084"; +} +.fa-firstdraft { + --fa: "\f3a1"; +} +.fa-square-youtube, +.fa-youtube-square { + --fa: "\f431"; +} +.fa-wikipedia-w { + --fa: "\f266"; +} +.fa-rendact, +.fa-wpressr { + --fa: "\f3e4"; +} +.fa-angellist { + --fa: "\f209"; +} +.fa-galactic-republic { + --fa: "\f50c"; +} +.fa-nfc-directional { + --fa: "\e530"; +} +.fa-skype { + --fa: "\f17e"; +} +.fa-joget { + --fa: "\f3b7"; +} +.fa-fedora { + --fa: "\f798"; +} +.fa-stripe-s { + --fa: "\f42a"; +} +.fa-meta { + --fa: "\e49b"; +} +.fa-laravel { + --fa: "\f3bd"; +} +.fa-hotjar { + --fa: "\f3b1"; +} +.fa-bluetooth-b { + --fa: "\f294"; +} +.fa-square-letterboxd { + --fa: "\e62e"; +} +.fa-sticker-mule { + --fa: "\f3f7"; +} +.fa-creative-commons-zero { + --fa: "\f4f3"; +} +.fa-hips { + --fa: "\f452"; +} +.fa-css { + --fa: "\e6a2"; +} +.fa-behance { + --fa: "\f1b4"; +} +.fa-reddit { + --fa: "\f1a1"; +} +.fa-discord { + --fa: "\f392"; +} +.fa-chrome { + --fa: "\f268"; +} +.fa-app-store-ios { + --fa: "\f370"; +} +.fa-cc-discover { + --fa: "\f1f2"; +} +.fa-wpbeginner { + --fa: "\f297"; +} +.fa-confluence { + --fa: "\f78d"; +} +.fa-shoelace { + --fa: "\e60c"; +} +.fa-mdb { + --fa: "\f8ca"; +} +.fa-dochub { + --fa: "\f394"; +} +.fa-accessible-icon { + --fa: "\f368"; +} +.fa-ebay { + --fa: "\f4f4"; +} +.fa-amazon { + --fa: "\f270"; +} +.fa-unsplash { + --fa: "\e07c"; +} +.fa-yarn { + --fa: "\f7e3"; +} +.fa-square-steam, +.fa-steam-square { + --fa: "\f1b7"; +} +.fa-500px { + --fa: "\f26e"; +} +.fa-square-vimeo, +.fa-vimeo-square { + --fa: "\f194"; +} +.fa-asymmetrik { + --fa: "\f372"; +} +.fa-font-awesome, +.fa-font-awesome-flag, +.fa-font-awesome-logo-full { + --fa: "\f2b4"; +} +.fa-gratipay { + --fa: "\f184"; +} +.fa-apple { + --fa: "\f179"; +} +.fa-hive { + --fa: "\e07f"; +} +.fa-gitkraken { + --fa: "\f3a6"; +} +.fa-keybase { + --fa: "\f4f5"; +} +.fa-apple-pay { + --fa: "\f415"; +} +.fa-padlet { + --fa: "\e4a0"; +} +.fa-amazon-pay { + --fa: "\f42c"; +} +.fa-github-square, +.fa-square-github { + --fa: "\f092"; +} +.fa-stumbleupon { + --fa: "\f1a4"; +} +.fa-fedex { + --fa: "\f797"; +} +.fa-phoenix-framework { + --fa: "\f3dc"; +} +.fa-shopify { + --fa: "\e057"; +} +.fa-neos { + --fa: "\f612"; +} +.fa-square-threads { + --fa: "\e619"; +} +.fa-hackerrank { + --fa: "\f5f7"; +} +.fa-researchgate { + --fa: "\f4f8"; +} +.fa-swift { + --fa: "\f8e1"; +} +.fa-angular { + --fa: "\f420"; +} +.fa-speakap { + --fa: "\f3f3"; +} +.fa-angrycreative { + --fa: "\f36e"; +} +.fa-y-combinator { + --fa: "\f23b"; +} +.fa-empire { + --fa: "\f1d1"; +} +.fa-envira { + --fa: "\f299"; +} +.fa-google-scholar { + --fa: "\e63b"; +} +.fa-gitlab-square, +.fa-square-gitlab { + --fa: "\e5ae"; +} +.fa-studiovinari { + --fa: "\f3f8"; +} +.fa-pied-piper { + --fa: "\f2ae"; +} +.fa-wordpress { + --fa: "\f19a"; +} +.fa-product-hunt { + --fa: "\f288"; +} +.fa-firefox { + --fa: "\f269"; +} +.fa-linode { + --fa: "\f2b8"; +} +.fa-goodreads { + --fa: "\f3a8"; +} +.fa-odnoklassniki-square, +.fa-square-odnoklassniki { + --fa: "\f264"; +} +.fa-jsfiddle { + --fa: "\f1cc"; +} +.fa-sith { + --fa: "\f512"; +} +.fa-themeisle { + --fa: "\f2b2"; +} +.fa-page4 { + --fa: "\f3d7"; +} +.fa-hashnode { + --fa: "\e499"; +} +.fa-react { + --fa: "\f41b"; +} +.fa-cc-paypal { + --fa: "\f1f4"; +} +.fa-squarespace { + --fa: "\f5be"; +} +.fa-cc-stripe { + --fa: "\f1f5"; +} +.fa-creative-commons-share { + --fa: "\f4f2"; +} +.fa-bitcoin { + --fa: "\f379"; +} +.fa-keycdn { + --fa: "\f3ba"; +} +.fa-opera { + --fa: "\f26a"; +} +.fa-itch-io { + --fa: "\f83a"; +} +.fa-umbraco { + --fa: "\f8e8"; +} +.fa-galactic-senate { + --fa: "\f50d"; +} +.fa-ubuntu { + --fa: "\f7df"; +} +.fa-draft2digital { + --fa: "\f396"; +} +.fa-stripe { + --fa: "\f429"; +} +.fa-houzz { + --fa: "\f27c"; +} +.fa-gg { + --fa: "\f260"; +} +.fa-dhl { + --fa: "\f790"; +} +.fa-pinterest-square, +.fa-square-pinterest { + --fa: "\f0d3"; +} +.fa-xing { + --fa: "\f168"; +} +.fa-blackberry { + --fa: "\f37b"; +} +.fa-creative-commons-pd { + --fa: "\f4ec"; +} +.fa-playstation { + --fa: "\f3df"; +} +.fa-quinscape { + --fa: "\f459"; +} +.fa-less { + --fa: "\f41d"; +} +.fa-blogger-b { + --fa: "\f37d"; +} +.fa-opencart { + --fa: "\f23d"; +} +.fa-vine { + --fa: "\f1ca"; +} +.fa-signal-messenger { + --fa: "\e663"; +} +.fa-paypal { + --fa: "\f1ed"; +} +.fa-gitlab { + --fa: "\f296"; +} +.fa-typo3 { + --fa: "\f42b"; +} +.fa-reddit-alien { + --fa: "\f281"; +} +.fa-yahoo { + --fa: "\f19e"; +} +.fa-dailymotion { + --fa: "\e052"; +} +.fa-affiliatetheme { + --fa: "\f36b"; +} +.fa-pied-piper-pp { + --fa: "\f1a7"; +} +.fa-bootstrap { + --fa: "\f836"; +} +.fa-odnoklassniki { + --fa: "\f263"; +} +.fa-nfc-symbol { + --fa: "\e531"; +} +.fa-mintbit { + --fa: "\e62f"; +} +.fa-ethereum { + --fa: "\f42e"; +} +.fa-speaker-deck { + --fa: "\f83c"; +} +.fa-creative-commons-nc-eu { + --fa: "\f4e9"; +} +.fa-patreon { + --fa: "\f3d9"; +} +.fa-avianex { + --fa: "\f374"; +} +.fa-ello { + --fa: "\f5f1"; +} +.fa-gofore { + --fa: "\f3a7"; +} +.fa-bimobject { + --fa: "\f378"; +} +.fa-brave-reverse { + --fa: "\e63d"; +} +.fa-facebook-f { + --fa: "\f39e"; +} +.fa-google-plus-square, +.fa-square-google-plus { + --fa: "\f0d4"; +} +.fa-web-awesome { + --fa: "\e682"; +} +.fa-mandalorian { + --fa: "\f50f"; +} +.fa-first-order-alt { + --fa: "\f50a"; +} +.fa-osi { + --fa: "\f41a"; +} +.fa-google-wallet { + --fa: "\f1ee"; +} +.fa-d-and-d-beyond { + --fa: "\f6ca"; +} +.fa-periscope { + --fa: "\f3da"; +} +.fa-fulcrum { + --fa: "\f50b"; +} +.fa-cloudscale { + --fa: "\f383"; +} +.fa-forumbee { + --fa: "\f211"; +} +.fa-mizuni { + --fa: "\f3cc"; +} +.fa-schlix { + --fa: "\f3ea"; +} +.fa-square-xing, +.fa-xing-square { + --fa: "\f169"; +} +.fa-bandcamp { + --fa: "\f2d5"; +} +.fa-wpforms { + --fa: "\f298"; +} +.fa-cloudversify { + --fa: "\f385"; +} +.fa-usps { + --fa: "\f7e1"; +} +.fa-megaport { + --fa: "\f5a3"; +} +.fa-magento { + --fa: "\f3c4"; +} +.fa-spotify { + --fa: "\f1bc"; +} +.fa-optin-monster { + --fa: "\f23c"; +} +.fa-fly { + --fa: "\f417"; +} +.fa-square-bluesky { + --fa: "\e6a3"; +} +.fa-aviato { + --fa: "\f421"; +} +.fa-itunes { + --fa: "\f3b4"; +} +.fa-cuttlefish { + --fa: "\f38c"; +} +.fa-blogger { + --fa: "\f37c"; +} +.fa-flickr { + --fa: "\f16e"; +} +.fa-viber { + --fa: "\f409"; +} +.fa-soundcloud { + --fa: "\f1be"; +} +.fa-digg { + --fa: "\f1a6"; +} +.fa-tencent-weibo { + --fa: "\f1d5"; +} +.fa-letterboxd { + --fa: "\e62d"; +} +.fa-symfony { + --fa: "\f83d"; +} +.fa-maxcdn { + --fa: "\f136"; +} +.fa-etsy { + --fa: "\f2d7"; +} +.fa-facebook-messenger { + --fa: "\f39f"; +} +.fa-audible { + --fa: "\f373"; +} +.fa-think-peaks { + --fa: "\f731"; +} +.fa-bilibili { + --fa: "\e3d9"; +} +.fa-erlang { + --fa: "\f39d"; +} +.fa-x-twitter { + --fa: "\e61b"; +} +.fa-cotton-bureau { + --fa: "\f89e"; +} +.fa-dashcube { + --fa: "\f210"; +} +.fa-42-group, +.fa-innosoft { + --fa: "\e080"; +} +.fa-stack-exchange { + --fa: "\f18d"; +} +.fa-elementor { + --fa: "\f430"; +} +.fa-pied-piper-square, +.fa-square-pied-piper { + --fa: "\e01e"; +} +.fa-creative-commons-nd { + --fa: "\f4eb"; +} +.fa-palfed { + --fa: "\f3d8"; +} +.fa-superpowers { + --fa: "\f2dd"; +} +.fa-resolving { + --fa: "\f3e7"; +} +.fa-xbox { + --fa: "\f412"; +} +.fa-square-web-awesome-stroke { + --fa: "\e684"; +} +.fa-searchengin { + --fa: "\f3eb"; +} +.fa-tiktok { + --fa: "\e07b"; +} +.fa-facebook-square, +.fa-square-facebook { + --fa: "\f082"; +} +.fa-renren { + --fa: "\f18b"; +} +.fa-linux { + --fa: "\f17c"; +} +.fa-glide { + --fa: "\f2a5"; +} +.fa-linkedin { + --fa: "\f08c"; +} +.fa-hubspot { + --fa: "\f3b2"; +} +.fa-deploydog { + --fa: "\f38e"; +} +.fa-twitch { + --fa: "\f1e8"; +} +.fa-flutter { + --fa: "\e694"; +} +.fa-ravelry { + --fa: "\f2d9"; +} +.fa-mixer { + --fa: "\e056"; +} +.fa-lastfm-square, +.fa-square-lastfm { + --fa: "\f203"; +} +.fa-vimeo { + --fa: "\f40a"; +} +.fa-mendeley { + --fa: "\f7b3"; +} +.fa-uniregistry { + --fa: "\f404"; +} +.fa-figma { + --fa: "\f799"; +} +.fa-creative-commons-remix { + --fa: "\f4ee"; +} +.fa-cc-amazon-pay { + --fa: "\f42d"; +} +.fa-dropbox { + --fa: "\f16b"; +} +.fa-instagram { + --fa: "\f16d"; +} +.fa-cmplid { + --fa: "\e360"; +} +.fa-upwork { + --fa: "\e641"; +} +.fa-facebook { + --fa: "\f09a"; +} +.fa-gripfire { + --fa: "\f3ac"; +} +.fa-jedi-order { + --fa: "\f50e"; +} +.fa-uikit { + --fa: "\f403"; +} +.fa-fort-awesome-alt { + --fa: "\f3a3"; +} +.fa-phabricator { + --fa: "\f3db"; +} +.fa-ussunnah { + --fa: "\f407"; +} +.fa-earlybirds { + --fa: "\f39a"; +} +.fa-trade-federation { + --fa: "\f513"; +} +.fa-autoprefixer { + --fa: "\f41c"; +} +.fa-whatsapp { + --fa: "\f232"; +} +.fa-square-upwork { + --fa: "\e67c"; +} +.fa-slideshare { + --fa: "\f1e7"; +} +.fa-google-play { + --fa: "\f3ab"; +} +.fa-viadeo { + --fa: "\f2a9"; +} +.fa-line { + --fa: "\f3c0"; +} +.fa-google-drive { + --fa: "\f3aa"; +} +.fa-servicestack { + --fa: "\f3ec"; +} +.fa-simplybuilt { + --fa: "\f215"; +} +.fa-bitbucket { + --fa: "\f171"; +} +.fa-imdb { + --fa: "\f2d8"; +} +.fa-deezer { + --fa: "\e077"; +} +.fa-raspberry-pi { + --fa: "\f7bb"; +} +.fa-jira { + --fa: "\f7b1"; +} +.fa-docker { + --fa: "\f395"; +} +.fa-screenpal { + --fa: "\e570"; +} +.fa-bluetooth { + --fa: "\f293"; +} +.fa-gitter { + --fa: "\f426"; +} +.fa-d-and-d { + --fa: "\f38d"; +} +.fa-microblog { + --fa: "\e01a"; +} +.fa-cc-diners-club { + --fa: "\f24c"; +} +.fa-gg-circle { + --fa: "\f261"; +} +.fa-pied-piper-hat { + --fa: "\f4e5"; +} +.fa-kickstarter-k { + --fa: "\f3bc"; +} +.fa-yandex { + --fa: "\f413"; +} +.fa-readme { + --fa: "\f4d5"; +} +.fa-html5 { + --fa: "\f13b"; +} +.fa-sellsy { + --fa: "\f213"; +} +.fa-square-web-awesome { + --fa: "\e683"; +} +.fa-sass { + --fa: "\f41e"; +} +.fa-wirsindhandwerk, +.fa-wsh { + --fa: "\e2d0"; +} +.fa-buromobelexperte { + --fa: "\f37f"; +} +.fa-salesforce { + --fa: "\f83b"; +} +.fa-octopus-deploy { + --fa: "\e082"; +} +.fa-medapps { + --fa: "\f3c6"; +} +.fa-ns8 { + --fa: "\f3d5"; +} +.fa-pinterest-p { + --fa: "\f231"; +} +.fa-apper { + --fa: "\f371"; +} +.fa-fort-awesome { + --fa: "\f286"; +} +.fa-waze { + --fa: "\f83f"; +} +.fa-bluesky { + --fa: "\e671"; +} +.fa-cc-jcb { + --fa: "\f24b"; +} +.fa-snapchat, +.fa-snapchat-ghost { + --fa: "\f2ab"; +} +.fa-fantasy-flight-games { + --fa: "\f6dc"; +} +.fa-rust { + --fa: "\e07a"; +} +.fa-wix { + --fa: "\f5cf"; +} +.fa-behance-square, +.fa-square-behance { + --fa: "\f1b5"; +} +.fa-supple { + --fa: "\f3f9"; +} +.fa-webflow { + --fa: "\e65c"; +} +.fa-rebel { + --fa: "\f1d0"; +} +.fa-css3 { + --fa: "\f13c"; +} +.fa-staylinked { + --fa: "\f3f5"; +} +.fa-kaggle { + --fa: "\f5fa"; +} +.fa-space-awesome { + --fa: "\e5ac"; +} +.fa-deviantart { + --fa: "\f1bd"; +} +.fa-cpanel { + --fa: "\f388"; +} +.fa-goodreads-g { + --fa: "\f3a9"; +} +.fa-git-square, +.fa-square-git { + --fa: "\f1d2"; +} +.fa-square-tumblr, +.fa-tumblr-square { + --fa: "\f174"; +} +.fa-trello { + --fa: "\f181"; +} +.fa-creative-commons-nc-jp { + --fa: "\f4ea"; +} +.fa-get-pocket { + --fa: "\f265"; +} +.fa-perbyte { + --fa: "\e083"; +} +.fa-grunt { + --fa: "\f3ad"; +} +.fa-weebly { + --fa: "\f5cc"; +} +.fa-connectdevelop { + --fa: "\f20e"; +} +.fa-leanpub { + --fa: "\f212"; +} +.fa-black-tie { + --fa: "\f27e"; +} +.fa-themeco { + --fa: "\f5c6"; +} +.fa-python { + --fa: "\f3e2"; +} +.fa-android { + --fa: "\f17b"; +} +.fa-bots { + --fa: "\e340"; +} +.fa-free-code-camp { + --fa: "\f2c5"; +} +.fa-hornbill { + --fa: "\f592"; +} +.fa-js { + --fa: "\f3b8"; +} +.fa-ideal { + --fa: "\e013"; +} +.fa-git { + --fa: "\f1d3"; +} +.fa-dev { + --fa: "\f6cc"; +} +.fa-sketch { + --fa: "\f7c6"; +} +.fa-yandex-international { + --fa: "\f414"; +} +.fa-cc-amex { + --fa: "\f1f3"; +} +.fa-uber { + --fa: "\f402"; +} +.fa-github { + --fa: "\f09b"; +} +.fa-php { + --fa: "\f457"; +} +.fa-alipay { + --fa: "\f642"; +} +.fa-youtube { + --fa: "\f167"; +} +.fa-skyatlas { + --fa: "\f216"; +} +.fa-firefox-browser { + --fa: "\e007"; +} +.fa-replyd { + --fa: "\f3e6"; +} +.fa-suse { + --fa: "\f7d6"; +} +.fa-jenkins { + --fa: "\f3b6"; +} +.fa-twitter { + --fa: "\f099"; +} +.fa-rockrms { + --fa: "\f3e9"; +} +.fa-pinterest { + --fa: "\f0d2"; +} +.fa-buffer { + --fa: "\f837"; +} +.fa-npm { + --fa: "\f3d4"; +} +.fa-yammer { + --fa: "\f840"; +} +.fa-btc { + --fa: "\f15a"; +} +.fa-dribbble { + --fa: "\f17d"; +} +.fa-stumbleupon-circle { + --fa: "\f1a3"; +} +.fa-internet-explorer { + --fa: "\f26b"; +} +.fa-stubber { + --fa: "\e5c7"; +} +.fa-telegram, +.fa-telegram-plane { + --fa: "\f2c6"; +} +.fa-old-republic { + --fa: "\f510"; +} +.fa-odysee { + --fa: "\e5c6"; +} +.fa-square-whatsapp, +.fa-whatsapp-square { + --fa: "\f40c"; +} +.fa-node-js { + --fa: "\f3d3"; +} +.fa-edge-legacy { + --fa: "\e078"; +} +.fa-slack, +.fa-slack-hash { + --fa: "\f198"; +} +.fa-medrt { + --fa: "\f3c8"; +} +.fa-usb { + --fa: "\f287"; +} +.fa-tumblr { + --fa: "\f173"; +} +.fa-vaadin { + --fa: "\f408"; +} +.fa-quora { + --fa: "\f2c4"; +} +.fa-square-x-twitter { + --fa: "\e61a"; +} +.fa-reacteurope { + --fa: "\f75d"; +} +.fa-medium, +.fa-medium-m { + --fa: "\f23a"; +} +.fa-amilia { + --fa: "\f36d"; +} +.fa-mixcloud { + --fa: "\f289"; +} +.fa-flipboard { + --fa: "\f44d"; +} +.fa-viacoin { + --fa: "\f237"; +} +.fa-critical-role { + --fa: "\f6c9"; +} +.fa-sitrox { + --fa: "\e44a"; +} +.fa-discourse { + --fa: "\f393"; +} +.fa-joomla { + --fa: "\f1aa"; +} +.fa-mastodon { + --fa: "\f4f6"; +} +.fa-airbnb { + --fa: "\f834"; +} +.fa-wolf-pack-battalion { + --fa: "\f514"; +} +.fa-buy-n-large { + --fa: "\f8a6"; +} +.fa-gulp { + --fa: "\f3ae"; +} +.fa-creative-commons-sampling-plus { + --fa: "\f4f1"; +} +.fa-strava { + --fa: "\f428"; +} +.fa-ember { + --fa: "\f423"; +} +.fa-canadian-maple-leaf { + --fa: "\f785"; +} +.fa-teamspeak { + --fa: "\f4f9"; +} +.fa-pushed { + --fa: "\f3e1"; +} +.fa-wordpress-simple { + --fa: "\f411"; +} +.fa-nutritionix { + --fa: "\f3d6"; +} +.fa-wodu { + --fa: "\e088"; +} +.fa-google-pay { + --fa: "\e079"; +} +.fa-intercom { + --fa: "\f7af"; +} +.fa-zhihu { + --fa: "\f63f"; +} +.fa-korvue { + --fa: "\f42f"; +} +.fa-pix { + --fa: "\e43a"; +} +.fa-steam-symbol { + --fa: "\f3f6"; +} +:host, +:root { + --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free"; +} +@font-face { + font-family: "Font Awesome 6 Free"; + font-style: normal; + font-weight: 400; + font-display: block; + src: url(../webfonts/fa-regular-400.woff2) format("woff2"), + url(../webfonts/fa-regular-400.ttf) format("truetype"); +} +.fa-regular, +.far { + font-weight: 400; +} +:host, +:root { + --fa-style-family-classic: "Font Awesome 6 Free"; + --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free"; +} +@font-face { + font-family: "Font Awesome 6 Free"; + font-style: normal; + font-weight: 900; + font-display: block; + src: url(../webfonts/fa-solid-900.woff2) format("woff2"), + url(../webfonts/fa-solid-900.ttf) format("truetype"); +} +.fa-solid, +.fas { + font-weight: 900; +} +@font-face { + font-family: "Font Awesome 5 Brands"; + font-display: block; + font-weight: 400; + src: url(../webfonts/fa-brands-400.woff2) format("woff2"), + url(../webfonts/fa-brands-400.ttf) format("truetype"); +} +@font-face { + font-family: "Font Awesome 5 Free"; + font-display: block; + font-weight: 900; + src: url(../webfonts/fa-solid-900.woff2) format("woff2"), + url(../webfonts/fa-solid-900.ttf) format("truetype"); +} +@font-face { + font-family: "Font Awesome 5 Free"; + font-display: block; + font-weight: 400; + src: url(../webfonts/fa-regular-400.woff2) format("woff2"), + url(../webfonts/fa-regular-400.ttf) format("truetype"); +} +@font-face { + font-family: "FontAwesome"; + font-display: block; + src: url(../webfonts/fa-solid-900.woff2) format("woff2"), + url(../webfonts/fa-solid-900.ttf) format("truetype"); +} +@font-face { + font-family: "FontAwesome"; + font-display: block; + src: url(../webfonts/fa-brands-400.woff2) format("woff2"), + url(../webfonts/fa-brands-400.ttf) format("truetype"); +} +@font-face { + font-family: "FontAwesome"; + font-display: block; + src: url(../webfonts/fa-regular-400.woff2) format("woff2"), + url(../webfonts/fa-regular-400.ttf) format("truetype"); + unicode-range: u+f003, u+f006, u+f014, u+f016-f017, u+f01a-f01b, u+f01d, + u+f022, u+f03e, u+f044, u+f046, u+f05c-f05d, u+f06e, u+f070, u+f087-f088, + u+f08a, u+f094, u+f096-f097, u+f09d, u+f0a0, u+f0a2, u+f0a4-f0a7, u+f0c5, + u+f0c7, u+f0e5-f0e6, u+f0eb, u+f0f6-f0f8, u+f10c, u+f114-f115, + u+f118-f11a, u+f11c-f11d, u+f133, u+f147, u+f14e, u+f150-f152, + u+f185-f186, u+f18e, u+f190-f192, u+f196, u+f1c1-f1c9, u+f1d9, u+f1db, + u+f1e3, u+f1ea, u+f1f7, u+f1f9, u+f20a, u+f247-f248, u+f24a, u+f24d, + u+f255-f25b, u+f25d, u+f271-f274, u+f278, u+f27b, u+f28c, u+f28e, u+f29c, + u+f2b5, u+f2b7, u+f2ba, u+f2bc, u+f2be, u+f2c0-f2c1, u+f2c3, u+f2d0, + u+f2d2, u+f2d4, u+f2dc; +} +@font-face { + font-family: "FontAwesome"; + font-display: block; + src: url(../webfonts/fa-v4compatibility.woff2) format("woff2"), + url(../webfonts/fa-v4compatibility.ttf) format("truetype"); + unicode-range: u+f041, u+f047, u+f065-f066, u+f07d-f07e, u+f080, u+f08b, + u+f08e, u+f090, u+f09a, u+f0ac, u+f0ae, u+f0b2, u+f0d0, u+f0d6, u+f0e4, + u+f0ec, u+f10a-f10b, u+f123, u+f13e, u+f148-f149, u+f14c, u+f156, u+f15e, + u+f160-f161, u+f163, u+f175-f178, u+f195, u+f1f8, u+f219, u+f27a; +} diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000..e69de29 diff --git a/public/images/about-us.svg b/public/images/about-us.svg new file mode 100644 index 0000000..9c5574a --- /dev/null +++ b/public/images/about-us.svg @@ -0,0 +1,2202 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/article.svg b/public/images/article.svg new file mode 100644 index 0000000..bda81af --- /dev/null +++ b/public/images/article.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/images/articles.svg b/public/images/articles.svg new file mode 100644 index 0000000..b98b706 --- /dev/null +++ b/public/images/articles.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/images/ayam.jpg b/public/images/ayam.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6c2fbacda4eecb557f853725a5aae105e74036ac GIT binary patch literal 905223 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

B=y2TYqAa~6LZQOt8 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