From 850341cd99f44c42f4bebb645da2b71944c6ef4c Mon Sep 17 00:00:00 2001 From: root Date: Mon, 25 Nov 2024 15:39:54 +0300 Subject: [PATCH] initialization --- .editorconfig | 18 + .gitattributes | 11 + .gitignore | 19 + README.md | 66 + app/Actions/Fortify/CreateNewUser.php | 40 + .../Fortify/PasswordValidationRules.php | 18 + app/Actions/Fortify/ResetUserPassword.php | 29 + app/Actions/Fortify/UpdateUserPassword.php | 32 + .../Fortify/UpdateUserProfileInformation.php | 58 + app/Console/Kernel.php | 27 + app/Exceptions/Handler.php | 30 + .../Auth/ConfirmPasswordController.php | 39 + .../Auth/ForgotPasswordController.php | 22 + app/Http/Controllers/Auth/LoginController.php | 40 + .../Controllers/Auth/RegisterController.php | 94 + .../Auth/ResetPasswordController.php | 29 + .../Auth/VerificationController.php | 41 + .../Controllers/ClientsTableController.php | 24 + .../Company/AgentsTableController.php | 23 + .../Company/CreateCompanyController.php | 23 + .../Controllers/Company/DetailsController.php | 36 + app/Http/Controllers/CompanyRequisites.php | 10 + .../Controllers/ConfirmClientFromBitrix.php | 19 + app/Http/Controllers/Controller.php | 12 + app/Http/Controllers/HomeController.php | 28 + app/Http/Kernel.php | 68 + app/Http/Middleware/Authenticate.php | 17 + app/Http/Middleware/EncryptCookies.php | 17 + .../PreventRequestsDuringMaintenance.php | 17 + .../Middleware/RedirectIfAuthenticated.php | 30 + app/Http/Middleware/TrimStrings.php | 19 + app/Http/Middleware/TrustHosts.php | 20 + app/Http/Middleware/TrustProxies.php | 28 + app/Http/Middleware/ValidateSignature.php | 22 + app/Http/Middleware/VerifyCsrfToken.php | 17 + app/Livewire/ClientsTable.php | 37 + app/Livewire/CreateClientForm.php | 147 + app/Models/Agent.php | 29 + app/Models/BitrixSender.php | 99 + app/Models/City.php | 11 + app/Models/Company.php | 26 + app/Models/Company/CompanyAdmin.php | 13 + app/Models/Company/Details.php | 76 + app/Models/Complex.php | 15 + app/Models/Deal.php | 27 + app/Models/Status.php | 17 + app/Models/User.php | 55 + app/Providers/AppServiceProvider.php | 24 + app/Providers/AuthServiceProvider.php | 26 + app/Providers/BroadcastServiceProvider.php | 19 + app/Providers/EventServiceProvider.php | 38 + app/Providers/FortifyServiceProvider.php | 46 + app/Providers/RouteServiceProvider.php | 40 + artisan | 53 + bootstrap/app.php | 55 + bootstrap/cache/.gitignore | 2 + composer.json | 69 + composer.lock | 8561 +++++++++++++++++ config/app.php | 190 + config/auth.php | 115 + config/broadcasting.php | 71 + config/cache.php | 111 + config/cors.php | 34 + config/database.php | 151 + config/filesystems.php | 77 + config/fortify.php | 159 + config/hashing.php | 54 + config/logging.php | 131 + config/mail.php | 134 + config/queue.php | 109 + config/sanctum.php | 83 + config/services.php | 34 + config/session.php | 214 + config/view.php | 36 + database/.gitignore | 1 + database/factories/CompanyFactory.php | 23 + database/factories/UserFactory.php | 44 + .../2014_10_12_000000_create_users_table.php | 33 + ...000_create_password_reset_tokens_table.php | 28 + ...12_100000_create_password_resets_table.php | 32 + ..._add_two_factor_columns_to_users_table.php | 46 + ..._08_19_000000_create_failed_jobs_table.php | 32 + ...01_create_personal_access_tokens_table.php | 33 + .../2024_06_20_035667_create_cities_table.php | 33 + ...024_06_30_230001_create_statuses_table.php | 34 + ...24_07_04_052702_create_complexes_table.php | 38 + ...24_10_23_141203_create_companies_table.php | 35 + .../2024_10_23_162850_create_agents_table.php | 33 + ..._23_163951_create_company_admins_table.php | 29 + .../2024_10_23_170000_create_deals_table.php | 33 + ..._24_062613_create_company_agents_table.php | 29 + database/seeders/DatabaseSeeder.php | 22 + package-lock.json | 1400 +++ package.json | 19 + phpunit.xml | 32 + public/.htaccess | 21 + public/favicon.ico | 0 public/images/DiagnostikaIKT.docx | Bin 0 -> 193309 bytes public/images/icons/document.png | Bin 0 -> 942 bytes public/images/icons/free-icon-font-user.png | Bin 0 -> 830 bytes public/images/icons/free-icon-font-user_1.png | Bin 0 -> 2125 bytes public/images/icons/message.png | Bin 0 -> 1726 bytes public/images/icons/user copy.png | 0 public/images/icons/user.png | Bin 0 -> 2878 bytes public/images/icons/user1.png | Bin 0 -> 2125 bytes public/images/logo.png | Bin 0 -> 3012 bytes public/index.php | 55 + public/robots.txt | 2 + resources/css/app.css | 29 + resources/js/app.js | 1 + resources/js/bootstrap.js | 34 + resources/sass/_variables.scss | 7 + resources/sass/app.scss | 8 + resources/views/admin | 0 resources/views/agent/list.blade.php | 4 + resources/views/auth/login.blade.php | 80 + .../views/auth/passwords/confirm.blade.php | 52 + .../views/auth/passwords/email.blade.php | 50 + .../views/auth/passwords/reset.blade.php | 73 + resources/views/auth/register.blade.php | 139 + resources/views/auth/verify.blade.php | 29 + resources/views/clients/table.blade.php | 43 + resources/views/company/create.blade.php | 27 + .../views/company/details/agency.blade.php | 195 + .../views/company/details/selfemp.blade.php | 186 + resources/views/home.blade.php | 5 + resources/views/layouts/app.blade.php | 97 + resources/views/layouts/guest.blade.php | 53 + resources/views/layouts/pagination.blade.php | 21 + resources/views/left-panel.blade.php | 26 + .../views/livewire/clients-table.blade.php | 30 + .../livewire/create-client-form.blade.php | 143 + resources/views/user/dashboard.blade.php | 213 + .../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 + resources/views/welcome.blade.php | 12 + routes/api.php | 24 + routes/channels.php | 18 + routes/console.php | 19 + routes/web.php | 37 + storage/app/.gitignore | 3 + storage/app/public/.gitignore | 2 + storage/framework/.gitignore | 9 + storage/framework/cache/.gitignore | 3 + storage/framework/cache/data/.gitignore | 2 + storage/framework/sessions/.gitignore | 2 + storage/framework/testing/.gitignore | 2 + storage/framework/views/.gitignore | 2 + storage/logs/.gitignore | 2 + tests/CreatesApplication.php | 21 + tests/Feature/ExampleTest.php | 19 + tests/TestCase.php | 10 + tests/Unit/ExampleTest.php | 16 + vite.config.js | 15 + 156 files changed, 16418 insertions(+) create mode 100644 .editorconfig create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 README.md create mode 100644 app/Actions/Fortify/CreateNewUser.php create mode 100644 app/Actions/Fortify/PasswordValidationRules.php create mode 100644 app/Actions/Fortify/ResetUserPassword.php create mode 100644 app/Actions/Fortify/UpdateUserPassword.php create mode 100644 app/Actions/Fortify/UpdateUserProfileInformation.php create mode 100644 app/Console/Kernel.php create mode 100644 app/Exceptions/Handler.php create mode 100644 app/Http/Controllers/Auth/ConfirmPasswordController.php create mode 100644 app/Http/Controllers/Auth/ForgotPasswordController.php create mode 100644 app/Http/Controllers/Auth/LoginController.php create mode 100644 app/Http/Controllers/Auth/RegisterController.php create mode 100644 app/Http/Controllers/Auth/ResetPasswordController.php create mode 100644 app/Http/Controllers/Auth/VerificationController.php create mode 100644 app/Http/Controllers/ClientsTableController.php create mode 100644 app/Http/Controllers/Company/AgentsTableController.php create mode 100644 app/Http/Controllers/Company/CreateCompanyController.php create mode 100644 app/Http/Controllers/Company/DetailsController.php create mode 100644 app/Http/Controllers/CompanyRequisites.php create mode 100644 app/Http/Controllers/ConfirmClientFromBitrix.php create mode 100644 app/Http/Controllers/Controller.php create mode 100644 app/Http/Controllers/HomeController.php create mode 100644 app/Http/Kernel.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/ValidateSignature.php create mode 100644 app/Http/Middleware/VerifyCsrfToken.php create mode 100644 app/Livewire/ClientsTable.php create mode 100644 app/Livewire/CreateClientForm.php create mode 100644 app/Models/Agent.php create mode 100644 app/Models/BitrixSender.php create mode 100644 app/Models/City.php create mode 100644 app/Models/Company.php create mode 100644 app/Models/Company/CompanyAdmin.php create mode 100644 app/Models/Company/Details.php create mode 100644 app/Models/Complex.php create mode 100644 app/Models/Deal.php create mode 100644 app/Models/Status.php create mode 100644 app/Models/User.php create mode 100644 app/Providers/AppServiceProvider.php create mode 100644 app/Providers/AuthServiceProvider.php create mode 100644 app/Providers/BroadcastServiceProvider.php create mode 100644 app/Providers/EventServiceProvider.php create mode 100644 app/Providers/FortifyServiceProvider.php create mode 100644 app/Providers/RouteServiceProvider.php create mode 100644 artisan create mode 100644 bootstrap/app.php create mode 100644 bootstrap/cache/.gitignore create mode 100644 composer.json create mode 100644 composer.lock create mode 100644 config/app.php create mode 100644 config/auth.php create mode 100644 config/broadcasting.php create mode 100644 config/cache.php create mode 100644 config/cors.php create mode 100644 config/database.php create mode 100644 config/filesystems.php create mode 100644 config/fortify.php create mode 100644 config/hashing.php create mode 100644 config/logging.php create mode 100644 config/mail.php create mode 100644 config/queue.php create mode 100644 config/sanctum.php create mode 100644 config/services.php create mode 100644 config/session.php create mode 100644 config/view.php create mode 100644 database/.gitignore create mode 100644 database/factories/CompanyFactory.php create mode 100644 database/factories/UserFactory.php create mode 100644 database/migrations/2014_10_12_000000_create_users_table.php create mode 100644 database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php create mode 100644 database/migrations/2014_10_12_100000_create_password_resets_table.php create mode 100644 database/migrations/2014_10_12_200000_add_two_factor_columns_to_users_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_06_20_035667_create_cities_table.php create mode 100644 database/migrations/2024_06_30_230001_create_statuses_table.php create mode 100644 database/migrations/2024_07_04_052702_create_complexes_table.php create mode 100644 database/migrations/2024_10_23_141203_create_companies_table.php create mode 100644 database/migrations/2024_10_23_162850_create_agents_table.php create mode 100644 database/migrations/2024_10_23_163951_create_company_admins_table.php create mode 100644 database/migrations/2024_10_23_170000_create_deals_table.php create mode 100644 database/migrations/2024_10_24_062613_create_company_agents_table.php create mode 100644 database/seeders/DatabaseSeeder.php create mode 100644 package-lock.json create mode 100644 package.json create mode 100644 phpunit.xml create mode 100644 public/.htaccess create mode 100644 public/favicon.ico create mode 100644 public/images/DiagnostikaIKT.docx create mode 100644 public/images/icons/document.png create mode 100644 public/images/icons/free-icon-font-user.png create mode 100644 public/images/icons/free-icon-font-user_1.png create mode 100644 public/images/icons/message.png create mode 100644 public/images/icons/user copy.png create mode 100644 public/images/icons/user.png create mode 100644 public/images/icons/user1.png create mode 100644 public/images/logo.png create mode 100644 public/index.php create mode 100644 public/robots.txt create mode 100644 resources/css/app.css create mode 100644 resources/js/app.js create mode 100644 resources/js/bootstrap.js create mode 100644 resources/sass/_variables.scss create mode 100644 resources/sass/app.scss create mode 100644 resources/views/admin create mode 100644 resources/views/agent/list.blade.php create mode 100644 resources/views/auth/login.blade.php create mode 100644 resources/views/auth/passwords/confirm.blade.php create mode 100644 resources/views/auth/passwords/email.blade.php create mode 100644 resources/views/auth/passwords/reset.blade.php create mode 100644 resources/views/auth/register.blade.php create mode 100644 resources/views/auth/verify.blade.php create mode 100644 resources/views/clients/table.blade.php create mode 100644 resources/views/company/create.blade.php create mode 100644 resources/views/company/details/agency.blade.php create mode 100644 resources/views/company/details/selfemp.blade.php create mode 100644 resources/views/home.blade.php create mode 100644 resources/views/layouts/app.blade.php create mode 100644 resources/views/layouts/guest.blade.php create mode 100644 resources/views/layouts/pagination.blade.php create mode 100644 resources/views/left-panel.blade.php create mode 100644 resources/views/livewire/clients-table.blade.php create mode 100644 resources/views/livewire/create-client-form.blade.php create mode 100644 resources/views/user/dashboard.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/welcome.blade.php create mode 100644 routes/api.php create mode 100644 routes/channels.php create mode 100644 routes/console.php create mode 100644 routes/web.php create mode 100755 storage/app/.gitignore create mode 100755 storage/app/public/.gitignore create mode 100755 storage/framework/.gitignore create mode 100755 storage/framework/cache/.gitignore create mode 100755 storage/framework/cache/data/.gitignore create mode 100755 storage/framework/sessions/.gitignore create mode 100755 storage/framework/testing/.gitignore create mode 100755 storage/framework/views/.gitignore create mode 100755 storage/logs/.gitignore create mode 100644 tests/CreatesApplication.php create mode 100644 tests/Feature/ExampleTest.php create mode 100644 tests/TestCase.php create mode 100644 tests/Unit/ExampleTest.php create mode 100644 vite.config.js diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..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/.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/Actions/Fortify/CreateNewUser.php b/app/Actions/Fortify/CreateNewUser.php new file mode 100644 index 0000000..7bf18d0 --- /dev/null +++ b/app/Actions/Fortify/CreateNewUser.php @@ -0,0 +1,40 @@ + $input + */ + public function create(array $input): User + { + Validator::make($input, [ + 'name' => ['required', 'string', 'max:255'], + 'email' => [ + 'required', + 'string', + 'email', + 'max:255', + Rule::unique(User::class), + ], + 'password' => $this->passwordRules(), + ])->validate(); + + return User::create([ + 'name' => $input['name'], + 'email' => $input['email'], + 'password' => Hash::make($input['password']), + ]); + } +} diff --git a/app/Actions/Fortify/PasswordValidationRules.php b/app/Actions/Fortify/PasswordValidationRules.php new file mode 100644 index 0000000..76b19d3 --- /dev/null +++ b/app/Actions/Fortify/PasswordValidationRules.php @@ -0,0 +1,18 @@ +|string> + */ + protected function passwordRules(): array + { + return ['required', 'string', Password::default(), 'confirmed']; + } +} diff --git a/app/Actions/Fortify/ResetUserPassword.php b/app/Actions/Fortify/ResetUserPassword.php new file mode 100644 index 0000000..7a57c50 --- /dev/null +++ b/app/Actions/Fortify/ResetUserPassword.php @@ -0,0 +1,29 @@ + $input + */ + public function reset(User $user, array $input): void + { + Validator::make($input, [ + 'password' => $this->passwordRules(), + ])->validate(); + + $user->forceFill([ + 'password' => Hash::make($input['password']), + ])->save(); + } +} diff --git a/app/Actions/Fortify/UpdateUserPassword.php b/app/Actions/Fortify/UpdateUserPassword.php new file mode 100644 index 0000000..7005639 --- /dev/null +++ b/app/Actions/Fortify/UpdateUserPassword.php @@ -0,0 +1,32 @@ + $input + */ + public function update(User $user, array $input): void + { + Validator::make($input, [ + 'current_password' => ['required', 'string', 'current_password:web'], + 'password' => $this->passwordRules(), + ], [ + 'current_password.current_password' => __('The provided password does not match your current password.'), + ])->validateWithBag('updatePassword'); + + $user->forceFill([ + 'password' => Hash::make($input['password']), + ])->save(); + } +} diff --git a/app/Actions/Fortify/UpdateUserProfileInformation.php b/app/Actions/Fortify/UpdateUserProfileInformation.php new file mode 100644 index 0000000..0930ddf --- /dev/null +++ b/app/Actions/Fortify/UpdateUserProfileInformation.php @@ -0,0 +1,58 @@ + $input + */ + public function update(User $user, array $input): void + { + Validator::make($input, [ + 'name' => ['required', 'string', 'max:255'], + + 'email' => [ + 'required', + 'string', + 'email', + 'max:255', + Rule::unique('users')->ignore($user->id), + ], + ])->validateWithBag('updateProfileInformation'); + + if ($input['email'] !== $user->email && + $user instanceof MustVerifyEmail) { + $this->updateVerifiedUser($user, $input); + } else { + $user->forceFill([ + 'name' => $input['name'], + 'email' => $input['email'], + ])->save(); + } + } + + /** + * Update the given verified user's profile information. + * + * @param array $input + */ + protected function updateVerifiedUser(User $user, array $input): void + { + $user->forceFill([ + 'name' => $input['name'], + 'email' => $input['email'], + 'email_verified_at' => null, + ])->save(); + + $user->sendEmailVerificationNotification(); + } +} 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/Auth/ConfirmPasswordController.php b/app/Http/Controllers/Auth/ConfirmPasswordController.php new file mode 100644 index 0000000..3559954 --- /dev/null +++ b/app/Http/Controllers/Auth/ConfirmPasswordController.php @@ -0,0 +1,39 @@ +middleware('auth'); + } +} diff --git a/app/Http/Controllers/Auth/ForgotPasswordController.php b/app/Http/Controllers/Auth/ForgotPasswordController.php new file mode 100644 index 0000000..465c39c --- /dev/null +++ b/app/Http/Controllers/Auth/ForgotPasswordController.php @@ -0,0 +1,22 @@ +middleware('guest')->except('logout'); + $this->middleware('auth')->only('logout'); + } +} diff --git a/app/Http/Controllers/Auth/RegisterController.php b/app/Http/Controllers/Auth/RegisterController.php new file mode 100644 index 0000000..68f2958 --- /dev/null +++ b/app/Http/Controllers/Auth/RegisterController.php @@ -0,0 +1,94 @@ +middleware('guest'); + } + + /** + * Get a validator for an incoming registration request. + * + * @param array $data + * @return \Illuminate\Contracts\Validation\Validator + */ + protected function validator(array $data) + { + return Validator::make($data, [ + 'name' => ['required', 'string', 'max:255'], + 'email' => ['required', 'string', 'email', 'max:255', 'unique:users'], + 'phone' => ['required', 'string', 'unique:users'], + 'password' => ['required', 'string', 'min:8', 'confirmed'], + 'inn' => ['required', 'unique:companies'] + ]); + } + + /** + * Create a new user instance after a valid registration. + * + * @param array $data + * @return \App\Models\User + */ + protected function create(array $data) + { + $user = User::create([ + 'name' => $data['name'], + 'email' => $data['email'], + 'phone' => $data['phone'], + 'password' => Hash::make($data['password']), + ]); + + $company = Company::create([ + 'name' => $data['name'], + 'inn' => $data['inn'], + 'email' => $data['email'], + 'type' => $data['type'] + ]); + + Agent::create([ + 'user_id' => $user->id, + 'company_id' => $company->id + ]); + + return $user; + } +} diff --git a/app/Http/Controllers/Auth/ResetPasswordController.php b/app/Http/Controllers/Auth/ResetPasswordController.php new file mode 100644 index 0000000..fe965b2 --- /dev/null +++ b/app/Http/Controllers/Auth/ResetPasswordController.php @@ -0,0 +1,29 @@ +middleware('auth'); + $this->middleware('signed')->only('verify'); + $this->middleware('throttle:6,1')->only('verify', 'resend'); + } +} diff --git a/app/Http/Controllers/ClientsTableController.php b/app/Http/Controllers/ClientsTableController.php new file mode 100644 index 0000000..894fe85 --- /dev/null +++ b/app/Http/Controllers/ClientsTableController.php @@ -0,0 +1,24 @@ +user(); + $agent = Agent::where('user_id', $user->id)->first(); + return view( + 'clients.table', [ + 'deals' => $agent->deals, + 'status' => $request->status, + 'cities' => City::all() + ] + ); + } +} diff --git a/app/Http/Controllers/Company/AgentsTableController.php b/app/Http/Controllers/Company/AgentsTableController.php new file mode 100644 index 0000000..64e2ebd --- /dev/null +++ b/app/Http/Controllers/Company/AgentsTableController.php @@ -0,0 +1,23 @@ +user(); + $admin = CompanyAdmin::where('user_id', $user->id); + if ($admin->count()) { + $admin = $admin->first(); + return view('agent.table', [ + 'agents' => Agent::where('company_id', $admin->company_id)->get() + ]); + } else { + return; + } + } +} diff --git a/app/Http/Controllers/Company/CreateCompanyController.php b/app/Http/Controllers/Company/CreateCompanyController.php new file mode 100644 index 0000000..d33d766 --- /dev/null +++ b/app/Http/Controllers/Company/CreateCompanyController.php @@ -0,0 +1,23 @@ +only('name', 'email', 'inn', 'legal_address')); + if ($company) { + return view('company.create'); + } else { + return back()->withInputs(); + } + } +} diff --git a/app/Http/Controllers/Company/DetailsController.php b/app/Http/Controllers/Company/DetailsController.php new file mode 100644 index 0000000..44c0de0 --- /dev/null +++ b/app/Http/Controllers/Company/DetailsController.php @@ -0,0 +1,36 @@ +details; + if ($company->type == 'SELFEMP') { + return view('company.details.selfemp', [ + 'company' => $company, + 'details' => $details + ]); + }; + if ($company->type == 'AGENCY') { + return view('company.details.agency', [ + 'company' => $company, + 'details' => $details + ]); + }; + } + public function store(Request $request, Company $company) { + $company->details = $request->all(); + $company->save(); + return to_route('company.details', [ + 'company' => $company + ]); + } +} diff --git a/app/Http/Controllers/CompanyRequisites.php b/app/Http/Controllers/CompanyRequisites.php new file mode 100644 index 0000000..beae71f --- /dev/null +++ b/app/Http/Controllers/CompanyRequisites.php @@ -0,0 +1,10 @@ +hash)->first(); + if ($request->is_unique == true) { + $deal->is_unique = true; + } else { + $deal->is_unique = false; + }; + } +} diff --git a/app/Http/Controllers/Controller.php b/app/Http/Controllers/Controller.php new file mode 100644 index 0000000..77ec359 --- /dev/null +++ b/app/Http/Controllers/Controller.php @@ -0,0 +1,12 @@ +middleware('auth'); + } + + /** + * Show the application dashboard. + * + * @return \Illuminate\Contracts\Support\Renderable + */ + public function index() + { + return view('user.dashboard'); + } +} diff --git a/app/Http/Kernel.php b/app/Http/Kernel.php new file mode 100644 index 0000000..494c050 --- /dev/null +++ b/app/Http/Kernel.php @@ -0,0 +1,68 @@ + + */ + 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, + ]; +} 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..afc78c4 --- /dev/null +++ b/app/Http/Middleware/RedirectIfAuthenticated.php @@ -0,0 +1,30 @@ +check()) { + return redirect(RouteServiceProvider::HOME); + } + } + + return $next($request); + } +} diff --git a/app/Http/Middleware/TrimStrings.php b/app/Http/Middleware/TrimStrings.php new file mode 100644 index 0000000..88cadca --- /dev/null +++ b/app/Http/Middleware/TrimStrings.php @@ -0,0 +1,19 @@ + + */ + protected $except = [ + 'current_password', + 'password', + 'password_confirmation', + ]; +} diff --git a/app/Http/Middleware/TrustHosts.php b/app/Http/Middleware/TrustHosts.php new file mode 100644 index 0000000..c9c58bd --- /dev/null +++ b/app/Http/Middleware/TrustHosts.php @@ -0,0 +1,20 @@ + + */ + public function hosts(): array + { + return [ + $this->allSubdomainsOfApplicationUrl(), + ]; + } +} diff --git a/app/Http/Middleware/TrustProxies.php b/app/Http/Middleware/TrustProxies.php new file mode 100644 index 0000000..3391630 --- /dev/null +++ b/app/Http/Middleware/TrustProxies.php @@ -0,0 +1,28 @@ +|string|null + */ + protected $proxies; + + /** + * The headers that should be used to detect proxies. + * + * @var int + */ + protected $headers = + Request::HEADER_X_FORWARDED_FOR | + Request::HEADER_X_FORWARDED_HOST | + Request::HEADER_X_FORWARDED_PORT | + Request::HEADER_X_FORWARDED_PROTO | + Request::HEADER_X_FORWARDED_AWS_ELB; +} diff --git a/app/Http/Middleware/ValidateSignature.php b/app/Http/Middleware/ValidateSignature.php new file mode 100644 index 0000000..093bf64 --- /dev/null +++ b/app/Http/Middleware/ValidateSignature.php @@ -0,0 +1,22 @@ + + */ + protected $except = [ + // 'fbclid', + // 'utm_campaign', + // 'utm_content', + // 'utm_medium', + // 'utm_source', + // 'utm_term', + ]; +} diff --git a/app/Http/Middleware/VerifyCsrfToken.php b/app/Http/Middleware/VerifyCsrfToken.php new file mode 100644 index 0000000..9e86521 --- /dev/null +++ b/app/Http/Middleware/VerifyCsrfToken.php @@ -0,0 +1,17 @@ + + */ + protected $except = [ + // + ]; +} diff --git a/app/Livewire/ClientsTable.php b/app/Livewire/ClientsTable.php new file mode 100644 index 0000000..8c5dcfd --- /dev/null +++ b/app/Livewire/ClientsTable.php @@ -0,0 +1,37 @@ +status = $status; + } + public function render() + { + $user = auth()->user(); + $agent = Agent::where('user_id', $user->id)->first(); + $deals = []; + if ($this->status && $this->status=='UNIQUE') { + $deals = Deal::where('agent_id', $agent->id)->where('status', $this->status)->paginate(8); + } else { + $deals = Deal::where('agent_id', $agent->id)->paginate(8); + }; + return view( + 'livewire.clients-table', [ + 'deals' => $deals + ] + ); + } +} diff --git a/app/Livewire/CreateClientForm.php b/app/Livewire/CreateClientForm.php new file mode 100644 index 0000000..d2f7674 --- /dev/null +++ b/app/Livewire/CreateClientForm.php @@ -0,0 +1,147 @@ + 'Необходимо указать имя клиента', + 'client.secondName.required' => 'Необходимо указать фамилию клиента', + 'client.phone.required' => 'Необходимо указать телефон без кода страны "+7" или "8"', + 'client.phone.regex' => 'Телефон должен содержать 10 симвлов без указания кода страны "+7" или "8"', + 'client.phone.unique' => 'Клиент с таким телефоном уже существует' + ]; + protected function rules() { + return [ + 'client.firstName' => ['required', 'string', 'max:255'], + 'client.secondName' => ['required', 'string', 'max:255'], + 'client.phone' => ['required', 'string', 'regex:/\(?([0-9]{3})\)([-]{1})([0-9]{3})([-]{1})([0-9]{4})/i'] + ]; + } + public function mount() { + $userBroker = Agent::where('user_id', auth()->user()->id)->first(); + $this->complexes = Complex::all(); + $this->client = [ + 'firstName' => '', + 'secondName' => '', + 'phone' => '', + 'complexId' => '' + ]; + $this->status = self::NEW; + } + public function update() { + } + + public function updated($propertyName) + { + $this->status = self::NEW; + if ($propertyName == 'client.phone') { + $phone = preg_replace('/[^0-9]/', "", $this->client['phone']); + if (strlen($phone) == 10) + { + $sArea = substr($phone, 0, 3); + $sPrefix = substr($phone, 3, 3); + $sNumber = substr($phone, 6, 4); + $phone = "(" . $sArea . ")-" . $sPrefix . "-" . $sNumber; + $this->client['phone'] = $phone; + } elseif (strlen($this->client['phone']) == 1) { + if ($this->client['phone'] == "8" || $this->client['phone'] == "7" || $this->client['phone'] == "+") { + $this->client['phone'] = null; + } else { + $this->client['phone'] = $phone; + } + } else { + $this->client['phone'] = $phone; + } + } + $this->validateOnly($propertyName); + } + public function render() + { + if ($this->client['firstName'] + && $this->client['secondName'] + && $this->client['phone'] + && $this->client['complexId'] + && $this->status == self::NEW + ) { + $this->status = self::READY; + } + return view('livewire.create-client-form'); + } + public function resetData() { + $this->mount(); + } + public function back() { + $this->status = self::NEW; + } + public function save() { + $validated = $this->validate($this->rules()); + $agent = Agent::where('user_id', auth()->user()->id)->first(); + $phone = '+7' . $this->client['phone']; + $newUser = User::updateOrCreate( + ['phone' => $phone], + [ + 'name' => trim($this->client['firstName'] . ' ' . $this->client['secondName']) + , 'phone' => $phone + ]); + $data = [ + 'agent_id' => $agent->id + , 'client_id' => $newUser->id + , 'complex_id' => $this->client['complexId'] + ]; + $data['confirm_token'] = $this->client['confirmToken'] = hash('sha256', json_encode($data)); + if ($newDeal = Deal::create($data)) { + if ($bitrixId = $this->sendToBitrix($newDeal->id)) { + $newDeal->bitrix_id = $bitrixId; + $newDeal->status = 'MODERATION'; + $newDeal->save(); + $this->result = $bitrixId; + return $this->status = self::SUCCESS; + } else { + $newDeal->delete(); + } + } + return $this->status = self::ERROR; + } + public function sendToBitrix($id) { + $user = auth()->user(); + $agent = Agent::where('user_id', $user->id)->first(); + //dd($agent->user->name); + $agentName = $agent->user->getPartialsName(); + $data = [ + 'CLIENT_FIRST_NAME' => $this->client['firstName'], + 'CLIENT_SECOND_NAME' => $this->client['secondName'], + 'CLIENT_PHONE' => '+7' . $this->client['phone'], + 'BROKER_FIRST_NAME' => $agentName['firstName'], + 'BROKER_SECOND_NAME' => $agentName['secondName'], + 'BROKER_PHONE' => $agent->user->phone, + 'BROKER_INN' => $agent->company->inn, + 'OBJECT_NAME' => Complex::find($this->client['complexId'])->name, + 'CALLBACK_URL' => route('deal.confirm', ['hash' => $this->client['confirmToken']]), + ]; + $sender = new BitrixSender($id, $data); + $response = $sender->send(); + if ($response) { + return $response; + } else { + return false; + } + } +} \ No newline at end of file diff --git a/app/Models/Agent.php b/app/Models/Agent.php new file mode 100644 index 0000000..2cc72ed --- /dev/null +++ b/app/Models/Agent.php @@ -0,0 +1,29 @@ +belongsTo(Company::class); + } + public function user() { + return $this->belongsTo(User::class); + } + + public function deals() { + return $this->hasMany(Deal::class); + } +} diff --git a/app/Models/BitrixSender.php b/app/Models/BitrixSender.php new file mode 100644 index 0000000..604f70c --- /dev/null +++ b/app/Models/BitrixSender.php @@ -0,0 +1,99 @@ +ID = $id; + $data = array_change_key_case($data, CASE_UPPER); + $finalData = []; + $refl = new \ReflectionClass(__CLASS__); + $constants = $refl->getConstants(); + foreach ( $constants as $constName => $constValue ) + { + foreach ($data as $key => $value) + { + if ( $constName == $key ) { + $finalData[$constValue] = $value; + break; + } + } + } + $finalData['NAME'] = $finalData[self::CLIENT_FIRST_NAME] . ' ' . $finalData[self::CLIENT_SECOND_NAME]; + $this->data = $finalData; + return; + } + + public function send() { + $postdata = http_build_query( + [ + 'IBLOCK_TYPE_ID' => $this->IBLOCK_TYPE_ID, + 'IBLOCK_ID' => $this->IBLOCK_ID, + 'ELEMENT_CODE' => $this->ID, + 'FIELDS' => $this->data + ] + ); + + $opts = array( + 'ssl' => array( + 'verify_peer' => false, + 'verify_peername' => false + ), + 'http' => array( + 'method' => 'POST', + 'header' => + 'Content-type: application/x-www-form-urlencoded'."\r\n". + '', + 'content' => $postdata + ) + ); + return true; + try { + $context = stream_context_create($opts); + $result = file_get_contents($this->URL, false, $context); + $result = json_decode($result, $associative = true); + if (array_key_exists('result', $result)) { + return $result['result']; + } else { + return false; + } + } catch (\Exception $e) { + dd($e); + return false; + } + } +} diff --git a/app/Models/City.php b/app/Models/City.php new file mode 100644 index 0000000..fe7fda8 --- /dev/null +++ b/app/Models/City.php @@ -0,0 +1,11 @@ + 'array' + ]; +} diff --git a/app/Models/Company/CompanyAdmin.php b/app/Models/Company/CompanyAdmin.php new file mode 100644 index 0000000..efc9960 --- /dev/null +++ b/app/Models/Company/CompanyAdmin.php @@ -0,0 +1,13 @@ +details) { + if ($company->type == 'SELFEMP') + { + $company->details = $this->emptyForSelfEmp(); + $company->save(); + }; + if ($company->type == 'AGENCY') + { + $company->details = $this->emptyForAgency(); + $company->save(); + } + } + $this->details = $company->details; + } + + private function emptyForSelfEmp() { + $data = [ + 'user' => [ + 'firstName' => '', + 'secondName' => '', + 'email' => '', + 'phone' => '' + ], + 'details' => [ + 'inn' => '', + 'snils' => '', + 'bank' => [ + 'name' => '', + 'bik' => '', + 'cur' => '', + 'pers' => '' + ], + 'address' => '', + 'legal_address' => '' + ] + ]; + return $data; + } + + private function emptyForAgency() { + $data = [ + 'name' => '', + 'fullName' => '', + 'email' => '', + 'details' => [ + 'inn' => '', + 'kpp' => '', + 'ogrn' => '', + 'bank' => [ + 'name' => '', + 'bik' => '', + 'cur' => '', + 'pers' => '' + ], + 'address' => '', + 'legal_address' => '', + 'post_address' => '' + ] + ]; + return $data; + } +} diff --git a/app/Models/Complex.php b/app/Models/Complex.php new file mode 100644 index 0000000..53efa95 --- /dev/null +++ b/app/Models/Complex.php @@ -0,0 +1,15 @@ +belongsTo(\App\Models\City::class, 'city_id'); + } +} diff --git a/app/Models/Deal.php b/app/Models/Deal.php new file mode 100644 index 0000000..4de96ea --- /dev/null +++ b/app/Models/Deal.php @@ -0,0 +1,27 @@ +belongsTo(\App\Models\Complex::class); + } + + public function user() { + return $this->belongsTo(\App\Models\User::class, 'client_id'); + } +} diff --git a/app/Models/Status.php b/app/Models/Status.php new file mode 100644 index 0000000..e67d02a --- /dev/null +++ b/app/Models/Status.php @@ -0,0 +1,17 @@ + + */ + protected $fillable = [ + 'name', + 'phone', + 'email', + 'password', + ]; + + /** + * 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 getPartialsName() { + $name = explode(' ', $this->name); + return [ + 'firstName' => $name[0], + 'secondName' => $name[1], + 'familyName' => $name[2] + ]; + } +} diff --git a/app/Providers/AppServiceProvider.php b/app/Providers/AppServiceProvider.php new file mode 100644 index 0000000..452e6b6 --- /dev/null +++ b/app/Providers/AppServiceProvider.php @@ -0,0 +1,24 @@ + + */ + protected $policies = [ + // + ]; + + /** + * Register any authentication / authorization services. + */ + public function boot(): void + { + // + } +} diff --git a/app/Providers/BroadcastServiceProvider.php b/app/Providers/BroadcastServiceProvider.php new file mode 100644 index 0000000..2be04f5 --- /dev/null +++ b/app/Providers/BroadcastServiceProvider.php @@ -0,0 +1,19 @@ +> + */ + protected $listen = [ + Registered::class => [ + SendEmailVerificationNotification::class, + ], + ]; + + /** + * Register any events for your application. + */ + public function boot(): void + { + // + } + + /** + * Determine if events and listeners should be automatically discovered. + */ + public function shouldDiscoverEvents(): bool + { + return false; + } +} diff --git a/app/Providers/FortifyServiceProvider.php b/app/Providers/FortifyServiceProvider.php new file mode 100644 index 0000000..2d741e3 --- /dev/null +++ b/app/Providers/FortifyServiceProvider.php @@ -0,0 +1,46 @@ +input(Fortify::username())).'|'.$request->ip()); + + return Limit::perMinute(5)->by($throttleKey); + }); + + RateLimiter::for('two-factor', function (Request $request) { + return Limit::perMinute(5)->by($request->session()->get('login.id')); + }); + } +} diff --git a/app/Providers/RouteServiceProvider.php b/app/Providers/RouteServiceProvider.php new file mode 100644 index 0000000..1cf5f15 --- /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/artisan b/artisan new file mode 100644 index 0000000..67a3329 --- /dev/null +++ b/artisan @@ -0,0 +1,53 @@ +#!/usr/bin/env php +make(Illuminate\Contracts\Console\Kernel::class); + +$status = $kernel->handle( + $input = new Symfony\Component\Console\Input\ArgvInput, + new Symfony\Component\Console\Output\ConsoleOutput +); + +/* +|-------------------------------------------------------------------------- +| Shutdown The Application +|-------------------------------------------------------------------------- +| +| Once Artisan has finished running, we will fire off the shutdown events +| so that any final work may be done by the application before we shut +| down the process. This is the last thing to happen to the request. +| +*/ + +$kernel->terminate($input, $status); + +exit($status); diff --git a/bootstrap/app.php b/bootstrap/app.php new file mode 100644 index 0000000..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..b0ab5a7 --- /dev/null +++ b/composer.json @@ -0,0 +1,69 @@ +{ + "name": "laravel/laravel", + "type": "project", + "description": "The skeleton application for the Laravel framework.", + "keywords": ["laravel", "framework"], + "license": "MIT", + "require": { + "php": "^8.1", + "guzzlehttp/guzzle": "^7.2", + "laravel/fortify": "^1.24", + "laravel/framework": "^10.10", + "laravel/sanctum": "^3.3", + "laravel/tinker": "^2.8", + "laravel/ui": "^4.5", + "livewire/livewire": "^3.5" + }, + "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..b4bd22a --- /dev/null +++ b/composer.lock @@ -0,0 +1,8561 @@ +{ + "_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": "d8630be1b4134dfd767005faca33491d", + "packages": [ + { + "name": "bacon/bacon-qr-code", + "version": "v3.0.1", + "source": { + "type": "git", + "url": "https://github.com/Bacon/BaconQrCode.git", + "reference": "f9cc1f52b5a463062251d666761178dbdb6b544f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/f9cc1f52b5a463062251d666761178dbdb6b544f", + "reference": "f9cc1f52b5a463062251d666761178dbdb6b544f", + "shasum": "" + }, + "require": { + "dasprid/enum": "^1.0.3", + "ext-iconv": "*", + "php": "^8.1" + }, + "require-dev": { + "phly/keep-a-changelog": "^2.12", + "phpunit/phpunit": "^10.5.11 || 11.0.4", + "spatie/phpunit-snapshot-assertions": "^5.1.5", + "squizlabs/php_codesniffer": "^3.9" + }, + "suggest": { + "ext-imagick": "to generate QR code images" + }, + "type": "library", + "autoload": { + "psr-4": { + "BaconQrCode\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-2-Clause" + ], + "authors": [ + { + "name": "Ben Scholzen 'DASPRiD'", + "email": "mail@dasprids.de", + "homepage": "https://dasprids.de/", + "role": "Developer" + } + ], + "description": "BaconQrCode is a QR code generator for PHP.", + "homepage": "https://github.com/Bacon/BaconQrCode", + "support": { + "issues": "https://github.com/Bacon/BaconQrCode/issues", + "source": "https://github.com/Bacon/BaconQrCode/tree/v3.0.1" + }, + "time": "2024-10-01T13:55:55+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": "dasprid/enum", + "version": "1.0.6", + "source": { + "type": "git", + "url": "https://github.com/DASPRiD/Enum.git", + "reference": "8dfd07c6d2cf31c8da90c53b83c026c7696dda90" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/8dfd07c6d2cf31c8da90c53b83c026c7696dda90", + "reference": "8dfd07c6d2cf31c8da90c53b83c026c7696dda90", + "shasum": "" + }, + "require": { + "php": ">=7.1 <9.0" + }, + "require-dev": { + "phpunit/phpunit": "^7 || ^8 || ^9 || ^10 || ^11", + "squizlabs/php_codesniffer": "*" + }, + "type": "library", + "autoload": { + "psr-4": { + "DASPRiD\\Enum\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-2-Clause" + ], + "authors": [ + { + "name": "Ben Scholzen 'DASPRiD'", + "email": "mail@dasprids.de", + "homepage": "https://dasprids.de/", + "role": "Developer" + } + ], + "description": "PHP 7.1 enum implementation", + "keywords": [ + "enum", + "map" + ], + "support": { + "issues": "https://github.com/DASPRiD/Enum/issues", + "source": "https://github.com/DASPRiD/Enum/tree/1.0.6" + }, + "time": "2024-08-09T14:30:48+00:00" + }, + { + "name": "dflydev/dot-access-data", + "version": "v3.0.3", + "source": { + "type": "git", + "url": "https://github.com/dflydev/dflydev-dot-access-data.git", + "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f", + "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^0.12.42", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3", + "scrutinizer/ocular": "1.6.0", + "squizlabs/php_codesniffer": "^3.5", + "vimeo/psalm": "^4.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Dflydev\\DotAccessData\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Dragonfly Development Inc.", + "email": "info@dflydev.com", + "homepage": "http://dflydev.com" + }, + { + "name": "Beau Simensen", + "email": "beau@dflydev.com", + "homepage": "http://beausimensen.com" + }, + { + "name": "Carlos Frutos", + "email": "carlos@kiwing.it", + "homepage": "https://github.com/cfrutos" + }, + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com" + } + ], + "description": "Given a deep data structure, access data by dot notation.", + "homepage": "https://github.com/dflydev/dflydev-dot-access-data", + "keywords": [ + "access", + "data", + "dot", + "notation" + ], + "support": { + "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues", + "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3" + }, + "time": "2024-07-08T12:26:09+00:00" + }, + { + "name": "doctrine/inflector", + "version": "2.0.10", + "source": { + "type": "git", + "url": "https://github.com/doctrine/inflector.git", + "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc", + "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^11.0", + "phpstan/phpstan": "^1.8", + "phpstan/phpstan-phpunit": "^1.1", + "phpstan/phpstan-strict-rules": "^1.3", + "phpunit/phpunit": "^8.5 || ^9.5", + "vimeo/psalm": "^4.25 || ^5.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Inflector\\": "lib/Doctrine/Inflector" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.", + "homepage": "https://www.doctrine-project.org/projects/inflector.html", + "keywords": [ + "inflection", + "inflector", + "lowercase", + "manipulation", + "php", + "plural", + "singular", + "strings", + "uppercase", + "words" + ], + "support": { + "issues": "https://github.com/doctrine/inflector/issues", + "source": "https://github.com/doctrine/inflector/tree/2.0.10" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector", + "type": "tidelift" + } + ], + "time": "2024-02-18T20:23:39+00:00" + }, + { + "name": "doctrine/lexer", + "version": "3.0.1", + "source": { + "type": "git", + "url": "https://github.com/doctrine/lexer.git", + "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd", + "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "require-dev": { + "doctrine/coding-standard": "^12", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^10.5", + "psalm/plugin-phpunit": "^0.18.3", + "vimeo/psalm": "^5.21" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Common\\Lexer\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.", + "homepage": "https://www.doctrine-project.org/projects/lexer.html", + "keywords": [ + "annotations", + "docblock", + "lexer", + "parser", + "php" + ], + "support": { + "issues": "https://github.com/doctrine/lexer/issues", + "source": "https://github.com/doctrine/lexer/tree/3.0.1" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer", + "type": "tidelift" + } + ], + "time": "2024-02-05T11:56:58+00:00" + }, + { + "name": "dragonmantank/cron-expression", + "version": "v3.4.0", + "source": { + "type": "git", + "url": "https://github.com/dragonmantank/cron-expression.git", + "reference": "8c784d071debd117328803d86b2097615b457500" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500", + "reference": "8c784d071debd117328803d86b2097615b457500", + "shasum": "" + }, + "require": { + "php": "^7.2|^8.0", + "webmozart/assert": "^1.0" + }, + "replace": { + "mtdowling/cron-expression": "^1.0" + }, + "require-dev": { + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "^1.0", + "phpunit/phpunit": "^7.0|^8.0|^9.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Cron\\": "src/Cron/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Chris Tankersley", + "email": "chris@ctankersley.com", + "homepage": "https://github.com/dragonmantank" + } + ], + "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due", + "keywords": [ + "cron", + "schedule" + ], + "support": { + "issues": "https://github.com/dragonmantank/cron-expression/issues", + "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0" + }, + "funding": [ + { + "url": "https://github.com/dragonmantank", + "type": "github" + } + ], + "time": "2024-10-09T13:47:03+00:00" + }, + { + "name": "egulias/email-validator", + "version": "4.0.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/fortify", + "version": "v1.24.5", + "source": { + "type": "git", + "url": "https://github.com/laravel/fortify.git", + "reference": "bba8c2ecc3fcc78e8632e0d719ae10bef6343eef" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/fortify/zipball/bba8c2ecc3fcc78e8632e0d719ae10bef6343eef", + "reference": "bba8c2ecc3fcc78e8632e0d719ae10bef6343eef", + "shasum": "" + }, + "require": { + "bacon/bacon-qr-code": "^3.0", + "ext-json": "*", + "illuminate/support": "^10.0|^11.0", + "php": "^8.1", + "pragmarx/google2fa": "^8.0", + "symfony/console": "^6.0|^7.0" + }, + "require-dev": { + "mockery/mockery": "^1.0", + "orchestra/testbench": "^8.16|^9.0", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^10.4" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + }, + "laravel": { + "providers": [ + "Laravel\\Fortify\\FortifyServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Laravel\\Fortify\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Backend controllers and scaffolding for Laravel authentication.", + "keywords": [ + "auth", + "laravel" + ], + "support": { + "issues": "https://github.com/laravel/fortify/issues", + "source": "https://github.com/laravel/fortify" + }, + "time": "2024-11-12T14:51:12+00:00" + }, + { + "name": "laravel/framework", + "version": "v10.48.24", + "source": { + "type": "git", + "url": "https://github.com/laravel/framework.git", + "reference": "2add73f71b88fc45ee1d4f3421f22366247f6155" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/framework/zipball/2add73f71b88fc45ee1d4f3421f22366247f6155", + "reference": "2add73f71b88fc45ee1d4f3421f22366247f6155", + "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.4.7", + "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-20T15:57:07+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": "laravel/ui", + "version": "v4.5.2", + "source": { + "type": "git", + "url": "https://github.com/laravel/ui.git", + "reference": "c75396f63268c95b053c8e4814eb70e0875e9628" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/ui/zipball/c75396f63268c95b053c8e4814eb70e0875e9628", + "reference": "c75396f63268c95b053c8e4814eb70e0875e9628", + "shasum": "" + }, + "require": { + "illuminate/console": "^9.21|^10.0|^11.0", + "illuminate/filesystem": "^9.21|^10.0|^11.0", + "illuminate/support": "^9.21|^10.0|^11.0", + "illuminate/validation": "^9.21|^10.0|^11.0", + "php": "^8.0", + "symfony/console": "^6.0|^7.0" + }, + "require-dev": { + "orchestra/testbench": "^7.35|^8.15|^9.0", + "phpunit/phpunit": "^9.3|^10.4|^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.x-dev" + }, + "laravel": { + "providers": [ + "Laravel\\Ui\\UiServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Laravel\\Ui\\": "src/", + "Illuminate\\Foundation\\Auth\\": "auth-backend/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Laravel UI utilities and presets.", + "keywords": [ + "laravel", + "ui" + ], + "support": { + "source": "https://github.com/laravel/ui/tree/v4.5.2" + }, + "time": "2024-05-08T18:07:10+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.12", + "source": { + "type": "git", + "url": "https://github.com/livewire/livewire.git", + "reference": "3c8d1f9d7d9098aaea663093ae168f2d5d2ae73d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/livewire/livewire/zipball/3c8d1f9d7d9098aaea663093ae168f2d5d2ae73d", + "reference": "3c8d1f9d7d9098aaea663093ae168f2d5d2ae73d", + "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": { + "providers": [ + "Livewire\\LivewireServiceProvider" + ], + "aliases": { + "Livewire": "Livewire\\Livewire" + } + } + }, + "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.12" + }, + "funding": [ + { + "url": "https://github.com/livewire", + "type": "github" + } + ], + "time": "2024-10-15T19:35:06+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": "paragonie/constant_time_encoding", + "version": "v3.0.0", + "source": { + "type": "git", + "url": "https://github.com/paragonie/constant_time_encoding.git", + "reference": "df1e7fde177501eee2037dd159cf04f5f301a512" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512", + "reference": "df1e7fde177501eee2037dd159cf04f5f301a512", + "shasum": "" + }, + "require": { + "php": "^8" + }, + "require-dev": { + "phpunit/phpunit": "^9", + "vimeo/psalm": "^4|^5" + }, + "type": "library", + "autoload": { + "psr-4": { + "ParagonIE\\ConstantTime\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Paragon Initiative Enterprises", + "email": "security@paragonie.com", + "homepage": "https://paragonie.com", + "role": "Maintainer" + }, + { + "name": "Steve 'Sc00bz' Thomas", + "email": "steve@tobtu.com", + "homepage": "https://www.tobtu.com", + "role": "Original Developer" + } + ], + "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)", + "keywords": [ + "base16", + "base32", + "base32_decode", + "base32_encode", + "base64", + "base64_decode", + "base64_encode", + "bin2hex", + "encoding", + "hex", + "hex2bin", + "rfc4648" + ], + "support": { + "email": "info@paragonie.com", + "issues": "https://github.com/paragonie/constant_time_encoding/issues", + "source": "https://github.com/paragonie/constant_time_encoding" + }, + "time": "2024-05-08T12:36:18+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": "pragmarx/google2fa", + "version": "v8.0.3", + "source": { + "type": "git", + "url": "https://github.com/antonioribeiro/google2fa.git", + "reference": "6f8d87ebd5afbf7790bde1ffc7579c7c705e0fad" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/antonioribeiro/google2fa/zipball/6f8d87ebd5afbf7790bde1ffc7579c7c705e0fad", + "reference": "6f8d87ebd5afbf7790bde1ffc7579c7c705e0fad", + "shasum": "" + }, + "require": { + "paragonie/constant_time_encoding": "^1.0|^2.0|^3.0", + "php": "^7.1|^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^1.9", + "phpunit/phpunit": "^7.5.15|^8.5|^9.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "PragmaRX\\Google2FA\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Antonio Carlos Ribeiro", + "email": "acr@antoniocarlosribeiro.com", + "role": "Creator & Designer" + } + ], + "description": "A One Time Password Authentication package, compatible with Google Authenticator.", + "keywords": [ + "2fa", + "Authentication", + "Two Factor Authentication", + "google2fa" + ], + "support": { + "issues": "https://github.com/antonioribeiro/google2fa/issues", + "source": "https://github.com/antonioribeiro/google2fa/tree/v8.0.3" + }, + "time": "2024-09-05T11:56:40+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.4", + "source": { + "type": "git", + "url": "https://github.com/bobthecow/psysh.git", + "reference": "2fd717afa05341b4f8152547f142cd2f130f6818" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/2fd717afa05341b4f8152547f142cd2f130f6818", + "reference": "2fd717afa05341b4f8152547f142cd2f130f6818", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-tokenizer": "*", + "nikic/php-parser": "^5.0 || ^4.0", + "php": "^8.0 || ^7.4", + "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4", + "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4" + }, + "conflict": { + "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.2" + }, + "suggest": { + "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)", + "ext-pdo-sqlite": "The doc command requires SQLite to work.", + "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well." + }, + "bin": [ + "bin/psysh" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "0.12.x-dev" + }, + "bamarni-bin": { + "bin-links": false, + "forward-command": false + } + }, + "autoload": { + "files": [ + "src/functions.php" + ], + "psr-4": { + "Psy\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Justin Hileman", + "email": "justin@justinhileman.info", + "homepage": "http://justinhileman.com" + } + ], + "description": "An interactive shell for modern PHP.", + "homepage": "http://psysh.org", + "keywords": [ + "REPL", + "console", + "interactive", + "shell" + ], + "support": { + "issues": "https://github.com/bobthecow/psysh/issues", + "source": "https://github.com/bobthecow/psysh/tree/v0.12.4" + }, + "time": "2024-06-10T01:18:23+00:00" + }, + { + "name": "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": "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": "v7.1.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/css-selector.git", + "reference": "4aa4f6b3d6749c14d3aa815eef8226632e7bbc66" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/4aa4f6b3d6749c14d3aa815eef8226632e7bbc66", + "reference": "4aa4f6b3d6749c14d3aa815eef8226632e7bbc66", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\CssSelector\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Jean-François Simon", + "email": "jeanfrancois.simon@sensiolabs.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Converts CSS selectors to XPath expressions", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/css-selector/tree/v7.1.6" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:20:29+00:00" + }, + { + "name": "symfony/deprecation-contracts", + "version": "v3.5.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/deprecation-contracts.git", + "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1", + "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.5-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "files": [ + "function.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "A generic function and convention to trigger deprecation notices", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-04-18T09:32:20+00:00" + }, + { + "name": "symfony/error-handler", + "version": "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": "v7.1.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "87254c78dd50721cfd015b62277a8281c5589702" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/87254c78dd50721cfd015b62277a8281c5589702", + "reference": "87254c78dd50721cfd015b62277a8281c5589702", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/event-dispatcher-contracts": "^2.5|^3" + }, + "conflict": { + "symfony/dependency-injection": "<6.4", + "symfony/service-contracts": "<2.5" + }, + "provide": { + "psr/event-dispatcher-implementation": "1.0", + "symfony/event-dispatcher-implementation": "2.0|3.0" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/error-handler": "^6.4|^7.0", + "symfony/expression-language": "^6.4|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/stopwatch": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\EventDispatcher\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/event-dispatcher/tree/v7.1.6" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:20:29+00:00" + }, + { + "name": "symfony/event-dispatcher-contracts", + "version": "v3.5.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher-contracts.git", + "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50", + "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/event-dispatcher": "^1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.5-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\EventDispatcher\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to dispatching event", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-04-18T09:32:20+00:00" + }, + { + "name": "symfony/finder", + "version": "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.15", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-foundation.git", + "reference": "9b3165eb2f04aeaa1a5a2cfef73e63fe3b22dff6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/9b3165eb2f04aeaa1a5a2cfef73e63fe3b22dff6", + "reference": "9b3165eb2f04aeaa1a5a2cfef73e63fe3b22dff6", + "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.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-08T16:09:24+00:00" + }, + { + "name": "symfony/http-kernel", + "version": "v6.4.15", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-kernel.git", + "reference": "b002a5b3947653c5aee3adac2a024ea615fd3ff5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/b002a5b3947653c5aee3adac2a024ea615fd3ff5", + "reference": "b002a5b3947653c5aee3adac2a024ea615fd3ff5", + "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.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:57:37+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": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Ctype\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Gert de Pagter", + "email": "BackEndTea@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for ctype functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "ctype", + "polyfill", + "portable" + ], + "support": { + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.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": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Grapheme\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's grapheme_* functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "grapheme", + "intl", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.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": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Normalizer\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's Normalizer class and related functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "intl", + "normalizer", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.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": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Mbstring\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for the Mbstring extension", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "mbstring", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.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": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php80\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ion Bazan", + "email": "ion.bazan@gmail.com" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php80/tree/v1.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.13", + "source": { + "type": "git", + "url": "https://github.com/symfony/routing.git", + "reference": "640a74250d13f9c30d5ca045b6aaaabcc8215278" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/routing/zipball/640a74250d13f9c30d5ca045b6aaaabcc8215278", + "reference": "640a74250d13f9c30d5ca045b6aaaabcc8215278", + "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.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/service-contracts", + "version": "v3.5.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/service-contracts.git", + "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f", + "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/container": "^1.1|^2.0", + "symfony/deprecation-contracts": "^2.5|^3" + }, + "conflict": { + "ext-psr": "<1.1|>=2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.5-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\Service\\": "" + }, + "exclude-from-classmap": [ + "/Test/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to writing services", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/service-contracts/tree/v3.5.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-04-18T09:32:20+00:00" + }, + { + "name": "symfony/string", + "version": "v7.1.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/string.git", + "reference": "591ebd41565f356fcd8b090fe64dbb5878f50281" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/string/zipball/591ebd41565f356fcd8b090fe64dbb5878f50281", + "reference": "591ebd41565f356fcd8b090fe64dbb5878f50281", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-intl-grapheme": "~1.0", + "symfony/polyfill-intl-normalizer": "~1.0", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/translation-contracts": "<2.5" + }, + "require-dev": { + "symfony/emoji": "^7.1", + "symfony/error-handler": "^6.4|^7.0", + "symfony/http-client": "^6.4|^7.0", + "symfony/intl": "^6.4|^7.0", + "symfony/translation-contracts": "^2.5|^3.0", + "symfony/var-exporter": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "files": [ + "Resources/functions.php" + ], + "psr-4": { + "Symfony\\Component\\String\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way", + "homepage": "https://symfony.com", + "keywords": [ + "grapheme", + "i18n", + "string", + "unicode", + "utf-8", + "utf8" + ], + "support": { + "source": "https://github.com/symfony/string/tree/v7.1.8" + }, + "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:21+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.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation-contracts.git", + "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a", + "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.5-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\Translation\\": "" + }, + "exclude-from-classmap": [ + "/Test/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to translation", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-04-18T09:32:20+00:00" + }, + { + "name": "symfony/uid", + "version": "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.2", + "source": { + "type": "git", + "url": "https://github.com/laravel/pint.git", + "reference": "f55daaf7eb6c2f49ddf6702fb42e3091c64d8a64" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/pint/zipball/f55daaf7eb6c2f49ddf6702fb42e3091c64d8a64", + "reference": "f55daaf7eb6c2f49ddf6702fb42e3091c64d8a64", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-mbstring": "*", + "ext-tokenizer": "*", + "ext-xml": "*", + "php": "^8.1.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.64.0", + "illuminate/view": "^10.48.20", + "larastan/larastan": "^2.9.8", + "laravel-zero/framework": "^10.4.0", + "mockery/mockery": "^1.6.12", + "nunomaduro/termwind": "^1.15.1", + "pestphp/pest": "^2.35.1" + }, + "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-20T09:33:46+00:00" + }, + { + "name": "laravel/sail", + "version": "v1.38.0", + "source": { + "type": "git", + "url": "https://github.com/laravel/sail.git", + "reference": "d17abae06661dd6c46d13627b1683a2924259145" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/sail/zipball/d17abae06661dd6c46d13627b1683a2924259145", + "reference": "d17abae06661dd6c46d13627b1683a2924259145", + "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-11T20:16:51+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": "v7.1.6", + "source": { + "type": "git", + "url": "https://github.com/symfony/yaml.git", + "reference": "3ced3f29e4f0d6bce2170ff26719f1fe9aacc671" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/yaml/zipball/3ced3f29e4f0d6bce2170ff26719f1fe9aacc671", + "reference": "3ced3f29e4f0d6bce2170ff26719f1fe9aacc671", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-ctype": "^1.8" + }, + "conflict": { + "symfony/console": "<6.4" + }, + "require-dev": { + "symfony/console": "^6.4|^7.0" + }, + "bin": [ + "Resources/bin/yaml-lint" + ], + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Yaml\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Loads and dumps YAML files", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/yaml/tree/v7.1.6" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:20:29+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..f32048a --- /dev/null +++ b/config/app.php @@ -0,0 +1,190 @@ + 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' => 'UTC', + + /* + |-------------------------------------------------------------------------- + | Application Locale Configuration + |-------------------------------------------------------------------------- + | + | The application locale determines the default locale that will be used + | by the translation service provider. You are free to set this value + | to any of the locales which will be supported by the application. + | + */ + + 'locale' => 'en', + + /* + |-------------------------------------------------------------------------- + | Application Fallback Locale + |-------------------------------------------------------------------------- + | + | The fallback locale determines the locale to use when the current one + | is not available. You may change the value to correspond to any of + | the language folders that are provided through your application. + | + */ + + 'fallback_locale' => 'en', + + /* + |-------------------------------------------------------------------------- + | Faker Locale + |-------------------------------------------------------------------------- + | + | This locale will be used by the Faker PHP library when generating fake + | data for your database seeds. For example, this will be used to get + | localized telephone numbers, street address information and more. + | + */ + + 'faker_locale' => 'en_US', + + /* + |-------------------------------------------------------------------------- + | Encryption Key + |-------------------------------------------------------------------------- + | + | This key is used by the Illuminate encrypter service and should be set + | to a random, 32 character string, otherwise these encrypted strings + | will not be safe. Please do this before deploying an application! + | + */ + + 'key' => env('APP_KEY'), + + 'cipher' => 'AES-256-CBC', + + /* + |-------------------------------------------------------------------------- + | Maintenance Mode Driver + |-------------------------------------------------------------------------- + | + | These configuration options determine the driver used to determine and + | manage Laravel's "maintenance mode" status. The "cache" driver will + | allow maintenance mode to be controlled across multiple machines. + | + | Supported drivers: "file", "cache" + | + */ + + 'maintenance' => [ + 'driver' => 'file', + // 'store' => 'redis', + ], + + /* + |-------------------------------------------------------------------------- + | Autoloaded Service Providers + |-------------------------------------------------------------------------- + | + | The service providers listed here will be automatically loaded on the + | request to your application. Feel free to add your own services to + | this array to grant expanded functionality to your applications. + | + */ + + 'providers' => ServiceProvider::defaultProviders()->merge([ + /* + * Package Service Providers... + */ + + /* + * Application Service Providers... + */ + App\Providers\AppServiceProvider::class, + App\Providers\AuthServiceProvider::class, + // App\Providers\BroadcastServiceProvider::class, + App\Providers\EventServiceProvider::class, + App\Providers\RouteServiceProvider::class, + App\Providers\FortifyServiceProvider::class, + + ])->toArray(), + + /* + |-------------------------------------------------------------------------- + | Class Aliases + |-------------------------------------------------------------------------- + | + | This array of class aliases will be registered when this application + | is started. However, feel free to register as many as you wish as + | the aliases are "lazy" loaded so they don't hinder performance. + | + */ + + 'aliases' => Facade::defaultAliases()->merge([ + // 'Example' => App\Facades\Example::class, + ])->toArray(), + +]; diff --git a/config/auth.php b/config/auth.php new file mode 100644 index 0000000..9548c15 --- /dev/null +++ b/config/auth.php @@ -0,0 +1,115 @@ + [ + 'guard' => 'web', + 'passwords' => 'users', + ], + + /* + |-------------------------------------------------------------------------- + | Authentication Guards + |-------------------------------------------------------------------------- + | + | Next, you may define every authentication guard for your application. + | Of course, a great default configuration has been defined for you + | here which uses session storage and the Eloquent user provider. + | + | All authentication drivers have a user provider. This defines how the + | users are actually retrieved out of your database or other storage + | mechanisms used by this application to persist your user's data. + | + | Supported: "session" + | + */ + + 'guards' => [ + 'web' => [ + 'driver' => 'session', + 'provider' => 'users', + ], + ], + + /* + |-------------------------------------------------------------------------- + | User Providers + |-------------------------------------------------------------------------- + | + | All authentication drivers have a user provider. This defines how the + | users are actually retrieved out of your database or other storage + | mechanisms used by this application to persist your user's data. + | + | If you have multiple user tables or models you may configure multiple + | sources which represent each model / table. These sources may then + | be assigned to any extra authentication guards you have defined. + | + | Supported: "database", "eloquent" + | + */ + + 'providers' => [ + 'users' => [ + 'driver' => 'eloquent', + 'model' => App\Models\User::class, + ], + + // 'users' => [ + // 'driver' => 'database', + // 'table' => 'users', + // ], + ], + + /* + |-------------------------------------------------------------------------- + | Resetting Passwords + |-------------------------------------------------------------------------- + | + | You may specify multiple password reset configurations if you have more + | than one user table or model in the application and you want to have + | separate password reset settings based on the specific user types. + | + | The expiry time is the number of minutes that each reset token will be + | considered valid. This security feature keeps tokens short-lived so + | they have less time to be guessed. You may change this as needed. + | + | The throttle setting is the number of seconds a user must wait before + | generating more password reset tokens. This prevents the user from + | quickly generating a very large amount of password reset tokens. + | + */ + + 'passwords' => [ + 'users' => [ + 'provider' => 'users', + 'table' => 'password_reset_tokens', + 'expire' => 60, + 'throttle' => 60, + ], + ], + + /* + |-------------------------------------------------------------------------- + | Password Confirmation Timeout + |-------------------------------------------------------------------------- + | + | Here you may define the amount of seconds before a password confirmation + | times out and the user is prompted to re-enter their password via the + | confirmation screen. By default, the timeout lasts for three hours. + | + */ + + 'password_timeout' => 10800, + +]; diff --git a/config/broadcasting.php b/config/broadcasting.php new file mode 100644 index 0000000..2410485 --- /dev/null +++ b/config/broadcasting.php @@ -0,0 +1,71 @@ + env('BROADCAST_DRIVER', 'null'), + + /* + |-------------------------------------------------------------------------- + | Broadcast Connections + |-------------------------------------------------------------------------- + | + | Here you may define all of the broadcast connections that will be used + | to broadcast events to other systems or over websockets. Samples of + | each available type of connection are provided inside this array. + | + */ + + 'connections' => [ + + 'pusher' => [ + 'driver' => 'pusher', + 'key' => env('PUSHER_APP_KEY'), + 'secret' => env('PUSHER_APP_SECRET'), + 'app_id' => env('PUSHER_APP_ID'), + 'options' => [ + 'cluster' => env('PUSHER_APP_CLUSTER'), + 'host' => env('PUSHER_HOST') ?: 'api-'.env('PUSHER_APP_CLUSTER', 'mt1').'.pusher.com', + 'port' => env('PUSHER_PORT', 443), + 'scheme' => env('PUSHER_SCHEME', 'https'), + 'encrypted' => true, + 'useTLS' => env('PUSHER_SCHEME', 'https') === 'https', + ], + 'client_options' => [ + // Guzzle client options: https://docs.guzzlephp.org/en/stable/request-options.html + ], + ], + + 'ably' => [ + 'driver' => 'ably', + 'key' => env('ABLY_KEY'), + ], + + 'redis' => [ + 'driver' => 'redis', + 'connection' => 'default', + ], + + 'log' => [ + 'driver' => 'log', + ], + + 'null' => [ + 'driver' => 'null', + ], + + ], + +]; diff --git a/config/cache.php b/config/cache.php new file mode 100644 index 0000000..d4171e2 --- /dev/null +++ b/config/cache.php @@ -0,0 +1,111 @@ + env('CACHE_DRIVER', 'file'), + + /* + |-------------------------------------------------------------------------- + | Cache Stores + |-------------------------------------------------------------------------- + | + | Here you may define all of the cache "stores" for your application as + | well as their drivers. You may even define multiple stores for the + | same cache driver to group types of items stored in your caches. + | + | Supported drivers: "apc", "array", "database", "file", + | "memcached", "redis", "dynamodb", "octane", "null" + | + */ + + 'stores' => [ + + 'apc' => [ + 'driver' => 'apc', + ], + + 'array' => [ + 'driver' => 'array', + 'serialize' => false, + ], + + 'database' => [ + 'driver' => 'database', + 'table' => 'cache', + 'connection' => null, + 'lock_connection' => null, + ], + + 'file' => [ + 'driver' => 'file', + 'path' => storage_path('framework/cache/data'), + 'lock_path' => storage_path('framework/cache/data'), + ], + + 'memcached' => [ + 'driver' => 'memcached', + 'persistent_id' => env('MEMCACHED_PERSISTENT_ID'), + 'sasl' => [ + env('MEMCACHED_USERNAME'), + env('MEMCACHED_PASSWORD'), + ], + 'options' => [ + // Memcached::OPT_CONNECT_TIMEOUT => 2000, + ], + 'servers' => [ + [ + 'host' => env('MEMCACHED_HOST', '127.0.0.1'), + 'port' => env('MEMCACHED_PORT', 11211), + 'weight' => 100, + ], + ], + ], + + 'redis' => [ + 'driver' => 'redis', + 'connection' => 'cache', + 'lock_connection' => 'default', + ], + + 'dynamodb' => [ + 'driver' => 'dynamodb', + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), + 'table' => env('DYNAMODB_CACHE_TABLE', 'cache'), + 'endpoint' => env('DYNAMODB_ENDPOINT'), + ], + + 'octane' => [ + 'driver' => 'octane', + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Cache Key Prefix + |-------------------------------------------------------------------------- + | + | When utilizing the APC, database, memcached, Redis, or DynamoDB cache + | stores there might be other applications using the same cache. For + | that reason, you may prefix every cache key to avoid collisions. + | + */ + + 'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache_'), + +]; diff --git a/config/cors.php b/config/cors.php new file mode 100644 index 0000000..8a39e6d --- /dev/null +++ b/config/cors.php @@ -0,0 +1,34 @@ + ['api/*', 'sanctum/csrf-cookie'], + + 'allowed_methods' => ['*'], + + 'allowed_origins' => ['*'], + + 'allowed_origins_patterns' => [], + + 'allowed_headers' => ['*'], + + 'exposed_headers' => [], + + 'max_age' => 0, + + 'supports_credentials' => false, + +]; diff --git a/config/database.php b/config/database.php new file mode 100644 index 0000000..137ad18 --- /dev/null +++ b/config/database.php @@ -0,0 +1,151 @@ + env('DB_CONNECTION', 'mysql'), + + /* + |-------------------------------------------------------------------------- + | Database Connections + |-------------------------------------------------------------------------- + | + | Here are each of the database connections setup for your application. + | Of course, examples of configuring each database platform that is + | supported by Laravel is shown below to make development simple. + | + | + | All database work in Laravel is done through the PHP PDO facilities + | so make sure you have the driver for your particular database of + | choice installed on your machine before you begin development. + | + */ + + 'connections' => [ + + 'sqlite' => [ + 'driver' => 'sqlite', + 'url' => env('DATABASE_URL'), + 'database' => env('DB_DATABASE', database_path('database.sqlite')), + 'prefix' => '', + 'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true), + ], + + 'mysql' => [ + 'driver' => 'mysql', + 'url' => env('DATABASE_URL'), + 'host' => env('DB_HOST', '127.0.0.1'), + 'port' => env('DB_PORT', '3306'), + 'database' => env('DB_DATABASE', 'forge'), + 'username' => env('DB_USERNAME', 'forge'), + 'password' => env('DB_PASSWORD', ''), + 'unix_socket' => env('DB_SOCKET', ''), + 'charset' => 'utf8mb4', + 'collation' => 'utf8mb4_unicode_ci', + 'prefix' => '', + 'prefix_indexes' => true, + 'strict' => true, + 'engine' => null, + 'options' => extension_loaded('pdo_mysql') ? array_filter([ + PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'), + ]) : [], + ], + + 'pgsql' => [ + 'driver' => 'pgsql', + 'url' => env('DATABASE_URL'), + 'host' => env('DB_HOST', '127.0.0.1'), + 'port' => env('DB_PORT', '5432'), + 'database' => env('DB_DATABASE', 'forge'), + 'username' => env('DB_USERNAME', 'forge'), + 'password' => env('DB_PASSWORD', ''), + 'charset' => 'utf8', + 'prefix' => '', + 'prefix_indexes' => true, + 'search_path' => 'public', + 'sslmode' => 'prefer', + ], + + 'sqlsrv' => [ + 'driver' => 'sqlsrv', + 'url' => env('DATABASE_URL'), + 'host' => env('DB_HOST', 'localhost'), + 'port' => env('DB_PORT', '1433'), + 'database' => env('DB_DATABASE', 'forge'), + 'username' => env('DB_USERNAME', 'forge'), + 'password' => env('DB_PASSWORD', ''), + 'charset' => 'utf8', + 'prefix' => '', + 'prefix_indexes' => true, + // 'encrypt' => env('DB_ENCRYPT', 'yes'), + // 'trust_server_certificate' => env('DB_TRUST_SERVER_CERTIFICATE', 'false'), + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Migration Repository Table + |-------------------------------------------------------------------------- + | + | This table keeps track of all the migrations that have already run for + | your application. Using this information, we can determine which of + | the migrations on disk haven't actually been run in the database. + | + */ + + 'migrations' => 'migrations', + + /* + |-------------------------------------------------------------------------- + | Redis Databases + |-------------------------------------------------------------------------- + | + | Redis is an open source, fast, and advanced key-value store that also + | provides a richer body of commands than a typical key-value system + | such as APC or Memcached. Laravel makes it easy to dig right in. + | + */ + + 'redis' => [ + + 'client' => env('REDIS_CLIENT', 'phpredis'), + + 'options' => [ + 'cluster' => env('REDIS_CLUSTER', 'redis'), + 'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'), + ], + + 'default' => [ + 'url' => env('REDIS_URL'), + 'host' => env('REDIS_HOST', '127.0.0.1'), + 'username' => env('REDIS_USERNAME'), + 'password' => env('REDIS_PASSWORD'), + 'port' => env('REDIS_PORT', '6379'), + 'database' => env('REDIS_DB', '0'), + ], + + 'cache' => [ + 'url' => env('REDIS_URL'), + 'host' => env('REDIS_HOST', '127.0.0.1'), + 'username' => env('REDIS_USERNAME'), + 'password' => env('REDIS_PASSWORD'), + 'port' => env('REDIS_PORT', '6379'), + 'database' => env('REDIS_CACHE_DB', '1'), + ], + + ], + +]; diff --git a/config/filesystems.php b/config/filesystems.php new file mode 100644 index 0000000..dcf6bed --- /dev/null +++ b/config/filesystems.php @@ -0,0 +1,77 @@ + 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'), + public_path('lk') => storage_path('public'), + ], + +]; diff --git a/config/fortify.php b/config/fortify.php new file mode 100644 index 0000000..cfe8272 --- /dev/null +++ b/config/fortify.php @@ -0,0 +1,159 @@ + 'web', + + /* + |-------------------------------------------------------------------------- + | Fortify Password Broker + |-------------------------------------------------------------------------- + | + | Here you may specify which password broker Fortify can use when a user + | is resetting their password. This configured value should match one + | of your password brokers setup in your "auth" configuration file. + | + */ + + 'passwords' => 'users', + + /* + |-------------------------------------------------------------------------- + | Username / Email + |-------------------------------------------------------------------------- + | + | This value defines which model attribute should be considered as your + | application's "username" field. Typically, this might be the email + | address of the users but you are free to change this value here. + | + | Out of the box, Fortify expects forgot password and reset password + | requests to have a field named 'email'. If the application uses + | another name for the field you may define it below as needed. + | + */ + + 'username' => 'email', + + 'email' => 'email', + + /* + |-------------------------------------------------------------------------- + | Lowercase Usernames + |-------------------------------------------------------------------------- + | + | This value defines whether usernames should be lowercased before saving + | them in the database, as some database system string fields are case + | sensitive. You may disable this for your application if necessary. + | + */ + + 'lowercase_usernames' => true, + + /* + |-------------------------------------------------------------------------- + | Home Path + |-------------------------------------------------------------------------- + | + | Here you may configure the path where users will get redirected during + | authentication or password reset when the operations are successful + | and the user is authenticated. You are free to change this value. + | + */ + + 'home' => '/home', + + /* + |-------------------------------------------------------------------------- + | Fortify Routes Prefix / Subdomain + |-------------------------------------------------------------------------- + | + | Here you may specify which prefix Fortify will assign to all the routes + | that it registers with the application. If necessary, you may change + | subdomain under which all of the Fortify routes will be available. + | + */ + + 'prefix' => '', + + 'domain' => null, + + /* + |-------------------------------------------------------------------------- + | Fortify Routes Middleware + |-------------------------------------------------------------------------- + | + | Here you may specify which middleware Fortify will assign to the routes + | that it registers with the application. If necessary, you may change + | these middleware but typically this provided default is preferred. + | + */ + + 'middleware' => ['web'], + + /* + |-------------------------------------------------------------------------- + | Rate Limiting + |-------------------------------------------------------------------------- + | + | By default, Fortify will throttle logins to five requests per minute for + | every email and IP address combination. However, if you would like to + | specify a custom rate limiter to call then you may specify it here. + | + */ + + 'limiters' => [ + 'login' => 'login', + 'two-factor' => 'two-factor', + ], + + /* + |-------------------------------------------------------------------------- + | Register View Routes + |-------------------------------------------------------------------------- + | + | Here you may specify if the routes returning views should be disabled as + | you may not need them when building your own application. This may be + | especially true if you're writing a custom single-page application. + | + */ + + 'views' => true, + + /* + |-------------------------------------------------------------------------- + | Features + |-------------------------------------------------------------------------- + | + | Some of the Fortify features are optional. You may disable the features + | by removing them from this array. You're free to only remove some of + | these features or you can even remove all of these if you need to. + | + */ + + 'features' => [ + Features::registration(), + Features::resetPasswords(), + // Features::emailVerification(), + Features::updateProfileInformation(), + Features::updatePasswords(), + Features::twoFactorAuthentication([ + 'confirm' => true, + 'confirmPassword' => true, + // 'window' => 0, + ]), + ], + +]; diff --git a/config/hashing.php b/config/hashing.php new file mode 100644 index 0000000..0e8a0bb --- /dev/null +++ b/config/hashing.php @@ -0,0 +1,54 @@ + 'bcrypt', + + /* + |-------------------------------------------------------------------------- + | Bcrypt Options + |-------------------------------------------------------------------------- + | + | Here you may specify the configuration options that should be used when + | passwords are hashed using the Bcrypt algorithm. This will allow you + | to control the amount of time it takes to hash the given password. + | + */ + + 'bcrypt' => [ + 'rounds' => env('BCRYPT_ROUNDS', 12), + 'verify' => true, + ], + + /* + |-------------------------------------------------------------------------- + | Argon Options + |-------------------------------------------------------------------------- + | + | Here you may specify the configuration options that should be used when + | passwords are hashed using the Argon algorithm. These will allow you + | to control the amount of time it takes to hash the given password. + | + */ + + 'argon' => [ + 'memory' => 65536, + 'threads' => 1, + 'time' => 4, + 'verify' => true, + ], + +]; diff --git a/config/logging.php b/config/logging.php new file mode 100644 index 0000000..c44d276 --- /dev/null +++ b/config/logging.php @@ -0,0 +1,131 @@ + env('LOG_CHANNEL', 'stack'), + + /* + |-------------------------------------------------------------------------- + | Deprecations Log Channel + |-------------------------------------------------------------------------- + | + | This option controls the log channel that should be used to log warnings + | regarding deprecated PHP and library features. This allows you to get + | your application ready for upcoming major versions of dependencies. + | + */ + + 'deprecations' => [ + 'channel' => env('LOG_DEPRECATIONS_CHANNEL', 'null'), + 'trace' => false, + ], + + /* + |-------------------------------------------------------------------------- + | Log Channels + |-------------------------------------------------------------------------- + | + | Here you may configure the log channels for your application. Out of + | the box, Laravel uses the Monolog PHP logging library. This gives + | you a variety of powerful log handlers / formatters to utilize. + | + | Available Drivers: "single", "daily", "slack", "syslog", + | "errorlog", "monolog", + | "custom", "stack" + | + */ + + 'channels' => [ + 'stack' => [ + 'driver' => 'stack', + 'channels' => ['single'], + 'ignore_exceptions' => false, + ], + + 'single' => [ + 'driver' => 'single', + 'path' => storage_path('logs/laravel.log'), + 'level' => env('LOG_LEVEL', 'debug'), + 'replace_placeholders' => true, + ], + + 'daily' => [ + 'driver' => 'daily', + 'path' => storage_path('logs/laravel.log'), + 'level' => env('LOG_LEVEL', 'debug'), + 'days' => 14, + 'replace_placeholders' => true, + ], + + 'slack' => [ + 'driver' => 'slack', + 'url' => env('LOG_SLACK_WEBHOOK_URL'), + 'username' => 'Laravel Log', + 'emoji' => ':boom:', + 'level' => env('LOG_LEVEL', 'critical'), + 'replace_placeholders' => true, + ], + + 'papertrail' => [ + 'driver' => 'monolog', + 'level' => env('LOG_LEVEL', 'debug'), + 'handler' => env('LOG_PAPERTRAIL_HANDLER', SyslogUdpHandler::class), + 'handler_with' => [ + 'host' => env('PAPERTRAIL_URL'), + 'port' => env('PAPERTRAIL_PORT'), + 'connectionString' => 'tls://'.env('PAPERTRAIL_URL').':'.env('PAPERTRAIL_PORT'), + ], + 'processors' => [PsrLogMessageProcessor::class], + ], + + 'stderr' => [ + 'driver' => 'monolog', + 'level' => env('LOG_LEVEL', 'debug'), + 'handler' => StreamHandler::class, + 'formatter' => env('LOG_STDERR_FORMATTER'), + 'with' => [ + 'stream' => 'php://stderr', + ], + 'processors' => [PsrLogMessageProcessor::class], + ], + + 'syslog' => [ + 'driver' => 'syslog', + 'level' => env('LOG_LEVEL', 'debug'), + 'facility' => LOG_USER, + 'replace_placeholders' => true, + ], + + 'errorlog' => [ + 'driver' => 'errorlog', + 'level' => env('LOG_LEVEL', 'debug'), + 'replace_placeholders' => true, + ], + + 'null' => [ + 'driver' => 'monolog', + 'handler' => NullHandler::class, + ], + + 'emergency' => [ + 'path' => storage_path('logs/laravel.log'), + ], + ], + +]; diff --git a/config/mail.php b/config/mail.php new file mode 100644 index 0000000..e894b2e --- /dev/null +++ b/config/mail.php @@ -0,0 +1,134 @@ + env('MAIL_MAILER', 'smtp'), + + /* + |-------------------------------------------------------------------------- + | Mailer Configurations + |-------------------------------------------------------------------------- + | + | Here you may configure all of the mailers used by your application plus + | their respective settings. Several examples have been configured for + | you and you are free to add your own as your application requires. + | + | Laravel supports a variety of mail "transport" drivers to be used while + | sending an e-mail. You will specify which one you are using for your + | mailers below. You are free to add additional mailers as required. + | + | Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2", + | "postmark", "log", "array", "failover", "roundrobin" + | + */ + + 'mailers' => [ + 'smtp' => [ + 'transport' => 'smtp', + 'url' => env('MAIL_URL'), + 'host' => env('MAIL_HOST', 'smtp.mailgun.org'), + 'port' => env('MAIL_PORT', 587), + 'encryption' => env('MAIL_ENCRYPTION', 'tls'), + 'username' => env('MAIL_USERNAME'), + 'password' => env('MAIL_PASSWORD'), + 'timeout' => null, + 'local_domain' => env('MAIL_EHLO_DOMAIN'), + ], + + 'ses' => [ + 'transport' => 'ses', + ], + + 'postmark' => [ + 'transport' => 'postmark', + // 'message_stream_id' => null, + // 'client' => [ + // 'timeout' => 5, + // ], + ], + + 'mailgun' => [ + 'transport' => 'mailgun', + // 'client' => [ + // 'timeout' => 5, + // ], + ], + + 'sendmail' => [ + 'transport' => 'sendmail', + 'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -bs -i'), + ], + + 'log' => [ + 'transport' => 'log', + 'channel' => env('MAIL_LOG_CHANNEL'), + ], + + 'array' => [ + 'transport' => 'array', + ], + + 'failover' => [ + 'transport' => 'failover', + 'mailers' => [ + 'smtp', + 'log', + ], + ], + + 'roundrobin' => [ + 'transport' => 'roundrobin', + 'mailers' => [ + 'ses', + 'postmark', + ], + ], + ], + + /* + |-------------------------------------------------------------------------- + | Global "From" Address + |-------------------------------------------------------------------------- + | + | You may wish for all e-mails sent by your application to be sent from + | the same address. Here, you may specify a name and address that is + | used globally for all e-mails that are sent by your application. + | + */ + + 'from' => [ + 'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'), + 'name' => env('MAIL_FROM_NAME', 'Example'), + ], + + /* + |-------------------------------------------------------------------------- + | Markdown Mail Settings + |-------------------------------------------------------------------------- + | + | If you are using Markdown based email rendering, you may configure your + | theme and component paths here, allowing you to customize the design + | of the emails. Or, you may simply stick with the Laravel defaults! + | + */ + + 'markdown' => [ + 'theme' => 'default', + + 'paths' => [ + resource_path('views/vendor/mail'), + ], + ], + +]; diff --git a/config/queue.php b/config/queue.php new file mode 100644 index 0000000..01c6b05 --- /dev/null +++ b/config/queue.php @@ -0,0 +1,109 @@ + env('QUEUE_CONNECTION', 'sync'), + + /* + |-------------------------------------------------------------------------- + | Queue Connections + |-------------------------------------------------------------------------- + | + | Here you may configure the connection information for each server that + | is used by your application. A default configuration has been added + | for each back-end shipped with Laravel. You are free to add more. + | + | Drivers: "sync", "database", "beanstalkd", "sqs", "redis", "null" + | + */ + + 'connections' => [ + + 'sync' => [ + 'driver' => 'sync', + ], + + 'database' => [ + 'driver' => 'database', + 'table' => 'jobs', + 'queue' => 'default', + 'retry_after' => 90, + 'after_commit' => false, + ], + + 'beanstalkd' => [ + 'driver' => 'beanstalkd', + 'host' => 'localhost', + 'queue' => 'default', + 'retry_after' => 90, + 'block_for' => 0, + 'after_commit' => false, + ], + + 'sqs' => [ + 'driver' => 'sqs', + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'), + 'queue' => env('SQS_QUEUE', 'default'), + 'suffix' => env('SQS_SUFFIX'), + 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), + 'after_commit' => false, + ], + + 'redis' => [ + 'driver' => 'redis', + 'connection' => 'default', + 'queue' => env('REDIS_QUEUE', 'default'), + 'retry_after' => 90, + 'block_for' => null, + 'after_commit' => false, + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Job Batching + |-------------------------------------------------------------------------- + | + | The following options configure the database and table that store job + | batching information. These options can be updated to any database + | connection and table which has been defined by your application. + | + */ + + 'batching' => [ + 'database' => env('DB_CONNECTION', 'mysql'), + 'table' => 'job_batches', + ], + + /* + |-------------------------------------------------------------------------- + | Failed Queue Jobs + |-------------------------------------------------------------------------- + | + | These options configure the behavior of failed queue job logging so you + | can control which database and table are used to store the jobs that + | have failed. You may change them to any database / table you wish. + | + */ + + 'failed' => [ + 'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'), + 'database' => env('DB_CONNECTION', 'mysql'), + 'table' => 'failed_jobs', + ], + +]; diff --git a/config/sanctum.php b/config/sanctum.php new file mode 100644 index 0000000..35d75b3 --- /dev/null +++ b/config/sanctum.php @@ -0,0 +1,83 @@ + explode(',', env('SANCTUM_STATEFUL_DOMAINS', sprintf( + '%s%s', + 'localhost,localhost:3000,127.0.0.1,127.0.0.1:8000,::1', + Sanctum::currentApplicationUrlWithPort() + ))), + + /* + |-------------------------------------------------------------------------- + | Sanctum Guards + |-------------------------------------------------------------------------- + | + | This array contains the authentication guards that will be checked when + | Sanctum is trying to authenticate a request. If none of these guards + | are able to authenticate the request, Sanctum will use the bearer + | token that's present on an incoming request for authentication. + | + */ + + 'guard' => ['web'], + + /* + |-------------------------------------------------------------------------- + | Expiration Minutes + |-------------------------------------------------------------------------- + | + | This value controls the number of minutes until an issued token will be + | considered expired. This will override any values set in the token's + | "expires_at" attribute, but first-party sessions are not affected. + | + */ + + 'expiration' => null, + + /* + |-------------------------------------------------------------------------- + | Token Prefix + |-------------------------------------------------------------------------- + | + | Sanctum can prefix new tokens in order to take advantage of numerous + | security scanning initiatives maintained by open source platforms + | that notify developers if they commit tokens into repositories. + | + | See: https://docs.github.com/en/code-security/secret-scanning/about-secret-scanning + | + */ + + 'token_prefix' => env('SANCTUM_TOKEN_PREFIX', ''), + + /* + |-------------------------------------------------------------------------- + | Sanctum Middleware + |-------------------------------------------------------------------------- + | + | When authenticating your first-party SPA with Sanctum you may need to + | customize some of the middleware Sanctum uses while processing the + | request. You may change the middleware listed below as required. + | + */ + + 'middleware' => [ + 'authenticate_session' => Laravel\Sanctum\Http\Middleware\AuthenticateSession::class, + 'encrypt_cookies' => App\Http\Middleware\EncryptCookies::class, + 'verify_csrf_token' => App\Http\Middleware\VerifyCsrfToken::class, + ], + +]; diff --git a/config/services.php b/config/services.php new file mode 100644 index 0000000..0ace530 --- /dev/null +++ b/config/services.php @@ -0,0 +1,34 @@ + [ + 'domain' => env('MAILGUN_DOMAIN'), + 'secret' => env('MAILGUN_SECRET'), + 'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'), + 'scheme' => 'https', + ], + + 'postmark' => [ + 'token' => env('POSTMARK_TOKEN'), + ], + + 'ses' => [ + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), + ], + +]; diff --git a/config/session.php b/config/session.php new file mode 100644 index 0000000..e738cb3 --- /dev/null +++ b/config/session.php @@ -0,0 +1,214 @@ + env('SESSION_DRIVER', 'file'), + + /* + |-------------------------------------------------------------------------- + | Session Lifetime + |-------------------------------------------------------------------------- + | + | Here you may specify the number of minutes that you wish the session + | to be allowed to remain idle before it expires. If you want them + | to immediately expire on the browser closing, set that option. + | + */ + + 'lifetime' => env('SESSION_LIFETIME', 120), + + 'expire_on_close' => false, + + /* + |-------------------------------------------------------------------------- + | Session Encryption + |-------------------------------------------------------------------------- + | + | This option allows you to easily specify that all of your session data + | should be encrypted before it is stored. All encryption will be run + | automatically by Laravel and you can use the Session like normal. + | + */ + + 'encrypt' => false, + + /* + |-------------------------------------------------------------------------- + | Session File Location + |-------------------------------------------------------------------------- + | + | When using the native session driver, we need a location where session + | files may be stored. A default has been set for you but a different + | location may be specified. This is only needed for file sessions. + | + */ + + 'files' => storage_path('framework/sessions'), + + /* + |-------------------------------------------------------------------------- + | Session Database Connection + |-------------------------------------------------------------------------- + | + | When using the "database" or "redis" session drivers, you may specify a + | connection that should be used to manage these sessions. This should + | correspond to a connection in your database configuration options. + | + */ + + 'connection' => env('SESSION_CONNECTION'), + + /* + |-------------------------------------------------------------------------- + | Session Database Table + |-------------------------------------------------------------------------- + | + | When using the "database" session driver, you may specify the table we + | should use to manage the sessions. Of course, a sensible default is + | provided for you; however, you are free to change this as needed. + | + */ + + 'table' => 'sessions', + + /* + |-------------------------------------------------------------------------- + | Session Cache Store + |-------------------------------------------------------------------------- + | + | While using one of the framework's cache driven session backends you may + | list a cache store that should be used for these sessions. This value + | must match with one of the application's configured cache "stores". + | + | Affects: "apc", "dynamodb", "memcached", "redis" + | + */ + + 'store' => env('SESSION_STORE'), + + /* + |-------------------------------------------------------------------------- + | Session Sweeping Lottery + |-------------------------------------------------------------------------- + | + | Some session drivers must manually sweep their storage location to get + | rid of old sessions from storage. Here are the chances that it will + | happen on a given request. By default, the odds are 2 out of 100. + | + */ + + 'lottery' => [2, 100], + + /* + |-------------------------------------------------------------------------- + | Session Cookie Name + |-------------------------------------------------------------------------- + | + | Here you may change the name of the cookie used to identify a session + | instance by ID. The name specified here will get used every time a + | new session cookie is created by the framework for every driver. + | + */ + + 'cookie' => env( + 'SESSION_COOKIE', + Str::slug(env('APP_NAME', 'laravel'), '_').'_session' + ), + + /* + |-------------------------------------------------------------------------- + | Session Cookie Path + |-------------------------------------------------------------------------- + | + | The session cookie path determines the path for which the cookie will + | be regarded as available. Typically, this will be the root path of + | your application but you are free to change this when necessary. + | + */ + + 'path' => '/', + + /* + |-------------------------------------------------------------------------- + | Session Cookie Domain + |-------------------------------------------------------------------------- + | + | Here you may change the domain of the cookie used to identify a session + | in your application. This will determine which domains the cookie is + | available to in your application. A sensible default has been set. + | + */ + + 'domain' => env('SESSION_DOMAIN'), + + /* + |-------------------------------------------------------------------------- + | HTTPS Only Cookies + |-------------------------------------------------------------------------- + | + | By setting this option to true, session cookies will only be sent back + | to the server if the browser has a HTTPS connection. This will keep + | the cookie from being sent to you when it can't be done securely. + | + */ + + 'secure' => env('SESSION_SECURE_COOKIE'), + + /* + |-------------------------------------------------------------------------- + | HTTP Access Only + |-------------------------------------------------------------------------- + | + | Setting this value to true will prevent JavaScript from accessing the + | value of the cookie and the cookie will only be accessible through + | the HTTP protocol. You are free to modify this option if needed. + | + */ + + 'http_only' => true, + + /* + |-------------------------------------------------------------------------- + | Same-Site Cookies + |-------------------------------------------------------------------------- + | + | This option determines how your cookies behave when cross-site requests + | take place, and can be used to mitigate CSRF attacks. By default, we + | will set this value to "lax" since this is a secure default value. + | + | Supported: "lax", "strict", "none", null + | + */ + + 'same_site' => 'lax', + + /* + |-------------------------------------------------------------------------- + | Partitioned Cookies + |-------------------------------------------------------------------------- + | + | Setting this value to true will tie the cookie to the top-level site for + | a cross-site context. Partitioned cookies are accepted by the browser + | when flagged "secure" and the Same-Site attribute is set to "none". + | + */ + + 'partitioned' => false, + +]; diff --git a/config/view.php b/config/view.php new file mode 100644 index 0000000..22b8a18 --- /dev/null +++ b/config/view.php @@ -0,0 +1,36 @@ + [ + resource_path('views'), + ], + + /* + |-------------------------------------------------------------------------- + | Compiled View Path + |-------------------------------------------------------------------------- + | + | This option determines where all the compiled Blade templates will be + | stored for your application. Typically, this is within the storage + | directory. However, as usual, you are free to change this value. + | + */ + + 'compiled' => env( + 'VIEW_COMPILED_PATH', + realpath(storage_path('framework/views')) + ), + +]; diff --git a/database/.gitignore b/database/.gitignore new file mode 100644 index 0000000..9b19b93 --- /dev/null +++ b/database/.gitignore @@ -0,0 +1 @@ +*.sqlite* diff --git a/database/factories/CompanyFactory.php b/database/factories/CompanyFactory.php new file mode 100644 index 0000000..941471f --- /dev/null +++ b/database/factories/CompanyFactory.php @@ -0,0 +1,23 @@ + + */ +class CompanyFactory extends Factory +{ + /** + * Define the model's default state. + * + * @return array + */ + public function definition(): array + { + return [ + // + ]; + } +} diff --git a/database/factories/UserFactory.php b/database/factories/UserFactory.php new file mode 100644 index 0000000..584104c --- /dev/null +++ b/database/factories/UserFactory.php @@ -0,0 +1,44 @@ + + */ +class UserFactory extends Factory +{ + /** + * The current password being used by the factory. + */ + protected static ?string $password; + + /** + * Define the model's default state. + * + * @return array + */ + public function definition(): array + { + return [ + 'name' => fake()->name(), + 'email' => fake()->unique()->safeEmail(), + 'email_verified_at' => now(), + 'password' => static::$password ??= Hash::make('password'), + 'remember_token' => Str::random(10), + ]; + } + + /** + * Indicate that the model's email address should be unverified. + */ + public function unverified(): static + { + return $this->state(fn (array $attributes) => [ + 'email_verified_at' => null, + ]); + } +} diff --git a/database/migrations/2014_10_12_000000_create_users_table.php b/database/migrations/2014_10_12_000000_create_users_table.php new file mode 100644 index 0000000..7146a0f --- /dev/null +++ b/database/migrations/2014_10_12_000000_create_users_table.php @@ -0,0 +1,33 @@ +id(); + $table->string('name'); + $table->string('email')->unique()->nullable(); + $table->string(column: 'phone')->unique(); + $table->timestamp('email_verified_at')->nullable(); + $table->string('password')->nullable(); + $table->rememberToken(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('users'); + } +}; diff --git a/database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php b/database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php new file mode 100644 index 0000000..81a7229 --- /dev/null +++ b/database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php @@ -0,0 +1,28 @@ +string('email')->primary(); + $table->string('token'); + $table->timestamp('created_at')->nullable(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('password_reset_tokens'); + } +}; diff --git a/database/migrations/2014_10_12_100000_create_password_resets_table.php b/database/migrations/2014_10_12_100000_create_password_resets_table.php new file mode 100644 index 0000000..fcacb80 --- /dev/null +++ b/database/migrations/2014_10_12_100000_create_password_resets_table.php @@ -0,0 +1,32 @@ +string('email')->index(); + $table->string('token'); + $table->timestamp('created_at')->nullable(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('password_resets'); + } +}; diff --git a/database/migrations/2014_10_12_200000_add_two_factor_columns_to_users_table.php b/database/migrations/2014_10_12_200000_add_two_factor_columns_to_users_table.php new file mode 100644 index 0000000..b490e24 --- /dev/null +++ b/database/migrations/2014_10_12_200000_add_two_factor_columns_to_users_table.php @@ -0,0 +1,46 @@ +text('two_factor_secret') + ->after('password') + ->nullable(); + + $table->text('two_factor_recovery_codes') + ->after('two_factor_secret') + ->nullable(); + + if (Fortify::confirmsTwoFactorAuthentication()) { + $table->timestamp('two_factor_confirmed_at') + ->after('two_factor_recovery_codes') + ->nullable(); + } + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('users', function (Blueprint $table) { + $table->dropColumn(array_merge([ + 'two_factor_secret', + 'two_factor_recovery_codes', + ], Fortify::confirmsTwoFactorAuthentication() ? [ + 'two_factor_confirmed_at', + ] : [])); + }); + } +}; diff --git a/database/migrations/2019_08_19_000000_create_failed_jobs_table.php b/database/migrations/2019_08_19_000000_create_failed_jobs_table.php new file mode 100644 index 0000000..249da81 --- /dev/null +++ b/database/migrations/2019_08_19_000000_create_failed_jobs_table.php @@ -0,0 +1,32 @@ +id(); + $table->string('uuid')->unique(); + $table->text('connection'); + $table->text('queue'); + $table->longText('payload'); + $table->longText('exception'); + $table->timestamp('failed_at')->useCurrent(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('failed_jobs'); + } +}; diff --git a/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php b/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php new file mode 100644 index 0000000..e828ad8 --- /dev/null +++ b/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php @@ -0,0 +1,33 @@ +id(); + $table->morphs('tokenable'); + $table->string('name'); + $table->string('token', 64)->unique(); + $table->text('abilities')->nullable(); + $table->timestamp('last_used_at')->nullable(); + $table->timestamp('expires_at')->nullable(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('personal_access_tokens'); + } +}; diff --git a/database/migrations/2024_06_20_035667_create_cities_table.php b/database/migrations/2024_06_20_035667_create_cities_table.php new file mode 100644 index 0000000..687e9f9 --- /dev/null +++ b/database/migrations/2024_06_20_035667_create_cities_table.php @@ -0,0 +1,33 @@ +id(); + $table->string('name'); + $table->timestamps(); + }); + + DB::table('cities')->insert([ + ['id' => 1, 'name' => 'Иркутск'], + ['id' => 2, 'name' => 'Хабаровск'] + ]); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('cities'); + } +}; diff --git a/database/migrations/2024_06_30_230001_create_statuses_table.php b/database/migrations/2024_06_30_230001_create_statuses_table.php new file mode 100644 index 0000000..699b683 --- /dev/null +++ b/database/migrations/2024_06_30_230001_create_statuses_table.php @@ -0,0 +1,34 @@ +id(); + $table->string('name'); + $table->timestamps(); + }); + + DB::table('statuses')->insert([ + ['name' => 'Moderation'], + ['name' => 'Declined'], + ['name' => 'Acepted'], + ]); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('statuses'); + } +}; diff --git a/database/migrations/2024_07_04_052702_create_complexes_table.php b/database/migrations/2024_07_04_052702_create_complexes_table.php new file mode 100644 index 0000000..4cc883b --- /dev/null +++ b/database/migrations/2024_07_04_052702_create_complexes_table.php @@ -0,0 +1,38 @@ +id(); + $table->string('name'); + $table->foreignId('city_id')->references('id')->on('cities')->onDelete('cascade'); + $table->string('bitrix_id')->nullable(); + $table->timestamps(); + }); + + DB::table('complexes')->insert([ + ['name' => 'Академик Иркутск', 'city_id' => 1], + ['name' => 'Автор Иркутск', 'city_id' => 1], + ['name' => 'Атмосфера Хабаровск', 'city_id' => 2], + ['name' => 'Аккорд Хабаровск', 'city_id' => 2], + ['name' => 'Адмирал Хабаровск', 'city_id' => 2] + ]); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('resident_complexes'); + } +}; diff --git a/database/migrations/2024_10_23_141203_create_companies_table.php b/database/migrations/2024_10_23_141203_create_companies_table.php new file mode 100644 index 0000000..2e7c479 --- /dev/null +++ b/database/migrations/2024_10_23_141203_create_companies_table.php @@ -0,0 +1,35 @@ +id(); + $table->enum('type',['AGENCY','SELFEMP','SOLEPROP'])->nullable(); /* AGENT - агент в компании, SELFEMP - самозанятый, SOLEPROP - инд. предприниматель */ + $table->string('name'); + $table->string('inn'); + $table->string('full_name')->nullable(); + $table->string('email'); + $table->string('address')->nullable(); + $table->string('legal_address')->nullable(); + $table->json('details')->nullable(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('companies'); + } +}; diff --git a/database/migrations/2024_10_23_162850_create_agents_table.php b/database/migrations/2024_10_23_162850_create_agents_table.php new file mode 100644 index 0000000..8e0967b --- /dev/null +++ b/database/migrations/2024_10_23_162850_create_agents_table.php @@ -0,0 +1,33 @@ +id(); + $table->foreignId(column: 'user_id')->references('id')->on('users'); + $table->foreignId(column: 'company_id')->references('id')->on('companies')->nullable(); + $table->timestamps(); + }); + + Schema::table('agents', function (Blueprint $table) { + $table->softDeletes(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('agents'); + } +}; diff --git a/database/migrations/2024_10_23_163951_create_company_admins_table.php b/database/migrations/2024_10_23_163951_create_company_admins_table.php new file mode 100644 index 0000000..0238fa4 --- /dev/null +++ b/database/migrations/2024_10_23_163951_create_company_admins_table.php @@ -0,0 +1,29 @@ +id(); + $table->foreignId('company_id')->references('id')->on('companies'); + $table->foreignId('user_id')->references('id')->on('users'); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('company_admins'); + } +}; diff --git a/database/migrations/2024_10_23_170000_create_deals_table.php b/database/migrations/2024_10_23_170000_create_deals_table.php new file mode 100644 index 0000000..721023c --- /dev/null +++ b/database/migrations/2024_10_23_170000_create_deals_table.php @@ -0,0 +1,33 @@ +id(); + $table->foreignId('client_id')->references('id')->on('users'); + $table->foreignId('complex_id')->references('id')->on('complexes')->onDelete('cascade'); + $table->foreignId('agent_id')->references('id')->on('agents')->onDelete('cascade'); + $table->string('bitrix_id')->nullable(); + $table->string('confirm_token')->nullable(); + $table->enum('status',['NEW','MODERATION','UNIQUE','NOT UNIQUE'])->default('NEW'); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('clients'); + } +}; diff --git a/database/migrations/2024_10_24_062613_create_company_agents_table.php b/database/migrations/2024_10_24_062613_create_company_agents_table.php new file mode 100644 index 0000000..435a1c2 --- /dev/null +++ b/database/migrations/2024_10_24_062613_create_company_agents_table.php @@ -0,0 +1,29 @@ +id(); + $table->foreignId('company_id')->references('id')->on('companies'); + $table->foreignId('agent_id')->references('id')->on('agents'); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('company_agents'); + } +}; 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/package-lock.json b/package-lock.json new file mode 100644 index 0000000..aa29a53 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,1400 @@ +{ + "name": "lk", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "dependencies": { + "bootstrap": "^5.3.3" + }, + "devDependencies": { + "@popperjs/core": "^2.11.6", + "axios": "^1.6.4", + "bootstrap": "^5.2.3", + "laravel-vite-plugin": "^1.0.0", + "sass": "^1.56.1", + "vite": "^5.0.0" + } + }, + "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/@parcel/watcher": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.4.1.tgz", + "integrity": "sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==", + "dev": true, + "dependencies": { + "detect-libc": "^1.0.3", + "is-glob": "^4.0.3", + "micromatch": "^4.0.5", + "node-addon-api": "^7.0.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { + "@parcel/watcher-android-arm64": "2.4.1", + "@parcel/watcher-darwin-arm64": "2.4.1", + "@parcel/watcher-darwin-x64": "2.4.1", + "@parcel/watcher-freebsd-x64": "2.4.1", + "@parcel/watcher-linux-arm-glibc": "2.4.1", + "@parcel/watcher-linux-arm64-glibc": "2.4.1", + "@parcel/watcher-linux-arm64-musl": "2.4.1", + "@parcel/watcher-linux-x64-glibc": "2.4.1", + "@parcel/watcher-linux-x64-musl": "2.4.1", + "@parcel/watcher-win32-arm64": "2.4.1", + "@parcel/watcher-win32-ia32": "2.4.1", + "@parcel/watcher-win32-x64": "2.4.1" + } + }, + "node_modules/@parcel/watcher-android-arm64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.4.1.tgz", + "integrity": "sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-darwin-arm64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.4.1.tgz", + "integrity": "sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-darwin-x64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.4.1.tgz", + "integrity": "sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-freebsd-x64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.4.1.tgz", + "integrity": "sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm-glibc": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.4.1.tgz", + "integrity": "sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm64-glibc": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.4.1.tgz", + "integrity": "sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm64-musl": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.4.1.tgz", + "integrity": "sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-x64-glibc": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.4.1.tgz", + "integrity": "sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-x64-musl": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.4.1.tgz", + "integrity": "sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-win32-arm64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.4.1.tgz", + "integrity": "sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-win32-ia32": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.4.1.tgz", + "integrity": "sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-win32-x64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.4.1.tgz", + "integrity": "sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@popperjs/core": { + "version": "2.11.8", + "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", + "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/popperjs" + } + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.24.0.tgz", + "integrity": "sha512-Q6HJd7Y6xdB48x8ZNVDOqsbh2uByBhgK8PiQgPhwkIw/HC/YX5Ghq2mQY5sRMZWHb3VsFkWooUVOZHKr7DmDIA==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.24.0.tgz", + "integrity": "sha512-ijLnS1qFId8xhKjT81uBHuuJp2lU4x2yxa4ctFPtG+MqEE6+C5f/+X/bStmxapgmwLwiL3ih122xv8kVARNAZA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.24.0.tgz", + "integrity": "sha512-bIv+X9xeSs1XCk6DVvkO+S/z8/2AMt/2lMqdQbMrmVpgFvXlmde9mLcbQpztXm1tajC3raFDqegsH18HQPMYtA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.24.0.tgz", + "integrity": "sha512-X6/nOwoFN7RT2svEQWUsW/5C/fYMBe4fnLK9DQk4SX4mgVBiTA9h64kjUYPvGQ0F/9xwJ5U5UfTbl6BEjaQdBQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.24.0.tgz", + "integrity": "sha512-0KXvIJQMOImLCVCz9uvvdPgfyWo93aHHp8ui3FrtOP57svqrF/roSSR5pjqL2hcMp0ljeGlU4q9o/rQaAQ3AYA==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.24.0.tgz", + "integrity": "sha512-it2BW6kKFVh8xk/BnHfakEeoLPv8STIISekpoF+nBgWM4d55CZKc7T4Dx1pEbTnYm/xEKMgy1MNtYuoA8RFIWw==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.24.0.tgz", + "integrity": "sha512-i0xTLXjqap2eRfulFVlSnM5dEbTVque/3Pi4g2y7cxrs7+a9De42z4XxKLYJ7+OhE3IgxvfQM7vQc43bwTgPwA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.24.0.tgz", + "integrity": "sha512-9E6MKUJhDuDh604Qco5yP/3qn3y7SLXYuiC0Rpr89aMScS2UAmK1wHP2b7KAa1nSjWJc/f/Lc0Wl1L47qjiyQw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.24.0.tgz", + "integrity": "sha512-2XFFPJ2XMEiF5Zi2EBf4h73oR1V/lycirxZxHZNc93SqDN/IWhYYSYj8I9381ikUFXZrz2v7r2tOVk2NBwxrWw==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.24.0.tgz", + "integrity": "sha512-M3Dg4hlwuntUCdzU7KjYqbbd+BLq3JMAOhCKdBE3TcMGMZbKkDdJ5ivNdehOssMCIokNHFOsv7DO4rlEOfyKpg==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.24.0.tgz", + "integrity": "sha512-mjBaoo4ocxJppTorZVKWFpy1bfFj9FeCMJqzlMQGjpNPY9JwQi7OuS1axzNIk0nMX6jSgy6ZURDZ2w0QW6D56g==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.24.0.tgz", + "integrity": "sha512-ZXFk7M72R0YYFN5q13niV0B7G8/5dcQ9JDp8keJSfr3GoZeXEoMHP/HlvqROA3OMbMdfr19IjCeNAnPUG93b6A==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.24.0.tgz", + "integrity": "sha512-w1i+L7kAXZNdYl+vFvzSZy8Y1arS7vMgIy8wusXJzRrPyof5LAb02KGr1PD2EkRcl73kHulIID0M501lN+vobQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.24.0.tgz", + "integrity": "sha512-VXBrnPWgBpVDCVY6XF3LEW0pOU51KbaHhccHw6AS6vBWIC60eqsH19DAeeObl+g8nKAz04QFdl/Cefta0xQtUQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.24.0.tgz", + "integrity": "sha512-xrNcGDU0OxVcPTH/8n/ShH4UevZxKIO6HJFK0e15XItZP2UcaiLFd5kiX7hJnqCbSztUF8Qot+JWBC/QXRPYWQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.24.0.tgz", + "integrity": "sha512-fbMkAF7fufku0N2dE5TBXcNlg0pt0cJue4xBRE2Qc5Vqikxr4VCgKj/ht6SMdFcOacVA9rqF70APJ8RN/4vMJw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@types/estree": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", + "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", + "dev": true + }, + "node_modules/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/axios": { + "version": "1.7.7", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.7.tgz", + "integrity": "sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==", + "dev": true, + "dependencies": { + "follow-redirects": "^1.15.6", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/bootstrap": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-5.3.3.tgz", + "integrity": "sha512-8HLCdWgyoMguSO9o+aH+iuZ+aht+mzW0u3HIMzVu7Srrpv7EBBxTnrFlSCskwdY1+EOFQSm7uMJhNQHkdPcmjg==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/twbs" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/bootstrap" + } + ], + "peerDependencies": { + "@popperjs/core": "^2.11.8" + } + }, + "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/chokidar": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.1.tgz", + "integrity": "sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==", + "dev": true, + "dependencies": { + "readdirp": "^4.0.1" + }, + "engines": { + "node": ">= 14.16.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "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/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/detect-libc": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", + "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", + "dev": true, + "bin": { + "detect-libc": "bin/detect-libc.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "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/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/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/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/immutable": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.7.tgz", + "integrity": "sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==", + "dev": true + }, + "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-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/laravel-vite-plugin": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/laravel-vite-plugin/-/laravel-vite-plugin-1.0.5.tgz", + "integrity": "sha512-Zv+to82YLBknDCZ6g3iwOv9wZ7f6EWStb9pjSm7MGe9Mfoy5ynT2ssZbGsMr1udU6rDg9HOoYEVGw5Qf+p9zbw==", + "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/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/nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "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-addon-api": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz", + "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==", + "dev": true + }, + "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/postcss": { + "version": "8.4.47", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.47.tgz", + "integrity": "sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==", + "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.0", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "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/readdirp": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.0.2.tgz", + "integrity": "sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==", + "dev": true, + "engines": { + "node": ">= 14.16.0" + }, + "funding": { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/rollup": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.24.0.tgz", + "integrity": "sha512-DOmrlGSXNk1DM0ljiQA+i+o0rSLhtii1je5wgk60j49d1jHT5YYttBv1iWOnYSTG+fZZESUOSNiAl89SIet+Cg==", + "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.24.0", + "@rollup/rollup-android-arm64": "4.24.0", + "@rollup/rollup-darwin-arm64": "4.24.0", + "@rollup/rollup-darwin-x64": "4.24.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.24.0", + "@rollup/rollup-linux-arm-musleabihf": "4.24.0", + "@rollup/rollup-linux-arm64-gnu": "4.24.0", + "@rollup/rollup-linux-arm64-musl": "4.24.0", + "@rollup/rollup-linux-powerpc64le-gnu": "4.24.0", + "@rollup/rollup-linux-riscv64-gnu": "4.24.0", + "@rollup/rollup-linux-s390x-gnu": "4.24.0", + "@rollup/rollup-linux-x64-gnu": "4.24.0", + "@rollup/rollup-linux-x64-musl": "4.24.0", + "@rollup/rollup-win32-arm64-msvc": "4.24.0", + "@rollup/rollup-win32-ia32-msvc": "4.24.0", + "@rollup/rollup-win32-x64-msvc": "4.24.0", + "fsevents": "~2.3.2" + } + }, + "node_modules/sass": { + "version": "1.80.4", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.80.4.tgz", + "integrity": "sha512-rhMQ2tSF5CsuuspvC94nPM9rToiAFw2h3JTrLlgmNw1MH79v8Cr3DH6KF6o6r+8oofY3iYVPUf66KzC8yuVN1w==", + "dev": true, + "dependencies": { + "@parcel/watcher": "^2.4.1", + "chokidar": "^4.0.0", + "immutable": "^4.0.0", + "source-map-js": ">=0.6.2 <2.0.0" + }, + "bin": { + "sass": "sass.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "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/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/vite": { + "version": "5.4.10", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.10.tgz", + "integrity": "sha512-1hvaPshuPUtxeQ0hsVH3Mud0ZanOLwVTneA1EgbAM5LhaZEqyPWGRQ7BtaMvUrTDeEaC8pxtj6a6jku3x4z6SQ==", + "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" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..6136f82 --- /dev/null +++ b/package.json @@ -0,0 +1,19 @@ +{ + "private": true, + "type": "module", + "scripts": { + "dev": "vite", + "build": "vite build" + }, + "devDependencies": { + "@popperjs/core": "^2.11.6", + "axios": "^1.6.4", + "bootstrap": "^5.2.3", + "laravel-vite-plugin": "^1.0.0", + "sass": "^1.56.1", + "vite": "^5.0.0" + }, + "dependencies": { + "bootstrap": "^5.3.3" + } +} 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/public/.htaccess b/public/.htaccess new file mode 100644 index 0000000..3aec5e2 --- /dev/null +++ b/public/.htaccess @@ -0,0 +1,21 @@ + + + Options -MultiViews -Indexes + + + RewriteEngine On + + # Handle Authorization Header + RewriteCond %{HTTP:Authorization} . + RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] + + # Redirect Trailing Slashes If Not A Folder... + RewriteCond %{REQUEST_FILENAME} !-d + RewriteCond %{REQUEST_URI} (.+)/$ + RewriteRule ^ %1 [L,R=301] + + # Send Requests To Front Controller... + RewriteCond %{REQUEST_FILENAME} !-d + RewriteCond %{REQUEST_FILENAME} !-f + RewriteRule ^ index.php [L] + diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000..e69de29 diff --git a/public/images/DiagnostikaIKT.docx b/public/images/DiagnostikaIKT.docx new file mode 100644 index 0000000000000000000000000000000000000000..0ac2a7d0fb63b24034613a22e607d1194f217c49 GIT binary patch literal 193309 zcmeFYW0NRB*CpDvZQHhO+dgfZr)}GI_i5XLd^RXprXopkBk zZLA3jK!7On0Dyk&|8My}_z5(sO3M#0z;qMe;aBJ=W<~=Gnd5?Ehzl5nIi<8~=Xp>} z4?o{Hv{z#(=Lhx`D;;>lZ!~eY>YY<*{uMWsoqpGhB{e9bO-et$^zcsAs|N{W2rjGg z&#DGkd%ArzVbJ634VndWVuS9}b%=2U(=sr_#fV5+wn98zl5a!4mzD9)eep!s(L(MG zViAF3!`T#~JXVzuljhRnb}$=H$b9OeNM|d;mB2M0aWAu%7voT;qy$-@~;={MF94;;_sp2t35r7>BLSoy}RL&j&gDR zjfIx?dc6t~mbZ!1wv<58^f{FkkrqY6(@!xx^9u59(5DwMtV<~*OeNIq4Q`bOe3GA{ zAsdx++@r1=yQnc1b#67OYweaL0?^V2Lj24^imMAA`(!rSw&DGw9i8hacXU!C*szgO zA0X>E%-^K07@`EEoPz(MJkfNpS;MeE&Ng#_&i8+yl& zClm6^nSq&$+@(BVHHMl?d8?TQ;yYIEHZ76h3Yw$Z83BJ_#iwg6Z0(lmdE%4ud7>CA z3-%jA1WEXa%$REnb%IB`RodflBq5b!<0rA7qAJ_FM;_IIGtx`eHDN9O+z2#{Xt3!o z!|AeP`9hi9tWJcZj)EK7t}V#Aj0{K-=??hEo);`*VVkn5KT^+Yi7zd&#PC?GKOg4EI^6tESL3P)aX zIN&r{k4Sc7h}Ki6%G9S-6qtB1{7vPM)c;uT+PW4aV@?E3dz;1oN26V5y#}?bukZ=| zC4J0!QcYFgDuE)al;pmN8()=8Kl7b+#Qw(??S8%8kh?@R3pYGBCfZz#(b#lq|NL@v ziTXsWRGejGDN>Wy4mEl$UOR-@(d^pqr)I~xs9vo^hauu$h%`#}q8KGJcl~jD@#1P) zq9!v`yHmS?ne{}S)tZ=|P#uAA8B1S(dI zS#lK7b#lXHz%^GXt(Qwx-Uj=4v7$~_QHR<3Wac%k4mTU7&Ts}U<;GCbk3iub@Ej%O zlfbvMeaO}=ZN{d0cH3bMz>dQt+r2wjqvdOaRUdKn%?s%=^xJN0v=Yyn zea|g*%L6ve+B=wU#5pK7-HHig{dtj)UN!Jn_mY0ocf{SQum13l=qb`3bK?WVoEMn9 z((IIxd-`-riK{~&;*HSGiA|*r6n?2m_r?+(ie1nO(J;?o;t*N-gJn;KQyDZ%?e!6B zmr0a)u*`YCX!N3>Up7292Ms*R_ElqVQUl+`)sN*?w6(*s$xA`zyq2IT_rx#&(-KvO^YPG=cP)Fl>*~4LGiT)~moq)N@jiH$5gLqmhl#a0wVELK zl}!=Mmct3IvR%8AP4_7aKW(6X(YNJip2c@&-F*r!k1|nCn#5!oxRY(Dc4;7O*aZKr7z|> zV<$ED$=B4!^oIosb<0WDv+q-LUChQd_9v`*lda%Fic261UkxGJ%;fu}?jp3t_Qgpx zD6f++t*!m#nh_gMf+l!H`JH;7BHvT$YbvyFIu<6fHCLm6Rw1}T0jb?78ziWizW(Q~ z@${tdZPtO``5AYTk@!eFqCd)k-#2?X6p6koSBn)$LQl1izevDYUM>Yu`Jo$efK{>F z`*VljB504u;R&af==?*CJQU!%QOmtZV8v?&2oA`0j9Qz18*p0-sK<*)Ak-U_*Np(o z^=l@(gAN54D^jvceQh}gw*Aq3?$WnKV|MX9>Gy2{>DyX#N_2BB7g@#E@J7`qoXI z(212eKzc%@42fiR1SSL)8Yu$p(^@-ChATBZ%k7%kcoO;1yY(QbU`Nsue~_u17ZqIJ z)ImgUlo|(cG-bQmGrY<*T!^YaB>8fCM(#fTk#U=zN~j9{|Ar|M4BhA1X&Rbu;R0yf z8^?w1v=0*XRY(bUQdzyTt2PxK;q_xsx?Uo>J(;`oiwSHRpXx

qe&~7DX?&z6!+8 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

~`bbwEtcY*{_m1tn|tPWv@9$ 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±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 UKtBe7Xn_<2{7i>$B9^N9A6IMC&j0`b literal 0 HcmV?d00001 diff --git a/public/images/icons/document.png b/public/images/icons/document.png new file mode 100644 index 0000000000000000000000000000000000000000..a48acdd61a05545e91624db47f9bc37bc5e8e32d GIT binary patch literal 942 zcmeAS@N?(olHy`uVBq!ia0vp^4Is?H1|$#LC7uRSoCO|{#S9G08$g&*{RsbBprB-l zYeY$Kep*R+Vo@qXd3m{BW?pu2a$-TMUVc&f>~}U&K-JcsE{-7;bKc(FpCuB=;P!Fz zYL^@xRz-!3hr%43KRBAE3Pw9_2;r7L>?bJVeXyb4%X*`?`i+jcYdN^OS_Or>C0G`3 zC@)WYKlkT3em0$FdgW>7&gHbt75!BxwS&)w@gCFs#=8@B>>IW3zFqZk2E+5l@B@5b z`KJi#T$FsE`jx*&Fr+~8hu2@`Bo@&-34fMXEC1+UUGX7V*@C-f`ML`_cRfwLA}GUZ7f`RheIJin)8W?F@eF<9eK%R}F}!blduZd< zHO#BId*(BJumAu1;iJo$$AeGZj#W@9KAd^=Q$h@~e$)KT*M-9k4uK;42$~Q88S^tuQC&6-7 z?*WEs%TEHCJ7;wRnd?__@GR&{1FEW;)p3B~)hfA0#w+2bO_$scmt075UvHfFUhwlJ z^QZr=pWZg}v7rfb#GRwJgdd#0embn7dMUFhUvVrSPeRN$efH;RvIz{2jamJstXY%5 zCUB17kfehJGe(|~3%|Cp6w{GpXkBe$q nH{84YdR1~96CzBIb^c}Q{Z-*rBd5j$%xesuu6{1-oD!M<$NYE8 literal 0 HcmV?d00001 diff --git a/public/images/icons/free-icon-font-user.png b/public/images/icons/free-icon-font-user.png new file mode 100644 index 0000000000000000000000000000000000000000..e2a114f29d04797ae20c237e18a8b74144fb7c22 GIT binary patch literal 830 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 D$IbkF literal 0 HcmV?d00001 diff --git a/public/images/icons/message.png b/public/images/icons/message.png new file mode 100644 index 0000000000000000000000000000000000000000..4c54964b1aee1410e4f3c5886d7ee818bb159663 GIT binary patch literal 1726 zcmV;v20{6WP)pF8FWQhbW?9;ba!ELWdL_~cP?peYja~^aAhuUa%Y?FJQ@H121`jq zK~#90<(pY-R8<(qf8U*=Ki}Ll_slup5j;ja4;7-p3NXXKLX-u-Two3`v+uS)fpfrF&{l*as1d_RHp%?* zlV0i*FPv&e^hVTN4YC{vJE%v27|7?KjZzfZ=bp+Gt_48P9GgX=y9Q-FaGhIzhj19- zU4qlzk%EO6+;HeP0NNhQ!_bY0K1u4)_Jgx1+vwFd<;v^NI&ow>0IDi<#@3>`1t@SL z!U0{t%Y@3_5)spm16u*m_SiK9%zEHvJN6#1mjLTzUgRgMhK5xGjkl~MV1Cc!X*|GE zk{rfULGH&sU^@ zPc{F1qxY4L zme+v?+*IW+vYL4G)lu&l>4J7N--pTv?u(iLRI22%vc_zevIam;v|LS+AAs4O3iFTi z1oQ@(cm2;pFAVDfswyOTkN-~N0cMjlcBtyGFML>m#-k5|)>?9ZrXBX~gtq-)SRPwh z!!)6IF)UjHd6!$W6{(g`S^c1*%oA;o#`2SQF!voJ*i;3oNX# zVs(<9-V!NZbS_;m`0EPjQ&?$y*Y6Y4cu3XR_#B*#Td^u+Mqoo`L4N@B%&}RZPgoMM zch|%;K26Wx@a-;ZHYywS)RElu>A(|^=&r%)|M_1JTC3a(tZT^QV&akX$v^;(w2u{y_>>uSCZ_PJSix%Fj z4@`0d5)}rfY5m9Vzk+Buh(QVJaYe!DP*6Phf5M#5;N#0OdZB5;sW#~C@m7~gNf6~) zZ)*W+w!;Fr5TIV+KaD31?xPSPE>6 zGEcM9f&fw!*{AWAD0XIshjPcGP_<~`>K=z~KW4OSw_~<)H#vD+KEV)SN^gRf5?y2*fofP$~awT0pO{zOYHz7RhOq-`D zqMMl?c_G^`el{%U1!%l^1xOwK?GPI;e;_;}p@^jfZ+n}jPBdRd(%1odiyeCp_y)tQ zmigsvRt??QHn$llwCl$qU7#-#iqwwxkspfljgxH$<}f3$0hNtFo>PD0;M1& literal 0 HcmV?d00001 diff --git a/public/images/icons/user copy.png b/public/images/icons/user copy.png new file mode 100644 index 0000000..e69de29 diff --git a/public/images/icons/user.png b/public/images/icons/user.png new file mode 100644 index 0000000000000000000000000000000000000000..52f0ed486b6b3b6efca949fc0b05c727fc313aec GIT binary patch literal 2878 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 literal 0 HcmV?d00001 diff --git a/public/images/icons/user1.png b/public/images/icons/user1.png new file mode 100644 index 0000000000000000000000000000000000000000..1eaba953007c031e877f1d7d2436e2e5351825a5 GIT binary patch literal 2125 zcmV-T2(tHyP)pF8FWQhbW?9;ba!ELWdL_~cP?peYja~^aAhuUa%Y?FJQ@H12ii$Q zK~#90<(pqjRM{QJzrQ=f_=gp!0xF3xq7`;$E_U1Li;YHNw~1SgyF`;h+U^#Mi4hkP zcatTtY10Rq%+l^I#0O*C)v{uuW$lAajJpah_NnN|%$#*cvW+p3fFgg2MwmM1*M}J> ze+HPj=gdUg&l7XcIp6a;KkhyEp5OT$LW=3>>B+a-?c1c3E&!zfHUan!fE)lX#i~69 zFalthnL_}+F$_aQB9X4mn>Rm5rG1nN(O@w6Ln&n?5xoY$rO*!p5JYsDna`T0*{#pY zDB2v*+uNHpK0bZ`KsA7ub?MIHYXF~SWMmvKEiE0>A*k#CA;d~%u4CrIh~C=iU>HC% zGk;uGRyM36WZ41COhSlXFmn@tJQX7p7y|Hnx7*!9MAC|YB?ky0HcBZ^1K47veG2$H zfVWK3{5IK!MzRe8fxw$m%75Vb89V^|2!Jmb4E`+Hh6y`>nGL_+{~>_S5q*U{Z>(VE zv%z5SkIbC#xDt8K8UDoe0=K`js$Krn;c%R0=ASS0hFI_p@caEA5>dUXCD*Q9 zLt|qj`uh43s$Wo0fTKr`V(Zqes$By>lWCgo%~v?D1N?sfJ|a4&+WX0qC(+#83@MX) zO&f-Ry1F`4S68c=03xb#yWMBwmc_dm2n03&xB(zrrQ_DtR(QQ$6$vynG@z=gN=XC2 zC^LV*tgP&xvkT_DE|{4B{27Xa@9yqKQ&W?Q1OUM6_2TBuo2oL|hGCqFjco>V93X_) z55AYJR*?@8XFsxwU~LU5aO4!ug`EmY+>^UrJev>y?Pb5Z{JpxnIaSl zp|i77S%;auKA&&KN1QRMLOp<7)s8M-zN{*dD$RVG&Gydp3scWTY(0M$8kV$Mwrs)J zn3m=G6xrF?xPJY*4ymDxj11>wJYnh%hy^p02R}MGs(tX9bytSN;hM=G(;tDibf^yw z4(gDJ%Yz4c!h=M#fAVhwh{o^$xOIpxUAk0NTc%6u6(Pi{K+FMBN^PsWyu3UR z>5sJ%5pr{t=jSP;lvTigAAz6f5_UKoC@wD6B{#)}4I6YUkf!rv05E!bdh&_r6`jiE z<>fl%00297?9eT_ITQ-z8g{#V8#M0^?AfyiHk(bGp51Q8?%lh!>BXRMIK0h}Qfis} zrsH%vQBhH$O>f`6eJCm_(xx{FGrJ4`CEAq%)YsReu&_{Br>Lk1wY9YxESd`ul^6iN zn+ox)tSq#&v>+$Pdi*peCkHJpEy&8s(rDQXHW|?H?LQyI#l>iAYs1Ek82#*jGyqsZ zfk0pafYul6e2k2YprfM$ot>Syd-pE-`}+X^Yu2oR)9FNcc{#Rk->&r7B*{ct9q=47 zVIZ2E@c+t~0YLxS^~GV#4qy;~_OFb`j~}DIzaNhtJ({x#k|;!kRjXEE?b@}-%*@nm zApl^|&dhg+=m$E~q?EXH=@Q!8+i~N@4MZXl9kQ_5Z18wIsHmvG&Ye4Tt~Nsy2n2o$ z;CHG@_wV1wkt0VSgitqY0Zh|GQ&STP3JR39i0C&45d~F+?%cV9%F4==4;}ylfdDEi zE79BAtE|P$!iYp7U5I95Sz>s27>5rZ#_+IGs!mc24Gp2TwpO)I>2Nr@j94C?<$qms zb92I*o;vC4>%*~Q$1JyJ=AM$0l0hT(;|nVy0|NuNaN&YwBUEW`Z?_yMC895ZSV)YB z+N_9NxpGC@OmBr}&z_;9qr*~L!!X)_m;+)Nm`P8Dw{G3C)VWT4KA)9lU%OncTfoeH zfz!#V=!(;;V8sSzJ~{dKlmjv{GL9pfftfH*pFT~xbKN|7@+8?NLk@@I#N>}D2b7kU zjuBCdF2kNznE9jWdB!t#hozJs0eF~ptJ23nI2>-Ceqn|KVu{D^r`4qN@}9@z8J&J% zPKJov?fw+e+}r;(zH+?BD-v89fV4ts8H?r}s9 zM7;=nHZd_#ttDN4l33=r7r?tprll5U<_}EMd_UfdACIJ?i+;cV4I=sk={q5oDE|Ub zW141C3EoMc87eC)`ztehh^Q;swkhN*DdqQ)9Xz1t*xUyI@~!G9GQ`XcrfHr?^p>BE za)90E^X1rVws(lA4!}xPy##s0%pZrt;pW-j_Q|4chd~JOQX~>N0HB(PT)K2;5oG31 zY&P2om&>JPPctQlr-cx&#`5r917O0!ToXeA@B{e5FpRdzFqTeI;(+OdLZRGnIJ_;E ziuW=zZ$k7@iFbT{2tbI4zF}tJa5%b3N=j0fdkf${A_v)oKlk1u00000NkvXXu0mjf D$IbkF literal 0 HcmV?d00001 diff --git a/public/images/logo.png b/public/images/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..2bb9c4e6b21943b93d1e877cd48e425d78dddb5f GIT binary patch literal 3012 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::class); + +$response = $kernel->handle( + $request = Request::capture() +)->send(); + +$kernel->terminate($request, $response); diff --git a/public/robots.txt b/public/robots.txt new file mode 100644 index 0000000..eb05362 --- /dev/null +++ b/public/robots.txt @@ -0,0 +1,2 @@ +User-agent: * +Disallow: diff --git a/resources/css/app.css b/resources/css/app.css new file mode 100644 index 0000000..af88334 --- /dev/null +++ b/resources/css/app.css @@ -0,0 +1,29 @@ +.bg-primary { + background-color: #e6662a !important; + background-image: linear-gradient(140deg, hsl(19, 79%, 53%) 50%, #ce4711 75%) !important; + color: white; + border-color: #ce4711 !important; +} + +.btn-primary { + background-color: #e6662a !important; + color: white; + border-color: #ce4711 !important; +} + +/*navpanel*/ +#leftPanel .nav-link:hover { + color: #e4e4e4; + background-color: #20184d; +} + +#leftPanel .nav-link { + background-color: #e4e4e4; + color: #20184d; +} + +input[type="radio"]:checked+label { + background-color: #e6662a !important; + color: white !important; + border-color: #e6662a !important; +} \ No newline at end of file diff --git a/resources/js/app.js b/resources/js/app.js new file mode 100644 index 0000000..e59d6a0 --- /dev/null +++ b/resources/js/app.js @@ -0,0 +1 @@ +import './bootstrap'; diff --git a/resources/js/bootstrap.js b/resources/js/bootstrap.js new file mode 100644 index 0000000..46f7a33 --- /dev/null +++ b/resources/js/bootstrap.js @@ -0,0 +1,34 @@ +import 'bootstrap'; + +/** + * We'll load the axios HTTP library which allows us to easily issue requests + * to our Laravel back-end. This library automatically handles sending the + * CSRF token as a header based on the value of the "XSRF" token cookie. + */ + +import axios from 'axios'; +window.axios = axios; + +window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest'; + +/** + * Echo exposes an expressive API for subscribing to channels and listening + * for events that are broadcast by Laravel. Echo and event broadcasting + * allows your team to easily build robust real-time web applications. + */ + +// import Echo from 'laravel-echo'; + +// import Pusher from 'pusher-js'; +// window.Pusher = Pusher; + +// window.Echo = new Echo({ +// broadcaster: 'pusher', +// key: import.meta.env.VITE_PUSHER_APP_KEY, +// cluster: import.meta.env.VITE_PUSHER_APP_CLUSTER ?? 'mt1', +// wsHost: import.meta.env.VITE_PUSHER_HOST ?? `ws-${import.meta.env.VITE_PUSHER_APP_CLUSTER}.pusher.com`, +// wsPort: import.meta.env.VITE_PUSHER_PORT ?? 80, +// wssPort: import.meta.env.VITE_PUSHER_PORT ?? 443, +// forceTLS: (import.meta.env.VITE_PUSHER_SCHEME ?? 'https') === 'https', +// enabledTransports: ['ws', 'wss'], +// }); diff --git a/resources/sass/_variables.scss b/resources/sass/_variables.scss new file mode 100644 index 0000000..172daaa --- /dev/null +++ b/resources/sass/_variables.scss @@ -0,0 +1,7 @@ +// Body +$body-bg: #f8fafc; + +// Typography +$font-family-sans-serif: 'Nunito', sans-serif; +$font-size-base: 0.9rem; +$line-height-base: 1.6; diff --git a/resources/sass/app.scss b/resources/sass/app.scss new file mode 100644 index 0000000..1026a0b --- /dev/null +++ b/resources/sass/app.scss @@ -0,0 +1,8 @@ +// Fonts +@import url('https://fonts.bunny.net/css?family=Nunito'); + +// Variables +@import 'variables'; + +// Bootstrap +@import 'bootstrap/scss/bootstrap'; diff --git a/resources/views/admin b/resources/views/admin new file mode 100644 index 0000000..e69de29 diff --git a/resources/views/agent/list.blade.php b/resources/views/agent/list.blade.php new file mode 100644 index 0000000..fba286c --- /dev/null +++ b/resources/views/agent/list.blade.php @@ -0,0 +1,4 @@ +@extends('layouts.app') + +@section('content') +@endsection diff --git a/resources/views/auth/login.blade.php b/resources/views/auth/login.blade.php new file mode 100644 index 0000000..84bb9d4 --- /dev/null +++ b/resources/views/auth/login.blade.php @@ -0,0 +1,80 @@ +@extends('layouts.guest') + +@section('content') + +@endsection diff --git a/resources/views/auth/passwords/confirm.blade.php b/resources/views/auth/passwords/confirm.blade.php new file mode 100644 index 0000000..d446b70 --- /dev/null +++ b/resources/views/auth/passwords/confirm.blade.php @@ -0,0 +1,52 @@ +@extends('layouts.guest') + +@section('content') + +@endsection diff --git a/resources/views/auth/passwords/email.blade.php b/resources/views/auth/passwords/email.blade.php new file mode 100644 index 0000000..8cef084 --- /dev/null +++ b/resources/views/auth/passwords/email.blade.php @@ -0,0 +1,50 @@ +@extends('layouts.guest') + +@section('content') +
+
+
+
+
{{ __('Reset Password') }}
+ +
+ @if (session('status')) + + @endif + +
+ @csrf + +
+ + +
+ + + @error('email') + + {{ $message }} + + @enderror +
+
+ +
+
+ +
+
+
+
+
+
+
+
+@endsection diff --git a/resources/views/auth/passwords/reset.blade.php b/resources/views/auth/passwords/reset.blade.php new file mode 100644 index 0000000..74233c9 --- /dev/null +++ b/resources/views/auth/passwords/reset.blade.php @@ -0,0 +1,73 @@ +@extends('layouts.guest') + +@section('content') +
+
+
+
+
{{ __('Reset Password') }}
+ +
+
+ @csrf + + + +
+ + +
+ + + @error('email') + + {{ $message }} + + @enderror +
+
+ +
+ + +
+ + + @error('password') + + {{ $message }} + + @enderror +
+
+ +
+ + +
+ +
+
+ +
+
+ +
+
+
+
+
+
+
+
+@endsection diff --git a/resources/views/auth/register.blade.php b/resources/views/auth/register.blade.php new file mode 100644 index 0000000..3c59f9f --- /dev/null +++ b/resources/views/auth/register.blade.php @@ -0,0 +1,139 @@ +@extends('layouts.guest') + +@section('content') +
+
+
+
+
Регистрация агента
+ +
+
+ @csrf + +
+ +
+ + + @error('name') + + {{ $message }} + + @enderror +
+
+ +
+ +
+ + + @error('phone') + + {{ $message }} + + @enderror +
+
+ +
+ + +
+ + + @error('email') + + {{ $message }} + + @enderror +
+
+ +
+ + +
+ + + @error('password') + + {{ $message }} + + @enderror +
+
+ +
+ + +
+ +
+
+ +
+
+ + +
+ + + @error('type') + + {{ $message }} + + @enderror +
+
+ +
+ +
+ + + @error('inn') + + {{ $message }} + + @enderror +
+
+
+ +
+
+ +
+
+
+
+
+
+
+
+@endsection diff --git a/resources/views/auth/verify.blade.php b/resources/views/auth/verify.blade.php new file mode 100644 index 0000000..a4115f1 --- /dev/null +++ b/resources/views/auth/verify.blade.php @@ -0,0 +1,29 @@ +@extends('layouts.guest') + +@section('content') +
+
+
+
+
{{ __('Verify Your Email Address') }}
+ +
+ @if (session('resent')) + + @endif + + {{ __('Before proceeding, please check your email for a verification link.') }} + {{ __('If you did not receive the email') }}, +
+ @csrf + . +
+
+
+
+
+
+@endsection diff --git a/resources/views/clients/table.blade.php b/resources/views/clients/table.blade.php new file mode 100644 index 0000000..40bf422 --- /dev/null +++ b/resources/views/clients/table.blade.php @@ -0,0 +1,43 @@ +@extends('layouts.app') + +@section('content') +
+
+
+ + + + + + + + +
+
+ +
+
+ @if (!$status || $status == 'all' || $status == 'unique') +

Уникальные

+
+ @livewire('clientsTable', ['status' => 'UNIQUE']) +
+ @endif + + @if (!$status || $status == 'all' || $status == 'not unique') +

Не уникальные

+
+ @livewire('clientsTable', ['status' => 'NOT UNIQUE']) +
+ @endif +
+@endsection diff --git a/resources/views/company/create.blade.php b/resources/views/company/create.blade.php new file mode 100644 index 0000000..242a331 --- /dev/null +++ b/resources/views/company/create.blade.php @@ -0,0 +1,27 @@ +@extends('layouts.guest') + +@section('content') +
+ @csrf +
+ + +
+ +
+ + +
+ +
+ + +
+
+ + +
+ + +
+@endsection diff --git a/resources/views/company/details/agency.blade.php b/resources/views/company/details/agency.blade.php new file mode 100644 index 0000000..7d4e2d0 --- /dev/null +++ b/resources/views/company/details/agency.blade.php @@ -0,0 +1,195 @@ +@extends('layouts.app') + +@section('content') +
+
+ @csrf +
+
+
+ + + @error('details.inn') + + {{ $message }} + + @enderror +
+
+
+
+ + + @error('email') + + {{ $message }} + + @enderror +
+
+
+ +
+
+
+ + + @error('details.kpp') + + {{ $message }} + + @enderror +
+
+
+
+ + + @error('details.ogrn') + + {{ $message }} + + @enderror +
+
+
+ +
+
+
+ + + @error('name') + + {{ $message }} + + @enderror +
+
+
+
+ + + @error('fullName') + + {{ $message }} + + @enderror +
+
+
+
+ + + @error('details.post_address') + + {{ $message }} + + @enderror +
+
+ + + @error('details.address') + + {{ $message }} + + @enderror +
+
+ + + @error('details.legal_address') + + {{ $message }} + + @enderror +
+ +
+
+
+ + + @error('details.bank.name') + + {{ $message }} + + @enderror +
+
+
+
+ + + @error('details.bank.bik') + + {{ $message }} + + @enderror +
+
+
+ +
+
+
+ + + @error('details.bank.cur') + + {{ $message }} + + @enderror +
+
+
+
+ + + @error('details.bank.pers') + + {{ $message }} + + @enderror +
+
+
+ +
+
+@endsection diff --git a/resources/views/company/details/selfemp.blade.php b/resources/views/company/details/selfemp.blade.php new file mode 100644 index 0000000..a2d8d5a --- /dev/null +++ b/resources/views/company/details/selfemp.blade.php @@ -0,0 +1,186 @@ +@extends('layouts.app') + +@section('content') +
+
+ @csrf +
+
+
+ + + @error('user.firstName') + + {{ $message }} + + @enderror +
+
+
+
+ + + @error('user.secondName') + + {{ $message }} + + @enderror +
+
+
+ +
+
+
+ + + @error('user.email') + + {{ $message }} + + @enderror +
+
+
+
+ + + @error('user.phone') + + {{ $message }} + + @enderror +
+
+
+
Реквизиты
+ +
+ + + @error('details.address') + + {{ $message }} + + @enderror +
+ +
+ + + @error('details.legal_address') + + {{ $message }} + + @enderror +
+ +
+
+
+ + + @error('details.inn') + + {{ $message }} + + @enderror +
+
+
+
+ + + @error('details.snils') + + {{ $message }} + + @enderror +
+
+
+ +
+
+
+ + + @error('details.bank.name') + + {{ $message }} + + @enderror +
+
+
+
+ + + @error('details.bank.bik') + + {{ $message }} + + @enderror +
+
+
+ +
+
+
+ + + @error('details.bank.cur') + + {{ $message }} + + @enderror +
+
+
+
+ + + @error('details.bank.pers') + + {{ $message }} + + @enderror +
+
+
+ +
+
+@endsection diff --git a/resources/views/home.blade.php b/resources/views/home.blade.php new file mode 100644 index 0000000..0e336a6 --- /dev/null +++ b/resources/views/home.blade.php @@ -0,0 +1,5 @@ +@extends('layouts.app') + +@section('content') + Вы вошли +@endsection diff --git a/resources/views/layouts/app.blade.php b/resources/views/layouts/app.blade.php new file mode 100644 index 0000000..48ec5b0 --- /dev/null +++ b/resources/views/layouts/app.blade.php @@ -0,0 +1,97 @@ + + + + + + + + + + + {{ config('app.name', 'Laravel') }} + + + + + + + @vite(['resources/sass/app.scss', 'resources/js/app.js', 'resources/css/app.css']) + + + +
+ + +
+ +
+
+
+ @include('left-panel') +
+
+ @yield('content') +
+
+
+ +
+
+ + + diff --git a/resources/views/layouts/guest.blade.php b/resources/views/layouts/guest.blade.php new file mode 100644 index 0000000..43210f0 --- /dev/null +++ b/resources/views/layouts/guest.blade.php @@ -0,0 +1,53 @@ + + + + + + + + Laravel + + + + + + + + + + @vite(['resources/sass/app.scss', 'resources/js/app.js', 'resources/css/app.css']) + + + + + +
+ +
+ @yield('content') +
+ + + diff --git a/resources/views/layouts/pagination.blade.php b/resources/views/layouts/pagination.blade.php new file mode 100644 index 0000000..f16f0da --- /dev/null +++ b/resources/views/layouts/pagination.blade.php @@ -0,0 +1,21 @@ +
+ @if ($paginator->hasPages()) + @foreach ($elements as $element) + @if (is_array($element)) + @foreach ($element as $page => $url) + @if ($page == $paginator->currentPage()) + + {{ $page }} + + @else + + {{ $page }} + + @endif + @endforeach + @endif + @endforeach + @endif +
diff --git a/resources/views/left-panel.blade.php b/resources/views/left-panel.blade.php new file mode 100644 index 0000000..f80554f --- /dev/null +++ b/resources/views/left-panel.blade.php @@ -0,0 +1,26 @@ + diff --git a/resources/views/livewire/clients-table.blade.php b/resources/views/livewire/clients-table.blade.php new file mode 100644 index 0000000..8c3a90b --- /dev/null +++ b/resources/views/livewire/clients-table.blade.php @@ -0,0 +1,30 @@ +
+
+ + + @foreach ($deals as $deal) + + + + + + + + @endforeach + +
+ + + {{ $deal->user->name }} + + {{ $deal->user->phone }} + + {{ $deal->user->email }} + + {{ $deal->complex->city->name }} +
+
+
+ {{ $deals->links('layouts.pagination') }} +
+
diff --git a/resources/views/livewire/create-client-form.blade.php b/resources/views/livewire/create-client-form.blade.php new file mode 100644 index 0000000..26b0e98 --- /dev/null +++ b/resources/views/livewire/create-client-form.blade.php @@ -0,0 +1,143 @@ +
+
+
+ Loading... +
+
+
+ @if ($status == self::NEW || $status == self::READY) +
+ Добавить клиента +
+
+
+
+ + + @error('client.firstName') + + {{ $message }} + + @enderror +
+
+
+
+ + + @error('client.secondName') + + {{ $message }} + + @enderror +
+ +
+
+
+
+
+ + + @error('client.phone') + + {{ $message }} + + @enderror +
+
+
+
+ + + @error('client.city') + + {{ $message }} + + @enderror +
+
+
+
+ + + @error('client.complexId') + + {{ $message }} + + @enderror +
+ @if ($status == self::READY && !$errors->any()) +
+ +
+ @else +
+ +
+ @endif + @endif + + @if ($status == self::SUCCESS) +
+ + + + +
+ +
Клиент добавлен
+
Мы проверим его уникальность и направим Вам информацию в личном + кабинете
+
+ +
+ @endif + + @if ($status == self::ERROR) +
+ + + + +
+ +
Ой!
+
Кажется, возникла проблема на нашей стороне, мы уже ее решаем. + Попробуйте зайти сюда позже.
+
+ +
+ @endif +
+
diff --git a/resources/views/user/dashboard.blade.php b/resources/views/user/dashboard.blade.php new file mode 100644 index 0000000..14e1b52 --- /dev/null +++ b/resources/views/user/dashboard.blade.php @@ -0,0 +1,213 @@ +@extends('layouts.app') + +@section('content') + +
+
+
Новости
+
Смотреть все
+
+
+
+
+
+
+
+ Акция +
+

Скидка 30% на апартаменты

+
+
+
+ + + +
+
+
+
+
+
+
+
+ Акция +
+

Скидка 30% на апартаменты

+
+
+
+ + + +
+
+
+
+
+
+
+
+ Акция +
+

Скидка 30% на апартаменты

+
+
+
+ + + +
+
+
+
+
+
+
+
Избранное
+
Смотреть все
+
+
+
+
+ ... +
+ Новые + корпуса + Ипотека + 5% +
+
+
+
+ Пионер + от 4,5 млн. Р +
+

Иркутск, ул. 4-я Совесткая, 11

+
+
+
+
+ ... +
+ Новые + корпуса + Ипотека + 5% +
+
+
+
+ Пионер + от 4,5 млн. Р +
+

Иркутск, ул. 4-я Совесткая, 11

+
+
+
+
+ ... +
+ Новые + корпуса + Ипотека + 5% +
+
+
+
+ Пионер + от 4,5 млн. Р +
+

Иркутск, ул. 4-я Совесткая, 11

+
+
+
+
+@endsection diff --git a/resources/views/vendor/livewire/bootstrap.blade.php b/resources/views/vendor/livewire/bootstrap.blade.php new file mode 100644 index 0000000..8316ff9 --- /dev/null +++ b/resources/views/vendor/livewire/bootstrap.blade.php @@ -0,0 +1,102 @@ +@php +if (! isset($scrollTo)) { + $scrollTo = 'body'; +} + +$scrollIntoViewJsSnippet = ($scrollTo !== false) + ? << + @if ($paginator->hasPages()) + + @endif +
diff --git a/resources/views/vendor/livewire/simple-bootstrap.blade.php b/resources/views/vendor/livewire/simple-bootstrap.blade.php new file mode 100644 index 0000000..44bdce0 --- /dev/null +++ b/resources/views/vendor/livewire/simple-bootstrap.blade.php @@ -0,0 +1,53 @@ +@php +if (! isset($scrollTo)) { + $scrollTo = 'body'; +} + +$scrollIntoViewJsSnippet = ($scrollTo !== false) + ? << + @if ($paginator->hasPages()) + + @endif + diff --git a/resources/views/vendor/livewire/simple-tailwind.blade.php b/resources/views/vendor/livewire/simple-tailwind.blade.php new file mode 100644 index 0000000..1030361 --- /dev/null +++ b/resources/views/vendor/livewire/simple-tailwind.blade.php @@ -0,0 +1,56 @@ +@php +if (! isset($scrollTo)) { + $scrollTo = 'body'; +} + +$scrollIntoViewJsSnippet = ($scrollTo !== false) + ? << + @if ($paginator->hasPages()) + + @endif + diff --git a/resources/views/vendor/livewire/tailwind.blade.php b/resources/views/vendor/livewire/tailwind.blade.php new file mode 100644 index 0000000..9ad7f28 --- /dev/null +++ b/resources/views/vendor/livewire/tailwind.blade.php @@ -0,0 +1,126 @@ +@php +if (! isset($scrollTo)) { + $scrollTo = 'body'; +} + +$scrollIntoViewJsSnippet = ($scrollTo !== false) + ? << + @if ($paginator->hasPages()) + + @endif + diff --git a/resources/views/welcome.blade.php b/resources/views/welcome.blade.php new file mode 100644 index 0000000..0ca9541 --- /dev/null +++ b/resources/views/welcome.blade.php @@ -0,0 +1,12 @@ +@extends('layouts.guest') + +@section('content') + +@endsection diff --git a/routes/api.php b/routes/api.php new file mode 100644 index 0000000..24b5477 --- /dev/null +++ b/routes/api.php @@ -0,0 +1,24 @@ +get('/user', function (Request $request) { + return $request->user(); +}); + +Route::post('/client/confirm', [ConfirmClientFromBitrix::class, 'confirm'])->name('deal.confirm'); diff --git a/routes/channels.php b/routes/channels.php new file mode 100644 index 0000000..5d451e1 --- /dev/null +++ b/routes/channels.php @@ -0,0 +1,18 @@ +id === (int) $id; +}); diff --git a/routes/console.php b/routes/console.php new file mode 100644 index 0000000..e05f4c9 --- /dev/null +++ b/routes/console.php @@ -0,0 +1,19 @@ +comment(Inspiring::quote()); +})->purpose('Display an inspiring quote'); diff --git a/routes/web.php b/routes/web.php new file mode 100644 index 0000000..e608e68 --- /dev/null +++ b/routes/web.php @@ -0,0 +1,37 @@ +name('company.form.create'); + +Route::post('/company/create', CreateCompanyController::class)->name('company.create'); + +Auth::routes(); + +Route::get('/home', [App\Http\Controllers\HomeController::class, 'index'])->name('home'); +Route::get('/clients/table', [App\Http\Controllers\ClientsTableController::class, 'index'])->name('clients.table'); +Route::get('/company/{company}/details/', [App\Http\Controllers\Company\DetailsController::class, 'index'])->name('company.details'); +Route::post('/company/{company}/details/', [App\Http\Controllers\Company\DetailsController::class, 'store'])->name('company.details.store'); + + + diff --git a/storage/app/.gitignore b/storage/app/.gitignore new file mode 100755 index 0000000..8f4803c --- /dev/null +++ b/storage/app/.gitignore @@ -0,0 +1,3 @@ +* +!public/ +!.gitignore diff --git a/storage/app/public/.gitignore b/storage/app/public/.gitignore new file mode 100755 index 0000000..d6b7ef3 --- /dev/null +++ b/storage/app/public/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/storage/framework/.gitignore b/storage/framework/.gitignore new file mode 100755 index 0000000..05c4471 --- /dev/null +++ b/storage/framework/.gitignore @@ -0,0 +1,9 @@ +compiled.php +config.php +down +events.scanned.php +maintenance.php +routes.php +routes.scanned.php +schedule-* +services.json diff --git a/storage/framework/cache/.gitignore b/storage/framework/cache/.gitignore new file mode 100755 index 0000000..01e4a6c --- /dev/null +++ b/storage/framework/cache/.gitignore @@ -0,0 +1,3 @@ +* +!data/ +!.gitignore diff --git a/storage/framework/cache/data/.gitignore b/storage/framework/cache/data/.gitignore new file mode 100755 index 0000000..d6b7ef3 --- /dev/null +++ b/storage/framework/cache/data/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/storage/framework/sessions/.gitignore b/storage/framework/sessions/.gitignore new file mode 100755 index 0000000..d6b7ef3 --- /dev/null +++ b/storage/framework/sessions/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/storage/framework/testing/.gitignore b/storage/framework/testing/.gitignore new file mode 100755 index 0000000..d6b7ef3 --- /dev/null +++ b/storage/framework/testing/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/storage/framework/views/.gitignore b/storage/framework/views/.gitignore new file mode 100755 index 0000000..d6b7ef3 --- /dev/null +++ b/storage/framework/views/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/storage/logs/.gitignore b/storage/logs/.gitignore new file mode 100755 index 0000000..d6b7ef3 --- /dev/null +++ b/storage/logs/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/tests/CreatesApplication.php b/tests/CreatesApplication.php new file mode 100644 index 0000000..cc68301 --- /dev/null +++ b/tests/CreatesApplication.php @@ -0,0 +1,21 @@ +make(Kernel::class)->bootstrap(); + + return $app; + } +} diff --git a/tests/Feature/ExampleTest.php b/tests/Feature/ExampleTest.php new file mode 100644 index 0000000..8364a84 --- /dev/null +++ b/tests/Feature/ExampleTest.php @@ -0,0 +1,19 @@ +get('/'); + + $response->assertStatus(200); + } +} diff --git a/tests/TestCase.php b/tests/TestCase.php new file mode 100644 index 0000000..2932d4a --- /dev/null +++ b/tests/TestCase.php @@ -0,0 +1,10 @@ +assertTrue(true); + } +} diff --git a/vite.config.js b/vite.config.js new file mode 100644 index 0000000..ba008c1 --- /dev/null +++ b/vite.config.js @@ -0,0 +1,15 @@ +import { defineConfig } from 'vite'; +import laravel from 'laravel-vite-plugin'; + +export default defineConfig({ + plugins: [ + laravel({ + input: [ + 'resources/sass/app.scss', + 'resources/js/app.js', + 'resources/css/app.css', + ], + refresh: true, + }), + ], +});