commit a5569ce2a0059332be3acc3c0db8e44c1d2f5bba Author: Debian Date: Wed Jun 3 04:18:36 2026 +0700 initial commit diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..0ed871e --- /dev/null +++ b/.dockerignore @@ -0,0 +1,12 @@ +.git +.gitignore +.dockerignore +.env +.env.* +*.md +error_log +.well-known +node_modules +vendor +storage +public_html diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..aa9e433 --- /dev/null +++ b/.env.example @@ -0,0 +1,23 @@ +# App +APP_URL=https://your-domain.com +APP_KEY= + +# Database +DB_DATABASE=humicpro_aigo +DB_USERNAME=humicpro_aigo +DB_PASSWORD=changeme +DB_ROOT_PASSWORD=rootpass + +# Reverb (WebSocket) +REVERB_APP_ID=103594 +REVERB_APP_KEY=zlno4t94kysjzmtwlmux +REVERB_APP_SECRET=7zpl1vq4qvvotvrodq2u + +# Vite build-time vars (used when rebuilding frontend) +VITE_REVERB_HOST=your-domain.com +VITE_REVERB_PORT=8080 +VITE_REVERB_SCHEME=https + +# Strava (optional) +STRAVA_CLIENT_ID=124405 +STRAVA_CLIENT_SECRET= diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..98f20c9 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,39 @@ +FROM composer:2.7 AS composer +WORKDIR /app +COPY aigo/ . +RUN composer install --no-dev --optimize-autoloader --no-interaction + +FROM node:20-slim AS npm +ARG VITE_REVERB_APP_KEY +ARG VITE_REVERB_HOST +ARG VITE_REVERB_PORT +ARG VITE_REVERB_SCHEME +ENV VITE_REVERB_APP_KEY=$VITE_REVERB_APP_KEY +ENV VITE_REVERB_HOST=$VITE_REVERB_HOST +ENV VITE_REVERB_PORT=$VITE_REVERB_PORT +ENV VITE_REVERB_SCHEME=$VITE_REVERB_SCHEME +WORKDIR /app +COPY aigo/ . +RUN npm ci && npm run build + +FROM php:8.2-apache AS runtime +RUN apt-get update && apt-get install -y --no-install-recommends \ + libpq-dev libzip-dev libicu-dev libgd-dev libcurl4-openssl-dev unzip \ + && rm -rf /var/lib/apt/lists/* +RUN docker-php-ext-install pdo_mysql mbstring bcmath xml curl gd zip intl +RUN pecl install redis && docker-php-ext-enable redis +RUN a2enmod rewrite + +COPY --from=composer /app/vendor /var/www/aigo/vendor +COPY --from=npm /app /var/www/aigo + +RUN mkdir -p /var/www/aigo/storage/framework/{cache/sessions,cache/data,views,testing} \ + /var/www/aigo/storage/logs \ + /var/www/aigo/bootstrap/cache + +COPY docker/apache/000-default.conf /etc/apache2/sites-available/000-default.conf +COPY docker-entrypoint.sh /usr/local/bin/ +RUN chmod +x /usr/local/bin/docker-entrypoint.sh + +ENTRYPOINT ["docker-entrypoint.sh"] +CMD ["apache2-foreground"] diff --git a/README.md b/README.md new file mode 100644 index 0000000..8f8c042 --- /dev/null +++ b/README.md @@ -0,0 +1,94 @@ +# AIGO - Docker Deployment + +## Project Structure + +``` +aigo-docker/ +├── Dockerfile # 3-stage: composer → npm build → php:8.2-apache +├── docker-compose.yml # 4 services: app, reverb, queue, db +├── docker-entrypoint.sh # Waits for DB, runs migrate/cache/link +├── .env.example # All required env vars +├── .dockerignore +├── docker/apache/ +│ └── 000-default.conf # DocumentRoot = /var/www/aigo/public +├── aigo/ # Laravel source (git-tracked) +│ ├── app/ +│ ├── config/ +│ ├── routes/ +│ ├── resources/ # Blade views, JS (echo.js), CSS +│ ├── public/ # Static assets, build output +│ ├── composer.json +│ ├── package.json +│ └── ... +└── humicpro_aigo.sql # Database dump (auto-imported by MySQL) +``` + +## Build Stages + +| Stage | Image | Purpose | +|-------|-------|---------| +| `composer` | `composer:2.7` | `composer install --no-dev` | +| `npm` | `node:20-slim` | `npm ci && npm run build` (compiles VITE_* vars into JS) | +| `runtime` | `php:8.2-apache` | Apache + PHP with `mod_rewrite`, `pdo_mysql`, `redis` | + +## Deploy to Coolify + +1. Push this repo to GitHub/GitLab +2. In Coolify, create a new project → select your repo +3. Coolify auto-detects `docker-compose.yml` +4. Set these **environment variables** in Coolify's UI: + +### Required + +| Variable | Description | How to get it | +|----------|-------------|---------------| +| `APP_URL` | Your domain | `https://your-domain.com` | +| `APP_KEY` | Laravel encryption key | Run `php artisan key:generate --show` locally | +| `DB_PASSWORD` | MySQL user password | Choose a secure password | +| `DB_ROOT_PASSWORD` | MySQL root password | Choose a secure password | + +### WebSocket (Reverb) + +| Variable | Description | Example | +|----------|-------------|---------| +| `VITE_REVERB_HOST` | Your Coolify domain | `your-domain.com` | +| `VITE_REVERB_PORT` | WebSocket port | `8080` | +| `VITE_REVERB_SCHEME` | `https` if Traefik handles TLS | `https` | + +These VITE_* vars are build args — they get compiled into the JS bundle. To change them, update the env var in Coolify and rebuild. + +### Optional + +| Variable | Default | +|----------|---------| +| `STRAVA_CLIENT_ID` | `124405` | +| `STRAVA_CLIENT_SECRET` | (leave blank if not used) | +| `REVERB_APP_ID` | `103594` | +| `REVERB_APP_KEY` | `zlno4t94kysjzmtwlmux` | +| `REVERB_APP_SECRET` | `7zpl1vq4qvvotvrodq2u` | + +5. In the **reverb** service settings, expose port **8080** via Traefik +6. Deploy — MySQL auto-imports `humicpro_aigo.sql` on first startup + +## Architecture + +``` +Browser ──HTTPS──> Coolify/Traefik ──> app container (port 80 / Apache) +Browser ──WSS──> Coolify/Traefik ──> reverb container (port 8080 / Reverb WebSocket) +``` + +## Services + +| Service | Image | Purpose | +|---------|-------|---------| +| `app` | Built from Dockerfile | Apache + PHP-FPM, serves the Laravel app | +| `reverb` | Same image | Runs `php artisan reverb:start` for real-time WebSocket | +| `queue` | Same image | Runs `php artisan queue:work` for background jobs | +| `db` | `mysql:8.0` | MySQL database with auto-import of SQL dump | + +## Maintenance + +- **Storage**: Persistent volume `aigo-storage` at `/var/www/aigo/storage` +- **Database**: Persistent volume `dbdata` at `/var/lib/mysql` +- **Logs**: Available via `docker compose logs -f [service]` +- **To change domain**: Update `APP_URL` + `VITE_REVERB_HOST` in Coolify, rebuild diff --git a/aigo/.editorconfig b/aigo/.editorconfig new file mode 100644 index 0000000..8f0de65 --- /dev/null +++ b/aigo/.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/aigo/.env.example b/aigo/.env.example new file mode 100644 index 0000000..a3df402 --- /dev/null +++ b/aigo/.env.example @@ -0,0 +1,72 @@ +APP_NAME=Aigo +APP_ENV=local +APP_KEY= +APP_DEBUG=true +APP_TIMEZONE=UTC +APP_URL=http://localhost + +APP_LOCALE=en +APP_FALLBACK_LOCALE=en +APP_FAKER_LOCALE=en_US + +APP_MAINTENANCE_DRIVER=file +APP_MAINTENANCE_STORE=database + +BCRYPT_ROUNDS=12 + +LOG_CHANNEL=stack +LOG_STACK=single +LOG_DEPRECATIONS_CHANNEL=null +LOG_LEVEL=debug + +DB_CONNECTION=mysql +DB_HOST=127.0.0.1 +DB_PORT=3306 +DB_DATABASE=aigo +DB_USERNAME=root +DB_PASSWORD= + +SESSION_DRIVER=database +SESSION_LIFETIME=120 +SESSION_ENCRYPT=false +SESSION_PATH=/ +SESSION_DOMAIN=null + +BROADCAST_CONNECTION=pusher +FILESYSTEM_DISK=local +QUEUE_CONNECTION=database + +CACHE_STORE=database +CACHE_PREFIX= + +MEMCACHED_HOST=127.0.0.1 + +PUSHER_APP_ID= +PUSHER_APP_KEY= +PUSHER_APP_SECRET= + +REDIS_CLIENT=phpredis +REDIS_HOST=127.0.0.1 +REDIS_PASSWORD=null +REDIS_PORT=6379 + +MAIL_MAILER=log +MAIL_HOST=127.0.0.1 +MAIL_PORT=2525 +MAIL_USERNAME=null +MAIL_PASSWORD=null +MAIL_ENCRYPTION=null +MAIL_FROM_ADDRESS="hello@example.com" +MAIL_FROM_NAME="${APP_NAME}" + +AWS_ACCESS_KEY_ID= +AWS_SECRET_ACCESS_KEY= +AWS_DEFAULT_REGION=us-east-1 +AWS_BUCKET= +AWS_USE_PATH_STYLE_ENDPOINT=false + +VITE_APP_NAME="${APP_NAME}" + +STRAVA_CLIENT_ID= +STRAVA_CLIENT_SECRET= +STRAVA_REDIRECT_URI= \ No newline at end of file diff --git a/aigo/.gitattributes b/aigo/.gitattributes new file mode 100644 index 0000000..fcb21d3 --- /dev/null +++ b/aigo/.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/aigo/.github/workflows/laravel.yml b/aigo/.github/workflows/laravel.yml new file mode 100644 index 0000000..2ab5179 --- /dev/null +++ b/aigo/.github/workflows/laravel.yml @@ -0,0 +1,34 @@ +name: Aigo + +on: + push: + branches: ["unit-test"] + pull_request: + branches: ["unit-test"] + +jobs: + laravel-tests: + runs-on: ubuntu-latest + + steps: + - uses: shivammathur/setup-php@15c43e89cdef867065b0213be354c2841860869e + with: + php-version: "8.2" + - uses: actions/checkout@v3 + - name: Copy .env + run: php -r "file_exists('.env') || copy('.env.example', '.env');" + - name: Install Dependencies + run: composer install -q --no-ansi --ignore-platform-reqs --no-interaction --no-scripts --no-progress --prefer-dist + - name: Generate key + run: php artisan key:generate + - name: Directory Permissions + run: chmod -R 777 storage bootstrap/cache + - name: Create Database + run: | + mkdir -p database + touch database/database.sqlite + - name: Execute tests (Unit and Feature tests) via PHPUnit + env: + DB_CONNECTION: sqlite + DB_DATABASE: database/database.sqlite + run: vendor/bin/phpunit diff --git a/aigo/.gitignore b/aigo/.gitignore new file mode 100644 index 0000000..a75d1e8 --- /dev/null +++ b/aigo/.gitignore @@ -0,0 +1,27 @@ +/vendor/ +node_modules/ +npm-debug.log +yarn-error.log + +# Laravel 4 specific +bootstrap/compiled.php +app/storage/ + +# Laravel 5 & Lumen specific +public/storage +public/hot + +# Laravel 5 & Lumen specific with changed public path +public_html/storage +public_html/hot + +public/build/ +storage/*.key +.env +.env.production +.env.*.local +Homestead.yaml +Homestead.json +/.vagrant +.phpunit.result.cache +bootstrap/cache/*.php diff --git a/aigo/CODE_OF_CONDUCT.md b/aigo/CODE_OF_CONDUCT.md new file mode 100644 index 0000000..8130b98 --- /dev/null +++ b/aigo/CODE_OF_CONDUCT.md @@ -0,0 +1,19 @@ +## Our Responsibilities + +To provide you with the most personalized experience possible, AIGO offers features that connect with your [**Strava account**](https://support.strava.com/hc/en-us/articles/360018969732-App-Authorization-Settings). We understand data privacy is important, and we want to assure you that your information is secure. + +- By authorizing your [**Strava account**](https://support.strava.com/hc/en-us/articles/360018969732-App-Authorization-Settings), you're enabling us to provide you a personalized experience while ensuring the security and protection of your data. +- We only access data relevant to your AIGO experience. +- We're committed to transparency in how we handle your data, and we will never misuse or share it without your explicit consent. + +Your trust is paramount to us, and we're dedicated to upholding the highest standards of data privacy and security in everything we do. + +## Scope + +This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be reported . All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. + +Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. diff --git a/aigo/LICENSE b/aigo/LICENSE new file mode 100644 index 0000000..4c0d268 --- /dev/null +++ b/aigo/LICENSE @@ -0,0 +1,22 @@ +The MIT License + +Copyright (c) 2012 Cloud9 IDE, Inc. (Mike de Boer) +Copyright (c) 2017-2018 Octokit contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/aigo/README.md b/aigo/README.md new file mode 100644 index 0000000..1205805 --- /dev/null +++ b/aigo/README.md @@ -0,0 +1,76 @@ +

AIGO Logo

+ +

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

+ +

+ Overview • + Features • + Getting Started • + Requirements • + Contributors • + License +

+ +## Overview + +![Aigo Web](public/asset/png/web.png) + +AIGO is an AI-powered guidance system designed to assist in the management of obesity. This innovative platform leverages the power of Internet of Things (IoT) devices, specifically smartwatches, to gain valuable insights into your daily activities. Aigo provides personalized recommendations for weight management, nutrition, and exercise. + +## Features + +Our platform offers a comprehensive suite of features designed to manage healthy lifestyle habits and effective weight management: + +- **Real-time Progress Monitoring:** Visualize your activity progress in real-time through intuitive dashboards and charts. + +- **IoT-Powered Health Tracking**: Monitor your daily activity, such as steps taken, distance traveled, and calories burned. + +- **Personalized Health Recommendation**: AIGO utilizes IoT devices (smartwatch) to monitor various lifestyle such as physical activity, eating habits, and sleep patterns. Users can receive recommendations by consulting a doctor by utilizing those data. + +## Requirements + +- **Internet Connection.** A stable internet connection is required to access our web platform and interact with our services seamlessly. +- **IoT Devices.** The types of IoT devices supported for monitoring physical activity are smartwatches and smartbands, such as Apple Watch, Mi Band, Amazfit, etc. _(Tested on Amazfit GTS 2e)_ +- **Strava Account.** To access our services, you'll need a Strava account for [authentication and authorization purposes](#data-privacy-and-security). + +## Getting Started + +To set up and utilize our platform, follow these steps: + +- Register an account and provide basic personal information. +- In order to use our services, you need to [Authorize Strava Account](https://support.strava.com/hc/en-us/articles/360018969732-App-Authorization-Settings) + +- Connect your IoT devices (smartwatch) to AIGO to start tracking key lifestyle metrics. + +- Track and Monitor your progress and visualize trends over time. + +- Access personalized recommendations based on your health data and activity progress + +## Contributors + +We appreciate the dedication and contributions of the following individuals to this project: + +| Name | Role | GitHub | +| ---------------------------- | -------------------------------------- | --------------------------------------------------------- | +| Rafidhia Haikal Pasya | Full-stack Developer & DevOps Engineer | [@W-zrd](https://github.com/W-zrd/) | +| Putu Vidya Ananda Ratmayanti | UI Designer & Front-end Developer | [@vidyaratmayantii](https://github.com/vidyaratmayantii/) | +| Muhammad Vikhan Muharram | AI Developer | [@vikhanmuhammad](https://github.com/vikhanmuhammad/) | +| Mohammad William | UI Designer | [@Vanillateaa](https://github.com/Vanillateaa/) | + +Contributions are welcome! Please fork the repository and submit a pull request with your changes. + +## Acknowledgements + +- AIGO was developed to address the growing need for personalized health management solutions. +- Special thanks to all contributors and open-source libraries used in the development of AIGO. + +--- + +> Aigo [aigo.w333zard.my.id](http://aigo.w333zard.my.id/)  ·  +> GitHub [@W-zrd](https://github.com/W-zrd)  ·  +> Medium [@w333zard](https://medium.com/@flxnzz_47) diff --git a/aigo/SECURITY.md b/aigo/SECURITY.md new file mode 100644 index 0000000..3105980 --- /dev/null +++ b/aigo/SECURITY.md @@ -0,0 +1,13 @@ +# Security Policy + +If you discover a security issue, please bring it to our attention right away! + +## Reporting a Vulnerability + +Please **DO NOT** file a public issue to report a security vulberability, instead send your report privately to **rfdhaikal.wizz@proton.me**. This will help ensure that any vulnerabilities that are found can be [disclosed responsibly](https://en.wikipedia.org/wiki/Responsible_disclosure) to any affected parties. + +## Supported Versions + +Project versions that are currently being supported with security updates vary per project. +Please see specific project repositories for details. +If nothing is specified, only the latest major versions are supported. diff --git a/aigo/app/Http/Controllers/AdminController.php b/aigo/app/Http/Controllers/AdminController.php new file mode 100644 index 0000000..0bf343e --- /dev/null +++ b/aigo/app/Http/Controllers/AdminController.php @@ -0,0 +1,56 @@ +select('user_role', DB::raw('count(*) as count')) + ->get(); + + $doctorCount = User::where('user_role', 'doctor')->count(); + $patientCount = User::where('user_role', 'user')->count(); + $maleCount = User::where('user_role', 'user')->where('gender', 'Male')->count(); + $femaleCount = User::where('user_role', 'user')->where('gender', 'Female')->count(); + + $normalCount = HealthData::where('obesity_status', 'Normal')->count(); + $obesityCount = HealthData::where('obesity_status', 'Obesity')->count(); + + return view('dashboardAdmin', + compact('userRoleCounts', 'doctorCount', 'patientCount', 'maleCount', 'femaleCount', 'normalCount', 'obesityCount')); + } + + public function showDoctor(Request $request){ + return view('doctor-list', ["data" => User::where('user_role', 'doctor')->get()]); + } + + public function showPatient(Request $request) + { + $data = User::where('user_role', 'user')->get(); + return view('patient-list')->with('data', $data); + } + + public function showUserDetail($id){ + $data = User::find($id); + return view('update-user', compact('data')); + } + + public function updateData(Request $request, $id){ + $data = User::find($id); + $data -> update($request -> all()); + return redirect()->route('showPatient'); + } + + public function delete($id){ + $data = User::find($id); + $data -> delete(); + return redirect()->route('showPatient'); + } +} diff --git a/aigo/app/Http/Controllers/Api/HealthDataAPIController.php b/aigo/app/Http/Controllers/Api/HealthDataAPIController.php new file mode 100644 index 0000000..ec5277f --- /dev/null +++ b/aigo/app/Http/Controllers/Api/HealthDataAPIController.php @@ -0,0 +1,21 @@ +first(); + + if (!$healthData) { + return response()->json(['error' => 'Health data not found'], 404); + } + + return response()->json($healthData); + } +} \ No newline at end of file diff --git a/aigo/app/Http/Controllers/Api/UserAPIController.php b/aigo/app/Http/Controllers/Api/UserAPIController.php new file mode 100644 index 0000000..7308f9d --- /dev/null +++ b/aigo/app/Http/Controllers/Api/UserAPIController.php @@ -0,0 +1,21 @@ +json(['error' => 'User not found'], 404); + } + + return response()->json($user); + } +} \ No newline at end of file diff --git a/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php b/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php new file mode 100644 index 0000000..ab3fb23 --- /dev/null +++ b/aigo/app/Http/Controllers/Auth/AuthenticatedSessionController.php @@ -0,0 +1,59 @@ +authenticate(); + $request->session()->regenerate(); + + $role = Auth::user()->user_role; + + if ($role == 'user') { + return redirect()->intended(route('dashboard')); + } else if ($role == 'doctor') { + // return redirect()->intended(route('doctor.dashboard')); + } else { + return redirect()->intended(route('admin.dashboard')); + } + } + + /** + * Destroy an authenticated session. + */ + public function destroy(Request $request): RedirectResponse + { + Auth::guard('web')->logout(); + + $request->session()->invalidate(); + + $request->session()->regenerateToken(); + + if ($request->session()->has('remember_token')) { + $request->session()->forget('remember_token'); + } + + return redirect('/'); + } +} diff --git a/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php b/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php new file mode 100644 index 0000000..712394a --- /dev/null +++ b/aigo/app/Http/Controllers/Auth/ConfirmablePasswordController.php @@ -0,0 +1,40 @@ +validate([ + 'email' => $request->user()->email, + 'password' => $request->password, + ])) { + throw ValidationException::withMessages([ + 'password' => __('auth.password'), + ]); + } + + $request->session()->put('auth.password_confirmed_at', time()); + + return redirect()->intended(route('dashboard', absolute: false)); + } +} diff --git a/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php b/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php new file mode 100644 index 0000000..f64fa9b --- /dev/null +++ b/aigo/app/Http/Controllers/Auth/EmailVerificationNotificationController.php @@ -0,0 +1,24 @@ +user()->hasVerifiedEmail()) { + return redirect()->intended(route('dashboard', absolute: false)); + } + + $request->user()->sendEmailVerificationNotification(); + + return back()->with('status', 'verification-link-sent'); + } +} diff --git a/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php b/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php new file mode 100644 index 0000000..ee3cb6f --- /dev/null +++ b/aigo/app/Http/Controllers/Auth/EmailVerificationPromptController.php @@ -0,0 +1,21 @@ +user()->hasVerifiedEmail() + ? redirect()->intended(route('dashboard', absolute: false)) + : view('auth.verify-email'); + } +} diff --git a/aigo/app/Http/Controllers/Auth/NewPasswordController.php b/aigo/app/Http/Controllers/Auth/NewPasswordController.php new file mode 100644 index 0000000..f1e2814 --- /dev/null +++ b/aigo/app/Http/Controllers/Auth/NewPasswordController.php @@ -0,0 +1,61 @@ + $request]); + } + + /** + * Handle an incoming new password request. + * + * @throws \Illuminate\Validation\ValidationException + */ + public function store(Request $request): RedirectResponse + { + $request->validate([ + 'token' => ['required'], + 'email' => ['required', 'email'], + 'password' => ['required', 'confirmed', Rules\Password::defaults()], + ]); + + // Here we will attempt to reset the user's password. If it is successful we + // will update the password on an actual user model and persist it to the + // database. Otherwise we will parse the error and return the response. + $status = Password::reset( + $request->only('email', 'password', 'password_confirmation', 'token'), + function ($user) use ($request) { + $user->forceFill([ + 'password' => Hash::make($request->password), + 'remember_token' => Str::random(60), + ])->save(); + + event(new PasswordReset($user)); + } + ); + + // If the password was successfully reset, we will redirect the user back to + // the application's home authenticated view. If there is an error we can + // redirect them back to where they came from with their error message. + return $status == Password::PASSWORD_RESET + ? redirect()->route('login')->with('status', __($status)) + : back()->withInput($request->only('email')) + ->withErrors(['email' => __($status)]); + } +} diff --git a/aigo/app/Http/Controllers/Auth/PasswordController.php b/aigo/app/Http/Controllers/Auth/PasswordController.php new file mode 100644 index 0000000..6916409 --- /dev/null +++ b/aigo/app/Http/Controllers/Auth/PasswordController.php @@ -0,0 +1,29 @@ +validateWithBag('updatePassword', [ + 'current_password' => ['required', 'current_password'], + 'password' => ['required', Password::defaults(), 'confirmed'], + ]); + + $request->user()->update([ + 'password' => Hash::make($validated['password']), + ]); + + return back()->with('status', 'password-updated'); + } +} diff --git a/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php b/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php new file mode 100644 index 0000000..ce813a6 --- /dev/null +++ b/aigo/app/Http/Controllers/Auth/PasswordResetLinkController.php @@ -0,0 +1,44 @@ +validate([ + 'email' => ['required', 'email'], + ]); + + // We will send the password reset link to this user. Once we have attempted + // to send the link, we will examine the response then see the message we + // need to show to the user. Finally, we'll send out a proper response. + $status = Password::sendResetLink( + $request->only('email') + ); + + return $status == Password::RESET_LINK_SENT + ? back()->with('status', __($status)) + : back()->withInput($request->only('email')) + ->withErrors(['email' => __($status)]); + } +} diff --git a/aigo/app/Http/Controllers/Auth/RegisteredUserController.php b/aigo/app/Http/Controllers/Auth/RegisteredUserController.php new file mode 100644 index 0000000..d61fa1f --- /dev/null +++ b/aigo/app/Http/Controllers/Auth/RegisteredUserController.php @@ -0,0 +1,59 @@ +validate([ + 'username' => 'required|string|unique:users', + 'password' => ['required', 'confirmed', Rules\Password::defaults()], + 'name' => ['required', 'string', 'max:255'], + 'email' => ['required', 'string', 'lowercase', 'email', 'max:255', 'unique:'.User::class], + 'telepon' => 'required|string', + 'alamat' => 'string', + 'gender' => 'required|string', + ]); + + $user = User::create([ + 'user_role' => 'user', + 'username' => $request->username, + 'password' => bcrypt($request->password), + 'name' => $request->name, + 'email' => $request->email, + 'telepon' => $request->telepon, + 'alamat' => $request->alamat, + 'gender' => $request->gender, + ]); + + event(new Registered($user)); + + //Auth::login($user); + + return redirect(route('login', absolute: false)); + } +} diff --git a/aigo/app/Http/Controllers/Auth/VerifyEmailController.php b/aigo/app/Http/Controllers/Auth/VerifyEmailController.php new file mode 100644 index 0000000..784765e --- /dev/null +++ b/aigo/app/Http/Controllers/Auth/VerifyEmailController.php @@ -0,0 +1,27 @@ +user()->hasVerifiedEmail()) { + return redirect()->intended(route('dashboard', absolute: false).'?verified=1'); + } + + if ($request->user()->markEmailAsVerified()) { + event(new Verified($request->user())); + } + + return redirect()->intended(route('dashboard', absolute: false).'?verified=1'); + } +} diff --git a/aigo/app/Http/Controllers/ConsultationController.php b/aigo/app/Http/Controllers/ConsultationController.php new file mode 100644 index 0000000..03f6bda --- /dev/null +++ b/aigo/app/Http/Controllers/ConsultationController.php @@ -0,0 +1,82 @@ +user(); + $healthData = HealthData::where('users_id', $user->id)->get()->last(); + return view('health-data', compact('healthData')); + } + + public function storeHealthDataForm(Request $request) + { + $validatedData = $request->validate([ + 'birthdate' => 'required|date', + 'weight' => 'required|numeric', + 'height' => 'required|numeric', + 'sleeptime' => 'required|integer', + 'disease' => 'required|string', + 'food' => 'required|string', + 'alergi_makanan' => 'required|string', + ]); + + $user = auth()->user(); + + $data = HealthData::create( + [ + 'users_id' => $user->id, + 'birthdate' => Carbon::parse($validatedData['birthdate'])->format('Y-m-d'), + 'weight' => $validatedData['weight'], + 'height' => $validatedData['height'], + 'sleeptime' => $validatedData['sleeptime'], + 'disease' => $validatedData['disease'], + 'food' => $validatedData['food'], + 'alergi_makanan' => $validatedData['alergi_makanan'], + ] + ); + + return redirect()->route('jadwal.show'); + } + + + public function showJadwalForm() + { + $user = auth()->user(); + $doctors = User::where('user_role', 'doctor')->get(); + return view('jadwal-konsultasi', compact('doctors')); + } + + // ConsultationController.php + public function storeConsultation(Request $request) + { + $validatedData = $request->validate([ + 'doctor_id' => 'required|exists:users,id', + 'consultation_date' => 'required|date', + 'consultation_time' => 'required', + 'location' => 'required|string', + ]); + + $user = auth()->user(); + + $data = Consultation::create([ + 'patient_id' => $user->id, + 'doctor_id' => $validatedData['doctor_id'], + 'consultation_date' => Carbon::parse($validatedData['consultation_date'])->format('Y-m-d'), + 'consultation_time' => $validatedData['consultation_time'], + 'location' => $validatedData['location'], + 'consultation_status' => 'pending', + ]); + + return redirect()->route('dashboard'); + } + +} \ No newline at end of file diff --git a/aigo/app/Http/Controllers/Controller.php b/aigo/app/Http/Controllers/Controller.php new file mode 100644 index 0000000..8677cd5 --- /dev/null +++ b/aigo/app/Http/Controllers/Controller.php @@ -0,0 +1,8 @@ +user(); + + $activities = PhysicalActivity::where('users_id', $user->id)->get(); + $healthData = HealthData::where('users_id', $user->id)->get()->last(); + + $activities->transform(function ($activity) { + $activity->date = Carbon::parse($activity->date)->format('d M Y'); + $activity->calories_burned = $activity->calculateCaloriesBurned(); + return $activity; + }); + + // Loop through activities and print out the values + + $totalDistance = $activities->sum('distance'); + + if ($healthData) { + // Check if obesity_status is null + if (!$healthData->obesity_status) { + // Call prediction method only if obesity_status is null + $obesityPrediction = $this->predictObesity($healthData, $user); + $healthData->obesity_status = $obesityPrediction; + $healthData->save(); + } + + // Check if calorie_recommendation is null + if (!$healthData->calorie_recommendation) { + // Call calorie prediction method only if calorie_recommendation is null + $calorieRecommendation = $this->predictCalories($healthData, $user); + $healthData->calorie_recommendation = $calorieRecommendation; + $healthData->save(); + } + } + + return view('dashboardClient', compact('activities', 'healthData', 'totalDistance')); + } + + private function predictObesity($healthData, $user) + { + $data = [ + 'height' => $healthData->height ?? 0, + 'weight' => $healthData->weight ?? 0, + 'age' => now()->diffInYears($healthData->birthdate ?? '2000-03-25'), + 'gender' => ($user->gender === 'male') ? 'M' : 'F', + 'activity_level' => 1, + ]; + + $obesityPrediction = Http::post('https://aigoo.humicprototypingapi.online/api/predict/obesity', $data)->json(); + $predictedCategory = $obesityPrediction['predicted_category'] ?? null; + return $predictedCategory; + } + + private function predictCalories($healthData, $user) + { + $data = [ + 'height' => $healthData->height ?? 0, + 'weight' => $healthData->weight ?? 0, + 'age' => now()->diffInYears($healthData->birthdate ?? '2000-03-25'), + 'gender' => ($user->gender === 'male') ? 'M' : 'F', + ]; + + $response = Http::post('https://aigoo.humicprototypingapi.online/api/predict/calorie', $data); + $predictedCalories = ceil($response->json()['predicted_calories']); + + return $predictedCalories; + } + + public function activityReport() + { + $currentMonth = now()->format('m'); + $currentYear = now()->format('Y'); + + $user = auth()->user(); + $healthData = HealthData::where('users_id', $user->id) + ->orderBy('updated_at', 'desc') + ->get(); + + $healthData->transform(function ($item) { + $item->formatted_created_at = Carbon::parse($item->created_at)->format('d F Y'); + $item->time = Carbon::parse($item->created_at)->format('h:i A'); + return $item; + }); + + $activities = PhysicalActivity::whereYear('date', $currentYear) + ->whereMonth('date', $currentMonth) + ->where('users_id', $user->id) + ->get(); + + $totalSteps = $activities->sum('avg_steps'); + $totalDistance = $activities->sum('distance'); + $totalDuration = $activities->sum('duration'); + + if ($totalDuration < 60) { + $durationValue = $totalDuration; + $durationUnit = 'seconds'; + } elseif ($totalDuration < 3600) { + $durationValue = floor($totalDuration / 60); + $durationUnit = 'minutes'; + } else { + $durationValue = floor($totalDuration / 3600); + $durationUnit = 'hours'; + } + + $filteredHealthData = collect(); + foreach ($healthData as $index => $data) { + if ($index < $healthData->count() - 1) { + $nextWeight = $healthData[$index + 1]->weight; + $data->weight_difference = $data->weight - $nextWeight; + if ($data->weight_difference != 0) { + $filteredHealthData->push($data); + } + } else { + $data->weight_difference = 0; + $filteredHealthData->push($data); + } + } + + $totalSleepTime = $healthData->sum('sleeptime'); + if ($healthData->count() > 0) { + $averageSleepTime = number_format($totalSleepTime / $healthData->count(), 2); + } else { + $averageSleepTime = 0; + } + + $latestHealthData = $healthData->last(); + if ($latestHealthData) { + $predictedCalories = $this->predictCalories($latestHealthData, $user); + } else { + $predictedCalories = 0; + } + + $recommended_distance = Result::where('patient_id', $user->id)->get()->last()->jarak_lari ?? 0; + + + $chartData = PhysicalActivity::whereYear('date', $currentYear) + ->whereMonth('date', $currentMonth) + ->where('users_id', $user->id) + ->orderBy('date') + ->get(); + + $labels = $chartData->map(function ($activity) { + return Carbon::parse($activity->date)->format('d F'); + }); + + $distances = $chartData->map(function ($activity) { + return intval($activity->distance); + }); + + $durations = $chartData->map(function ($activity) { + return intval($activity->duration); + }); + + return view('activity-report', compact( + 'totalSteps', 'totalDistance', 'durationValue', 'durationUnit', + 'averageSleepTime', 'filteredHealthData', 'activities', 'predictedCalories', + 'recommended_distance', 'labels', 'distances', 'durations' + )); + } + + public function schedule() + { + $user = auth()->user(); + + $approvedConsultations = Consultation::where('patient_id', $user->id) + ->where('consultation_status', 'approved') + ->with('doctor') + ->get(); + + return view('customer-schedule', compact('approvedConsultations')); + } + + public function notifications() + { + $patient = auth()->user(); + $notifications = Notification::where('user_id', $patient->id)->orderBy('created_at', 'desc')->get(); + + return view('patient-notifications', compact('notifications')); + } + + public function consultation() + { + return view('health-data'); + } + + + public function consultationResults() + { + $patient = auth()->user(); + $consultations = Consultation::where('patient_id', $patient->id) + ->where('consultation_status', 'finished') + ->with('doctor', 'result') + ->orderBy('consultation_date', 'desc') + ->get(); + + return view('customer-result', compact('consultations')); + } + +} \ No newline at end of file diff --git a/aigo/app/Http/Controllers/DoctorController.php b/aigo/app/Http/Controllers/DoctorController.php new file mode 100644 index 0000000..17be656 --- /dev/null +++ b/aigo/app/Http/Controllers/DoctorController.php @@ -0,0 +1,162 @@ +count(); + $overweightCount = HealthData::where('obesity_status', 'Overweight')->count(); + $unknownCount = HealthData::whereNotIn('obesity_status', ['Normal weight', 'Overweight'])->count(); + + $doctor = auth()->user(); + + $totalAppointments = Consultation::where('doctor_id', $doctor->id)->count(); + $pendingAppointments = Consultation::where('doctor_id', $doctor->id) + ->where('consultation_status', 'pending') + ->count(); + + $malePatients = User::where('user_role', 'user') + ->where('gender', 'male') + ->count(); + $femalePatients = User::where('user_role', 'user') + ->where('gender', 'female') + ->count(); + + + $latestAppointments = Consultation::where('doctor_id', $doctor->id) + ->orderBy('consultation_date', 'desc') + ->take(5) + ->get(); + + return view('dashboardDoctor', compact( + 'normalWeightCount', + 'overweightCount', + 'unknownCount', + 'totalAppointments', + 'pendingAppointments', + 'malePatients', + 'femalePatients', + 'latestAppointments' + )); + } + + public function notifications() + { + $doctor = auth()->user(); + $notifications = Notification::where('user_id', $doctor->id)->orderBy('created_at', 'desc')->get(); + + return view('doctor-notifications', compact('notifications')); + } + + public function patientAcceptance() + { + $doctor = auth()->user(); + $consultations = Consultation::with('patient') + ->where('doctor_id', $doctor->id) + ->where('consultation_status', 'pending') + ->get(); + + return view('acceptance-patients', compact('consultations')); + } + + public function approveConsultation($consultationId) + { + $consultation = Consultation::findOrFail($consultationId); + $consultation->consultation_status = 'approved'; + $consultation->save(); + + // Create notification for the patient + $patientNotification = new Notification(); + $patientNotification->user_id = $consultation->patient_id; + $patientNotification->consultation_id = $consultation->id; + $patientNotification->message = 'Your consultation request has been approved by Dr. ' . $consultation->doctor->name . '.'; + $patientNotification->save(); + + // Create notification for the doctor + $doctorNotification = new Notification(); + $doctorNotification->user_id = $consultation->doctor_id; + $doctorNotification->consultation_id = $consultation->id; + $doctorNotification->message = 'You have approved the consultation request from ' . $consultation->patient->name . '.'; + $doctorNotification->save(); + + return redirect()->back()->with('success', 'Consultation approved successfully.'); + } + + public function declineConsultation($consultationId) + { + $consultation = Consultation::findOrFail($consultationId); + $consultation->consultation_status = 'declined'; + $consultation->save(); + + // Create notification for the patient + $patientNotification = new Notification(); + $patientNotification->user_id = $consultation->patient_id; + $patientNotification->consultation_id = $consultation->id; + $patientNotification->message = 'Your consultation request has been declined by Dr. ' . $consultation->doctor->name . '.'; + $patientNotification->save(); + + // Create notification for the doctor + $doctorNotification = new Notification(); + $doctorNotification->user_id = $consultation->doctor_id; + $doctorNotification->consultation_id = $consultation->id; + $doctorNotification->message = 'You have declined the consultation request from ' . $consultation->patient->name . '.'; + $doctorNotification->save(); + + return redirect()->back()->with('success', 'Consultation declined successfully.'); + } + + public function schedule() + { + $doctor = auth()->user(); + $approvedConsultations = Consultation::where('doctor_id', $doctor->id) + ->where('consultation_status', 'approved') + ->with('patient.healthDatas') + ->get(); + + return view('doctor-schedule', compact('approvedConsultations')); + } + + public function showConsultationResultForm($patientId) + { + return view('doctor-result-form', compact('patientId')); + } + + public function storeConsultationResult(Request $request) + { + $validatedData = $request->validate([ + 'doctor_id' => 'required|exists:users,id', + 'patient_id' => 'required|exists:users,id', + 'jarak_lari' => 'required|integer', + 'sleeptime' => 'required|numeric', + 'food' => 'required|string', + 'unrecommended_food' => 'required|string', + 'notes' => 'required|string', + ]); + + $consultation = Consultation::where('doctor_id', $validatedData['doctor_id']) + ->where('patient_id', $validatedData['patient_id']) + ->where('consultation_status', 'approved') + ->first(); + + if ($consultation) { + $validatedData['consultation_id'] = $consultation->id; + Result::create($validatedData); + + $consultation->consultation_status = 'finished'; + $consultation->save(); + + return redirect()->route('doctor.schedule')->with('success', 'Consultation result submitted successfully.'); + } + + return redirect()->back()->with('error', 'Consultation not found or already finished.'); + } +} diff --git a/aigo/app/Http/Controllers/ProfileController.php b/aigo/app/Http/Controllers/ProfileController.php new file mode 100644 index 0000000..a48eb8d --- /dev/null +++ b/aigo/app/Http/Controllers/ProfileController.php @@ -0,0 +1,60 @@ + $request->user(), + ]); + } + + /** + * Update the user's profile information. + */ + public function update(ProfileUpdateRequest $request): RedirectResponse + { + $request->user()->fill($request->validated()); + + if ($request->user()->isDirty('email')) { + $request->user()->email_verified_at = null; + } + + $request->user()->save(); + + return Redirect::route('profile.edit')->with('status', 'profile-updated'); + } + + /** + * Delete the user's account. + */ + public function destroy(Request $request): RedirectResponse + { + $request->validateWithBag('userDeletion', [ + 'password' => ['required', 'current_password'], + ]); + + $user = $request->user(); + + Auth::logout(); + + $user->delete(); + + $request->session()->invalidate(); + $request->session()->regenerateToken(); + + return Redirect::to('/'); + } +} diff --git a/aigo/app/Http/Controllers/StravaController.php b/aigo/app/Http/Controllers/StravaController.php new file mode 100644 index 0000000..9881af8 --- /dev/null +++ b/aigo/app/Http/Controllers/StravaController.php @@ -0,0 +1,117 @@ +validate([ + 'email' => 'required|email', + 'password' => 'required', + ]); + + if (Auth::attempt($request->only('email', 'password'), $request->filled('remember'))) { + if (Auth::user()->user_role == 'user') { + $clientId = "124405"; + $redirectUri = route('strava.callback'); + $authUrl = "https://www.strava.com/oauth/authorize?client_id={$clientId}&redirect_uri={$redirectUri}&response_type=code&scope=activity:read_all"; + + return redirect()->away($authUrl); + } elseif (Auth::user()->user_role == 'doctor') { + return redirect()->route('doctor.dashboard'); + } else { + return redirect()->route('admin.dashboard'); + } + } + + return back()->withErrors([ + 'email' => 'The provided credentials do not match our records.', + ]); + } + + public function handleCallback(Request $request) + { + $authorizationCode = $request->input('code'); + if ($authorizationCode) { + $tokenEndpoint = "https://www.strava.com/oauth/token"; + $clientId = "124405"; + $clientSecret = "2df5d622c326215c290841fb0ffcdd894274803e"; + + $response = Http::post($tokenEndpoint, [ + 'client_id' => $clientId, + 'client_secret' => $clientSecret, + 'code' => $authorizationCode, + 'grant_type' => 'authorization_code', + ]); + + $data = $response->json(); + //dd($data); + $accessToken = $data['access_token']; + + + // Store the access token in the session or database for future API requests + session(['strava_access_token' => $accessToken]); + // Redirect the user to the desired page after successful authorization + + if (auth()->user()->user_role == 'user') { + $this->fetchAthleteActivities($data['access_token']); + return redirect()->intended(route('dashboard')); + } else if (auth()->user()->user_role == 'doctor') { + // redirect to doctor dashboard (TODO) + } else { + return redirect()->intended(route('admin.dashboard')); + } + } + + // Handle the case when the authorization code is missing + return view('auth.login'); + } + + public function fetchAthleteActivities($accessToken) + { + $accessToken = session('strava_access_token'); + + if ($accessToken) { + $activitiesEndpoint = "https://www.strava.com/api/v3/athlete/activities"; + + $response = Http::withHeaders([ + 'Authorization' => 'Bearer ' . $accessToken, + ])->get($activitiesEndpoint); + + $activities = $response->json(); + //dd($activities); + foreach ($activities as $activity) { + $existingActivity = PhysicalActivity::where('id', $activity['id'])->first(); + + if (!$existingActivity) { + $startDate = new \DateTime($activity['start_date_local']); + $formattedDate = $startDate->format('Y-m-d H:i:s'); + + PhysicalActivity::create([ + 'users_id' => auth()->user()->id, + //'id' => $activity['id'], + 'date' => $formattedDate, + 'type' => $activity['type'], + 'distance' => $activity['distance'], + 'duration' => $activity['moving_time'], + 'avg_speed' => $activity['average_speed'], + 'avg_steps' => $activity['average_cadence'] ?? 0, + ]); + } + } + + return $activities; + } + + // Handle the case when the access token is missing + return redirect()->route('login')->with('error', 'Strava access token not found.'); + } +} \ No newline at end of file diff --git a/aigo/app/Http/Controllers/UserController.php b/aigo/app/Http/Controllers/UserController.php new file mode 100644 index 0000000..f9501cc --- /dev/null +++ b/aigo/app/Http/Controllers/UserController.php @@ -0,0 +1,13 @@ +user(), + Auth::user(), + $request['channel_name'], + $request['socket_id'] + ); + } + + /** + * Fetch data by id for (user/group) + * + * @param Request $request + * @return \Illuminate\Http\JsonResponse + */ + public function idFetchData(Request $request) + { + return auth()->user(); + // Favorite + $favorite = Chatify::inFavorite($request['id']); + + // User data + if ($request['type'] == 'user') { + $fetch = User::where('id', $request['id'])->first(); + if($fetch){ + $userAvatar = Chatify::getUserWithAvatar($fetch)->avatar; + } + } + + // send the response + return Response::json([ + 'favorite' => $favorite, + 'fetch' => $fetch ?? null, + 'user_avatar' => $userAvatar ?? null, + ]); + } + + /** + * This method to make a links for the attachments + * to be downloadable. + * + * @param string $fileName + * @return \Illuminate\Http\JsonResponse + */ + public function download($fileName) + { + $path = config('chatify.attachments.folder') . '/' . $fileName; + if (Chatify::storage()->exists($path)) { + return response()->json([ + 'file_name' => $fileName, + 'download_path' => Chatify::storage()->url($path) + ], 200); + } else { + return response()->json([ + 'message'=>"Sorry, File does not exist in our server or may have been deleted!" + ], 404); + } + } + + /** + * Send a message to database + * + * @param Request $request + * @return JSON response + */ + public function send(Request $request) + { + // default variables + $error = (object)[ + 'status' => 0, + 'message' => null + ]; + $attachment = null; + $attachment_title = null; + + // if there is attachment [file] + if ($request->hasFile('file')) { + // allowed extensions + $allowed_images = Chatify::getAllowedImages(); + $allowed_files = Chatify::getAllowedFiles(); + $allowed = array_merge($allowed_images, $allowed_files); + + $file = $request->file('file'); + // check file size + if ($file->getSize() < Chatify::getMaxUploadSize()) { + if (in_array(strtolower($file->extension()), $allowed)) { + // get attachment name + $attachment_title = $file->getClientOriginalName(); + // upload attachment and store the new name + $attachment = Str::uuid() . "." . $file->extension(); + $file->storeAs(config('chatify.attachments.folder'), $attachment, config('chatify.storage_disk_name')); + } else { + $error->status = 1; + $error->message = "File extension not allowed!"; + } + } else { + $error->status = 1; + $error->message = "File size you are trying to upload is too large!"; + } + } + + if (!$error->status) { + // send to database + $message = Chatify::newMessage([ + 'type' => $request['type'], + 'from_id' => Auth::user()->id, + 'to_id' => $request['id'], + 'body' => htmlentities(trim($request['message']), ENT_QUOTES, 'UTF-8'), + 'attachment' => ($attachment) ? json_encode((object)[ + 'new_name' => $attachment, + 'old_name' => htmlentities(trim($attachment_title), ENT_QUOTES, 'UTF-8'), + ]) : null, + ]); + + // fetch message to send it with the response + $messageData = Chatify::parseMessage($message); + + // send to user using pusher + if (Auth::user()->id != $request['id']) { + Chatify::push("private-chatify.".$request['id'], 'messaging', [ + 'from_id' => Auth::user()->id, + 'to_id' => $request['id'], + 'message' => $messageData + ]); + } + } + + // send the response + return Response::json([ + 'status' => '200', + 'error' => $error, + 'message' => $messageData ?? [], + 'tempID' => $request['temporaryMsgId'], + ]); + } + + /** + * fetch [user/group] messages from database + * + * @param Request $request + * @return JSON response + */ + public function fetch(Request $request) + { + $query = Chatify::fetchMessagesQuery($request['id'])->latest(); + $messages = $query->paginate($request->per_page ?? $this->perPage); + $totalMessages = $messages->total(); + $lastPage = $messages->lastPage(); + $response = [ + 'total' => $totalMessages, + 'last_page' => $lastPage, + 'last_message_id' => collect($messages->items())->last()->id ?? null, + 'messages' => $messages->items(), + ]; + return Response::json($response); + } + + /** + * Make messages as seen + * + * @param Request $request + * @return void + */ + public function seen(Request $request) + { + // make as seen + $seen = Chatify::makeSeen($request['id']); + // send the response + return Response::json([ + 'status' => $seen, + ], 200); + } + + /** + * Get contacts list + * + * @param Request $request + * @return \Illuminate\Http\JsonResponse response + */ + public function getContacts(Request $request) + { + // get all users that received/sent message from/to [Auth user] + $users = Message::join('users', function ($join) { + $join->on('ch_messages.from_id', '=', 'users.id') + ->orOn('ch_messages.to_id', '=', 'users.id'); + }) + ->where(function ($q) { + $q->where('ch_messages.from_id', Auth::user()->id) + ->orWhere('ch_messages.to_id', Auth::user()->id); + }) + ->where('users.id','!=',Auth::user()->id) + ->select('users.*',DB::raw('MAX(ch_messages.created_at) max_created_at')) + ->orderBy('max_created_at', 'desc') + ->groupBy('users.id') + ->paginate($request->per_page ?? $this->perPage); + + return response()->json([ + 'contacts' => $users->items(), + 'total' => $users->total() ?? 0, + 'last_page' => $users->lastPage() ?? 1, + ], 200); + } + + /** + * Put a user in the favorites list + * + * @param Request $request + * @return void + */ + public function favorite(Request $request) + { + $userId = $request['user_id']; + // check action [star/unstar] + $favoriteStatus = Chatify::inFavorite($userId) ? 0 : 1; + Chatify::makeInFavorite($userId, $favoriteStatus); + + // send the response + return Response::json([ + 'status' => @$favoriteStatus, + ], 200); + } + + /** + * Get favorites list + * + * @param Request $request + * @return void + */ + public function getFavorites(Request $request) + { + $favorites = Favorite::where('user_id', Auth::user()->id)->get(); + foreach ($favorites as $favorite) { + $favorite->user = User::where('id', $favorite->favorite_id)->first(); + } + return Response::json([ + 'total' => count($favorites), + 'favorites' => $favorites ?? [], + ], 200); + } + + /** + * Search in messenger + * + * @param Request $request + * @return \Illuminate\Http\JsonResponse + */ + public function search(Request $request) + { + $input = trim(filter_var($request['input'])); + $records = User::where('id','!=',Auth::user()->id) + ->where('name', 'LIKE', "%{$input}%") + ->paginate($request->per_page ?? $this->perPage); + + foreach ($records->items() as $index => $record) { + $records[$index] += Chatify::getUserWithAvatar($record); + } + + return Response::json([ + 'records' => $records->items(), + 'total' => $records->total(), + 'last_page' => $records->lastPage() + ], 200); + } + + /** + * Get shared photos + * + * @param Request $request + * @return \Illuminate\Http\JsonResponse + */ + public function sharedPhotos(Request $request) + { + $images = Chatify::getSharedPhotos($request['user_id']); + + foreach ($images as $image) { + $image = asset(config('chatify.attachments.folder') . $image); + } + // send the response + return Response::json([ + 'shared' => $images ?? [], + ], 200); + } + + /** + * Delete conversation + * + * @param Request $request + * @return void + */ + public function deleteConversation(Request $request) + { + // delete + $delete = Chatify::deleteConversation($request['id']); + + // send the response + return Response::json([ + 'deleted' => $delete ? 1 : 0, + ], 200); + } + + public function updateSettings(Request $request) + { + $msg = null; + $error = $success = 0; + + // dark mode + if ($request['dark_mode']) { + $request['dark_mode'] == "dark" + ? User::where('id', Auth::user()->id)->update(['dark_mode' => 1]) // Make Dark + : User::where('id', Auth::user()->id)->update(['dark_mode' => 0]); // Make Light + } + + // If messenger color selected + if ($request['messengerColor']) { + $messenger_color = trim(filter_var($request['messengerColor'])); + User::where('id', Auth::user()->id) + ->update(['messenger_color' => $messenger_color]); + } + // if there is a [file] + if ($request->hasFile('avatar')) { + // allowed extensions + $allowed_images = Chatify::getAllowedImages(); + + $file = $request->file('avatar'); + // check file size + if ($file->getSize() < Chatify::getMaxUploadSize()) { + if (in_array(strtolower($file->extension()), $allowed_images)) { + // delete the older one + if (Auth::user()->avatar != config('chatify.user_avatar.default')) { + $path = Chatify::getUserAvatarUrl(Auth::user()->avatar); + if (Chatify::storage()->exists($path)) { + Chatify::storage()->delete($path); + } + } + // upload + $avatar = Str::uuid() . "." . $file->extension(); + $update = User::where('id', Auth::user()->id)->update(['avatar' => $avatar]); + $file->storeAs(config('chatify.user_avatar.folder'), $avatar, config('chatify.storage_disk_name')); + $success = $update ? 1 : 0; + } else { + $msg = "File extension not allowed!"; + $error = 1; + } + } else { + $msg = "File size you are trying to upload is too large!"; + $error = 1; + } + } + + // send the response + return Response::json([ + 'status' => $success ? 1 : 0, + 'error' => $error ? 1 : 0, + 'message' => $error ? $msg : 0, + ], 200); + } + + /** + * Set user's active status + * + * @param Request $request + * @return void + */ + public function setActiveStatus(Request $request) + { + $activeStatus = $request['status'] > 0 ? 1 : 0; + $status = User::where('id', Auth::user()->id)->update(['active_status' => $activeStatus]); + return Response::json([ + 'status' => $status, + ], 200); + } +} diff --git a/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php b/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php new file mode 100644 index 0000000..c1cd5b6 --- /dev/null +++ b/aigo/app/Http/Controllers/vendor/Chatify/MessagesController.php @@ -0,0 +1,483 @@ +user(), + Auth::user(), + $request['channel_name'], + $request['socket_id'] + ); + } + + /** + * Returning the view of the app with the required data. + * + * @param int $id + * @return \Illuminate\Contracts\Foundation\Application|\Illuminate\Contracts\View\Factory|\Illuminate\Contracts\View\View + */ + public function index( $id = null) + { + $messenger_color = Auth::user()->messenger_color; + return view('Chatify::pages.app', [ + 'id' => $id ?? 0, + 'messengerColor' => $messenger_color ? $messenger_color : Chatify::getFallbackColor(), + 'dark_mode' => Auth::user()->dark_mode < 1 ? 'light' : 'dark', + ]); + } + + + /** + * Fetch data (user, favorite.. etc). + * + * @param Request $request + * @return JsonResponse + */ + public function idFetchData(Request $request) + { + $favorite = Chatify::inFavorite($request['id']); + $fetch = User::where('id', $request['id'])->first(); + if($fetch){ + $userAvatar = Chatify::getUserWithAvatar($fetch)->avatar; + } + return Response::json([ + 'favorite' => $favorite, + 'fetch' => $fetch ?? null, + 'user_avatar' => $userAvatar ?? null, + ]); + } + + /** + * This method to make a links for the attachments + * to be downloadable. + * + * @param string $fileName + * @return \Symfony\Component\HttpFoundation\StreamedResponse|void + */ + public function download($fileName) + { + $filePath = config('chatify.attachments.folder') . '/' . $fileName; + if (Chatify::storage()->exists($filePath)) { + return Chatify::storage()->download($filePath); + } + return abort(404, "Sorry, File does not exist in our server or may have been deleted!"); + } + + /** + * Send a message to database + * + * @param Request $request + * @return JsonResponse + */ + public function send(Request $request) + { + // default variables + $error = (object)[ + 'status' => 0, + 'message' => null + ]; + $attachment = null; + $attachment_title = null; + + // if there is attachment [file] + if ($request->hasFile('file')) { + // allowed extensions + $allowed_images = Chatify::getAllowedImages(); + $allowed_files = Chatify::getAllowedFiles(); + $allowed = array_merge($allowed_images, $allowed_files); + + $file = $request->file('file'); + // check file size + if ($file->getSize() < Chatify::getMaxUploadSize()) { + if (in_array(strtolower($file->extension()), $allowed)) { + // get attachment name + $attachment_title = $file->getClientOriginalName(); + // upload attachment and store the new name + $attachment = Str::uuid() . "." . $file->extension(); + $file->storeAs(config('chatify.attachments.folder'), $attachment, config('chatify.storage_disk_name')); + } else { + $error->status = 1; + $error->message = "File extension not allowed!"; + } + } else { + $error->status = 1; + $error->message = "File size you are trying to upload is too large!"; + } + } + + if (!$error->status) { + $message = Chatify::newMessage([ + 'from_id' => Auth::user()->id, + 'to_id' => $request['id'], + 'body' => htmlentities(trim($request['message']), ENT_QUOTES, 'UTF-8'), + 'attachment' => ($attachment) ? json_encode((object)[ + 'new_name' => $attachment, + 'old_name' => htmlentities(trim($attachment_title), ENT_QUOTES, 'UTF-8'), + ]) : null, + ]); + $messageData = Chatify::parseMessage($message); + if (Auth::user()->id != $request['id']) { + Chatify::push("private-chatify.".$request['id'], 'messaging', [ + 'from_id' => Auth::user()->id, + 'to_id' => $request['id'], + 'message' => Chatify::messageCard($messageData, true) + ]); + } + } + + // send the response + return Response::json([ + 'status' => '200', + 'error' => $error, + 'message' => Chatify::messageCard(@$messageData), + 'tempID' => $request['temporaryMsgId'], + ]); + } + + /** + * fetch [user/group] messages from database + * + * @param Request $request + * @return JsonResponse + */ + public function fetch(Request $request) + { + $query = Chatify::fetchMessagesQuery($request['id'])->latest(); + $messages = $query->paginate($request->per_page ?? $this->perPage); + $totalMessages = $messages->total(); + $lastPage = $messages->lastPage(); + $response = [ + 'total' => $totalMessages, + 'last_page' => $lastPage, + 'last_message_id' => collect($messages->items())->last()->id ?? null, + 'messages' => '', + ]; + + // if there is no messages yet. + if ($totalMessages < 1) { + $response['messages'] ='

Say \'hi\' and start messaging

'; + return Response::json($response); + } + if (count($messages->items()) < 1) { + $response['messages'] = ''; + return Response::json($response); + } + $allMessages = null; + foreach ($messages->reverse() as $message) { + $allMessages .= Chatify::messageCard( + Chatify::parseMessage($message) + ); + } + $response['messages'] = $allMessages; + return Response::json($response); + } + + /** + * Make messages as seen + * + * @param Request $request + * @return JsonResponse|void + */ + public function seen(Request $request) + { + // make as seen + $seen = Chatify::makeSeen($request['id']); + // send the response + return Response::json([ + 'status' => $seen, + ], 200); + } + + /** + * Get contacts list + * + * @param Request $request + * @return JsonResponse + */ + public function getContacts(Request $request) + { + // get all users that received/sent message from/to [Auth user] + $users = Message::join('users', function ($join) { + $join->on('ch_messages.from_id', '=', 'users.id') + ->orOn('ch_messages.to_id', '=', 'users.id'); + }) + ->where(function ($q) { + $q->where('ch_messages.from_id', Auth::user()->id) + ->orWhere('ch_messages.to_id', Auth::user()->id); + }) + ->where('users.id','!=',Auth::user()->id) + ->select('users.*',DB::raw('MAX(ch_messages.created_at) max_created_at')) + ->orderBy('max_created_at', 'desc') + ->groupBy('users.id') + ->paginate($request->per_page ?? $this->perPage); + + $usersList = $users->items(); + + if (count($usersList) > 0) { + $contacts = ''; + foreach ($usersList as $user) { + $contacts .= Chatify::getContactItem($user); + } + } else { + $contacts = '

Your contact list is empty

'; + } + + return Response::json([ + 'contacts' => $contacts, + 'total' => $users->total() ?? 0, + 'last_page' => $users->lastPage() ?? 1, + ], 200); + } + + /** + * Update user's list item data + * + * @param Request $request + * @return JsonResponse + */ + public function updateContactItem(Request $request) + { + // Get user data + $user = User::where('id', $request['user_id'])->first(); + if(!$user){ + return Response::json([ + 'message' => 'User not found!', + ], 401); + } + $contactItem = Chatify::getContactItem($user); + + // send the response + return Response::json([ + 'contactItem' => $contactItem, + ], 200); + } + + /** + * Put a user in the favorites list + * + * @param Request $request + * @return JsonResponse|void + */ + public function favorite(Request $request) + { + $userId = $request['user_id']; + // check action [star/unstar] + $favoriteStatus = Chatify::inFavorite($userId) ? 0 : 1; + Chatify::makeInFavorite($userId, $favoriteStatus); + + // send the response + return Response::json([ + 'status' => @$favoriteStatus, + ], 200); + } + + /** + * Get favorites list + * + * @param Request $request + * @return JsonResponse|void + */ + public function getFavorites(Request $request) + { + $favoritesList = null; + $favorites = Favorite::where('user_id', Auth::user()->id); + foreach ($favorites->get() as $favorite) { + // get user data + $user = User::where('id', $favorite->favorite_id)->first(); + $favoritesList .= view('Chatify::layouts.favorite', [ + 'user' => $user, + ]); + } + // send the response + return Response::json([ + 'count' => $favorites->count(), + 'favorites' => $favorites->count() > 0 + ? $favoritesList + : 0, + ], 200); + } + + /** + * Search in messenger + * + * @param Request $request + * @return JsonResponse|void + */ + public function search(Request $request) + { + $getRecords = null; + $input = trim(filter_var($request['input'])); + $records = User::where('id','!=',Auth::user()->id) + ->where('name', 'LIKE', "%{$input}%") + ->paginate($request->per_page ?? $this->perPage); + foreach ($records->items() as $record) { + $getRecords .= view('Chatify::layouts.listItem', [ + 'get' => 'search_item', + 'user' => Chatify::getUserWithAvatar($record), + ])->render(); + } + if($records->total() < 1){ + $getRecords = '

Nothing to show.

'; + } + // send the response + return Response::json([ + 'records' => $getRecords, + 'total' => $records->total(), + 'last_page' => $records->lastPage() + ], 200); + } + + /** + * Get shared photos + * + * @param Request $request + * @return JsonResponse|void + */ + public function sharedPhotos(Request $request) + { + $shared = Chatify::getSharedPhotos($request['user_id']); + $sharedPhotos = null; + + // shared with its template + for ($i = 0; $i < count($shared); $i++) { + $sharedPhotos .= view('Chatify::layouts.listItem', [ + 'get' => 'sharedPhoto', + 'image' => Chatify::getAttachmentUrl($shared[$i]), + ])->render(); + } + // send the response + return Response::json([ + 'shared' => count($shared) > 0 ? $sharedPhotos : '

Nothing shared yet

', + ], 200); + } + + /** + * Delete conversation + * + * @param Request $request + * @return JsonResponse + */ + public function deleteConversation(Request $request) + { + // delete + $delete = Chatify::deleteConversation($request['id']); + + // send the response + return Response::json([ + 'deleted' => $delete ? 1 : 0, + ], 200); + } + + /** + * Delete message + * + * @param Request $request + * @return JsonResponse + */ + public function deleteMessage(Request $request) + { + // delete + $delete = Chatify::deleteMessage($request['id']); + + // send the response + return Response::json([ + 'deleted' => $delete ? 1 : 0, + ], 200); + } + + public function updateSettings(Request $request) + { + $msg = null; + $error = $success = 0; + + // dark mode + if ($request['dark_mode']) { + $request['dark_mode'] == "dark" + ? User::where('id', Auth::user()->id)->update(['dark_mode' => 1]) // Make Dark + : User::where('id', Auth::user()->id)->update(['dark_mode' => 0]); // Make Light + } + + // If messenger color selected + if ($request['messengerColor']) { + $messenger_color = trim(filter_var($request['messengerColor'])); + User::where('id', Auth::user()->id) + ->update(['messenger_color' => $messenger_color]); + } + // if there is a [file] + if ($request->hasFile('avatar')) { + // allowed extensions + $allowed_images = Chatify::getAllowedImages(); + + $file = $request->file('avatar'); + // check file size + if ($file->getSize() < Chatify::getMaxUploadSize()) { + if (in_array(strtolower($file->extension()), $allowed_images)) { + // delete the older one + if (Auth::user()->avatar != config('chatify.user_avatar.default')) { + $avatar = Auth::user()->avatar; + if (Chatify::storage()->exists($avatar)) { + Chatify::storage()->delete($avatar); + } + } + // upload + $avatar = Str::uuid() . "." . $file->extension(); + $update = User::where('id', Auth::user()->id)->update(['avatar' => $avatar]); + $file->storeAs(config('chatify.user_avatar.folder'), $avatar, config('chatify.storage_disk_name')); + $success = $update ? 1 : 0; + } else { + $msg = "File extension not allowed!"; + $error = 1; + } + } else { + $msg = "File size you are trying to upload is too large!"; + $error = 1; + } + } + + // send the response + return Response::json([ + 'status' => $success ? 1 : 0, + 'error' => $error ? 1 : 0, + 'message' => $error ? $msg : 0, + ], 200); + } + + /** + * Set user's active status + * + * @param Request $request + * @return JsonResponse + */ + public function setActiveStatus(Request $request) + { + $activeStatus = $request['status'] > 0 ? 1 : 0; + $status = User::where('id', Auth::user()->id)->update(['active_status' => $activeStatus]); + return Response::json([ + 'status' => $status, + ], 200); + } +} diff --git a/aigo/app/Http/Middleware/RedirectBasedOnRole.php b/aigo/app/Http/Middleware/RedirectBasedOnRole.php new file mode 100644 index 0000000..693bf55 --- /dev/null +++ b/aigo/app/Http/Middleware/RedirectBasedOnRole.php @@ -0,0 +1,39 @@ +user_role == 'user') { + if ($request->route()->getName() !== 'dashboard') { + return redirect()->route('dashboard'); + } + } elseif ($user->user_role == 'doctor') { + // redirect to doctor dashboard (TODO) + // if ($request->route()->getName() !== 'doctor.dashboard') { + // return redirect()->route('doctor.dashboard'); + // } + } elseif ($user->user_role == 'admin') { + if ($request->route()->getName() !== 'admin.dashboard') { + return redirect()->route('admin.dashboard'); + } + } + } + + return $next($request); + } +} diff --git a/aigo/app/Http/Requests/Auth/LoginRequest.php b/aigo/app/Http/Requests/Auth/LoginRequest.php new file mode 100644 index 0000000..0da1ae2 --- /dev/null +++ b/aigo/app/Http/Requests/Auth/LoginRequest.php @@ -0,0 +1,85 @@ + + */ + public function rules(): array + { + return [ + 'email' => ['required', 'string', 'email'], + 'password' => ['required', 'string'], + ]; + } + + /** + * Attempt to authenticate the request's credentials. + * + * @throws \Illuminate\Validation\ValidationException + */ + public function authenticate() + { + $this->ensureIsNotRateLimited(); + + if (! Auth::attempt($this->only('email', 'password'), $this->boolean('remember'))) { + RateLimiter::hit($this->throttleKey()); + + throw ValidationException::withMessages([ + 'email' => trans('auth.failed'), + ]); + } + + RateLimiter::clear($this->throttleKey()); + } + + /** + * Ensure the login request is not rate limited. + * + * @throws \Illuminate\Validation\ValidationException + */ + public function ensureIsNotRateLimited(): void + { + if (! RateLimiter::tooManyAttempts($this->throttleKey(), 5)) { + return; + } + + event(new Lockout($this)); + + $seconds = RateLimiter::availableIn($this->throttleKey()); + + throw ValidationException::withMessages([ + 'email' => trans('auth.throttle', [ + 'seconds' => $seconds, + 'minutes' => ceil($seconds / 60), + ]), + ]); + } + + /** + * Get the rate limiting throttle key for the request. + */ + public function throttleKey(): string + { + return Str::transliterate(Str::lower($this->string('email')).'|'.$this->ip()); + } +} diff --git a/aigo/app/Http/Requests/ProfileUpdateRequest.php b/aigo/app/Http/Requests/ProfileUpdateRequest.php new file mode 100644 index 0000000..93b0022 --- /dev/null +++ b/aigo/app/Http/Requests/ProfileUpdateRequest.php @@ -0,0 +1,23 @@ + + */ + public function rules(): array + { + return [ + 'name' => ['required', 'string', 'max:255'], + 'email' => ['required', 'string', 'lowercase', 'email', 'max:255', Rule::unique(User::class)->ignore($this->user()->id)], + ]; + } +} diff --git a/aigo/app/Models/ChFavorite.php b/aigo/app/Models/ChFavorite.php new file mode 100644 index 0000000..16d1106 --- /dev/null +++ b/aigo/app/Models/ChFavorite.php @@ -0,0 +1,11 @@ +belongsTo(User::class, 'patient_id'); + } + + public function doctor() + { + return $this->belongsTo(User::class, 'doctor_id'); + } + + public function result() + { + return $this->hasOne(Result::class, 'consultation_id'); + } +} diff --git a/aigo/app/Models/HealthData.php b/aigo/app/Models/HealthData.php new file mode 100644 index 0000000..4b96ca9 --- /dev/null +++ b/aigo/app/Models/HealthData.php @@ -0,0 +1,30 @@ +belongsTo(User::class, 'users_id'); + } +} diff --git a/aigo/app/Models/Notification.php b/aigo/app/Models/Notification.php new file mode 100644 index 0000000..4a1963e --- /dev/null +++ b/aigo/app/Models/Notification.php @@ -0,0 +1,26 @@ +belongsTo(User::class); + } + + public function consultation() + { + return $this->belongsTo(Consultation::class); + } +} diff --git a/aigo/app/Models/PhysicalActivity.php b/aigo/app/Models/PhysicalActivity.php new file mode 100644 index 0000000..a130128 --- /dev/null +++ b/aigo/app/Models/PhysicalActivity.php @@ -0,0 +1,53 @@ +belongsTo(User::class, 'users_id'); + } + + public function calculateCaloriesBurned() + { + $user = $this->user; + $healthData = $user->healthDatas()->latest()->first(); + $weight = $healthData ? $healthData->weight : 0; + + $duration = $this->duration / 3600; // Convert duration from seconds to minutes + $caloriesBurned = 0; + + switch ($this->type) { + case 'bicycle': + $caloriesBurned = 0.061 * $weight * $duration; + break; + case 'Run': + $caloriesBurned = 9.8 * $weight * $duration; + break; + case 'walk': + $caloriesBurned = 0.035 * $weight * $duration; + break; + default: + break; + } + + return round($caloriesBurned, 2); + } +} diff --git a/aigo/app/Models/Result.php b/aigo/app/Models/Result.php new file mode 100644 index 0000000..297f3b3 --- /dev/null +++ b/aigo/app/Models/Result.php @@ -0,0 +1,37 @@ +belongsTo(User::class, 'patient_id'); + } + + public function doctor() + { + return $this->belongsTo(User::class, 'doctor_id'); + } + + public function consultation() + { + return $this->belongsTo(Consultation::class, 'consultation_id'); + } +} \ No newline at end of file diff --git a/aigo/app/Models/User.php b/aigo/app/Models/User.php new file mode 100644 index 0000000..45c0fce --- /dev/null +++ b/aigo/app/Models/User.php @@ -0,0 +1,72 @@ + + */ + protected $fillable = [ + 'id', + 'user_role', + 'username', + 'password', + 'name', + 'email', + 'telepon', + 'alamat', + 'gender' + ]; + /** + * The attributes that should be hidden for serialization. + * + * @var array + */ + protected $hidden = [ + 'password', + 'remember_token', + ]; + + /** + * Get the attributes that should be cast. + * + * @return array + */ + protected function casts(): array + { + return [ + 'email_verified_at' => 'datetime', + 'password' => 'hashed', + ]; + } + + public function physicalActivities() + { + return $this->hasMany(PhysicalActivity::class, 'users_id'); + } + + public function healthDatas() + { + return $this->hasMany(HealthData::class, 'users_id'); + } + + public function patientResults() + { + return $this->hasMany(Result::class, 'patient_id'); + } + + public function doctorResults() + { + return $this->hasMany(Result::class, 'doctor_id'); + } +} diff --git a/aigo/app/Providers/AppServiceProvider.php b/aigo/app/Providers/AppServiceProvider.php new file mode 100644 index 0000000..452e6b6 --- /dev/null +++ b/aigo/app/Providers/AppServiceProvider.php @@ -0,0 +1,24 @@ +handleCommand(new ArgvInput); + +exit($status); diff --git a/aigo/bootstrap/app.php b/aigo/bootstrap/app.php new file mode 100644 index 0000000..10bafc0 --- /dev/null +++ b/aigo/bootstrap/app.php @@ -0,0 +1,22 @@ +withRouting( + web: __DIR__.'/../routes/web.php', + commands: __DIR__.'/../routes/console.php', + channels: __DIR__.'/../routes/channels.php', + health: '/up', + ) + ->withMiddleware(function (Middleware $middleware) { + $middleware->alias([ + 'role' => RedirectBasedOnRole::class + ]); + }) + ->withExceptions(function (Exceptions $exceptions) { + // + })->create(); diff --git a/aigo/bootstrap/cache/.gitignore b/aigo/bootstrap/cache/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/aigo/bootstrap/cache/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/aigo/bootstrap/providers.php b/aigo/bootstrap/providers.php new file mode 100644 index 0000000..38b258d --- /dev/null +++ b/aigo/bootstrap/providers.php @@ -0,0 +1,5 @@ +=5.0.0" + }, + "require-dev": { + "doctrine/dbal": "^4.0.0", + "nesbot/carbon": "^2.71.0 || ^3.0.0", + "phpunit/phpunit": "^10.3" + }, + "type": "library", + "autoload": { + "psr-4": { + "Carbon\\Doctrine\\": "src/Carbon/Doctrine/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "KyleKatarn", + "email": "kylekatarnls@gmail.com" + } + ], + "description": "Types to use Carbon in Doctrine", + "keywords": [ + "carbon", + "date", + "datetime", + "doctrine", + "time" + ], + "support": { + "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues", + "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0" + }, + "funding": [ + { + "url": "https://github.com/kylekatarnls", + "type": "github" + }, + { + "url": "https://opencollective.com/Carbon", + "type": "open_collective" + }, + { + "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon", + "type": "tidelift" + } + ], + "time": "2024-02-09T16:56:22+00:00" + }, + { + "name": "clue/redis-protocol", + "version": "v0.3.1", + "source": { + "type": "git", + "url": "https://github.com/clue/php-redis-protocol.git", + "reference": "271b8009887209d930f613ad3b9518f94bd6b51c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/clue/php-redis-protocol/zipball/271b8009887209d930f613ad3b9518f94bd6b51c", + "reference": "271b8009887209d930f613ad3b9518f94bd6b51c", + "shasum": "" + }, + "require": { + "php": ">=5.3" + }, + "type": "library", + "autoload": { + "psr-0": { + "Clue\\Redis\\Protocol": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Christian Lück", + "email": "christian@lueck.tv" + } + ], + "description": "A streaming redis wire protocol parser and serializer implementation in PHP", + "homepage": "https://github.com/clue/php-redis-protocol", + "keywords": [ + "parser", + "protocol", + "redis", + "serializer", + "streaming" + ], + "support": { + "issues": "https://github.com/clue/php-redis-protocol/issues", + "source": "https://github.com/clue/php-redis-protocol/tree/v0.3.1" + }, + "time": "2017-06-06T16:07:10+00:00" + }, + { + "name": "clue/redis-react", + "version": "v2.7.0", + "source": { + "type": "git", + "url": "https://github.com/clue/reactphp-redis.git", + "reference": "2283690f249e8d93342dd63b5285732d2654e077" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/clue/reactphp-redis/zipball/2283690f249e8d93342dd63b5285732d2654e077", + "reference": "2283690f249e8d93342dd63b5285732d2654e077", + "shasum": "" + }, + "require": { + "clue/redis-protocol": "0.3.*", + "evenement/evenement": "^3.0 || ^2.0 || ^1.0", + "php": ">=5.3", + "react/event-loop": "^1.2", + "react/promise": "^3 || ^2.0 || ^1.1", + "react/promise-timer": "^1.9", + "react/socket": "^1.12" + }, + "require-dev": { + "clue/block-react": "^1.5", + "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36" + }, + "type": "library", + "autoload": { + "psr-4": { + "Clue\\React\\Redis\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Christian Lück", + "email": "christian@clue.engineering" + } + ], + "description": "Async Redis client implementation, built on top of ReactPHP.", + "homepage": "https://github.com/clue/reactphp-redis", + "keywords": [ + "async", + "client", + "database", + "reactphp", + "redis" + ], + "support": { + "issues": "https://github.com/clue/reactphp-redis/issues", + "source": "https://github.com/clue/reactphp-redis/tree/v2.7.0" + }, + "funding": [ + { + "url": "https://clue.engineering/support", + "type": "custom" + }, + { + "url": "https://github.com/clue", + "type": "github" + } + ], + "time": "2024-01-05T15:54:20+00:00" + }, + { + "name": "dflydev/dot-access-data", + "version": "v3.0.2", + "source": { + "type": "git", + "url": "https://github.com/dflydev/dflydev-dot-access-data.git", + "reference": "f41715465d65213d644d3141a6a93081be5d3549" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549", + "reference": "f41715465d65213d644d3141a6a93081be5d3549", + "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.2" + }, + "time": "2022-10-27T11:44:00+00:00" + }, + { + "name": "doctrine/inflector", + "version": "2.0.10", + "source": { + "type": "git", + "url": "https://github.com/doctrine/inflector.git", + "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc", + "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^11.0", + "phpstan/phpstan": "^1.8", + "phpstan/phpstan-phpunit": "^1.1", + "phpstan/phpstan-strict-rules": "^1.3", + "phpunit/phpunit": "^8.5 || ^9.5", + "vimeo/psalm": "^4.25 || ^5.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Inflector\\": "lib/Doctrine/Inflector" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.", + "homepage": "https://www.doctrine-project.org/projects/inflector.html", + "keywords": [ + "inflection", + "inflector", + "lowercase", + "manipulation", + "php", + "plural", + "singular", + "strings", + "uppercase", + "words" + ], + "support": { + "issues": "https://github.com/doctrine/inflector/issues", + "source": "https://github.com/doctrine/inflector/tree/2.0.10" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector", + "type": "tidelift" + } + ], + "time": "2024-02-18T20:23:39+00:00" + }, + { + "name": "doctrine/lexer", + "version": "3.0.1", + "source": { + "type": "git", + "url": "https://github.com/doctrine/lexer.git", + "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd", + "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "require-dev": { + "doctrine/coding-standard": "^12", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^10.5", + "psalm/plugin-phpunit": "^0.18.3", + "vimeo/psalm": "^5.21" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Common\\Lexer\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.", + "homepage": "https://www.doctrine-project.org/projects/lexer.html", + "keywords": [ + "annotations", + "docblock", + "lexer", + "parser", + "php" + ], + "support": { + "issues": "https://github.com/doctrine/lexer/issues", + "source": "https://github.com/doctrine/lexer/tree/3.0.1" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer", + "type": "tidelift" + } + ], + "time": "2024-02-05T11:56:58+00:00" + }, + { + "name": "dragonmantank/cron-expression", + "version": "v3.3.3", + "source": { + "type": "git", + "url": "https://github.com/dragonmantank/cron-expression.git", + "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a", + "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a", + "shasum": "" + }, + "require": { + "php": "^7.2|^8.0", + "webmozart/assert": "^1.0" + }, + "replace": { + "mtdowling/cron-expression": "^1.0" + }, + "require-dev": { + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "^1.0", + "phpstan/phpstan-webmozart-assert": "^1.0", + "phpunit/phpunit": "^7.0|^8.0|^9.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Cron\\": "src/Cron/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Chris Tankersley", + "email": "chris@ctankersley.com", + "homepage": "https://github.com/dragonmantank" + } + ], + "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due", + "keywords": [ + "cron", + "schedule" + ], + "support": { + "issues": "https://github.com/dragonmantank/cron-expression/issues", + "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.3" + }, + "funding": [ + { + "url": "https://github.com/dragonmantank", + "type": "github" + } + ], + "time": "2023-08-10T19:36:49+00:00" + }, + { + "name": "egulias/email-validator", + "version": "4.0.2", + "source": { + "type": "git", + "url": "https://github.com/egulias/EmailValidator.git", + "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e", + "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e", + "shasum": "" + }, + "require": { + "doctrine/lexer": "^2.0 || ^3.0", + "php": ">=8.1", + "symfony/polyfill-intl-idn": "^1.26" + }, + "require-dev": { + "phpunit/phpunit": "^10.2", + "vimeo/psalm": "^5.12" + }, + "suggest": { + "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Egulias\\EmailValidator\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Eduardo Gulias Davis" + } + ], + "description": "A library for validating emails against several RFCs", + "homepage": "https://github.com/egulias/EmailValidator", + "keywords": [ + "email", + "emailvalidation", + "emailvalidator", + "validation", + "validator" + ], + "support": { + "issues": "https://github.com/egulias/EmailValidator/issues", + "source": "https://github.com/egulias/EmailValidator/tree/4.0.2" + }, + "funding": [ + { + "url": "https://github.com/egulias", + "type": "github" + } + ], + "time": "2023-10-06T06:47:41+00:00" + }, + { + "name": "evenement/evenement", + "version": "v3.0.2", + "source": { + "type": "git", + "url": "https://github.com/igorw/evenement.git", + "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc", + "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc", + "shasum": "" + }, + "require": { + "php": ">=7.0" + }, + "require-dev": { + "phpunit/phpunit": "^9 || ^6" + }, + "type": "library", + "autoload": { + "psr-4": { + "Evenement\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Igor Wiedler", + "email": "igor@wiedler.ch" + } + ], + "description": "Événement is a very simple event dispatching library for PHP", + "keywords": [ + "event-dispatcher", + "event-emitter" + ], + "support": { + "issues": "https://github.com/igorw/evenement/issues", + "source": "https://github.com/igorw/evenement/tree/v3.0.2" + }, + "time": "2023-08-08T05:53:35+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.2", + "source": { + "type": "git", + "url": "https://github.com/GrahamCampbell/Result-Type.git", + "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862", + "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0", + "phpoption/phpoption": "^1.9.2" + }, + "require-dev": { + "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2" + }, + "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.2" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type", + "type": "tidelift" + } + ], + "time": "2023-11-12T22:16:48+00:00" + }, + { + "name": "guzzlehttp/guzzle", + "version": "7.8.1", + "source": { + "type": "git", + "url": "https://github.com/guzzle/guzzle.git", + "reference": "41042bc7ab002487b876a0683fc8dce04ddce104" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104", + "reference": "41042bc7ab002487b876a0683fc8dce04ddce104", + "shasum": "" + }, + "require": { + "ext-json": "*", + "guzzlehttp/promises": "^1.5.3 || ^2.0.1", + "guzzlehttp/psr7": "^1.9.1 || ^2.5.1", + "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": "*", + "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999", + "php-http/message-factory": "^1.1", + "phpunit/phpunit": "^8.5.36 || ^9.6.15", + "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.8.1" + }, + "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": "2023-12-03T20:35:24+00:00" + }, + { + "name": "guzzlehttp/promises", + "version": "2.0.2", + "source": { + "type": "git", + "url": "https://github.com/guzzle/promises.git", + "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223", + "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.36 || ^9.6.15" + }, + "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.2" + }, + "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": "2023-12-03T20:19:20+00:00" + }, + { + "name": "guzzlehttp/psr7", + "version": "2.6.2", + "source": { + "type": "git", + "url": "https://github.com/guzzle/psr7.git", + "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221", + "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221", + "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", + "phpunit/phpunit": "^8.5.36 || ^9.6.15" + }, + "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.6.2" + }, + "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": "2023-12-03T20:05:35+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/framework", + "version": "v11.0.7", + "source": { + "type": "git", + "url": "https://github.com/laravel/framework.git", + "reference": "28eabe9dcdcb017a21ce226eda4538c5c8c93b1c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/framework/zipball/28eabe9dcdcb017a21ce226eda4538c5c8c93b1c", + "reference": "28eabe9dcdcb017a21ce226eda4538c5c8c93b1c", + "shasum": "" + }, + "require": { + "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12", + "composer-runtime-api": "^2.2", + "doctrine/inflector": "^2.0.5", + "dragonmantank/cron-expression": "^3.3.2", + "egulias/email-validator": "^3.2.1|^4.0", + "ext-ctype": "*", + "ext-filter": "*", + "ext-hash": "*", + "ext-mbstring": "*", + "ext-openssl": "*", + "ext-session": "*", + "ext-tokenizer": "*", + "fruitcake/php-cors": "^1.3", + "guzzlehttp/guzzle": "^7.8", + "guzzlehttp/uri-template": "^1.0", + "laravel/prompts": "^0.1.15", + "laravel/serializable-closure": "^1.3", + "league/commonmark": "^2.2.1", + "league/flysystem": "^3.8.0", + "monolog/monolog": "^3.0", + "nesbot/carbon": "^2.72.2|^3.0", + "nunomaduro/termwind": "^2.0", + "php": "^8.2", + "psr/container": "^1.1.1|^2.0.1", + "psr/log": "^1.0|^2.0|^3.0", + "psr/simple-cache": "^1.0|^2.0|^3.0", + "ramsey/uuid": "^4.7", + "symfony/console": "^7.0", + "symfony/error-handler": "^7.0", + "symfony/finder": "^7.0", + "symfony/http-foundation": "^7.0", + "symfony/http-kernel": "^7.0", + "symfony/mailer": "^7.0", + "symfony/mime": "^7.0", + "symfony/polyfill-php83": "^1.28", + "symfony/process": "^7.0", + "symfony/routing": "^7.0", + "symfony/uid": "^7.0", + "symfony/var-dumper": "^7.0", + "tijsverkoyen/css-to-inline-styles": "^2.2.5", + "vlucas/phpdotenv": "^5.4.1", + "voku/portable-ascii": "^2.0" + }, + "conflict": { + "mockery/mockery": "1.6.8", + "tightenco/collect": "<5.5.33" + }, + "provide": { + "psr/container-implementation": "1.1|2.0", + "psr/simple-cache-implementation": "1.0|2.0|3.0" + }, + "replace": { + "illuminate/auth": "self.version", + "illuminate/broadcasting": "self.version", + "illuminate/bus": "self.version", + "illuminate/cache": "self.version", + "illuminate/collections": "self.version", + "illuminate/conditionable": "self.version", + "illuminate/config": "self.version", + "illuminate/console": "self.version", + "illuminate/container": "self.version", + "illuminate/contracts": "self.version", + "illuminate/cookie": "self.version", + "illuminate/database": "self.version", + "illuminate/encryption": "self.version", + "illuminate/events": "self.version", + "illuminate/filesystem": "self.version", + "illuminate/hashing": "self.version", + "illuminate/http": "self.version", + "illuminate/log": "self.version", + "illuminate/macroable": "self.version", + "illuminate/mail": "self.version", + "illuminate/notifications": "self.version", + "illuminate/pagination": "self.version", + "illuminate/pipeline": "self.version", + "illuminate/process": "self.version", + "illuminate/queue": "self.version", + "illuminate/redis": "self.version", + "illuminate/routing": "self.version", + "illuminate/session": "self.version", + "illuminate/support": "self.version", + "illuminate/testing": "self.version", + "illuminate/translation": "self.version", + "illuminate/validation": "self.version", + "illuminate/view": "self.version", + "spatie/once": "*" + }, + "require-dev": { + "ably/ably-php": "^1.0", + "aws/aws-sdk-php": "^3.235.5", + "ext-gmp": "*", + "fakerphp/faker": "^1.23", + "league/flysystem-aws-s3-v3": "^3.0", + "league/flysystem-ftp": "^3.0", + "league/flysystem-path-prefixing": "^3.3", + "league/flysystem-read-only": "^3.3", + "league/flysystem-sftp-v3": "^3.0", + "mockery/mockery": "^1.6", + "nyholm/psr7": "^1.2", + "orchestra/testbench-core": "^9.0", + "pda/pheanstalk": "^5.0", + "phpstan/phpstan": "^1.4.7", + "phpunit/phpunit": "^10.5|^11.0", + "predis/predis": "^2.0.2", + "resend/resend-php": "^0.10.0", + "symfony/cache": "^7.0", + "symfony/http-client": "^7.0", + "symfony/psr-http-message-bridge": "^7.0" + }, + "suggest": { + "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).", + "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).", + "brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).", + "ext-apcu": "Required to use the APC cache driver.", + "ext-fileinfo": "Required to use the Filesystem class.", + "ext-ftp": "Required to use the Flysystem FTP driver.", + "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().", + "ext-memcached": "Required to use the memcache cache driver.", + "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.", + "ext-pdo": "Required to use all database features.", + "ext-posix": "Required to use all features of the queue worker.", + "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).", + "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).", + "filp/whoops": "Required for friendly error pages in development (^2.14.3).", + "laravel/tinker": "Required to use the tinker console command (^2.0).", + "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).", + "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).", + "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).", + "league/flysystem-read-only": "Required to use read-only disks (^3.3)", + "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).", + "mockery/mockery": "Required to use mocking (^1.6).", + "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).", + "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).", + "phpunit/phpunit": "Required to use assertions and run tests (^10.5|^11.0).", + "predis/predis": "Required to use the predis connector (^2.0.2).", + "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).", + "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).", + "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0).", + "symfony/cache": "Required to PSR-6 cache bridge (^7.0).", + "symfony/filesystem": "Required to enable support for relative symbolic links (^7.0).", + "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.0).", + "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.0).", + "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.0).", + "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.0)." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "11.x-dev" + } + }, + "autoload": { + "files": [ + "src/Illuminate/Collections/helpers.php", + "src/Illuminate/Events/functions.php", + "src/Illuminate/Filesystem/functions.php", + "src/Illuminate/Foundation/helpers.php", + "src/Illuminate/Support/helpers.php" + ], + "psr-4": { + "Illuminate\\": "src/Illuminate/", + "Illuminate\\Support\\": [ + "src/Illuminate/Macroable/", + "src/Illuminate/Collections/", + "src/Illuminate/Conditionable/" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Laravel Framework.", + "homepage": "https://laravel.com", + "keywords": [ + "framework", + "laravel" + ], + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, + "time": "2024-03-15T23:17:58+00:00" + }, + { + "name": "laravel/prompts", + "version": "v0.1.16", + "source": { + "type": "git", + "url": "https://github.com/laravel/prompts.git", + "reference": "ca6872ab6aec3ab61db3a61f83a6caf764ec7781" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/prompts/zipball/ca6872ab6aec3ab61db3a61f83a6caf764ec7781", + "reference": "ca6872ab6aec3ab61db3a61f83a6caf764ec7781", + "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" + ], + "support": { + "issues": "https://github.com/laravel/prompts/issues", + "source": "https://github.com/laravel/prompts/tree/v0.1.16" + }, + "time": "2024-02-21T19:25:27+00:00" + }, + { + "name": "laravel/reverb", + "version": "v1.0.0-beta4", + "source": { + "type": "git", + "url": "https://github.com/laravel/reverb.git", + "reference": "7237ff17a249128218c614a6e0f9cf0a8aca91a9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/reverb/zipball/7237ff17a249128218c614a6e0f9cf0a8aca91a9", + "reference": "7237ff17a249128218c614a6e0f9cf0a8aca91a9", + "shasum": "" + }, + "require": { + "clue/redis-react": "^2.6", + "guzzlehttp/psr7": "^2.6", + "illuminate/console": "^10.47|^11.0", + "illuminate/contracts": "^10.47|^11.0", + "illuminate/http": "^10.47|^11.0", + "illuminate/support": "^10.47|^11.0", + "laravel/prompts": "^0.1.15", + "php": "^8.2", + "pusher/pusher-php-server": "^7.2", + "ratchet/rfc6455": "^0.3.1", + "react/promise-timer": "^1.10", + "react/socket": "^1.14", + "symfony/http-foundation": "^6.3|^7.0" + }, + "require-dev": { + "orchestra/testbench": "^8.0|^9.0", + "pestphp/pest": "^2.0", + "phpstan/phpstan": "^1.10", + "ratchet/pawl": "^0.4.1", + "react/async": "^4.0", + "react/http": "^1.9" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Laravel\\Reverb\\ApplicationManagerServiceProvider", + "Laravel\\Reverb\\ReverbServiceProvider" + ], + "aliases": { + "Output": "Laravel\\Reverb\\Output" + } + } + }, + "autoload": { + "psr-4": { + "Laravel\\Reverb\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + }, + { + "name": "Joe Dixon", + "email": "joe@laravel.com" + } + ], + "description": "Laravel Reverb provides a real-time WebSocket communication backend for Laravel applications.", + "keywords": [ + "WebSockets", + "laravel", + "real-time", + "websocket" + ], + "support": { + "issues": "https://github.com/laravel/reverb/issues", + "source": "https://github.com/laravel/reverb/tree/v1.0.0-beta4" + }, + "time": "2024-03-18T17:36:49+00:00" + }, + { + "name": "laravel/serializable-closure", + "version": "v1.3.3", + "source": { + "type": "git", + "url": "https://github.com/laravel/serializable-closure.git", + "reference": "3dbf8a8e914634c48d389c1234552666b3d43754" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/3dbf8a8e914634c48d389c1234552666b3d43754", + "reference": "3dbf8a8e914634c48d389c1234552666b3d43754", + "shasum": "" + }, + "require": { + "php": "^7.3|^8.0" + }, + "require-dev": { + "nesbot/carbon": "^2.61", + "pestphp/pest": "^1.21.3", + "phpstan/phpstan": "^1.8.2", + "symfony/var-dumper": "^5.4.11" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Laravel\\SerializableClosure\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + }, + { + "name": "Nuno Maduro", + "email": "nuno@laravel.com" + } + ], + "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.", + "keywords": [ + "closure", + "laravel", + "serializable" + ], + "support": { + "issues": "https://github.com/laravel/serializable-closure/issues", + "source": "https://github.com/laravel/serializable-closure" + }, + "time": "2023-11-08T14:08:06+00:00" + }, + { + "name": "laravel/tinker", + "version": "v2.9.0", + "source": { + "type": "git", + "url": "https://github.com/laravel/tinker.git", + "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/tinker/zipball/502e0fe3f0415d06d5db1f83a472f0f3b754bafe", + "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe", + "shasum": "" + }, + "require": { + "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", + "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", + "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", + "php": "^7.2.5|^8.0", + "psy/psysh": "^0.11.1|^0.12.0", + "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0" + }, + "require-dev": { + "mockery/mockery": "~1.3.3|^1.4.2", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^8.5.8|^9.3.3" + }, + "suggest": { + "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)." + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Laravel\\Tinker\\TinkerServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Laravel\\Tinker\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Powerful REPL for the Laravel framework.", + "keywords": [ + "REPL", + "Tinker", + "laravel", + "psysh" + ], + "support": { + "issues": "https://github.com/laravel/tinker/issues", + "source": "https://github.com/laravel/tinker/tree/v2.9.0" + }, + "time": "2024-01-04T16:10:04+00:00" + }, + { + "name": "league/commonmark", + "version": "2.4.2", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/commonmark.git", + "reference": "91c24291965bd6d7c46c46a12ba7492f83b1cadf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/91c24291965bd6d7c46c46a12ba7492f83b1cadf", + "reference": "91c24291965bd6d7c46c46a12ba7492f83b1cadf", + "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.30.3", + "commonmark/commonmark.js": "0.30.0", + "composer/package-versions-deprecated": "^1.8", + "embed/embed": "^4.4", + "erusev/parsedown": "^1.0", + "ext-json": "*", + "github/gfm": "0.29.0", + "michelf/php-markdown": "^1.4 || ^2.0", + "nyholm/psr7": "^1.5", + "phpstan/phpstan": "^1.8.2", + "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0", + "scrutinizer/ocular": "^1.8.1", + "symfony/finder": "^5.3 | ^6.0 || ^7.0", + "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 || ^7.0", + "unleashedtech/php-coding-standard": "^3.1.1", + "vimeo/psalm": "^4.24.0 || ^5.0.0" + }, + "suggest": { + "symfony/yaml": "v2.3+ required if using the Front Matter extension" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.5-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-02-02T11:59:32+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.25.1", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/flysystem.git", + "reference": "abbd664eb4381102c559d358420989f835208f18" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/abbd664eb4381102c559d358420989f835208f18", + "reference": "abbd664eb4381102c559d358420989f835208f18", + "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-zip": "*", + "friendsofphp/php-cs-fixer": "^3.5", + "google/cloud-storage": "^1.23", + "microsoft/azure-storage-blob": "^1.1", + "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.25.1" + }, + "funding": [ + { + "url": "https://ecologi.com/frankdejonge", + "type": "custom" + }, + { + "url": "https://github.com/frankdejonge", + "type": "github" + } + ], + "time": "2024-03-16T12:53:19+00:00" + }, + { + "name": "league/flysystem-local", + "version": "3.25.1", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/flysystem-local.git", + "reference": "61a6a90d6e999e4ddd9ce5adb356de0939060b92" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/61a6a90d6e999e4ddd9ce5adb356de0939060b92", + "reference": "61a6a90d6e999e4ddd9ce5adb356de0939060b92", + "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.25.1" + }, + "funding": [ + { + "url": "https://ecologi.com/frankdejonge", + "type": "custom" + }, + { + "url": "https://github.com/frankdejonge", + "type": "github" + } + ], + "time": "2024-03-15T19:58:44+00:00" + }, + { + "name": "league/mime-type-detection", + "version": "1.15.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/mime-type-detection.git", + "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301", + "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.2", + "phpstan/phpstan": "^0.12.68", + "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\MimeTypeDetection\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "Mime-type detection for Flysystem", + "support": { + "issues": "https://github.com/thephpleague/mime-type-detection/issues", + "source": "https://github.com/thephpleague/mime-type-detection/tree/1.15.0" + }, + "funding": [ + { + "url": "https://github.com/frankdejonge", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/league/flysystem", + "type": "tidelift" + } + ], + "time": "2024-01-28T23:22:08+00:00" + }, + { + "name": "monolog/monolog", + "version": "3.5.0", + "source": { + "type": "git", + "url": "https://github.com/Seldaek/monolog.git", + "reference": "c915e2634718dbc8a4a15c61b0e62e7a44e14448" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/c915e2634718dbc8a4a15c61b0e62e7a44e14448", + "reference": "c915e2634718dbc8a4a15c61b0e62e7a44e14448", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/log": "^2.0 || ^3.0" + }, + "provide": { + "psr/log-implementation": "3.0.0" + }, + "require-dev": { + "aws/aws-sdk-php": "^3.0", + "doctrine/couchdb": "~1.0@dev", + "elasticsearch/elasticsearch": "^7 || ^8", + "ext-json": "*", + "graylog2/gelf-php": "^1.4.2 || ^2.0", + "guzzlehttp/guzzle": "^7.4.5", + "guzzlehttp/psr7": "^2.2", + "mongodb/mongodb": "^1.8", + "php-amqplib/php-amqplib": "~2.4 || ^3", + "phpstan/phpstan": "^1.9", + "phpstan/phpstan-deprecation-rules": "^1.0", + "phpstan/phpstan-strict-rules": "^1.4", + "phpunit/phpunit": "^10.1", + "predis/predis": "^1.1 || ^2", + "ruflin/elastica": "^7", + "symfony/mailer": "^5.4 || ^6", + "symfony/mime": "^5.4 || ^6" + }, + "suggest": { + "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", + "doctrine/couchdb": "Allow sending log messages to a CouchDB server", + "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client", + "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)", + "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler", + "ext-mbstring": "Allow to work properly with unicode symbols", + "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)", + "ext-openssl": "Required to send log messages using SSL", + "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)", + "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", + "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)", + "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib", + "rollbar/rollbar": "Allow sending log messages to Rollbar", + "ruflin/elastica": "Allow sending log messages to an Elastic Search server" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Monolog\\": "src/Monolog" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "https://seld.be" + } + ], + "description": "Sends your logs to files, sockets, inboxes, databases and various web services", + "homepage": "https://github.com/Seldaek/monolog", + "keywords": [ + "log", + "logging", + "psr-3" + ], + "support": { + "issues": "https://github.com/Seldaek/monolog/issues", + "source": "https://github.com/Seldaek/monolog/tree/3.5.0" + }, + "funding": [ + { + "url": "https://github.com/Seldaek", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/monolog/monolog", + "type": "tidelift" + } + ], + "time": "2023-10-27T15:32:31+00:00" + }, + { + "name": "munafio/chatify", + "version": "v1.6.3", + "source": { + "type": "git", + "url": "https://github.com/munafio/chatify.git", + "reference": "559ff515fc83a822ed72cdd03ca8e36c574c5a25" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/munafio/chatify/zipball/559ff515fc83a822ed72cdd03ca8e36c574c5a25", + "reference": "559ff515fc83a822ed72cdd03ca8e36c574c5a25", + "shasum": "" + }, + "require": { + "pusher/pusher-php-server": "^6.0|^7.0|^7.1" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Chatify\\ChatifyServiceProvider" + ], + "aliases": { + "Chatify": "Chatify\\Facades\\ChatifyMessenger" + } + } + }, + "autoload": { + "psr-4": { + "Chatify\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Munaf A. Mahdi", + "email": "munafaqeelmahdi@gmail.com" + } + ], + "description": "A package for Laravel PHP Framework to add a complete real-time chat system.", + "homepage": "https://github.com/munafio/chatify", + "keywords": [ + "Messenger", + "chat", + "chatify", + "conversations", + "laravel", + "php", + "pusher", + "real-time", + "realtime" + ], + "support": { + "issues": "https://github.com/munafio/chatify/issues", + "source": "https://github.com/munafio/chatify/tree/v1.6.3" + }, + "time": "2024-03-17T14:21:38+00:00" + }, + { + "name": "nesbot/carbon", + "version": "3.1.1", + "source": { + "type": "git", + "url": "https://github.com/briannesbitt/Carbon.git", + "reference": "34ccf6f6b49c915421c7886c88c0cb77f3ebbfd2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/34ccf6f6b49c915421c7886c88c0cb77f3ebbfd2", + "reference": "34ccf6f6b49c915421c7886c88c0cb77f3ebbfd2", + "shasum": "" + }, + "require": { + "carbonphp/carbon-doctrine-types": "*", + "ext-json": "*", + "php": "^8.1", + "psr/clock": "^1.0", + "symfony/clock": "^6.3 || ^7.0", + "symfony/polyfill-mbstring": "^1.0", + "symfony/translation": "^4.4.18 || ^5.2.1|| ^6.0 || ^7.0" + }, + "provide": { + "psr/clock-implementation": "1.0" + }, + "require-dev": { + "doctrine/dbal": "^3.6.3 || ^4.0", + "doctrine/orm": "^2.15.2 || ^3.0", + "friendsofphp/php-cs-fixer": "^3.18.0", + "kylekatarnls/multi-tester": "^2.2.0", + "ondrejmirtes/better-reflection": "^6.11.0.0", + "phpmd/phpmd": "^2.13.0", + "phpstan/extension-installer": "^1.3.0", + "phpstan/phpstan": "^1.10.20", + "phpunit/phpunit": "^10.2.2", + "squizlabs/php_codesniffer": "^3.7.2" + }, + "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-03-13T12:42:37+00:00" + }, + { + "name": "nette/schema", + "version": "v1.3.0", + "source": { + "type": "git", + "url": "https://github.com/nette/schema.git", + "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nette/schema/zipball/a6d3a6d1f545f01ef38e60f375d1cf1f4de98188", + "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188", + "shasum": "" + }, + "require": { + "nette/utils": "^4.0", + "php": "8.1 - 8.3" + }, + "require-dev": { + "nette/tester": "^2.4", + "phpstan/phpstan-nette": "^1.0", + "tracy/tracy": "^2.8" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.3-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause", + "GPL-2.0-only", + "GPL-3.0-only" + ], + "authors": [ + { + "name": "David Grudl", + "homepage": "https://davidgrudl.com" + }, + { + "name": "Nette Community", + "homepage": "https://nette.org/contributors" + } + ], + "description": "📐 Nette Schema: validating data structures against a given Schema.", + "homepage": "https://nette.org", + "keywords": [ + "config", + "nette" + ], + "support": { + "issues": "https://github.com/nette/schema/issues", + "source": "https://github.com/nette/schema/tree/v1.3.0" + }, + "time": "2023-12-11T11:54:22+00:00" + }, + { + "name": "nette/utils", + "version": "v4.0.4", + "source": { + "type": "git", + "url": "https://github.com/nette/utils.git", + "reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nette/utils/zipball/d3ad0aa3b9f934602cb3e3902ebccf10be34d218", + "reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218", + "shasum": "" + }, + "require": { + "php": ">=8.0 <8.4" + }, + "conflict": { + "nette/finder": "<3", + "nette/schema": "<1.2.2" + }, + "require-dev": { + "jetbrains/phpstorm-attributes": "dev-master", + "nette/tester": "^2.5", + "phpstan/phpstan": "^1.0", + "tracy/tracy": "^2.9" + }, + "suggest": { + "ext-gd": "to use Image", + "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()", + "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()", + "ext-json": "to use Nette\\Utils\\Json", + "ext-mbstring": "to use Strings::lower() etc...", + "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause", + "GPL-2.0-only", + "GPL-3.0-only" + ], + "authors": [ + { + "name": "David Grudl", + "homepage": "https://davidgrudl.com" + }, + { + "name": "Nette Community", + "homepage": "https://nette.org/contributors" + } + ], + "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.", + "homepage": "https://nette.org", + "keywords": [ + "array", + "core", + "datetime", + "images", + "json", + "nette", + "paginator", + "password", + "slugify", + "string", + "unicode", + "utf-8", + "utility", + "validation" + ], + "support": { + "issues": "https://github.com/nette/utils/issues", + "source": "https://github.com/nette/utils/tree/v4.0.4" + }, + "time": "2024-01-17T16:50:36+00:00" + }, + { + "name": "nikic/php-parser", + "version": "v5.0.2", + "source": { + "type": "git", + "url": "https://github.com/nikic/PHP-Parser.git", + "reference": "139676794dc1e9231bf7bcd123cfc0c99182cb13" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/139676794dc1e9231bf7bcd123cfc0c99182cb13", + "reference": "139676794dc1e9231bf7bcd123cfc0c99182cb13", + "shasum": "" + }, + "require": { + "ext-ctype": "*", + "ext-json": "*", + "ext-tokenizer": "*", + "php": ">=7.4" + }, + "require-dev": { + "ircmaxell/php-yacc": "^0.0.7", + "phpunit/phpunit": "^7.0 || ^8.0 || ^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.0.2" + }, + "time": "2024-03-05T20:51:40+00:00" + }, + { + "name": "nunomaduro/termwind", + "version": "v2.0.1", + "source": { + "type": "git", + "url": "https://github.com/nunomaduro/termwind.git", + "reference": "58c4c58cf23df7f498daeb97092e34f5259feb6a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/58c4c58cf23df7f498daeb97092e34f5259feb6a", + "reference": "58c4c58cf23df7f498daeb97092e34f5259feb6a", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "php": "^8.2", + "symfony/console": "^7.0.4" + }, + "require-dev": { + "ergebnis/phpstan-rules": "^2.2.0", + "illuminate/console": "^11.0.0", + "laravel/pint": "^1.14.0", + "mockery/mockery": "^1.6.7", + "pestphp/pest": "^2.34.1", + "phpstan/phpstan": "^1.10.59", + "phpstan/phpstan-strict-rules": "^1.5.2", + "symfony/var-dumper": "^7.0.4", + "thecodingmachine/phpstan-strict-rules": "^1.0.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Termwind\\Laravel\\TermwindServiceProvider" + ] + }, + "branch-alias": { + "dev-2.x": "2.x-dev" + } + }, + "autoload": { + "files": [ + "src/Functions.php" + ], + "psr-4": { + "Termwind\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "Its like Tailwind CSS, but for the console.", + "keywords": [ + "cli", + "console", + "css", + "package", + "php", + "style" + ], + "support": { + "issues": "https://github.com/nunomaduro/termwind/issues", + "source": "https://github.com/nunomaduro/termwind/tree/v2.0.1" + }, + "funding": [ + { + "url": "https://www.paypal.com/paypalme/enunomaduro", + "type": "custom" + }, + { + "url": "https://github.com/nunomaduro", + "type": "github" + }, + { + "url": "https://github.com/xiCO2k", + "type": "github" + } + ], + "time": "2024-03-06T16:17:14+00:00" + }, + { + "name": "paragonie/random_compat", + "version": "v9.99.100", + "source": { + "type": "git", + "url": "https://github.com/paragonie/random_compat.git", + "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a", + "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a", + "shasum": "" + }, + "require": { + "php": ">= 7" + }, + "require-dev": { + "phpunit/phpunit": "4.*|5.*", + "vimeo/psalm": "^1" + }, + "suggest": { + "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes." + }, + "type": "library", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Paragon Initiative Enterprises", + "email": "security@paragonie.com", + "homepage": "https://paragonie.com" + } + ], + "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7", + "keywords": [ + "csprng", + "polyfill", + "pseudorandom", + "random" + ], + "support": { + "email": "info@paragonie.com", + "issues": "https://github.com/paragonie/random_compat/issues", + "source": "https://github.com/paragonie/random_compat" + }, + "time": "2020-10-15T08:29:30+00:00" + }, + { + "name": "paragonie/sodium_compat", + "version": "v1.20.0", + "source": { + "type": "git", + "url": "https://github.com/paragonie/sodium_compat.git", + "reference": "e592a3e06d1fa0d43988c7c7d9948ca836f644b6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/e592a3e06d1fa0d43988c7c7d9948ca836f644b6", + "reference": "e592a3e06d1fa0d43988c7c7d9948ca836f644b6", + "shasum": "" + }, + "require": { + "paragonie/random_compat": ">=1", + "php": "^5.2.4|^5.3|^5.4|^5.5|^5.6|^7|^8" + }, + "require-dev": { + "phpunit/phpunit": "^3|^4|^5|^6|^7|^8|^9" + }, + "suggest": { + "ext-libsodium": "PHP < 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security.", + "ext-sodium": "PHP >= 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security." + }, + "type": "library", + "autoload": { + "files": [ + "autoload.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "ISC" + ], + "authors": [ + { + "name": "Paragon Initiative Enterprises", + "email": "security@paragonie.com" + }, + { + "name": "Frank Denis", + "email": "jedisct1@pureftpd.org" + } + ], + "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists", + "keywords": [ + "Authentication", + "BLAKE2b", + "ChaCha20", + "ChaCha20-Poly1305", + "Chapoly", + "Curve25519", + "Ed25519", + "EdDSA", + "Edwards-curve Digital Signature Algorithm", + "Elliptic Curve Diffie-Hellman", + "Poly1305", + "Pure-PHP cryptography", + "RFC 7748", + "RFC 8032", + "Salpoly", + "Salsa20", + "X25519", + "XChaCha20-Poly1305", + "XSalsa20-Poly1305", + "Xchacha20", + "Xsalsa20", + "aead", + "cryptography", + "ecdh", + "elliptic curve", + "elliptic curve cryptography", + "encryption", + "libsodium", + "php", + "public-key cryptography", + "secret-key cryptography", + "side-channel resistant" + ], + "support": { + "issues": "https://github.com/paragonie/sodium_compat/issues", + "source": "https://github.com/paragonie/sodium_compat/tree/v1.20.0" + }, + "time": "2023-04-30T00:54:53+00:00" + }, + { + "name": "phpoption/phpoption", + "version": "1.9.2", + "source": { + "type": "git", + "url": "https://github.com/schmittjoh/php-option.git", + "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820", + "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820", + "shasum": "" + }, + "require": { + "php": "^7.2.5 || ^8.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2" + }, + "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": true + }, + "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.2" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption", + "type": "tidelift" + } + ], + "time": "2023-11-12T21:59:55+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.0.2", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-factory.git", + "reference": "e616d01114759c4c489f93b099585439f795fe35" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35", + "reference": "e616d01114759c4c489f93b099585439f795fe35", + "shasum": "" + }, + "require": { + "php": ">=7.0.0", + "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": "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/tree/1.0.2" + }, + "time": "2023-04-10T20:10:41+00:00" + }, + { + "name": "psr/http-message", + "version": "2.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-message.git", + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71", + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Message\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for HTTP messages", + "homepage": "https://github.com/php-fig/http-message", + "keywords": [ + "http", + "http-message", + "psr", + "psr-7", + "request", + "response" + ], + "support": { + "source": "https://github.com/php-fig/http-message/tree/2.0" + }, + "time": "2023-04-04T09:54:51+00:00" + }, + { + "name": "psr/log", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/log.git", + "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001", + "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001", + "shasum": "" + }, + "require": { + "php": ">=8.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Log\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for logging libraries", + "homepage": "https://github.com/php-fig/log", + "keywords": [ + "log", + "psr", + "psr-3" + ], + "support": { + "source": "https://github.com/php-fig/log/tree/3.0.0" + }, + "time": "2021-07-14T16:46:02+00:00" + }, + { + "name": "psr/simple-cache", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/simple-cache.git", + "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865", + "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865", + "shasum": "" + }, + "require": { + "php": ">=8.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\SimpleCache\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interfaces for simple caching", + "keywords": [ + "cache", + "caching", + "psr", + "psr-16", + "simple-cache" + ], + "support": { + "source": "https://github.com/php-fig/simple-cache/tree/3.0.0" + }, + "time": "2021-10-29T13:26:27+00:00" + }, + { + "name": "psy/psysh", + "version": "v0.12.2", + "source": { + "type": "git", + "url": "https://github.com/bobthecow/psysh.git", + "reference": "9185c66c2165bbf4d71de78a69dccf4974f9538d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9185c66c2165bbf4d71de78a69dccf4974f9538d", + "reference": "9185c66c2165bbf4d71de78a69dccf4974f9538d", + "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.2" + }, + "time": "2024-03-17T01:53:00+00:00" + }, + { + "name": "pusher/pusher-php-server", + "version": "7.2.4", + "source": { + "type": "git", + "url": "https://github.com/pusher/pusher-http-php.git", + "reference": "de2f72296808f9cafa6a4462b15a768ff130cddb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/pusher/pusher-http-php/zipball/de2f72296808f9cafa6a4462b15a768ff130cddb", + "reference": "de2f72296808f9cafa6a4462b15a768ff130cddb", + "shasum": "" + }, + "require": { + "ext-curl": "*", + "ext-json": "*", + "guzzlehttp/guzzle": "^7.2", + "paragonie/sodium_compat": "^1.6", + "php": "^7.3|^8.0", + "psr/log": "^1.0|^2.0|^3.0" + }, + "require-dev": { + "overtrue/phplint": "^2.3", + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.0-dev" + } + }, + "autoload": { + "psr-4": { + "Pusher\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Library for interacting with the Pusher REST API", + "keywords": [ + "events", + "messaging", + "php-pusher-server", + "publish", + "push", + "pusher", + "real time", + "real-time", + "realtime", + "rest", + "trigger" + ], + "support": { + "issues": "https://github.com/pusher/pusher-http-php/issues", + "source": "https://github.com/pusher/pusher-http-php/tree/7.2.4" + }, + "time": "2023-12-15T10:58:53+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.5", + "source": { + "type": "git", + "url": "https://github.com/ramsey/uuid.git", + "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e", + "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e", + "shasum": "" + }, + "require": { + "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11", + "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.5" + }, + "funding": [ + { + "url": "https://github.com/ramsey", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid", + "type": "tidelift" + } + ], + "time": "2023-11-08T05:53:05+00:00" + }, + { + "name": "ratchet/rfc6455", + "version": "v0.3.1", + "source": { + "type": "git", + "url": "https://github.com/ratchetphp/RFC6455.git", + "reference": "7c964514e93456a52a99a20fcfa0de242a43ccdb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ratchetphp/RFC6455/zipball/7c964514e93456a52a99a20fcfa0de242a43ccdb", + "reference": "7c964514e93456a52a99a20fcfa0de242a43ccdb", + "shasum": "" + }, + "require": { + "guzzlehttp/psr7": "^2 || ^1.7", + "php": ">=5.4.2" + }, + "require-dev": { + "phpunit/phpunit": "^5.7", + "react/socket": "^1.3" + }, + "type": "library", + "autoload": { + "psr-4": { + "Ratchet\\RFC6455\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Chris Boden", + "email": "cboden@gmail.com", + "role": "Developer" + }, + { + "name": "Matt Bonneau", + "role": "Developer" + } + ], + "description": "RFC6455 WebSocket protocol handler", + "homepage": "http://socketo.me", + "keywords": [ + "WebSockets", + "rfc6455", + "websocket" + ], + "support": { + "chat": "https://gitter.im/reactphp/reactphp", + "issues": "https://github.com/ratchetphp/RFC6455/issues", + "source": "https://github.com/ratchetphp/RFC6455/tree/v0.3.1" + }, + "time": "2021-12-09T23:20:49+00:00" + }, + { + "name": "react/cache", + "version": "v1.2.0", + "source": { + "type": "git", + "url": "https://github.com/reactphp/cache.git", + "reference": "d47c472b64aa5608225f47965a484b75c7817d5b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b", + "reference": "d47c472b64aa5608225f47965a484b75c7817d5b", + "shasum": "" + }, + "require": { + "php": ">=5.3.0", + "react/promise": "^3.0 || ^2.0 || ^1.1" + }, + "require-dev": { + "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35" + }, + "type": "library", + "autoload": { + "psr-4": { + "React\\Cache\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Christian Lück", + "email": "christian@clue.engineering", + "homepage": "https://clue.engineering/" + }, + { + "name": "Cees-Jan Kiewiet", + "email": "reactphp@ceesjankiewiet.nl", + "homepage": "https://wyrihaximus.net/" + }, + { + "name": "Jan Sorgalla", + "email": "jsorgalla@gmail.com", + "homepage": "https://sorgalla.com/" + }, + { + "name": "Chris Boden", + "email": "cboden@gmail.com", + "homepage": "https://cboden.dev/" + } + ], + "description": "Async, Promise-based cache interface for ReactPHP", + "keywords": [ + "cache", + "caching", + "promise", + "reactphp" + ], + "support": { + "issues": "https://github.com/reactphp/cache/issues", + "source": "https://github.com/reactphp/cache/tree/v1.2.0" + }, + "funding": [ + { + "url": "https://opencollective.com/reactphp", + "type": "open_collective" + } + ], + "time": "2022-11-30T15:59:55+00:00" + }, + { + "name": "react/dns", + "version": "v1.12.0", + "source": { + "type": "git", + "url": "https://github.com/reactphp/dns.git", + "reference": "c134600642fa615b46b41237ef243daa65bb64ec" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/reactphp/dns/zipball/c134600642fa615b46b41237ef243daa65bb64ec", + "reference": "c134600642fa615b46b41237ef243daa65bb64ec", + "shasum": "" + }, + "require": { + "php": ">=5.3.0", + "react/cache": "^1.0 || ^0.6 || ^0.5", + "react/event-loop": "^1.2", + "react/promise": "^3.0 || ^2.7 || ^1.2.1" + }, + "require-dev": { + "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36", + "react/async": "^4 || ^3 || ^2", + "react/promise-timer": "^1.9" + }, + "type": "library", + "autoload": { + "psr-4": { + "React\\Dns\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Christian Lück", + "email": "christian@clue.engineering", + "homepage": "https://clue.engineering/" + }, + { + "name": "Cees-Jan Kiewiet", + "email": "reactphp@ceesjankiewiet.nl", + "homepage": "https://wyrihaximus.net/" + }, + { + "name": "Jan Sorgalla", + "email": "jsorgalla@gmail.com", + "homepage": "https://sorgalla.com/" + }, + { + "name": "Chris Boden", + "email": "cboden@gmail.com", + "homepage": "https://cboden.dev/" + } + ], + "description": "Async DNS resolver for ReactPHP", + "keywords": [ + "async", + "dns", + "dns-resolver", + "reactphp" + ], + "support": { + "issues": "https://github.com/reactphp/dns/issues", + "source": "https://github.com/reactphp/dns/tree/v1.12.0" + }, + "funding": [ + { + "url": "https://opencollective.com/reactphp", + "type": "open_collective" + } + ], + "time": "2023-11-29T12:41:06+00:00" + }, + { + "name": "react/event-loop", + "version": "v1.5.0", + "source": { + "type": "git", + "url": "https://github.com/reactphp/event-loop.git", + "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354", + "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "require-dev": { + "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36" + }, + "suggest": { + "ext-pcntl": "For signal handling support when using the StreamSelectLoop" + }, + "type": "library", + "autoload": { + "psr-4": { + "React\\EventLoop\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Christian Lück", + "email": "christian@clue.engineering", + "homepage": "https://clue.engineering/" + }, + { + "name": "Cees-Jan Kiewiet", + "email": "reactphp@ceesjankiewiet.nl", + "homepage": "https://wyrihaximus.net/" + }, + { + "name": "Jan Sorgalla", + "email": "jsorgalla@gmail.com", + "homepage": "https://sorgalla.com/" + }, + { + "name": "Chris Boden", + "email": "cboden@gmail.com", + "homepage": "https://cboden.dev/" + } + ], + "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.", + "keywords": [ + "asynchronous", + "event-loop" + ], + "support": { + "issues": "https://github.com/reactphp/event-loop/issues", + "source": "https://github.com/reactphp/event-loop/tree/v1.5.0" + }, + "funding": [ + { + "url": "https://opencollective.com/reactphp", + "type": "open_collective" + } + ], + "time": "2023-11-13T13:48:05+00:00" + }, + { + "name": "react/promise", + "version": "v3.1.0", + "source": { + "type": "git", + "url": "https://github.com/reactphp/promise.git", + "reference": "e563d55d1641de1dea9f5e84f3cccc66d2bfe02c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/reactphp/promise/zipball/e563d55d1641de1dea9f5e84f3cccc66d2bfe02c", + "reference": "e563d55d1641de1dea9f5e84f3cccc66d2bfe02c", + "shasum": "" + }, + "require": { + "php": ">=7.1.0" + }, + "require-dev": { + "phpstan/phpstan": "1.10.39 || 1.4.10", + "phpunit/phpunit": "^9.6 || ^7.5" + }, + "type": "library", + "autoload": { + "files": [ + "src/functions_include.php" + ], + "psr-4": { + "React\\Promise\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jan Sorgalla", + "email": "jsorgalla@gmail.com", + "homepage": "https://sorgalla.com/" + }, + { + "name": "Christian Lück", + "email": "christian@clue.engineering", + "homepage": "https://clue.engineering/" + }, + { + "name": "Cees-Jan Kiewiet", + "email": "reactphp@ceesjankiewiet.nl", + "homepage": "https://wyrihaximus.net/" + }, + { + "name": "Chris Boden", + "email": "cboden@gmail.com", + "homepage": "https://cboden.dev/" + } + ], + "description": "A lightweight implementation of CommonJS Promises/A for PHP", + "keywords": [ + "promise", + "promises" + ], + "support": { + "issues": "https://github.com/reactphp/promise/issues", + "source": "https://github.com/reactphp/promise/tree/v3.1.0" + }, + "funding": [ + { + "url": "https://opencollective.com/reactphp", + "type": "open_collective" + } + ], + "time": "2023-11-16T16:21:57+00:00" + }, + { + "name": "react/promise-timer", + "version": "v1.10.0", + "source": { + "type": "git", + "url": "https://github.com/reactphp/promise-timer.git", + "reference": "4cb85c1c2125390748e3908120bb82feb99fe766" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/reactphp/promise-timer/zipball/4cb85c1c2125390748e3908120bb82feb99fe766", + "reference": "4cb85c1c2125390748e3908120bb82feb99fe766", + "shasum": "" + }, + "require": { + "php": ">=5.3", + "react/event-loop": "^1.2", + "react/promise": "^3.0 || ^2.7.0 || ^1.2.1" + }, + "require-dev": { + "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35" + }, + "type": "library", + "autoload": { + "files": [ + "src/functions_include.php" + ], + "psr-4": { + "React\\Promise\\Timer\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Christian Lück", + "email": "christian@clue.engineering", + "homepage": "https://clue.engineering/" + }, + { + "name": "Cees-Jan Kiewiet", + "email": "reactphp@ceesjankiewiet.nl", + "homepage": "https://wyrihaximus.net/" + }, + { + "name": "Jan Sorgalla", + "email": "jsorgalla@gmail.com", + "homepage": "https://sorgalla.com/" + }, + { + "name": "Chris Boden", + "email": "cboden@gmail.com", + "homepage": "https://cboden.dev/" + } + ], + "description": "A trivial implementation of timeouts for Promises, built on top of ReactPHP.", + "homepage": "https://github.com/reactphp/promise-timer", + "keywords": [ + "async", + "event-loop", + "promise", + "reactphp", + "timeout", + "timer" + ], + "support": { + "issues": "https://github.com/reactphp/promise-timer/issues", + "source": "https://github.com/reactphp/promise-timer/tree/v1.10.0" + }, + "funding": [ + { + "url": "https://opencollective.com/reactphp", + "type": "open_collective" + } + ], + "time": "2023-07-20T15:40:28+00:00" + }, + { + "name": "react/socket", + "version": "v1.15.0", + "source": { + "type": "git", + "url": "https://github.com/reactphp/socket.git", + "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/reactphp/socket/zipball/216d3aec0b87f04a40ca04f481e6af01bdd1d038", + "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038", + "shasum": "" + }, + "require": { + "evenement/evenement": "^3.0 || ^2.0 || ^1.0", + "php": ">=5.3.0", + "react/dns": "^1.11", + "react/event-loop": "^1.2", + "react/promise": "^3 || ^2.6 || ^1.2.1", + "react/stream": "^1.2" + }, + "require-dev": { + "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36", + "react/async": "^4 || ^3 || ^2", + "react/promise-stream": "^1.4", + "react/promise-timer": "^1.10" + }, + "type": "library", + "autoload": { + "psr-4": { + "React\\Socket\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Christian Lück", + "email": "christian@clue.engineering", + "homepage": "https://clue.engineering/" + }, + { + "name": "Cees-Jan Kiewiet", + "email": "reactphp@ceesjankiewiet.nl", + "homepage": "https://wyrihaximus.net/" + }, + { + "name": "Jan Sorgalla", + "email": "jsorgalla@gmail.com", + "homepage": "https://sorgalla.com/" + }, + { + "name": "Chris Boden", + "email": "cboden@gmail.com", + "homepage": "https://cboden.dev/" + } + ], + "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP", + "keywords": [ + "Connection", + "Socket", + "async", + "reactphp", + "stream" + ], + "support": { + "issues": "https://github.com/reactphp/socket/issues", + "source": "https://github.com/reactphp/socket/tree/v1.15.0" + }, + "funding": [ + { + "url": "https://opencollective.com/reactphp", + "type": "open_collective" + } + ], + "time": "2023-12-15T11:02:10+00:00" + }, + { + "name": "react/stream", + "version": "v1.3.0", + "source": { + "type": "git", + "url": "https://github.com/reactphp/stream.git", + "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/reactphp/stream/zipball/6fbc9672905c7d5a885f2da2fc696f65840f4a66", + "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66", + "shasum": "" + }, + "require": { + "evenement/evenement": "^3.0 || ^2.0 || ^1.0", + "php": ">=5.3.8", + "react/event-loop": "^1.2" + }, + "require-dev": { + "clue/stream-filter": "~1.2", + "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35" + }, + "type": "library", + "autoload": { + "psr-4": { + "React\\Stream\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Christian Lück", + "email": "christian@clue.engineering", + "homepage": "https://clue.engineering/" + }, + { + "name": "Cees-Jan Kiewiet", + "email": "reactphp@ceesjankiewiet.nl", + "homepage": "https://wyrihaximus.net/" + }, + { + "name": "Jan Sorgalla", + "email": "jsorgalla@gmail.com", + "homepage": "https://sorgalla.com/" + }, + { + "name": "Chris Boden", + "email": "cboden@gmail.com", + "homepage": "https://cboden.dev/" + } + ], + "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP", + "keywords": [ + "event-driven", + "io", + "non-blocking", + "pipe", + "reactphp", + "readable", + "stream", + "writable" + ], + "support": { + "issues": "https://github.com/reactphp/stream/issues", + "source": "https://github.com/reactphp/stream/tree/v1.3.0" + }, + "funding": [ + { + "url": "https://opencollective.com/reactphp", + "type": "open_collective" + } + ], + "time": "2023-06-16T10:52:11+00:00" + }, + { + "name": "symfony/clock", + "version": "v7.0.5", + "source": { + "type": "git", + "url": "https://github.com/symfony/clock.git", + "reference": "8b9d08887353d627d5f6c3bf3373b398b49051c2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/clock/zipball/8b9d08887353d627d5f6c3bf3373b398b49051c2", + "reference": "8b9d08887353d627d5f6c3bf3373b398b49051c2", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "psr/clock": "^1.0", + "symfony/polyfill-php83": "^1.28" + }, + "provide": { + "psr/clock-implementation": "1.0" + }, + "type": "library", + "autoload": { + "files": [ + "Resources/now.php" + ], + "psr-4": { + "Symfony\\Component\\Clock\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Decouples applications from the system clock", + "homepage": "https://symfony.com", + "keywords": [ + "clock", + "psr20", + "time" + ], + "support": { + "source": "https://github.com/symfony/clock/tree/v7.0.5" + }, + "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-03-02T12:46:12+00:00" + }, + { + "name": "symfony/console", + "version": "v7.0.4", + "source": { + "type": "git", + "url": "https://github.com/symfony/console.git", + "reference": "6b099f3306f7c9c2d2786ed736d0026b2903205f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/console/zipball/6b099f3306f7c9c2d2786ed736d0026b2903205f", + "reference": "6b099f3306f7c9c2d2786ed736d0026b2903205f", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-mbstring": "~1.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/string": "^6.4|^7.0" + }, + "conflict": { + "symfony/dependency-injection": "<6.4", + "symfony/dotenv": "<6.4", + "symfony/event-dispatcher": "<6.4", + "symfony/lock": "<6.4", + "symfony/process": "<6.4" + }, + "provide": { + "psr/log-implementation": "1.0|2.0|3.0" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/event-dispatcher": "^6.4|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/lock": "^6.4|^7.0", + "symfony/messenger": "^6.4|^7.0", + "symfony/process": "^6.4|^7.0", + "symfony/stopwatch": "^6.4|^7.0", + "symfony/var-dumper": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Console\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Eases the creation of beautiful and testable command line interfaces", + "homepage": "https://symfony.com", + "keywords": [ + "cli", + "command-line", + "console", + "terminal" + ], + "support": { + "source": "https://github.com/symfony/console/tree/v7.0.4" + }, + "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-02-22T20:27:20+00:00" + }, + { + "name": "symfony/css-selector", + "version": "v7.0.3", + "source": { + "type": "git", + "url": "https://github.com/symfony/css-selector.git", + "reference": "ec60a4edf94e63b0556b6a0888548bb400a3a3be" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/ec60a4edf94e63b0556b6a0888548bb400a3a3be", + "reference": "ec60a4edf94e63b0556b6a0888548bb400a3a3be", + "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.0.3" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-01-23T15:02:46+00:00" + }, + { + "name": "symfony/deprecation-contracts", + "version": "v3.4.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/deprecation-contracts.git", + "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf", + "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.4-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.4.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": "2023-05-23T14:45:45+00:00" + }, + { + "name": "symfony/error-handler", + "version": "v7.0.4", + "source": { + "type": "git", + "url": "https://github.com/symfony/error-handler.git", + "reference": "677b24759decff69e65b1e9d1471d90f95ced880" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/677b24759decff69e65b1e9d1471d90f95ced880", + "reference": "677b24759decff69e65b1e9d1471d90f95ced880", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "psr/log": "^1|^2|^3", + "symfony/var-dumper": "^6.4|^7.0" + }, + "conflict": { + "symfony/deprecation-contracts": "<2.5", + "symfony/http-kernel": "<6.4" + }, + "require-dev": { + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/serializer": "^6.4|^7.0" + }, + "bin": [ + "Resources/bin/patch-type-declarations" + ], + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\ErrorHandler\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides tools to manage errors and ease debugging PHP code", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/error-handler/tree/v7.0.4" + }, + "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-02-22T20:27:20+00:00" + }, + { + "name": "symfony/event-dispatcher", + "version": "v7.0.3", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "834c28d533dd0636f910909d01b9ff45cc094b5e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/834c28d533dd0636f910909d01b9ff45cc094b5e", + "reference": "834c28d533dd0636f910909d01b9ff45cc094b5e", + "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.0.3" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-01-23T15:02:46+00:00" + }, + { + "name": "symfony/event-dispatcher-contracts", + "version": "v3.4.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher-contracts.git", + "reference": "a76aed96a42d2b521153fb382d418e30d18b59df" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df", + "reference": "a76aed96a42d2b521153fb382d418e30d18b59df", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/event-dispatcher": "^1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.4-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.4.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": "2023-05-23T14:45:45+00:00" + }, + { + "name": "symfony/finder", + "version": "v7.0.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/finder.git", + "reference": "6e5688d69f7cfc4ed4a511e96007e06c2d34ce56" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/finder/zipball/6e5688d69f7cfc4ed4a511e96007e06c2d34ce56", + "reference": "6e5688d69f7cfc4ed4a511e96007e06c2d34ce56", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "symfony/filesystem": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Finder\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Finds files and directories via an intuitive fluent interface", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/finder/tree/v7.0.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": "2023-10-31T17:59:56+00:00" + }, + { + "name": "symfony/http-foundation", + "version": "v7.0.4", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-foundation.git", + "reference": "439fdfdd344943254b1ef6278613e79040548045" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/439fdfdd344943254b1ef6278613e79040548045", + "reference": "439fdfdd344943254b1ef6278613e79040548045", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-mbstring": "~1.1", + "symfony/polyfill-php83": "^1.27" + }, + "conflict": { + "doctrine/dbal": "<3.6", + "symfony/cache": "<6.4" + }, + "require-dev": { + "doctrine/dbal": "^3.6|^4", + "predis/predis": "^1.1|^2.0", + "symfony/cache": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/expression-language": "^6.4|^7.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/mime": "^6.4|^7.0", + "symfony/rate-limiter": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\HttpFoundation\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Defines an object-oriented layer for the HTTP specification", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/http-foundation/tree/v7.0.4" + }, + "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-02-08T19:22:56+00:00" + }, + { + "name": "symfony/http-kernel", + "version": "v7.0.5", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-kernel.git", + "reference": "37c24ca28f65e3121a68f3dd4daeb36fb1fa2a72" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/37c24ca28f65e3121a68f3dd4daeb36fb1fa2a72", + "reference": "37c24ca28f65e3121a68f3dd4daeb36fb1fa2a72", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "psr/log": "^1|^2|^3", + "symfony/error-handler": "^6.4|^7.0", + "symfony/event-dispatcher": "^6.4|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/polyfill-ctype": "^1.8" + }, + "conflict": { + "symfony/browser-kit": "<6.4", + "symfony/cache": "<6.4", + "symfony/config": "<6.4", + "symfony/console": "<6.4", + "symfony/dependency-injection": "<6.4", + "symfony/doctrine-bridge": "<6.4", + "symfony/form": "<6.4", + "symfony/http-client": "<6.4", + "symfony/http-client-contracts": "<2.5", + "symfony/mailer": "<6.4", + "symfony/messenger": "<6.4", + "symfony/translation": "<6.4", + "symfony/translation-contracts": "<2.5", + "symfony/twig-bridge": "<6.4", + "symfony/validator": "<6.4", + "symfony/var-dumper": "<6.4", + "twig/twig": "<3.0.4" + }, + "provide": { + "psr/log-implementation": "1.0|2.0|3.0" + }, + "require-dev": { + "psr/cache": "^1.0|^2.0|^3.0", + "symfony/browser-kit": "^6.4|^7.0", + "symfony/clock": "^6.4|^7.0", + "symfony/config": "^6.4|^7.0", + "symfony/console": "^6.4|^7.0", + "symfony/css-selector": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/dom-crawler": "^6.4|^7.0", + "symfony/expression-language": "^6.4|^7.0", + "symfony/finder": "^6.4|^7.0", + "symfony/http-client-contracts": "^2.5|^3", + "symfony/process": "^6.4|^7.0", + "symfony/property-access": "^6.4|^7.0", + "symfony/routing": "^6.4|^7.0", + "symfony/serializer": "^6.4.4|^7.0.4", + "symfony/stopwatch": "^6.4|^7.0", + "symfony/translation": "^6.4|^7.0", + "symfony/translation-contracts": "^2.5|^3", + "symfony/uid": "^6.4|^7.0", + "symfony/validator": "^6.4|^7.0", + "symfony/var-exporter": "^6.4|^7.0", + "twig/twig": "^3.0.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\HttpKernel\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides a structured process for converting a Request into a Response", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/http-kernel/tree/v7.0.5" + }, + "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-03-04T21:05:24+00:00" + }, + { + "name": "symfony/mailer", + "version": "v7.0.4", + "source": { + "type": "git", + "url": "https://github.com/symfony/mailer.git", + "reference": "72e16d87bf50a3ce195b9470c06bb9d7b816ea85" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/mailer/zipball/72e16d87bf50a3ce195b9470c06bb9d7b816ea85", + "reference": "72e16d87bf50a3ce195b9470c06bb9d7b816ea85", + "shasum": "" + }, + "require": { + "egulias/email-validator": "^2.1.10|^3|^4", + "php": ">=8.2", + "psr/event-dispatcher": "^1", + "psr/log": "^1|^2|^3", + "symfony/event-dispatcher": "^6.4|^7.0", + "symfony/mime": "^6.4|^7.0", + "symfony/service-contracts": "^2.5|^3" + }, + "conflict": { + "symfony/http-client-contracts": "<2.5", + "symfony/http-kernel": "<6.4", + "symfony/messenger": "<6.4", + "symfony/mime": "<6.4", + "symfony/twig-bridge": "<6.4" + }, + "require-dev": { + "symfony/console": "^6.4|^7.0", + "symfony/http-client": "^6.4|^7.0", + "symfony/messenger": "^6.4|^7.0", + "symfony/twig-bridge": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Mailer\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Helps sending emails", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/mailer/tree/v7.0.4" + }, + "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-02-03T21:34:19+00:00" + }, + { + "name": "symfony/mime", + "version": "v7.0.3", + "source": { + "type": "git", + "url": "https://github.com/symfony/mime.git", + "reference": "c1ffe24ba6fdc3e3f0f3fcb93519103b326a3716" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/mime/zipball/c1ffe24ba6fdc3e3f0f3fcb93519103b326a3716", + "reference": "c1ffe24ba6fdc3e3f0f3fcb93519103b326a3716", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-intl-idn": "^1.10", + "symfony/polyfill-mbstring": "^1.0" + }, + "conflict": { + "egulias/email-validator": "~3.0.0", + "phpdocumentor/reflection-docblock": "<3.2.2", + "phpdocumentor/type-resolver": "<1.4.0", + "symfony/mailer": "<6.4", + "symfony/serializer": "<6.4" + }, + "require-dev": { + "egulias/email-validator": "^2.1.10|^3.1|^4", + "league/html-to-markdown": "^5.0", + "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/property-access": "^6.4|^7.0", + "symfony/property-info": "^6.4|^7.0", + "symfony/serializer": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Mime\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Allows manipulating MIME messages", + "homepage": "https://symfony.com", + "keywords": [ + "mime", + "mime-type" + ], + "support": { + "source": "https://github.com/symfony/mime/tree/v7.0.3" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-01-30T08:34:29+00:00" + }, + { + "name": "symfony/polyfill-ctype", + "version": "v1.29.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-ctype.git", + "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4", + "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "provide": { + "ext-ctype": "*" + }, + "suggest": { + "ext-ctype": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Ctype\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Gert de Pagter", + "email": "BackEndTea@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for ctype functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "ctype", + "polyfill", + "portable" + ], + "support": { + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.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-01-29T20:11:03+00:00" + }, + { + "name": "symfony/polyfill-intl-grapheme", + "version": "v1.29.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-grapheme.git", + "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f", + "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Grapheme\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's grapheme_* functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "grapheme", + "intl", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.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-01-29T20:11:03+00:00" + }, + { + "name": "symfony/polyfill-intl-idn", + "version": "v1.29.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-idn.git", + "reference": "a287ed7475f85bf6f61890146edbc932c0fff919" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a287ed7475f85bf6f61890146edbc932c0fff919", + "reference": "a287ed7475f85bf6f61890146edbc932c0fff919", + "shasum": "" + }, + "require": { + "php": ">=7.1", + "symfony/polyfill-intl-normalizer": "^1.10", + "symfony/polyfill-php72": "^1.10" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Idn\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Laurent Bassin", + "email": "laurent@bassin.info" + }, + { + "name": "Trevor Rowbotham", + "email": "trevor.rowbotham@pm.me" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "idn", + "intl", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.29.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-01-29T20:11:03+00:00" + }, + { + "name": "symfony/polyfill-intl-normalizer", + "version": "v1.29.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-normalizer.git", + "reference": "bc45c394692b948b4d383a08d7753968bed9a83d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d", + "reference": "bc45c394692b948b4d383a08d7753968bed9a83d", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Normalizer\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's Normalizer class and related functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "intl", + "normalizer", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.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-01-29T20:11:03+00:00" + }, + { + "name": "symfony/polyfill-mbstring", + "version": "v1.29.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-mbstring.git", + "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec", + "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "provide": { + "ext-mbstring": "*" + }, + "suggest": { + "ext-mbstring": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Mbstring\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for the Mbstring extension", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "mbstring", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.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-01-29T20:11:03+00:00" + }, + { + "name": "symfony/polyfill-php72", + "version": "v1.29.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php72.git", + "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/861391a8da9a04cbad2d232ddd9e4893220d6e25", + "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php72\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php72/tree/v1.29.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-01-29T20:11:03+00:00" + }, + { + "name": "symfony/polyfill-php80", + "version": "v1.29.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php80.git", + "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b", + "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php80\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ion Bazan", + "email": "ion.bazan@gmail.com" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.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-01-29T20:11:03+00:00" + }, + { + "name": "symfony/polyfill-php83", + "version": "v1.29.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php83.git", + "reference": "86fcae159633351e5fd145d1c47de6c528f8caff" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/86fcae159633351e5fd145d1c47de6c528f8caff", + "reference": "86fcae159633351e5fd145d1c47de6c528f8caff", + "shasum": "" + }, + "require": { + "php": ">=7.1", + "symfony/polyfill-php80": "^1.14" + }, + "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.29.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-01-29T20:11:03+00:00" + }, + { + "name": "symfony/polyfill-uuid", + "version": "v1.29.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-uuid.git", + "reference": "3abdd21b0ceaa3000ee950097bc3cf9efc137853" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/3abdd21b0ceaa3000ee950097bc3cf9efc137853", + "reference": "3abdd21b0ceaa3000ee950097bc3cf9efc137853", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "provide": { + "ext-uuid": "*" + }, + "suggest": { + "ext-uuid": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Uuid\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Grégoire Pineau", + "email": "lyrixx@lyrixx.info" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for uuid functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "uuid" + ], + "support": { + "source": "https://github.com/symfony/polyfill-uuid/tree/v1.29.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-01-29T20:11:03+00:00" + }, + { + "name": "symfony/process", + "version": "v7.0.4", + "source": { + "type": "git", + "url": "https://github.com/symfony/process.git", + "reference": "0e7727191c3b71ebec6d529fa0e50a01ca5679e9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/process/zipball/0e7727191c3b71ebec6d529fa0e50a01ca5679e9", + "reference": "0e7727191c3b71ebec6d529fa0e50a01ca5679e9", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Process\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Executes commands in sub-processes", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/process/tree/v7.0.4" + }, + "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-02-22T20:27:20+00:00" + }, + { + "name": "symfony/routing", + "version": "v7.0.5", + "source": { + "type": "git", + "url": "https://github.com/symfony/routing.git", + "reference": "ba6bf07d43289c6a4b4591ddb75bc3bc5f069c19" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/routing/zipball/ba6bf07d43289c6a4b4591ddb75bc3bc5f069c19", + "reference": "ba6bf07d43289c6a4b4591ddb75bc3bc5f069c19", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3" + }, + "conflict": { + "symfony/config": "<6.4", + "symfony/dependency-injection": "<6.4", + "symfony/yaml": "<6.4" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/expression-language": "^6.4|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/yaml": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Routing\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Maps an HTTP request to a set of configuration variables", + "homepage": "https://symfony.com", + "keywords": [ + "router", + "routing", + "uri", + "url" + ], + "support": { + "source": "https://github.com/symfony/routing/tree/v7.0.5" + }, + "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-02-27T12:34:35+00:00" + }, + { + "name": "symfony/service-contracts", + "version": "v3.4.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/service-contracts.git", + "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/fe07cbc8d837f60caf7018068e350cc5163681a0", + "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/container": "^1.1|^2.0" + }, + "conflict": { + "ext-psr": "<1.1|>=2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.4-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.4.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2023-12-26T14:02:43+00:00" + }, + { + "name": "symfony/string", + "version": "v7.0.4", + "source": { + "type": "git", + "url": "https://github.com/symfony/string.git", + "reference": "f5832521b998b0bec40bee688ad5de98d4cf111b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/string/zipball/f5832521b998b0bec40bee688ad5de98d4cf111b", + "reference": "f5832521b998b0bec40bee688ad5de98d4cf111b", + "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/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.0.4" + }, + "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-02-01T13:17:36+00:00" + }, + { + "name": "symfony/translation", + "version": "v7.0.4", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation.git", + "reference": "5b75e872f7d135d7abb4613809fadc8d9f3d30a0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation/zipball/5b75e872f7d135d7abb4613809fadc8d9f3d30a0", + "reference": "5b75e872f7d135d7abb4613809fadc8d9f3d30a0", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-mbstring": "~1.0", + "symfony/translation-contracts": "^2.5|^3.0" + }, + "conflict": { + "symfony/config": "<6.4", + "symfony/console": "<6.4", + "symfony/dependency-injection": "<6.4", + "symfony/http-client-contracts": "<2.5", + "symfony/http-kernel": "<6.4", + "symfony/service-contracts": "<2.5", + "symfony/twig-bundle": "<6.4", + "symfony/yaml": "<6.4" + }, + "provide": { + "symfony/translation-implementation": "2.3|3.0" + }, + "require-dev": { + "nikic/php-parser": "^4.18|^5.0", + "psr/log": "^1|^2|^3", + "symfony/config": "^6.4|^7.0", + "symfony/console": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/finder": "^6.4|^7.0", + "symfony/http-client-contracts": "^2.5|^3.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/intl": "^6.4|^7.0", + "symfony/polyfill-intl-icu": "^1.21", + "symfony/routing": "^6.4|^7.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/yaml": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "files": [ + "Resources/functions.php" + ], + "psr-4": { + "Symfony\\Component\\Translation\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides tools to internationalize your application", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/translation/tree/v7.0.4" + }, + "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-02-22T20:27:20+00:00" + }, + { + "name": "symfony/translation-contracts", + "version": "v3.4.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation-contracts.git", + "reference": "06450585bf65e978026bda220cdebca3f867fde7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/06450585bf65e978026bda220cdebca3f867fde7", + "reference": "06450585bf65e978026bda220cdebca3f867fde7", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.4-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.4.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2023-12-26T14:02:43+00:00" + }, + { + "name": "symfony/uid", + "version": "v7.0.3", + "source": { + "type": "git", + "url": "https://github.com/symfony/uid.git", + "reference": "87cedaf3fabd7b733859d4d77aa4ca598259054b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/uid/zipball/87cedaf3fabd7b733859d4d77aa4ca598259054b", + "reference": "87cedaf3fabd7b733859d4d77aa4ca598259054b", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-uuid": "^1.15" + }, + "require-dev": { + "symfony/console": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Uid\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Grégoire Pineau", + "email": "lyrixx@lyrixx.info" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides an object-oriented API to generate and represent UIDs", + "homepage": "https://symfony.com", + "keywords": [ + "UID", + "ulid", + "uuid" + ], + "support": { + "source": "https://github.com/symfony/uid/tree/v7.0.3" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-01-23T15:02:46+00:00" + }, + { + "name": "symfony/var-dumper", + "version": "v7.0.4", + "source": { + "type": "git", + "url": "https://github.com/symfony/var-dumper.git", + "reference": "e03ad7c1535e623edbb94c22cc42353e488c6670" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/e03ad7c1535e623edbb94c22cc42353e488c6670", + "reference": "e03ad7c1535e623edbb94c22cc42353e488c6670", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/console": "<6.4" + }, + "require-dev": { + "ext-iconv": "*", + "symfony/console": "^6.4|^7.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/process": "^6.4|^7.0", + "symfony/uid": "^6.4|^7.0", + "twig/twig": "^3.0.4" + }, + "bin": [ + "Resources/bin/var-dump-server" + ], + "type": "library", + "autoload": { + "files": [ + "Resources/functions/dump.php" + ], + "psr-4": { + "Symfony\\Component\\VarDumper\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides mechanisms for walking through any arbitrary PHP variable", + "homepage": "https://symfony.com", + "keywords": [ + "debug", + "dump" + ], + "support": { + "source": "https://github.com/symfony/var-dumper/tree/v7.0.4" + }, + "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-02-15T11:33:06+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.0", + "source": { + "type": "git", + "url": "https://github.com/vlucas/phpdotenv.git", + "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4", + "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4", + "shasum": "" + }, + "require": { + "ext-pcre": "*", + "graham-campbell/result-type": "^1.1.2", + "php": "^7.2.5 || ^8.0", + "phpoption/phpoption": "^1.9.2", + "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": true + }, + "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.0" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv", + "type": "tidelift" + } + ], + "time": "2023-11-12T22:43:29+00:00" + }, + { + "name": "voku/portable-ascii", + "version": "2.0.1", + "source": { + "type": "git", + "url": "https://github.com/voku/portable-ascii.git", + "reference": "b56450eed252f6801410d810c8e1727224ae0743" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743", + "reference": "b56450eed252f6801410d810c8e1727224ae0743", + "shasum": "" + }, + "require": { + "php": ">=7.0.0" + }, + "require-dev": { + "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0" + }, + "suggest": { + "ext-intl": "Use Intl for transliterator_transliterate() support" + }, + "type": "library", + "autoload": { + "psr-4": { + "voku\\": "src/voku/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Lars Moelleken", + "homepage": "http://www.moelleken.org/" + } + ], + "description": "Portable ASCII library - performance optimized (ascii) string functions for php.", + "homepage": "https://github.com/voku/portable-ascii", + "keywords": [ + "ascii", + "clean", + "php" + ], + "support": { + "issues": "https://github.com/voku/portable-ascii/issues", + "source": "https://github.com/voku/portable-ascii/tree/2.0.1" + }, + "funding": [ + { + "url": "https://www.paypal.me/moelleken", + "type": "custom" + }, + { + "url": "https://github.com/voku", + "type": "github" + }, + { + "url": "https://opencollective.com/portable-ascii", + "type": "open_collective" + }, + { + "url": "https://www.patreon.com/voku", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii", + "type": "tidelift" + } + ], + "time": "2022-03-08T17:03:00+00:00" + }, + { + "name": "webmozart/assert", + "version": "1.11.0", + "source": { + "type": "git", + "url": "https://github.com/webmozarts/assert.git", + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991", + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991", + "shasum": "" + }, + "require": { + "ext-ctype": "*", + "php": "^7.2 || ^8.0" + }, + "conflict": { + "phpstan/phpstan": "<0.12.20", + "vimeo/psalm": "<4.6.1 || 4.6.2" + }, + "require-dev": { + "phpunit/phpunit": "^8.5.13" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.10-dev" + } + }, + "autoload": { + "psr-4": { + "Webmozart\\Assert\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "Assertions to validate method input/output with nice error messages.", + "keywords": [ + "assert", + "check", + "validate" + ], + "support": { + "issues": "https://github.com/webmozarts/assert/issues", + "source": "https://github.com/webmozarts/assert/tree/1.11.0" + }, + "time": "2022-06-03T18:03:27+00:00" + } + ], + "packages-dev": [ + { + "name": "fakerphp/faker", + "version": "v1.23.1", + "source": { + "type": "git", + "url": "https://github.com/FakerPHP/Faker.git", + "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b", + "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b", + "shasum": "" + }, + "require": { + "php": "^7.4 || ^8.0", + "psr/container": "^1.0 || ^2.0", + "symfony/deprecation-contracts": "^2.2 || ^3.0" + }, + "conflict": { + "fzaninotto/faker": "*" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.4.1", + "doctrine/persistence": "^1.3 || ^2.0", + "ext-intl": "*", + "phpunit/phpunit": "^9.5.26", + "symfony/phpunit-bridge": "^5.4.16" + }, + "suggest": { + "doctrine/orm": "Required to use Faker\\ORM\\Doctrine", + "ext-curl": "Required by Faker\\Provider\\Image to download images.", + "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.", + "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.", + "ext-mbstring": "Required for multibyte Unicode string functionality." + }, + "type": "library", + "autoload": { + "psr-4": { + "Faker\\": "src/Faker/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "François Zaninotto" + } + ], + "description": "Faker is a PHP library that generates fake data for you.", + "keywords": [ + "data", + "faker", + "fixtures" + ], + "support": { + "issues": "https://github.com/FakerPHP/Faker/issues", + "source": "https://github.com/FakerPHP/Faker/tree/v1.23.1" + }, + "time": "2024-01-02T13:46:09+00:00" + }, + { + "name": "filp/whoops", + "version": "2.15.4", + "source": { + "type": "git", + "url": "https://github.com/filp/whoops.git", + "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/filp/whoops/zipball/a139776fa3f5985a50b509f2a02ff0f709d2a546", + "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546", + "shasum": "" + }, + "require": { + "php": "^5.5.9 || ^7.0 || ^8.0", + "psr/log": "^1.0.1 || ^2.0 || ^3.0" + }, + "require-dev": { + "mockery/mockery": "^0.9 || ^1.0", + "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3", + "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0" + }, + "suggest": { + "symfony/var-dumper": "Pretty print complex values better with var-dumper available", + "whoops/soap": "Formats errors as SOAP responses" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.7-dev" + } + }, + "autoload": { + "psr-4": { + "Whoops\\": "src/Whoops/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Filipe Dobreira", + "homepage": "https://github.com/filp", + "role": "Developer" + } + ], + "description": "php error handling for cool kids", + "homepage": "https://filp.github.io/whoops/", + "keywords": [ + "error", + "exception", + "handling", + "library", + "throwable", + "whoops" + ], + "support": { + "issues": "https://github.com/filp/whoops/issues", + "source": "https://github.com/filp/whoops/tree/2.15.4" + }, + "funding": [ + { + "url": "https://github.com/denis-sokolov", + "type": "github" + } + ], + "time": "2023-11-03T12:00:00+00:00" + }, + { + "name": "hamcrest/hamcrest-php", + "version": "v2.0.1", + "source": { + "type": "git", + "url": "https://github.com/hamcrest/hamcrest-php.git", + "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", + "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", + "shasum": "" + }, + "require": { + "php": "^5.3|^7.0|^8.0" + }, + "replace": { + "cordoval/hamcrest-php": "*", + "davedevelopment/hamcrest-php": "*", + "kodova/hamcrest-php": "*" + }, + "require-dev": { + "phpunit/php-file-iterator": "^1.4 || ^2.0", + "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.1-dev" + } + }, + "autoload": { + "classmap": [ + "hamcrest" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "This is the PHP port of Hamcrest Matchers", + "keywords": [ + "test" + ], + "support": { + "issues": "https://github.com/hamcrest/hamcrest-php/issues", + "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1" + }, + "time": "2020-07-09T08:09:16+00:00" + }, + { + "name": "laravel/breeze", + "version": "v2.0.0", + "source": { + "type": "git", + "url": "https://github.com/laravel/breeze.git", + "reference": "a8afa763cf51adf890b778bff78e1945042b8150" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/breeze/zipball/a8afa763cf51adf890b778bff78e1945042b8150", + "reference": "a8afa763cf51adf890b778bff78e1945042b8150", + "shasum": "" + }, + "require": { + "illuminate/console": "^11.0", + "illuminate/filesystem": "^11.0", + "illuminate/support": "^11.0", + "illuminate/validation": "^11.0", + "php": "^8.2.0" + }, + "require-dev": { + "orchestra/testbench": "^9.0", + "phpstan/phpstan": "^1.10" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Laravel\\Breeze\\BreezeServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Laravel\\Breeze\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Minimal Laravel authentication scaffolding with Blade and Tailwind.", + "keywords": [ + "auth", + "laravel" + ], + "support": { + "issues": "https://github.com/laravel/breeze/issues", + "source": "https://github.com/laravel/breeze" + }, + "time": "2024-03-12T14:01:40+00:00" + }, + { + "name": "laravel/pint", + "version": "v1.14.0", + "source": { + "type": "git", + "url": "https://github.com/laravel/pint.git", + "reference": "6b127276e3f263f7bb17d5077e9e0269e61b2a0e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/pint/zipball/6b127276e3f263f7bb17d5077e9e0269e61b2a0e", + "reference": "6b127276e3f263f7bb17d5077e9e0269e61b2a0e", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-mbstring": "*", + "ext-tokenizer": "*", + "ext-xml": "*", + "php": "^8.1.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.49.0", + "illuminate/view": "^10.43.0", + "larastan/larastan": "^2.8.1", + "laravel-zero/framework": "^10.3.0", + "mockery/mockery": "^1.6.7", + "nunomaduro/termwind": "^1.15.1", + "pestphp/pest": "^2.33.6" + }, + "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-02-20T17:38:05+00:00" + }, + { + "name": "laravel/sail", + "version": "v1.29.0", + "source": { + "type": "git", + "url": "https://github.com/laravel/sail.git", + "reference": "e40cc7ffb5186c45698dbd47e9477e0e429396d0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/sail/zipball/e40cc7ffb5186c45698dbd47e9477e0e429396d0", + "reference": "e40cc7ffb5186c45698dbd47e9477e0e429396d0", + "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/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-03-08T16:32:33+00:00" + }, + { + "name": "mockery/mockery", + "version": "1.6.9", + "source": { + "type": "git", + "url": "https://github.com/mockery/mockery.git", + "reference": "0cc058854b3195ba21dc6b1f7b1f60f4ef3a9c06" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/mockery/mockery/zipball/0cc058854b3195ba21dc6b1f7b1f60f4ef3a9c06", + "reference": "0cc058854b3195ba21dc6b1f7b1f60f4ef3a9c06", + "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.10", + "symplify/easy-coding-standard": "^12.0.8" + }, + "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": "2023-12-10T02:24:34+00:00" + }, + { + "name": "myclabs/deep-copy", + "version": "1.11.1", + "source": { + "type": "git", + "url": "https://github.com/myclabs/DeepCopy.git", + "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", + "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", + "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", + "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.11.1" + }, + "funding": [ + { + "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", + "type": "tidelift" + } + ], + "time": "2023-03-08T13:26:56+00:00" + }, + { + "name": "nunomaduro/collision", + "version": "v8.1.1", + "source": { + "type": "git", + "url": "https://github.com/nunomaduro/collision.git", + "reference": "13e5d538b95a744d85f447a321ce10adb28e9af9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nunomaduro/collision/zipball/13e5d538b95a744d85f447a321ce10adb28e9af9", + "reference": "13e5d538b95a744d85f447a321ce10adb28e9af9", + "shasum": "" + }, + "require": { + "filp/whoops": "^2.15.4", + "nunomaduro/termwind": "^2.0.1", + "php": "^8.2.0", + "symfony/console": "^7.0.4" + }, + "conflict": { + "laravel/framework": "<11.0.0 || >=12.0.0", + "phpunit/phpunit": "<10.5.1 || >=12.0.0" + }, + "require-dev": { + "larastan/larastan": "^2.9.2", + "laravel/framework": "^11.0.0", + "laravel/pint": "^1.14.0", + "laravel/sail": "^1.28.2", + "laravel/sanctum": "^4.0.0", + "laravel/tinker": "^2.9.0", + "orchestra/testbench-core": "^9.0.0", + "pestphp/pest": "^2.34.1 || ^3.0.0", + "sebastian/environment": "^6.0.1 || ^7.0.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider" + ] + }, + "branch-alias": { + "dev-8.x": "8.x-dev" + } + }, + "autoload": { + "files": [ + "./src/Adapters/Phpunit/Autoload.php" + ], + "psr-4": { + "NunoMaduro\\Collision\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + } + ], + "description": "Cli error handling for console/command-line PHP applications.", + "keywords": [ + "artisan", + "cli", + "command-line", + "console", + "error", + "handling", + "laravel", + "laravel-zero", + "php", + "symfony" + ], + "support": { + "issues": "https://github.com/nunomaduro/collision/issues", + "source": "https://github.com/nunomaduro/collision" + }, + "funding": [ + { + "url": "https://www.paypal.com/paypalme/enunomaduro", + "type": "custom" + }, + { + "url": "https://github.com/nunomaduro", + "type": "github" + }, + { + "url": "https://www.patreon.com/nunomaduro", + "type": "patreon" + } + ], + "time": "2024-03-06T16:20:09+00:00" + }, + { + "name": "phar-io/manifest", + "version": "2.0.4", + "source": { + "type": "git", + "url": "https://github.com/phar-io/manifest.git", + "reference": "54750ef60c58e43759730615a392c31c80e23176" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176", + "reference": "54750ef60c58e43759730615a392c31c80e23176", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "ext-phar": "*", + "ext-xmlwriter": "*", + "phar-io/version": "^3.0.1", + "php": "^7.2 || ^8.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", + "support": { + "issues": "https://github.com/phar-io/manifest/issues", + "source": "https://github.com/phar-io/manifest/tree/2.0.4" + }, + "funding": [ + { + "url": "https://github.com/theseer", + "type": "github" + } + ], + "time": "2024-03-03T12:33:53+00:00" + }, + { + "name": "phar-io/version", + "version": "3.2.1", + "source": { + "type": "git", + "url": "https://github.com/phar-io/version.git", + "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74", + "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Library for handling version information and constraints", + "support": { + "issues": "https://github.com/phar-io/version/issues", + "source": "https://github.com/phar-io/version/tree/3.2.1" + }, + "time": "2022-02-21T01:04:05+00:00" + }, + { + "name": "phpunit/php-code-coverage", + "version": "11.0.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-code-coverage.git", + "reference": "7e35a2cbcabac0e6865fd373742ea432a3c34f92" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e35a2cbcabac0e6865fd373742ea432a3c34f92", + "reference": "7e35a2cbcabac0e6865fd373742ea432a3c34f92", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "ext-xmlwriter": "*", + "nikic/php-parser": "^5.0", + "php": ">=8.2", + "phpunit/php-file-iterator": "^5.0", + "phpunit/php-text-template": "^4.0", + "sebastian/code-unit-reverse-lookup": "^4.0", + "sebastian/complexity": "^4.0", + "sebastian/environment": "^7.0", + "sebastian/lines-of-code": "^3.0", + "sebastian/version": "^5.0", + "theseer/tokenizer": "^1.2.0" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "suggest": { + "ext-pcov": "PHP extension that provides line coverage", + "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "11.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", + "homepage": "https://github.com/sebastianbergmann/php-code-coverage", + "keywords": [ + "coverage", + "testing", + "xunit" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", + "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy", + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-12T15:35:40+00:00" + }, + { + "name": "phpunit/php-file-iterator", + "version": "5.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-file-iterator.git", + "reference": "99e95c94ad9500daca992354fa09d7b99abe2210" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/99e95c94ad9500daca992354fa09d7b99abe2210", + "reference": "99e95c94ad9500daca992354fa09d7b99abe2210", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "FilterIterator implementation that filters files based on a list of suffixes.", + "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", + "keywords": [ + "filesystem", + "iterator" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", + "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy", + "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-02-02T06:05:04+00:00" + }, + { + "name": "phpunit/php-invoker", + "version": "5.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-invoker.git", + "reference": "5d8d9355a16d8cc5a1305b0a85342cfa420612be" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5d8d9355a16d8cc5a1305b0a85342cfa420612be", + "reference": "5d8d9355a16d8cc5a1305b0a85342cfa420612be", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "ext-pcntl": "*", + "phpunit/phpunit": "^11.0" + }, + "suggest": { + "ext-pcntl": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Invoke callables with a timeout", + "homepage": "https://github.com/sebastianbergmann/php-invoker/", + "keywords": [ + "process" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-invoker/issues", + "security": "https://github.com/sebastianbergmann/php-invoker/security/policy", + "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-02-02T06:05:50+00:00" + }, + { + "name": "phpunit/php-text-template", + "version": "4.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-text-template.git", + "reference": "d38f6cbff1cdb6f40b03c9811421561668cc133e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/d38f6cbff1cdb6f40b03c9811421561668cc133e", + "reference": "d38f6cbff1cdb6f40b03c9811421561668cc133e", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Simple template engine.", + "homepage": "https://github.com/sebastianbergmann/php-text-template/", + "keywords": [ + "template" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-text-template/issues", + "security": "https://github.com/sebastianbergmann/php-text-template/security/policy", + "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-02-02T06:06:56+00:00" + }, + { + "name": "phpunit/php-timer", + "version": "7.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-timer.git", + "reference": "8a59d9e25720482ee7fcdf296595e08795b84dc5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/8a59d9e25720482ee7fcdf296595e08795b84dc5", + "reference": "8a59d9e25720482ee7fcdf296595e08795b84dc5", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "7.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Utility class for timing", + "homepage": "https://github.com/sebastianbergmann/php-timer/", + "keywords": [ + "timer" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-timer/issues", + "security": "https://github.com/sebastianbergmann/php-timer/security/policy", + "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-02-02T06:08:01+00:00" + }, + { + "name": "phpunit/phpunit", + "version": "11.0.6", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/phpunit.git", + "reference": "6af32d7938fc366f86e49a5f5ebb314018d1b1fb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/6af32d7938fc366f86e49a5f5ebb314018d1b1fb", + "reference": "6af32d7938fc366f86e49a5f5ebb314018d1b1fb", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-json": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-xml": "*", + "ext-xmlwriter": "*", + "myclabs/deep-copy": "^1.10.1", + "phar-io/manifest": "^2.0.3", + "phar-io/version": "^3.0.2", + "php": ">=8.2", + "phpunit/php-code-coverage": "^11.0", + "phpunit/php-file-iterator": "^5.0", + "phpunit/php-invoker": "^5.0", + "phpunit/php-text-template": "^4.0", + "phpunit/php-timer": "^7.0", + "sebastian/cli-parser": "^3.0", + "sebastian/code-unit": "^3.0", + "sebastian/comparator": "^6.0", + "sebastian/diff": "^6.0", + "sebastian/environment": "^7.0", + "sebastian/exporter": "^6.0", + "sebastian/global-state": "^7.0", + "sebastian/object-enumerator": "^6.0", + "sebastian/type": "^5.0", + "sebastian/version": "^5.0" + }, + "suggest": { + "ext-soap": "To be able to generate mocks based on WSDL files" + }, + "bin": [ + "phpunit" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "11.0-dev" + } + }, + "autoload": { + "files": [ + "src/Framework/Assert/Functions.php" + ], + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "The PHP Unit Testing framework.", + "homepage": "https://phpunit.de/", + "keywords": [ + "phpunit", + "testing", + "xunit" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/phpunit/issues", + "security": "https://github.com/sebastianbergmann/phpunit/security/policy", + "source": "https://github.com/sebastianbergmann/phpunit/tree/11.0.6" + }, + "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-03-12T15:40:01+00:00" + }, + { + "name": "sebastian/cli-parser", + "version": "3.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/cli-parser.git", + "reference": "00a74d5568694711f0222e54fb281e1d15fdf04a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/00a74d5568694711f0222e54fb281e1d15fdf04a", + "reference": "00a74d5568694711f0222e54fb281e1d15fdf04a", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for parsing CLI options", + "homepage": "https://github.com/sebastianbergmann/cli-parser", + "support": { + "issues": "https://github.com/sebastianbergmann/cli-parser/issues", + "security": "https://github.com/sebastianbergmann/cli-parser/security/policy", + "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-02T07:26:58+00:00" + }, + { + "name": "sebastian/code-unit", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit.git", + "reference": "6634549cb8d702282a04a774e36a7477d2bd9015" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/6634549cb8d702282a04a774e36a7477d2bd9015", + "reference": "6634549cb8d702282a04a774e36a7477d2bd9015", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Collection of value objects that represent the PHP code units", + "homepage": "https://github.com/sebastianbergmann/code-unit", + "support": { + "issues": "https://github.com/sebastianbergmann/code-unit/issues", + "security": "https://github.com/sebastianbergmann/code-unit/security/policy", + "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-02-02T05:50:41+00:00" + }, + { + "name": "sebastian/code-unit-reverse-lookup", + "version": "4.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", + "reference": "df80c875d3e459b45c6039e4d9b71d4fbccae25d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/df80c875d3e459b45c6039e4d9b71d4fbccae25d", + "reference": "df80c875d3e459b45c6039e4d9b71d4fbccae25d", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Looks up which function or method a line of code belongs to", + "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", + "support": { + "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues", + "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy", + "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-02-02T05:52:17+00:00" + }, + { + "name": "sebastian/comparator", + "version": "6.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/comparator.git", + "reference": "bd0f2fa5b9257c69903537b266ccb80fcf940db8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/bd0f2fa5b9257c69903537b266ccb80fcf940db8", + "reference": "bd0f2fa5b9257c69903537b266ccb80fcf940db8", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-mbstring": "*", + "php": ">=8.2", + "sebastian/diff": "^6.0", + "sebastian/exporter": "^6.0" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@2bepublished.at" + } + ], + "description": "Provides the functionality to compare PHP values for equality", + "homepage": "https://github.com/sebastianbergmann/comparator", + "keywords": [ + "comparator", + "compare", + "equality" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/comparator/issues", + "security": "https://github.com/sebastianbergmann/comparator/security/policy", + "source": "https://github.com/sebastianbergmann/comparator/tree/6.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-02-02T05:53:45+00:00" + }, + { + "name": "sebastian/complexity", + "version": "4.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/complexity.git", + "reference": "88a434ad86150e11a606ac4866b09130712671f0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/88a434ad86150e11a606ac4866b09130712671f0", + "reference": "88a434ad86150e11a606ac4866b09130712671f0", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^5.0", + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for calculating the complexity of PHP code units", + "homepage": "https://github.com/sebastianbergmann/complexity", + "support": { + "issues": "https://github.com/sebastianbergmann/complexity/issues", + "security": "https://github.com/sebastianbergmann/complexity/security/policy", + "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-02-02T05:55:19+00:00" + }, + { + "name": "sebastian/diff", + "version": "6.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/diff.git", + "reference": "ab83243ecc233de5655b76f577711de9f842e712" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ab83243ecc233de5655b76f577711de9f842e712", + "reference": "ab83243ecc233de5655b76f577711de9f842e712", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0", + "symfony/process": "^4.2 || ^5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Kore Nordmann", + "email": "mail@kore-nordmann.de" + } + ], + "description": "Diff implementation", + "homepage": "https://github.com/sebastianbergmann/diff", + "keywords": [ + "diff", + "udiff", + "unidiff", + "unified diff" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/diff/issues", + "security": "https://github.com/sebastianbergmann/diff/security/policy", + "source": "https://github.com/sebastianbergmann/diff/tree/6.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-02T07:30:33+00:00" + }, + { + "name": "sebastian/environment", + "version": "7.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/environment.git", + "reference": "100d8b855d7180f79f9a9a5c483f2d960581c3ea" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/100d8b855d7180f79f9a9a5c483f2d960581c3ea", + "reference": "100d8b855d7180f79f9a9a5c483f2d960581c3ea", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "suggest": { + "ext-posix": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "7.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides functionality to handle HHVM/PHP environments", + "homepage": "https://github.com/sebastianbergmann/environment", + "keywords": [ + "Xdebug", + "environment", + "hhvm" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/environment/issues", + "security": "https://github.com/sebastianbergmann/environment/security/policy", + "source": "https://github.com/sebastianbergmann/environment/tree/7.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-02-02T05:57:54+00:00" + }, + { + "name": "sebastian/exporter", + "version": "6.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/exporter.git", + "reference": "f291e5a317c321c0381fa9ecc796fa2d21b186da" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/f291e5a317c321c0381fa9ecc796fa2d21b186da", + "reference": "f291e5a317c321c0381fa9ecc796fa2d21b186da", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "php": ">=8.2", + "sebastian/recursion-context": "^6.0" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "Provides the functionality to export PHP variables for visualization", + "homepage": "https://www.github.com/sebastianbergmann/exporter", + "keywords": [ + "export", + "exporter" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/exporter/issues", + "security": "https://github.com/sebastianbergmann/exporter/security/policy", + "source": "https://github.com/sebastianbergmann/exporter/tree/6.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-02T07:28:20+00:00" + }, + { + "name": "sebastian/global-state", + "version": "7.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/global-state.git", + "reference": "c3a307e832f2e69c7ef869e31fc644fde0e7cb3e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/c3a307e832f2e69c7ef869e31fc644fde0e7cb3e", + "reference": "c3a307e832f2e69c7ef869e31fc644fde0e7cb3e", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "sebastian/object-reflector": "^4.0", + "sebastian/recursion-context": "^6.0" + }, + "require-dev": { + "ext-dom": "*", + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "7.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Snapshotting of global state", + "homepage": "https://www.github.com/sebastianbergmann/global-state", + "keywords": [ + "global state" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/global-state/issues", + "security": "https://github.com/sebastianbergmann/global-state/security/policy", + "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-02T07:32:10+00:00" + }, + { + "name": "sebastian/lines-of-code", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/lines-of-code.git", + "reference": "376c5b3f6b43c78fdc049740bca76a7c846706c0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/376c5b3f6b43c78fdc049740bca76a7c846706c0", + "reference": "376c5b3f6b43c78fdc049740bca76a7c846706c0", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^5.0", + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for counting the lines of code in PHP source code", + "homepage": "https://github.com/sebastianbergmann/lines-of-code", + "support": { + "issues": "https://github.com/sebastianbergmann/lines-of-code/issues", + "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy", + "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-02-02T06:00:36+00:00" + }, + { + "name": "sebastian/object-enumerator", + "version": "6.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-enumerator.git", + "reference": "f75f6c460da0bbd9668f43a3dde0ec0ba7faa678" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f75f6c460da0bbd9668f43a3dde0ec0ba7faa678", + "reference": "f75f6c460da0bbd9668f43a3dde0ec0ba7faa678", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "sebastian/object-reflector": "^4.0", + "sebastian/recursion-context": "^6.0" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Traverses array structures and object graphs to enumerate all referenced objects", + "homepage": "https://github.com/sebastianbergmann/object-enumerator/", + "support": { + "issues": "https://github.com/sebastianbergmann/object-enumerator/issues", + "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy", + "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-02-02T06:01:29+00:00" + }, + { + "name": "sebastian/object-reflector", + "version": "4.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-reflector.git", + "reference": "bb2a6255d30853425fd38f032eb64ced9f7f132d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/bb2a6255d30853425fd38f032eb64ced9f7f132d", + "reference": "bb2a6255d30853425fd38f032eb64ced9f7f132d", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Allows reflection of object attributes, including inherited and non-public ones", + "homepage": "https://github.com/sebastianbergmann/object-reflector/", + "support": { + "issues": "https://github.com/sebastianbergmann/object-reflector/issues", + "security": "https://github.com/sebastianbergmann/object-reflector/security/policy", + "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-02-02T06:02:18+00:00" + }, + { + "name": "sebastian/recursion-context", + "version": "6.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/recursion-context.git", + "reference": "b75224967b5a466925c6d54e68edd0edf8dd4ed4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/b75224967b5a466925c6d54e68edd0edf8dd4ed4", + "reference": "b75224967b5a466925c6d54e68edd0edf8dd4ed4", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + } + ], + "description": "Provides functionality to recursively process PHP variables", + "homepage": "https://github.com/sebastianbergmann/recursion-context", + "support": { + "issues": "https://github.com/sebastianbergmann/recursion-context/issues", + "security": "https://github.com/sebastianbergmann/recursion-context/security/policy", + "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-02-02T06:08:48+00:00" + }, + { + "name": "sebastian/type", + "version": "5.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/type.git", + "reference": "b8502785eb3523ca0dd4afe9ca62235590020f3f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/b8502785eb3523ca0dd4afe9ca62235590020f3f", + "reference": "b8502785eb3523ca0dd4afe9ca62235590020f3f", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Collection of value objects that represent the types of the PHP type system", + "homepage": "https://github.com/sebastianbergmann/type", + "support": { + "issues": "https://github.com/sebastianbergmann/type/issues", + "security": "https://github.com/sebastianbergmann/type/security/policy", + "source": "https://github.com/sebastianbergmann/type/tree/5.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-02-02T06:09:34+00:00" + }, + { + "name": "sebastian/version", + "version": "5.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/version.git", + "reference": "13999475d2cb1ab33cb73403ba356a814fdbb001" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/13999475d2cb1ab33cb73403ba356a814fdbb001", + "reference": "13999475d2cb1ab33cb73403ba356a814fdbb001", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that helps with managing the version number of Git-hosted PHP projects", + "homepage": "https://github.com/sebastianbergmann/version", + "support": { + "issues": "https://github.com/sebastianbergmann/version/issues", + "security": "https://github.com/sebastianbergmann/version/security/policy", + "source": "https://github.com/sebastianbergmann/version/tree/5.0.0" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-02-02T06:10:47+00:00" + }, + { + "name": "spatie/backtrace", + "version": "1.5.3", + "source": { + "type": "git", + "url": "https://github.com/spatie/backtrace.git", + "reference": "483f76a82964a0431aa836b6ed0edde0c248e3ab" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/backtrace/zipball/483f76a82964a0431aa836b6ed0edde0c248e3ab", + "reference": "483f76a82964a0431aa836b6ed0edde0c248e3ab", + "shasum": "" + }, + "require": { + "php": "^7.3|^8.0" + }, + "require-dev": { + "ext-json": "*", + "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.5.3" + }, + "funding": [ + { + "url": "https://github.com/sponsors/spatie", + "type": "github" + }, + { + "url": "https://spatie.be/open-source/support-us", + "type": "other" + } + ], + "time": "2023-06-28T12:59:17+00:00" + }, + { + "name": "spatie/flare-client-php", + "version": "1.4.4", + "source": { + "type": "git", + "url": "https://github.com/spatie/flare-client-php.git", + "reference": "17082e780752d346c2db12ef5d6bee8e835e399c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/17082e780752d346c2db12ef5d6bee8e835e399c", + "reference": "17082e780752d346c2db12ef5d6bee8e835e399c", + "shasum": "" + }, + "require": { + "illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0", + "php": "^8.0", + "spatie/backtrace": "^1.5.2", + "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/phpunit-snapshot-assertions": "^4.0|^5.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.4.4" + }, + "funding": [ + { + "url": "https://github.com/spatie", + "type": "github" + } + ], + "time": "2024-01-31T14:18:45+00:00" + }, + { + "name": "spatie/ignition", + "version": "1.12.0", + "source": { + "type": "git", + "url": "https://github.com/spatie/ignition.git", + "reference": "5b6f801c605a593106b623e45ca41496a6e7d56d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/ignition/zipball/5b6f801c605a593106b623e45ca41496a6e7d56d", + "reference": "5b6f801c605a593106b623e45ca41496a6e7d56d", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-mbstring": "*", + "php": "^8.0", + "spatie/backtrace": "^1.5.3", + "spatie/flare-client-php": "^1.4.0", + "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-01-03T15:49:39+00:00" + }, + { + "name": "spatie/laravel-ignition", + "version": "2.4.2", + "source": { + "type": "git", + "url": "https://github.com/spatie/laravel-ignition.git", + "reference": "351504f4570e32908839fc5a2dc53bf77d02f85e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/351504f4570e32908839fc5a2dc53bf77d02f85e", + "reference": "351504f4570e32908839fc5a2dc53bf77d02f85e", + "shasum": "" + }, + "require": { + "ext-curl": "*", + "ext-json": "*", + "ext-mbstring": "*", + "illuminate/support": "^10.0|^11.0", + "php": "^8.1", + "spatie/flare-client-php": "^1.3.5", + "spatie/ignition": "^1.9", + "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.0|^9.0", + "pestphp/pest": "^2.30", + "phpstan/extension-installer": "^1.2", + "phpstan/phpstan-deprecation-rules": "^1.1.1", + "phpstan/phpstan-phpunit": "^1.3.3", + "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-02-09T16:08:40+00:00" + }, + { + "name": "symfony/yaml", + "version": "v7.0.3", + "source": { + "type": "git", + "url": "https://github.com/symfony/yaml.git", + "reference": "2d4fca631c00700597e9442a0b2451ce234513d3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/yaml/zipball/2d4fca631c00700597e9442a0b2451ce234513d3", + "reference": "2d4fca631c00700597e9442a0b2451ce234513d3", + "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.0.3" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-01-23T15:02:46+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": { + "laravel/reverb": 10 + }, + "prefer-stable": true, + "prefer-lowest": false, + "platform": { + "php": "^8.2" + }, + "platform-dev": [], + "plugin-api-version": "2.2.0" +} diff --git a/aigo/config/app.php b/aigo/config/app.php new file mode 100644 index 0000000..f467267 --- /dev/null +++ b/aigo/config/app.php @@ -0,0 +1,126 @@ + env('APP_NAME', 'Laravel'), + + /* + |-------------------------------------------------------------------------- + | Application Environment + |-------------------------------------------------------------------------- + | + | This value determines the "environment" your application is currently + | running in. This may determine how you prefer to configure various + | services the application utilizes. Set this in your ".env" file. + | + */ + + 'env' => env('APP_ENV', 'production'), + + /* + |-------------------------------------------------------------------------- + | Application Debug Mode + |-------------------------------------------------------------------------- + | + | When your application is in debug mode, detailed error messages with + | stack traces will be shown on every error that occurs within your + | application. If disabled, a simple generic error page is shown. + | + */ + + 'debug' => (bool) env('APP_DEBUG', false), + + /* + |-------------------------------------------------------------------------- + | Application URL + |-------------------------------------------------------------------------- + | + | This URL is used by the console to properly generate URLs when using + | the Artisan command line tool. You should set this to the root of + | the application so that it's available within Artisan commands. + | + */ + + 'url' => env('APP_URL', 'http://localhost'), + + /* + |-------------------------------------------------------------------------- + | Application Timezone + |-------------------------------------------------------------------------- + | + | Here you may specify the default timezone for your application, which + | will be used by the PHP date and date-time functions. The timezone + | is set to "UTC" by default as it is suitable for most use cases. + | + */ + + 'timezone' => env('APP_TIMEZONE', 'UTC'), + + /* + |-------------------------------------------------------------------------- + | Application Locale Configuration + |-------------------------------------------------------------------------- + | + | The application locale determines the default locale that will be used + | by Laravel's translation / localization methods. This option can be + | set to any locale for which you plan to have translation strings. + | + */ + + 'locale' => env('APP_LOCALE', 'en'), + + 'fallback_locale' => env('APP_FALLBACK_LOCALE', 'en'), + + 'faker_locale' => env('APP_FAKER_LOCALE', 'en_US'), + + /* + |-------------------------------------------------------------------------- + | Encryption Key + |-------------------------------------------------------------------------- + | + | This key is utilized by Laravel's encryption services and should be set + | to a random, 32 character string to ensure that all encrypted values + | are secure. You should do this prior to deploying the application. + | + */ + + 'cipher' => 'AES-256-CBC', + + 'key' => env('APP_KEY'), + + 'previous_keys' => [ + ...array_filter( + explode(',', env('APP_PREVIOUS_KEYS', '')) + ), + ], + + /* + |-------------------------------------------------------------------------- + | Maintenance Mode Driver + |-------------------------------------------------------------------------- + | + | These configuration options determine the driver used to determine and + | manage Laravel's "maintenance mode" status. The "cache" driver will + | allow maintenance mode to be controlled across multiple machines. + | + | Supported drivers: "file", "cache" + | + */ + + 'maintenance' => [ + 'driver' => env('APP_MAINTENANCE_DRIVER', 'file'), + 'store' => env('APP_MAINTENANCE_STORE', 'database'), + ], + +]; diff --git a/aigo/config/auth.php b/aigo/config/auth.php new file mode 100644 index 0000000..0ba5d5d --- /dev/null +++ b/aigo/config/auth.php @@ -0,0 +1,115 @@ + [ + 'guard' => env('AUTH_GUARD', 'web'), + 'passwords' => env('AUTH_PASSWORD_BROKER', 'users'), + ], + + /* + |-------------------------------------------------------------------------- + | Authentication Guards + |-------------------------------------------------------------------------- + | + | Next, you may define every authentication guard for your application. + | Of course, a great default configuration has been defined for you + | which utilizes session storage plus the Eloquent user provider. + | + | All authentication guards have a user provider, which defines how the + | users are actually retrieved out of your database or other storage + | system used by the application. Typically, Eloquent is utilized. + | + | Supported: "session" + | + */ + + 'guards' => [ + 'web' => [ + 'driver' => 'session', + 'provider' => 'users', + ], + ], + + /* + |-------------------------------------------------------------------------- + | User Providers + |-------------------------------------------------------------------------- + | + | All authentication guards have a user provider, which defines how the + | users are actually retrieved out of your database or other storage + | system used by the application. Typically, Eloquent is utilized. + | + | If you have multiple user tables or models you may configure multiple + | providers to represent the model / table. These providers may then + | be assigned to any extra authentication guards you have defined. + | + | Supported: "database", "eloquent" + | + */ + + 'providers' => [ + 'users' => [ + 'driver' => 'eloquent', + 'model' => env('AUTH_MODEL', App\Models\User::class), + ], + + // 'users' => [ + // 'driver' => 'database', + // 'table' => 'users', + // ], + ], + + /* + |-------------------------------------------------------------------------- + | Resetting Passwords + |-------------------------------------------------------------------------- + | + | These configuration options specify the behavior of Laravel's password + | reset functionality, including the table utilized for token storage + | and the user provider that is invoked to actually retrieve users. + | + | The expiry time is the number of minutes that each reset token will be + | considered valid. This security feature keeps tokens short-lived so + | they have less time to be guessed. You may change this as needed. + | + | The throttle setting is the number of seconds a user must wait before + | generating more password reset tokens. This prevents the user from + | quickly generating a very large amount of password reset tokens. + | + */ + + 'passwords' => [ + 'users' => [ + 'provider' => 'users', + 'table' => env('AUTH_PASSWORD_RESET_TOKEN_TABLE', 'password_reset_tokens'), + 'expire' => 60, + 'throttle' => 60, + ], + ], + + /* + |-------------------------------------------------------------------------- + | Password Confirmation Timeout + |-------------------------------------------------------------------------- + | + | Here you may define the amount of seconds before a password confirmation + | window expires and users are asked to re-enter their password via the + | confirmation screen. By default, the timeout lasts for three hours. + | + */ + + 'password_timeout' => env('AUTH_PASSWORD_TIMEOUT', 10800), + +]; diff --git a/aigo/config/broadcasting.php b/aigo/config/broadcasting.php new file mode 100644 index 0000000..ebc3fb9 --- /dev/null +++ b/aigo/config/broadcasting.php @@ -0,0 +1,82 @@ + env('BROADCAST_CONNECTION', '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' => [ + + 'reverb' => [ + 'driver' => 'reverb', + 'key' => env('REVERB_APP_KEY'), + 'secret' => env('REVERB_APP_SECRET'), + 'app_id' => env('REVERB_APP_ID'), + 'options' => [ + 'host' => env('REVERB_HOST'), + 'port' => env('REVERB_PORT', 443), + 'scheme' => env('REVERB_SCHEME', 'https'), + 'useTLS' => env('REVERB_SCHEME', 'https') === 'https', + ], + 'client_options' => [ + // Guzzle client options: https://docs.guzzlephp.org/en/stable/request-options.html + ], + ], + + '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'), + ], + + 'log' => [ + 'driver' => 'log', + ], + + 'null' => [ + 'driver' => 'null', + ], + + ], + +]; diff --git a/aigo/config/cache.php b/aigo/config/cache.php new file mode 100644 index 0000000..3eb95d1 --- /dev/null +++ b/aigo/config/cache.php @@ -0,0 +1,107 @@ + env('CACHE_STORE', 'database'), + + /* + |-------------------------------------------------------------------------- + | Cache Stores + |-------------------------------------------------------------------------- + | + | Here you may define all of the cache "stores" for your application as + | well as their drivers. You may even define multiple stores for the + | same cache driver to group types of items stored in your caches. + | + | Supported drivers: "apc", "array", "database", "file", "memcached", + | "redis", "dynamodb", "octane", "null" + | + */ + + 'stores' => [ + + 'array' => [ + 'driver' => 'array', + 'serialize' => false, + ], + + 'database' => [ + 'driver' => 'database', + 'table' => env('DB_CACHE_TABLE', 'cache'), + 'connection' => env('DB_CACHE_CONNECTION', null), + 'lock_connection' => env('DB_CACHE_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' => env('REDIS_CACHE_CONNECTION', 'cache'), + 'lock_connection' => env('REDIS_CACHE_LOCK_CONNECTION', 'default'), + ], + + 'dynamodb' => [ + 'driver' => 'dynamodb', + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), + 'table' => env('DYNAMODB_CACHE_TABLE', 'cache'), + 'endpoint' => env('DYNAMODB_ENDPOINT'), + ], + + 'octane' => [ + 'driver' => 'octane', + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Cache Key Prefix + |-------------------------------------------------------------------------- + | + | When utilizing the APC, database, memcached, Redis, and DynamoDB cache + | stores, there might be other applications using the same cache. For + | that reason, you may prefix every cache key to avoid collisions. + | + */ + + 'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache_'), + +]; diff --git a/aigo/config/chatify.php b/aigo/config/chatify.php new file mode 100644 index 0000000..6ca2439 --- /dev/null +++ b/aigo/config/chatify.php @@ -0,0 +1,124 @@ + env('CHATIFY_NAME', 'Aigo Messanger'), + + /* + |------------------------------------- + | The disk on which to store added + | files and derived images by default. + |------------------------------------- + */ + 'storage_disk_name' => env('CHATIFY_STORAGE_DISK', 'public'), + + /* + |------------------------------------- + | Routes configurations + |------------------------------------- + */ + 'routes' => [ + 'custom' => env('CHATIFY_CUSTOM_ROUTES', true), + 'prefix' => env('CHATIFY_ROUTES_PREFIX', 'aigochat'), + 'middleware' => env('CHATIFY_ROUTES_MIDDLEWARE', ['web','auth']), + 'namespace' => env('CHATIFY_ROUTES_NAMESPACE', 'App\Http\Controllers\vendor\Chatify'), + ], + 'api_routes' => [ + 'prefix' => env('CHATIFY_API_ROUTES_PREFIX', 'chatify/api'), + 'middleware' => env('CHATIFY_API_ROUTES_MIDDLEWARE', ['api']), + 'namespace' => env('CHATIFY_API_ROUTES_NAMESPACE', 'App\Http\Controllers\vendor\Chatify\Api'), + ], + + /* + |------------------------------------- + | Pusher API credentials + |------------------------------------- + */ + 'pusher' => [ + 'debug' => env('APP_DEBUG', false), + 'key' => env('PUSHER_APP_KEY'), + 'secret' => env('PUSHER_APP_SECRET'), + 'app_id' => env('PUSHER_APP_ID'), + 'options' => [ + 'cluster' => env('PUSHER_APP_CLUSTER', 'ap1'), + 'host' => env('PUSHER_HOST') ?: 'api-'.env('PUSHER_APP_CLUSTER', 'ap1').'.pusher.com', + 'port' => env('PUSHER_PORT', 443), + 'scheme' => env('PUSHER_SCHEME', 'https'), + 'encrypted' => true, + 'useTLS' => env('PUSHER_SCHEME', 'https') === 'https', + ], + ], + + /* + |------------------------------------- + | User Avatar + |------------------------------------- + */ + 'user_avatar' => [ + 'folder' => 'users-avatar', + 'default' => 'avatar.png', + ], + + /* + |------------------------------------- + | Gravatar + | + | imageset property options: + | [ 404 | mp | identicon (default) | monsterid | wavatar ] + |------------------------------------- + */ + 'gravatar' => [ + 'enabled' => true, + 'image_size' => 200, + 'imageset' => 'identicon' + ], + + /* + |------------------------------------- + | Attachments + |------------------------------------- + */ + 'attachments' => [ + 'folder' => 'attachments', + 'download_route_name' => 'attachments.download', + 'allowed_images' => (array) ['png','jpg','jpeg','gif'], + 'allowed_files' => (array) ['zip','rar','txt'], + 'max_upload_size' => env('CHATIFY_MAX_FILE_SIZE', 150), // MB + ], + + /* + |------------------------------------- + | Messenger's colors + |------------------------------------- + */ + 'colors' => (array) [ + '#2180f3', + '#2196F3', + '#00BCD4', + '#3F51B5', + '#673AB7', + '#4CAF50', + '#FFC107', + '#FF9800', + '#ff2522', + '#9C27B0', + ], + /* + |------------------------------------- + | Sounds + | You can enable/disable the sounds and + | change sound's name/path placed at + | `public/` directory of your app. + | + |------------------------------------- + */ + 'sounds' => [ + 'enabled' => true, + 'public_path' => 'sounds/chatify', + 'new_message' => 'new-message-sound.mp3', + ] +]; diff --git a/aigo/config/database.php b/aigo/config/database.php new file mode 100644 index 0000000..f8e8dcb --- /dev/null +++ b/aigo/config/database.php @@ -0,0 +1,170 @@ + env('DB_CONNECTION', 'sqlite'), + + /* + |-------------------------------------------------------------------------- + | Database Connections + |-------------------------------------------------------------------------- + | + | Below are all of the database connections defined for your application. + | An example configuration is provided for each database system which + | is supported by Laravel. You're free to add / remove connections. + | + */ + + 'connections' => [ + + 'sqlite' => [ + 'driver' => 'sqlite', + 'url' => env('DB_URL'), + 'database' => env('DB_DATABASE', database_path('database.sqlite')), + 'prefix' => '', + 'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true), + ], + + 'mysql' => [ + 'driver' => 'mysql', + 'url' => env('DB_URL'), + 'host' => env('DB_HOST', '127.0.0.1'), + 'port' => env('DB_PORT', '3306'), + 'database' => env('DB_DATABASE', 'laravel'), + 'username' => env('DB_USERNAME', 'root'), + 'password' => env('DB_PASSWORD', ''), + 'unix_socket' => env('DB_SOCKET', ''), + 'charset' => env('DB_CHARSET', 'utf8mb4'), + 'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'), + 'prefix' => '', + 'prefix_indexes' => true, + 'strict' => true, + 'engine' => null, + 'options' => extension_loaded('pdo_mysql') ? array_filter([ + PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'), + ]) : [], + ], + + 'mariadb' => [ + 'driver' => 'mariadb', + 'url' => env('DB_URL'), + 'host' => env('DB_HOST', '127.0.0.1'), + 'port' => env('DB_PORT', '3306'), + 'database' => env('DB_DATABASE', 'laravel'), + 'username' => env('DB_USERNAME', 'root'), + 'password' => env('DB_PASSWORD', ''), + 'unix_socket' => env('DB_SOCKET', ''), + 'charset' => env('DB_CHARSET', 'utf8mb4'), + 'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'), + 'prefix' => '', + 'prefix_indexes' => true, + 'strict' => true, + 'engine' => null, + 'options' => extension_loaded('pdo_mysql') ? array_filter([ + PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'), + ]) : [], + ], + + 'pgsql' => [ + 'driver' => 'pgsql', + 'url' => env('DB_URL'), + 'host' => env('DB_HOST', '127.0.0.1'), + 'port' => env('DB_PORT', '5432'), + 'database' => env('DB_DATABASE', 'laravel'), + 'username' => env('DB_USERNAME', 'root'), + 'password' => env('DB_PASSWORD', ''), + 'charset' => env('DB_CHARSET', 'utf8'), + 'prefix' => '', + 'prefix_indexes' => true, + 'search_path' => 'public', + 'sslmode' => 'prefer', + ], + + 'sqlsrv' => [ + 'driver' => 'sqlsrv', + 'url' => env('DB_URL'), + 'host' => env('DB_HOST', 'localhost'), + 'port' => env('DB_PORT', '1433'), + 'database' => env('DB_DATABASE', 'laravel'), + 'username' => env('DB_USERNAME', 'root'), + 'password' => env('DB_PASSWORD', ''), + 'charset' => env('DB_CHARSET', 'utf8'), + 'prefix' => '', + 'prefix_indexes' => true, + // 'encrypt' => env('DB_ENCRYPT', 'yes'), + // 'trust_server_certificate' => env('DB_TRUST_SERVER_CERTIFICATE', 'false'), + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Migration Repository Table + |-------------------------------------------------------------------------- + | + | This table keeps track of all the migrations that have already run for + | your application. Using this information, we can determine which of + | the migrations on disk haven't actually been run on the database. + | + */ + + 'migrations' => [ + 'table' => 'migrations', + 'update_date_on_publish' => true, + ], + + /* + |-------------------------------------------------------------------------- + | Redis Databases + |-------------------------------------------------------------------------- + | + | Redis is an open source, fast, and advanced key-value store that also + | provides a richer body of commands than a typical key-value system + | such as Memcached. You may define your connection settings here. + | + */ + + 'redis' => [ + + 'client' => env('REDIS_CLIENT', 'phpredis'), + + 'options' => [ + 'cluster' => env('REDIS_CLUSTER', 'redis'), + 'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'), + ], + + 'default' => [ + 'url' => env('REDIS_URL'), + 'host' => env('REDIS_HOST', '127.0.0.1'), + 'username' => env('REDIS_USERNAME'), + 'password' => env('REDIS_PASSWORD'), + 'port' => env('REDIS_PORT', '6379'), + 'database' => env('REDIS_DB', '0'), + ], + + 'cache' => [ + 'url' => env('REDIS_URL'), + 'host' => env('REDIS_HOST', '127.0.0.1'), + 'username' => env('REDIS_USERNAME'), + 'password' => env('REDIS_PASSWORD'), + 'port' => env('REDIS_PORT', '6379'), + 'database' => env('REDIS_CACHE_DB', '1'), + ], + + ], + +]; diff --git a/aigo/config/filesystems.php b/aigo/config/filesystems.php new file mode 100644 index 0000000..44fe9c8 --- /dev/null +++ b/aigo/config/filesystems.php @@ -0,0 +1,76 @@ + env('FILESYSTEM_DISK', 'local'), + + /* + |-------------------------------------------------------------------------- + | Filesystem Disks + |-------------------------------------------------------------------------- + | + | Below you may configure as many filesystem disks as necessary, and you + | may even configure multiple disks for the same driver. Examples for + | most supported storage drivers are configured here for reference. + | + | Supported Drivers: "local", "ftp", "sftp", "s3" + | + */ + + 'disks' => [ + + 'local' => [ + 'driver' => 'local', + 'root' => storage_path('app'), + 'throw' => false, + ], + + 'public' => [ + 'driver' => 'local', + 'root' => storage_path('app/public'), + 'url' => env('APP_URL').'/storage', + 'visibility' => 'public', + 'throw' => false, + ], + + 's3' => [ + 'driver' => 's3', + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'region' => env('AWS_DEFAULT_REGION'), + 'bucket' => env('AWS_BUCKET'), + 'url' => env('AWS_URL'), + 'endpoint' => env('AWS_ENDPOINT'), + 'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false), + 'throw' => false, + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Symbolic Links + |-------------------------------------------------------------------------- + | + | Here you may configure the symbolic links that will be created when the + | `storage:link` Artisan command is executed. The array keys should be + | the locations of the links and the values should be their targets. + | + */ + + 'links' => [ + public_path('storage') => storage_path('app/public'), + ], + +]; diff --git a/aigo/config/logging.php b/aigo/config/logging.php new file mode 100644 index 0000000..d526b64 --- /dev/null +++ b/aigo/config/logging.php @@ -0,0 +1,132 @@ + env('LOG_CHANNEL', 'stack'), + + /* + |-------------------------------------------------------------------------- + | Deprecations Log Channel + |-------------------------------------------------------------------------- + | + | This option controls the log channel that should be used to log warnings + | regarding deprecated PHP and library features. This allows you to get + | your application ready for upcoming major versions of dependencies. + | + */ + + 'deprecations' => [ + 'channel' => env('LOG_DEPRECATIONS_CHANNEL', 'null'), + 'trace' => env('LOG_DEPRECATIONS_TRACE', false), + ], + + /* + |-------------------------------------------------------------------------- + | Log Channels + |-------------------------------------------------------------------------- + | + | Here you may configure the log channels for your application. Laravel + | utilizes the Monolog PHP logging library, which includes a variety + | of powerful log handlers and formatters that you're free to use. + | + | Available Drivers: "single", "daily", "slack", "syslog", + | "errorlog", "monolog", "custom", "stack" + | + */ + + 'channels' => [ + + 'stack' => [ + 'driver' => 'stack', + 'channels' => explode(',', env('LOG_STACK', 'single')), + 'ignore_exceptions' => false, + ], + + 'single' => [ + 'driver' => 'single', + 'path' => storage_path('logs/laravel.log'), + 'level' => env('LOG_LEVEL', 'debug'), + 'replace_placeholders' => true, + ], + + 'daily' => [ + 'driver' => 'daily', + 'path' => storage_path('logs/laravel.log'), + 'level' => env('LOG_LEVEL', 'debug'), + 'days' => env('LOG_DAILY_DAYS', 14), + 'replace_placeholders' => true, + ], + + 'slack' => [ + 'driver' => 'slack', + 'url' => env('LOG_SLACK_WEBHOOK_URL'), + 'username' => env('LOG_SLACK_USERNAME', 'Laravel Log'), + 'emoji' => env('LOG_SLACK_EMOJI', ':boom:'), + 'level' => env('LOG_LEVEL', 'critical'), + 'replace_placeholders' => true, + ], + + 'papertrail' => [ + 'driver' => 'monolog', + 'level' => env('LOG_LEVEL', 'debug'), + 'handler' => env('LOG_PAPERTRAIL_HANDLER', SyslogUdpHandler::class), + 'handler_with' => [ + 'host' => env('PAPERTRAIL_URL'), + 'port' => env('PAPERTRAIL_PORT'), + 'connectionString' => 'tls://'.env('PAPERTRAIL_URL').':'.env('PAPERTRAIL_PORT'), + ], + 'processors' => [PsrLogMessageProcessor::class], + ], + + 'stderr' => [ + 'driver' => 'monolog', + 'level' => env('LOG_LEVEL', 'debug'), + 'handler' => StreamHandler::class, + 'formatter' => env('LOG_STDERR_FORMATTER'), + 'with' => [ + 'stream' => 'php://stderr', + ], + 'processors' => [PsrLogMessageProcessor::class], + ], + + 'syslog' => [ + 'driver' => 'syslog', + 'level' => env('LOG_LEVEL', 'debug'), + 'facility' => env('LOG_SYSLOG_FACILITY', LOG_USER), + 'replace_placeholders' => true, + ], + + 'errorlog' => [ + 'driver' => 'errorlog', + 'level' => env('LOG_LEVEL', 'debug'), + 'replace_placeholders' => true, + ], + + 'null' => [ + 'driver' => 'monolog', + 'handler' => NullHandler::class, + ], + + 'emergency' => [ + 'path' => storage_path('logs/laravel.log'), + ], + + ], + +]; diff --git a/aigo/config/mail.php b/aigo/config/mail.php new file mode 100644 index 0000000..a4a02fe --- /dev/null +++ b/aigo/config/mail.php @@ -0,0 +1,103 @@ + env('MAIL_MAILER', 'log'), + + /* + |-------------------------------------------------------------------------- + | Mailer Configurations + |-------------------------------------------------------------------------- + | + | Here you may configure all of the mailers used by your application plus + | their respective settings. Several examples have been configured for + | you and you are free to add your own as your application requires. + | + | Laravel supports a variety of mail "transport" drivers that can be used + | when delivering an email. You may specify which one you're using for + | your mailers below. You may also add additional mailers if needed. + | + | Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2", + | "postmark", "log", "array", "failover", "roundrobin" + | + */ + + 'mailers' => [ + + 'smtp' => [ + 'transport' => 'smtp', + 'url' => env('MAIL_URL'), + 'host' => env('MAIL_HOST', '127.0.0.1'), + 'port' => env('MAIL_PORT', 2525), + 'encryption' => env('MAIL_ENCRYPTION', 'tls'), + 'username' => env('MAIL_USERNAME'), + 'password' => env('MAIL_PASSWORD'), + 'timeout' => null, + 'local_domain' => env('MAIL_EHLO_DOMAIN'), + ], + + 'ses' => [ + 'transport' => 'ses', + ], + + 'postmark' => [ + 'transport' => 'postmark', + // 'message_stream_id' => env('POSTMARK_MESSAGE_STREAM_ID'), + // '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', + ], + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Global "From" Address + |-------------------------------------------------------------------------- + | + | You may wish for all emails sent by your application to be sent from + | the same address. Here you may specify a name and address that is + | used globally for all emails that are sent by your application. + | + */ + + 'from' => [ + 'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'), + 'name' => env('MAIL_FROM_NAME', 'Example'), + ], + +]; diff --git a/aigo/config/queue.php b/aigo/config/queue.php new file mode 100644 index 0000000..4f689e9 --- /dev/null +++ b/aigo/config/queue.php @@ -0,0 +1,112 @@ + env('QUEUE_CONNECTION', 'database'), + + /* + |-------------------------------------------------------------------------- + | Queue Connections + |-------------------------------------------------------------------------- + | + | Here you may configure the connection options for every queue backend + | used by your application. An example configuration is provided for + | each backend supported by Laravel. You're also free to add more. + | + | Drivers: "sync", "database", "beanstalkd", "sqs", "redis", "null" + | + */ + + 'connections' => [ + + 'sync' => [ + 'driver' => 'sync', + ], + + 'database' => [ + 'driver' => 'database', + 'connection' => env('DB_QUEUE_CONNECTION', null), + 'table' => env('DB_QUEUE_TABLE', 'jobs'), + 'queue' => env('DB_QUEUE', 'default'), + 'retry_after' => env('DB_QUEUE_RETRY_AFTER', 90), + 'after_commit' => false, + ], + + 'beanstalkd' => [ + 'driver' => 'beanstalkd', + 'host' => env('BEANSTALKD_QUEUE_HOST', 'localhost'), + 'queue' => env('BEANSTALKD_QUEUE', 'default'), + 'retry_after' => env('BEANSTALKD_QUEUE_RETRY_AFTER', 90), + 'block_for' => 0, + 'after_commit' => false, + ], + + 'sqs' => [ + 'driver' => 'sqs', + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'), + 'queue' => env('SQS_QUEUE', 'default'), + 'suffix' => env('SQS_SUFFIX'), + 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), + 'after_commit' => false, + ], + + 'redis' => [ + 'driver' => 'redis', + 'connection' => env('REDIS_QUEUE_CONNECTION', 'default'), + 'queue' => env('REDIS_QUEUE', 'default'), + 'retry_after' => env('REDIS_QUEUE_RETRY_AFTER', 90), + 'block_for' => null, + 'after_commit' => false, + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Job Batching + |-------------------------------------------------------------------------- + | + | The following options configure the database and table that store job + | batching information. These options can be updated to any database + | connection and table which has been defined by your application. + | + */ + + 'batching' => [ + 'database' => env('DB_CONNECTION', 'sqlite'), + 'table' => 'job_batches', + ], + + /* + |-------------------------------------------------------------------------- + | Failed Queue Jobs + |-------------------------------------------------------------------------- + | + | These options configure the behavior of failed queue job logging so you + | can control how and where failed jobs are stored. Laravel ships with + | support for storing failed jobs in a simple file or in a database. + | + | Supported drivers: "database-uuids", "dynamodb", "file", "null" + | + */ + + 'failed' => [ + 'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'), + 'database' => env('DB_CONNECTION', 'sqlite'), + 'table' => 'failed_jobs', + ], + +]; diff --git a/aigo/config/reverb.php b/aigo/config/reverb.php new file mode 100644 index 0000000..a17d7d4 --- /dev/null +++ b/aigo/config/reverb.php @@ -0,0 +1,82 @@ + env('REVERB_SERVER', 'reverb'), + + /* + |-------------------------------------------------------------------------- + | Reverb Servers + |-------------------------------------------------------------------------- + | + | Here you may define details for each of the supported Reverb servers. + | Each server has its own configuration options that are defined in + | the array below. You should ensure all the options are present. + | + */ + + 'servers' => [ + + 'reverb' => [ + 'host' => env('REVERB_SERVER_HOST', '0.0.0.0'), + 'port' => env('REVERB_SERVER_PORT', 8080), + 'hostname' => env('REVERB_HOST'), + 'options' => [ + 'tls' => [], + ], + 'max_request_size' => env('REVERB_MAX_REQUEST_SIZE', 10_000), + 'scaling' => [ + 'enabled' => env('REVERB_SCALING_ENABLED', false), + 'channel' => env('REVERB_SCALING_CHANNEL', 'reverb'), + ], + 'pulse_ingest_interval' => env('REVERB_PULSE_INGEST_INTERVAL', 15), + ], + + ], + + /* + |-------------------------------------------------------------------------- + | Reverb Applications + |-------------------------------------------------------------------------- + | + | Here you may define how Reverb applications are managed. If you choose + | to use the "config" provider, you may define an array of apps which + | your server will support, including their connection credentials. + | + */ + + 'apps' => [ + + 'provider' => 'config', + + 'apps' => [ + [ + 'key' => env('REVERB_APP_KEY'), + 'secret' => env('REVERB_APP_SECRET'), + 'app_id' => env('REVERB_APP_ID'), + 'options' => [ + 'host' => env('REVERB_HOST'), + 'port' => env('REVERB_PORT', 443), + 'scheme' => env('REVERB_SCHEME', 'https'), + 'useTLS' => env('REVERB_SCHEME', 'https') === 'https', + ], + 'allowed_origins' => ['*'], + 'ping_interval' => env('REVERB_APP_PING_INTERVAL', 60), + 'max_message_size' => env('REVERB_APP_MAX_MESSAGE_SIZE', 10_000), + ], + ], + + ], + +]; diff --git a/aigo/config/services.php b/aigo/config/services.php new file mode 100644 index 0000000..6bb68f6 --- /dev/null +++ b/aigo/config/services.php @@ -0,0 +1,34 @@ + [ + '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'), + ], + + 'slack' => [ + 'notifications' => [ + 'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'), + 'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'), + ], + ], + +]; diff --git a/aigo/config/session.php b/aigo/config/session.php new file mode 100644 index 0000000..0e22ee4 --- /dev/null +++ b/aigo/config/session.php @@ -0,0 +1,218 @@ + env('SESSION_DRIVER', 'database'), + + /* + |-------------------------------------------------------------------------- + | Session Lifetime + |-------------------------------------------------------------------------- + | + | Here you may specify the number of minutes that you wish the session + | to be allowed to remain idle before it expires. If you want them + | to expire immediately when the browser is closed then you may + | indicate that via the expire_on_close configuration option. + | + */ + + 'lifetime' => env('SESSION_LIFETIME', 120), + + 'expire_on_close' => env('SESSION_EXPIRE_ON_CLOSE', false), + + /* + |-------------------------------------------------------------------------- + | Session Encryption + |-------------------------------------------------------------------------- + | + | This option allows you to easily specify that all of your session data + | should be encrypted before it's stored. All encryption is performed + | automatically by Laravel and you may use the session like normal. + | + */ + + 'encrypt' => env('SESSION_ENCRYPT', false), + + /* + |-------------------------------------------------------------------------- + | Session File Location + |-------------------------------------------------------------------------- + | + | When utilizing the "file" session driver, the session files are placed + | on disk. The default storage location is defined here; however, you + | are free to provide another location where they should be stored. + | + */ + + 'files' => storage_path('framework/sessions'), + + /* + |-------------------------------------------------------------------------- + | Session Database Connection + |-------------------------------------------------------------------------- + | + | When using the "database" or "redis" session drivers, you may specify a + | connection that should be used to manage these sessions. This should + | correspond to a connection in your database configuration options. + | + */ + + 'connection' => env('SESSION_CONNECTION'), + + /* + |-------------------------------------------------------------------------- + | Session Database Table + |-------------------------------------------------------------------------- + | + | When using the "database" session driver, you may specify the table to + | be used to store sessions. Of course, a sensible default is defined + | for you; however, you're welcome to change this to another table. + | + */ + + 'table' => env('SESSION_TABLE', 'sessions'), + + /* + |-------------------------------------------------------------------------- + | Session Cache Store + |-------------------------------------------------------------------------- + | + | When using one of the framework's cache driven session backends, you may + | define the cache store which should be used to store the session data + | between requests. This must match one of your defined cache stores. + | + | Affects: "apc", "dynamodb", "memcached", "redis" + | + */ + + 'store' => env('SESSION_STORE'), + + /* + |-------------------------------------------------------------------------- + | Session Sweeping Lottery + |-------------------------------------------------------------------------- + | + | Some session drivers must manually sweep their storage location to get + | rid of old sessions from storage. Here are the chances that it will + | happen on a given request. By default, the odds are 2 out of 100. + | + */ + + 'lottery' => [2, 100], + + /* + |-------------------------------------------------------------------------- + | Session Cookie Name + |-------------------------------------------------------------------------- + | + | Here you may change the name of the session cookie that is created by + | the framework. Typically, you should not need to change this value + | since doing so does not grant a meaningful security improvement. + | + | + */ + + 'cookie' => env( + 'SESSION_COOKIE', + Str::slug(env('APP_NAME', 'laravel'), '_').'_session' + ), + + /* + |-------------------------------------------------------------------------- + | Session Cookie Path + |-------------------------------------------------------------------------- + | + | The session cookie path determines the path for which the cookie will + | be regarded as available. Typically, this will be the root path of + | your application, but you're free to change this when necessary. + | + */ + + 'path' => env('SESSION_PATH', '/'), + + /* + |-------------------------------------------------------------------------- + | Session Cookie Domain + |-------------------------------------------------------------------------- + | + | This value determines the domain and subdomains the session cookie is + | available to. By default, the cookie will be available to the root + | domain and all subdomains. Typically, this shouldn't be changed. + | + */ + + 'domain' => env('SESSION_DOMAIN'), + + /* + |-------------------------------------------------------------------------- + | HTTPS Only Cookies + |-------------------------------------------------------------------------- + | + | By setting this option to true, session cookies will only be sent back + | to the server if the browser has a HTTPS connection. This will keep + | the cookie from being sent to you when it can't be done securely. + | + */ + + 'secure' => env('SESSION_SECURE_COOKIE'), + + /* + |-------------------------------------------------------------------------- + | HTTP Access Only + |-------------------------------------------------------------------------- + | + | Setting this value to true will prevent JavaScript from accessing the + | value of the cookie and the cookie will only be accessible through + | the HTTP protocol. It's unlikely you should disable this option. + | + */ + + 'http_only' => env('SESSION_HTTP_ONLY', true), + + /* + |-------------------------------------------------------------------------- + | Same-Site Cookies + |-------------------------------------------------------------------------- + | + | This option determines how your cookies behave when cross-site requests + | take place, and can be used to mitigate CSRF attacks. By default, we + | will set this value to "lax" to permit secure cross-site requests. + | + | See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#samesitesamesite-value + | + | Supported: "lax", "strict", "none", null + | + */ + + 'same_site' => env('SESSION_SAME_SITE', 'lax'), + + /* + |-------------------------------------------------------------------------- + | Partitioned Cookies + |-------------------------------------------------------------------------- + | + | Setting this value to true will tie the cookie to the top-level site for + | a cross-site context. Partitioned cookies are accepted by the browser + | when flagged "secure" and the Same-Site attribute is set to "none". + | + */ + + 'partitioned' => env('SESSION_PARTITIONED_COOKIE', false), + +]; diff --git a/aigo/database/.gitignore b/aigo/database/.gitignore new file mode 100644 index 0000000..9b19b93 --- /dev/null +++ b/aigo/database/.gitignore @@ -0,0 +1 @@ +*.sqlite* diff --git a/aigo/database/factories/ConsultationFactory.php b/aigo/database/factories/ConsultationFactory.php new file mode 100644 index 0000000..0c7f233 --- /dev/null +++ b/aigo/database/factories/ConsultationFactory.php @@ -0,0 +1,43 @@ + + */ +class ConsultationFactory extends Factory +{ + /** + * The name of the factory's corresponding model. + * + * @var string + */ + protected $model = Consultation::class; + + /** + * Define the model's default state. + * + * @return array + */ + public function definition(): array + { + // Get a random patient from the users table + $patient = User::where('user_role', 'user')->inRandomOrder()->first(); + + // Get a random doctor from the users table + $doctor = User::where('user_role', 'doctor')->inRandomOrder()->first(); + + return [ + 'patient_id' => $patient->id, + 'doctor_id' => $doctor->id, + 'consultation_date' => $this->faker->dateTimeBetween('-1 year', '+1 year')->format('Y-m-d'), + 'consultation_time' => $this->faker->time('H:i:s'), + 'location' => $this->faker->city, + 'consultation_status' => $this->faker->randomElement(['pending', 'declined', 'approved', 'finished']), + ]; + } +} \ No newline at end of file diff --git a/aigo/database/factories/UserFactory.php b/aigo/database/factories/UserFactory.php new file mode 100644 index 0000000..ec0771b --- /dev/null +++ b/aigo/database/factories/UserFactory.php @@ -0,0 +1,51 @@ + + */ +class UserFactory extends Factory +{ + /** + * The current password being used by the factory. + */ + protected static ?string $password; + protected $model = User::class; + + /** + * Define the model's default state. + * + * @return array + */ + public function definition(): array + { + $faker = FakerFactory::create('en_US'); + return [ + 'user_role' => $faker->randomElement(['admin', 'user', 'doctor']), + 'username' => $faker->userName, + 'password' => Hash::make('password'), + 'name' => $faker->name, + 'email' => $faker->unique()->safeEmail, + 'telepon' => $faker->phoneNumber, + 'alamat' => $faker->address, + 'gender' => $faker->randomElement(['male', 'female']), + ]; + } + + /** + * 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/aigo/database/migrations/0001_01_01_000000_create_users_table.php b/aigo/database/migrations/0001_01_01_000000_create_users_table.php new file mode 100644 index 0000000..58f761a --- /dev/null +++ b/aigo/database/migrations/0001_01_01_000000_create_users_table.php @@ -0,0 +1,54 @@ +id(); + $table->string('user_role'); + $table->string('username')->unique(); + $table->string('password'); + $table->string('name'); + $table->string('email')->unique(); + $table->timestamp('email_verified_at')->nullable(); + $table->string('telepon'); + $table->string('alamat'); + $table->string('gender'); + $table->rememberToken(); + $table->timestamps(); + }); + + Schema::create('password_reset_tokens', function (Blueprint $table) { + $table->string('email')->primary(); + $table->string('token'); + $table->timestamp('created_at')->nullable(); + }); + + Schema::create('sessions', function (Blueprint $table) { + $table->string('id')->primary(); + $table->foreignId('user_id')->nullable()->index(); + $table->string('ip_address', 45)->nullable(); + $table->text('user_agent')->nullable(); + $table->longText('payload'); + $table->integer('last_activity')->index(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('users'); + Schema::dropIfExists('password_reset_tokens'); + Schema::dropIfExists('sessions'); + } +}; diff --git a/aigo/database/migrations/0001_01_01_000001_create_cache_table.php b/aigo/database/migrations/0001_01_01_000001_create_cache_table.php new file mode 100644 index 0000000..b9c106b --- /dev/null +++ b/aigo/database/migrations/0001_01_01_000001_create_cache_table.php @@ -0,0 +1,35 @@ +string('key')->primary(); + $table->mediumText('value'); + $table->integer('expiration'); + }); + + Schema::create('cache_locks', function (Blueprint $table) { + $table->string('key')->primary(); + $table->string('owner'); + $table->integer('expiration'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('cache'); + Schema::dropIfExists('cache_locks'); + } +}; diff --git a/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php b/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php new file mode 100644 index 0000000..425e705 --- /dev/null +++ b/aigo/database/migrations/0001_01_01_000002_create_jobs_table.php @@ -0,0 +1,57 @@ +id(); + $table->string('queue')->index(); + $table->longText('payload'); + $table->unsignedTinyInteger('attempts'); + $table->unsignedInteger('reserved_at')->nullable(); + $table->unsignedInteger('available_at'); + $table->unsignedInteger('created_at'); + }); + + Schema::create('job_batches', function (Blueprint $table) { + $table->string('id')->primary(); + $table->string('name'); + $table->integer('total_jobs'); + $table->integer('pending_jobs'); + $table->integer('failed_jobs'); + $table->longText('failed_job_ids'); + $table->mediumText('options')->nullable(); + $table->integer('cancelled_at')->nullable(); + $table->integer('created_at'); + $table->integer('finished_at')->nullable(); + }); + + Schema::create('failed_jobs', function (Blueprint $table) { + $table->id(); + $table->string('uuid')->unique(); + $table->text('connection'); + $table->text('queue'); + $table->longText('payload'); + $table->longText('exception'); + $table->timestamp('failed_at')->useCurrent(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('jobs'); + Schema::dropIfExists('job_batches'); + Schema::dropIfExists('failed_jobs'); + } +}; diff --git a/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php b/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php new file mode 100644 index 0000000..5d0fc35 --- /dev/null +++ b/aigo/database/migrations/2024_04_05_111159_create_health_datas_table.php @@ -0,0 +1,37 @@ +id(); + $table->foreignId('users_id')->constrained('users')->onDelete('cascade'); + $table->date('birthdate'); + $table->float('weight'); + $table->float('height'); + $table->integer('sleeptime'); + $table->string('disease'); + $table->string('food'); + $table->string('alergi_makanan'); + $table->string('obesity_status')->nullable(); + $table->integer('calorie_recommendation')->nullable(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('health_datas'); + } +}; diff --git a/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php b/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php new file mode 100644 index 0000000..24aa604 --- /dev/null +++ b/aigo/database/migrations/2024_04_09_053948_create_physical_activities_table.php @@ -0,0 +1,34 @@ +id(); + $table->foreignId('users_id')->constrained('users')->onDelete('cascade'); + $table->timestamp('date'); + $table->string('type'); + $table->decimal('distance', 8, 2); + $table->integer('duration'); + $table->decimal('avg_speed', 8, 2); + $table->integer('avg_steps'); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('physical_activities'); + } +}; diff --git a/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php b/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php new file mode 100644 index 0000000..26151a2 --- /dev/null +++ b/aigo/database/migrations/2024_04_29_999999_add_active_status_to_users.php @@ -0,0 +1,35 @@ +boolean('active_status')->default(0); + } + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('users', function (Blueprint $table) { + $table->dropColumn('active_status'); + }); + } +} diff --git a/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php b/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php new file mode 100644 index 0000000..8a5b331 --- /dev/null +++ b/aigo/database/migrations/2024_04_29_999999_add_avatar_to_users.php @@ -0,0 +1,35 @@ +string('avatar')->default(config('chatify.user_avatar.default')); + } + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('users', function (Blueprint $table) { + $table->dropColumn('avatar'); + }); + } +} diff --git a/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php b/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php new file mode 100644 index 0000000..1942688 --- /dev/null +++ b/aigo/database/migrations/2024_04_29_999999_add_dark_mode_to_users.php @@ -0,0 +1,35 @@ +boolean('dark_mode')->default(0); + } + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('users', function (Blueprint $table) { + $table->dropColumn('dark_mode'); + }); + } +} diff --git a/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php b/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php new file mode 100644 index 0000000..0346a92 --- /dev/null +++ b/aigo/database/migrations/2024_04_29_999999_add_messenger_color_to_users.php @@ -0,0 +1,34 @@ +string('messenger_color')->nullable(); + } + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('users', function (Blueprint $table) { + $table->dropColumn('messenger_color'); + }); + } +} diff --git a/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php b/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php new file mode 100644 index 0000000..6f961b5 --- /dev/null +++ b/aigo/database/migrations/2024_04_29_999999_create_chatify_favorites_table.php @@ -0,0 +1,33 @@ +uuid('id')->primary(); + $table->bigInteger('user_id'); + $table->bigInteger('favorite_id'); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('ch_favorites'); + } +} diff --git a/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php b/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php new file mode 100644 index 0000000..ed82415 --- /dev/null +++ b/aigo/database/migrations/2024_04_29_999999_create_chatify_messages_table.php @@ -0,0 +1,36 @@ +uuid('id')->primary(); + $table->bigInteger('from_id'); + $table->bigInteger('to_id'); + $table->string('body',5000)->nullable(); + $table->string('attachment')->nullable(); + $table->boolean('seen')->default(false); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('ch_messages'); + } +} diff --git a/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php b/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php new file mode 100644 index 0000000..d62e644 --- /dev/null +++ b/aigo/database/migrations/2024_05_01_125310_create_consultations_table.php @@ -0,0 +1,36 @@ +id(); + $table->unsignedBigInteger('patient_id'); + $table->unsignedBigInteger('doctor_id'); + $table->date('consultation_date'); + $table->time('consultation_time'); + $table->string('location'); + $table->string('consultation_status')->default('pending'); + $table->timestamps(); + + $table->foreign('patient_id')->references('id')->on('users')->onDelete('cascade'); + $table->foreign('doctor_id')->references('id')->on('users')->onDelete('cascade'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('consultations'); + } +}; diff --git a/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php b/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php new file mode 100644 index 0000000..e244ae7 --- /dev/null +++ b/aigo/database/migrations/2024_05_24_175930_create_notifications_table.php @@ -0,0 +1,34 @@ +id(); + $table->unsignedBigInteger('user_id'); + $table->unsignedBigInteger('consultation_id'); + $table->string('message'); + $table->boolean('is_read')->default(false); + $table->timestamps(); + + $table->foreign('user_id')->references('id')->on('users')->onDelete('cascade'); + $table->foreign('consultation_id')->references('id')->on('consultations')->onDelete('cascade'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('notifications'); + } +}; diff --git a/aigo/database/migrations/2024_06_01_051819_create_result_table.php b/aigo/database/migrations/2024_06_01_051819_create_result_table.php new file mode 100644 index 0000000..a88ccce --- /dev/null +++ b/aigo/database/migrations/2024_06_01_051819_create_result_table.php @@ -0,0 +1,36 @@ +id(); + $table->unsignedBigInteger('patient_id'); + $table->unsignedBigInteger('doctor_id'); + $table->unsignedBigInteger('consultation_id')->nullable(); + $table->integer('jarak_lari'); + $table->float('sleeptime'); + $table->string('food'); + $table->string('unrecommended_food'); + $table->text('notes'); + $table->timestamps(); + + $table->foreign('patient_id')->references('id')->on('users')->onDelete('cascade'); + $table->foreign('doctor_id')->references('id')->on('users')->onDelete('cascade'); + $table->foreign('consultation_id')->references('id')->on('consultations')->onDelete('set null'); + }); + } + + public function down(): void + { + Schema::dropIfExists('result'); + } +}; diff --git a/aigo/database/seeders/ConsultationSeeder.php b/aigo/database/seeders/ConsultationSeeder.php new file mode 100644 index 0000000..196dfa1 --- /dev/null +++ b/aigo/database/seeders/ConsultationSeeder.php @@ -0,0 +1,17 @@ +count(15)->create(); + } +} \ No newline at end of file diff --git a/aigo/database/seeders/DatabaseSeeder.php b/aigo/database/seeders/DatabaseSeeder.php new file mode 100644 index 0000000..5e8214a --- /dev/null +++ b/aigo/database/seeders/DatabaseSeeder.php @@ -0,0 +1,33 @@ +count(2)->create([ + 'user_role' => 'user', + ]); + + User::factory()->count(1)->create([ + 'user_role' => 'doctor', + ]); + + User::factory()->count(1)->create([ + 'user_role' => 'admin', + ]); + + $this->call([ + ConsultationSeeder::class, + ]); + } +} diff --git a/aigo/database/seeders/UserSeeder.php b/aigo/database/seeders/UserSeeder.php new file mode 100644 index 0000000..2b3e247 --- /dev/null +++ b/aigo/database/seeders/UserSeeder.php @@ -0,0 +1,19 @@ +count(10)->create(); + } +} diff --git a/aigo/package-lock.json b/aigo/package-lock.json new file mode 100644 index 0000000..5ef207a --- /dev/null +++ b/aigo/package-lock.json @@ -0,0 +1,2433 @@ +{ + "name": "Aigo", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "dependencies": { + "bootstrap-icons": "^1.11.3" + }, + "devDependencies": { + "@tailwindcss/forms": "^0.5.2", + "alpinejs": "^3.4.2", + "autoprefixer": "^10.4.2", + "axios": "^1.6.4", + "laravel-echo": "^1.16.0", + "laravel-vite-plugin": "^1.0", + "postcss": "^8.4.31", + "pusher-js": "^8.4.0-rc2", + "tailwindcss": "^3.1.0", + "vite": "^5.0" + } + }, + "node_modules/@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.19.12.tgz", + "integrity": "sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.19.12.tgz", + "integrity": "sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.19.12.tgz", + "integrity": "sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.19.12.tgz", + "integrity": "sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.19.12.tgz", + "integrity": "sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.19.12.tgz", + "integrity": "sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.12.tgz", + "integrity": "sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.19.12.tgz", + "integrity": "sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.19.12.tgz", + "integrity": "sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.19.12.tgz", + "integrity": "sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.19.12.tgz", + "integrity": "sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.19.12.tgz", + "integrity": "sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==", + "cpu": [ + "loong64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.19.12.tgz", + "integrity": "sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==", + "cpu": [ + "mips64el" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.19.12.tgz", + "integrity": "sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.19.12.tgz", + "integrity": "sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.19.12.tgz", + "integrity": "sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.19.12.tgz", + "integrity": "sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.19.12.tgz", + "integrity": "sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.19.12.tgz", + "integrity": "sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.19.12.tgz", + "integrity": "sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.19.12.tgz", + "integrity": "sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.19.12.tgz", + "integrity": "sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.19.12.tgz", + "integrity": "sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.13.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.13.0.tgz", + "integrity": "sha512-5ZYPOuaAqEH/W3gYsRkxQATBW3Ii1MfaT4EQstTnLKViLi2gLSQmlmtTpGucNP3sXEpOiI5tdGhjdE111ekyEg==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.13.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.13.0.tgz", + "integrity": "sha512-BSbaCmn8ZadK3UAQdlauSvtaJjhlDEjS5hEVVIN3A4bbl3X+otyf/kOJV08bYiRxfejP3DXFzO2jz3G20107+Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.13.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.13.0.tgz", + "integrity": "sha512-Ovf2evVaP6sW5Ut0GHyUSOqA6tVKfrTHddtmxGQc1CTQa1Cw3/KMCDEEICZBbyppcwnhMwcDce9ZRxdWRpVd6g==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.13.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.13.0.tgz", + "integrity": "sha512-U+Jcxm89UTK592vZ2J9st9ajRv/hrwHdnvyuJpa5A2ngGSVHypigidkQJP+YiGL6JODiUeMzkqQzbCG3At81Gg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.13.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.13.0.tgz", + "integrity": "sha512-8wZidaUJUTIR5T4vRS22VkSMOVooG0F4N+JSwQXWSRiC6yfEsFMLTYRFHvby5mFFuExHa/yAp9juSphQQJAijQ==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.13.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.13.0.tgz", + "integrity": "sha512-Iu0Kno1vrD7zHQDxOmvweqLkAzjxEVqNhUIXBsZ8hu8Oak7/5VTPrxOEZXYC1nmrBVJp0ZcL2E7lSuuOVaE3+w==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.13.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.13.0.tgz", + "integrity": "sha512-C31QrW47llgVyrRjIwiOwsHFcaIwmkKi3PCroQY5aVq4H0A5v/vVVAtFsI1nfBngtoRpeREvZOkIhmRwUKkAdw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.13.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.13.0.tgz", + "integrity": "sha512-Oq90dtMHvthFOPMl7pt7KmxzX7E71AfyIhh+cPhLY9oko97Zf2C9tt/XJD4RgxhaGeAraAXDtqxvKE1y/j35lA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.13.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.13.0.tgz", + "integrity": "sha512-yUD/8wMffnTKuiIsl6xU+4IA8UNhQ/f1sAnQebmE/lyQ8abjsVyDkyRkWop0kdMhKMprpNIhPmYlCxgHrPoXoA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.13.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.13.0.tgz", + "integrity": "sha512-9RyNqoFNdF0vu/qqX63fKotBh43fJQeYC98hCaf89DYQpv+xu0D8QFSOS0biA7cGuqJFOc1bJ+m2rhhsKcw1hw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.13.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.13.0.tgz", + "integrity": "sha512-46ue8ymtm/5PUU6pCvjlic0z82qWkxv54GTJZgHrQUuZnVH+tvvSP0LsozIDsCBFO4VjJ13N68wqrKSeScUKdA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.13.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.13.0.tgz", + "integrity": "sha512-P5/MqLdLSlqxbeuJ3YDeX37srC8mCflSyTrUsgbU1c/U9j6l2g2GiIdYaGD9QjdMQPMSgYm7hgg0551wHyIluw==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.13.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.13.0.tgz", + "integrity": "sha512-UKXUQNbO3DOhzLRwHSpa0HnhhCgNODvfoPWv2FCXme8N/ANFfhIPMGuOT+QuKd16+B5yxZ0HdpNlqPvTMS1qfw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@tailwindcss/forms": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/@tailwindcss/forms/-/forms-0.5.7.tgz", + "integrity": "sha512-QE7X69iQI+ZXwldE+rzasvbJiyV/ju1FGHH0Qn2W3FKbuYtqp8LKcy6iSw79fVUT5/Vvf+0XgLCeYVG+UV6hOw==", + "dev": true, + "dependencies": { + "mini-svg-data-uri": "^1.2.3" + }, + "peerDependencies": { + "tailwindcss": ">=3.0.0 || >= 3.0.0-alpha.1" + } + }, + "node_modules/@types/estree": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", + "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", + "dev": true + }, + "node_modules/@vue/reactivity": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.1.5.tgz", + "integrity": "sha512-1tdfLmNjWG6t/CsPldh+foumYFo3cpyCHgBYQ34ylaMsJ+SNHQ1kApMIa8jN+i593zQuaw3AdWH0nJTARzCFhg==", + "dev": true, + "dependencies": { + "@vue/shared": "3.1.5" + } + }, + "node_modules/@vue/shared": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.1.5.tgz", + "integrity": "sha512-oJ4F3TnvpXaQwZJNF3ZK+kLPHKarDmJjJ6jyzVNDKH9md1dptjC7lWR//jrGuLdek/U6iltWxqAnYOu8gCiOvA==", + "dev": true + }, + "node_modules/alpinejs": { + "version": "3.13.7", + "resolved": "https://registry.npmjs.org/alpinejs/-/alpinejs-3.13.7.tgz", + "integrity": "sha512-rcTyjTANbsePq1hb7eSekt3qjI94HLGeO6JaRjCssCVbIIc+qBrc7pO5S/+2JB6oojIibjM6FA+xRI3zhGPZIg==", + "dev": true, + "dependencies": { + "@vue/reactivity": "~3.1.1" + } + }, + "node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "dev": true + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "dev": true + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true + }, + "node_modules/autoprefixer": { + "version": "10.4.18", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.18.tgz", + "integrity": "sha512-1DKbDfsr6KUElM6wg+0zRNkB/Q7WcKYAaK+pzXn+Xqmszm/5Xa9coeNdtP88Vi+dPzZnMjhge8GIV49ZQkDa+g==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "browserslist": "^4.23.0", + "caniuse-lite": "^1.0.30001591", + "fraction.js": "^4.3.7", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/axios": { + "version": "1.6.8", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.8.tgz", + "integrity": "sha512-v/ZHtJDU39mDpyBoFVkETcd/uNdxrWRrg3bKpOKzXFA6Bvqopts6ALSMU3y6ijYxbw2B+wPrIv46egTzJXCLGQ==", + "dev": true, + "dependencies": { + "follow-redirects": "^1.15.6", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/bootstrap-icons": { + "version": "1.11.3", + "resolved": "https://registry.npmjs.org/bootstrap-icons/-/bootstrap-icons-1.11.3.tgz", + "integrity": "sha512-+3lpHrCw/it2/7lBL15VR0HEumaBss0+f/Lb6ZvHISn1mlK83jjFpooTLsMWbIjJMDjDjOExMsTxnXSIT4k4ww==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/twbs" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/bootstrap" + } + ] + }, + "node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.23.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.0.tgz", + "integrity": "sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001587", + "electron-to-chromium": "^1.4.668", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.0.13" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001598", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001598.tgz", + "integrity": "sha512-j8mQRDziG94uoBfeFuqsJUNECW37DXpnvhcMJMdlH2u3MRkq1sAI0LJcXP1i/Py0KbSIC4UDj8YHPrTn5YsL+Q==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chokidar/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true, + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", + "dev": true + }, + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", + "dev": true + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true + }, + "node_modules/electron-to-chromium": { + "version": "1.4.708", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.708.tgz", + "integrity": "sha512-iWgEEvREL4GTXXHKohhh33+6Y8XkPI5eHihDmm8zUk5Zo7HICEW+wI/j5kJ2tbuNUCXJ/sNXa03ajW635DiJXA==", + "dev": true + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "node_modules/esbuild": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.19.12.tgz", + "integrity": "sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.19.12", + "@esbuild/android-arm": "0.19.12", + "@esbuild/android-arm64": "0.19.12", + "@esbuild/android-x64": "0.19.12", + "@esbuild/darwin-arm64": "0.19.12", + "@esbuild/darwin-x64": "0.19.12", + "@esbuild/freebsd-arm64": "0.19.12", + "@esbuild/freebsd-x64": "0.19.12", + "@esbuild/linux-arm": "0.19.12", + "@esbuild/linux-arm64": "0.19.12", + "@esbuild/linux-ia32": "0.19.12", + "@esbuild/linux-loong64": "0.19.12", + "@esbuild/linux-mips64el": "0.19.12", + "@esbuild/linux-ppc64": "0.19.12", + "@esbuild/linux-riscv64": "0.19.12", + "@esbuild/linux-s390x": "0.19.12", + "@esbuild/linux-x64": "0.19.12", + "@esbuild/netbsd-x64": "0.19.12", + "@esbuild/openbsd-x64": "0.19.12", + "@esbuild/sunos-x64": "0.19.12", + "@esbuild/win32-arm64": "0.19.12", + "@esbuild/win32-ia32": "0.19.12", + "@esbuild/win32-x64": "0.19.12" + } + }, + "node_modules/escalade": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", + "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/follow-redirects": { + "version": "1.15.6", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", + "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/foreground-child": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", + "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fraction.js": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", + "dev": true, + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://github.com/sponsors/rawify" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/glob": { + "version": "10.3.10", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", + "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", + "dev": true, + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^2.3.5", + "minimatch": "^9.0.1", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "path-scurry": "^1.10.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-core-module": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "dev": true, + "dependencies": { + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/jackspeak": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", + "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", + "dev": true, + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/jiti": { + "version": "1.21.0", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.0.tgz", + "integrity": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==", + "dev": true, + "bin": { + "jiti": "bin/jiti.js" + } + }, + "node_modules/laravel-echo": { + "version": "1.16.0", + "resolved": "https://registry.npmjs.org/laravel-echo/-/laravel-echo-1.16.0.tgz", + "integrity": "sha512-BJGUa4tcKvYmTkzTmcBGMHiO2tq+k7Do5wPmLbRswWfzKwyfZEUR+J5iwBTPEfLLwNPZlA9Kjo6R/NV6pmyIpg==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/laravel-vite-plugin": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/laravel-vite-plugin/-/laravel-vite-plugin-1.0.2.tgz", + "integrity": "sha512-Mcclml10khYzBVxDwJro8wnVDwD4i7XOSEMACQNnarvTnHjrjXLLL+B/Snif2wYAyElsOqagJZ7VAinb/2vF5g==", + "dev": true, + "dependencies": { + "picocolors": "^1.0.0", + "vite-plugin-full-reload": "^1.1.0" + }, + "bin": { + "clean-orphaned-assets": "bin/clean.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "peerDependencies": { + "vite": "^5.0.0" + } + }, + "node_modules/lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "node_modules/lru-cache": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.0.tgz", + "integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==", + "dev": true, + "engines": { + "node": "14 || >=16.14" + } + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mini-svg-data-uri": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/mini-svg-data-uri/-/mini-svg-data-uri-1.4.4.tgz", + "integrity": "sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==", + "dev": true, + "bin": { + "mini-svg-data-uri": "cli.js" + } + }, + "node_modules/minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/minipass": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", + "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", + "dev": true, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "dev": true, + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "node_modules/nanoid": { + "version": "3.3.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-releases": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", + "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", + "dev": true + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/path-scurry": { + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz", + "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==", + "dev": true, + "dependencies": { + "lru-cache": "^9.1.1 || ^10.0.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/postcss": { + "version": "8.4.35", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.35.tgz", + "integrity": "sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA==", + "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.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-import": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-js": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", + "dev": true, + "dependencies": { + "camelcase-css": "^2.0.1" + }, + "engines": { + "node": "^12 || ^14 || >= 16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.4.21" + } + }, + "node_modules/postcss-load-config": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz", + "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "lilconfig": "^3.0.0", + "yaml": "^2.3.4" + }, + "engines": { + "node": ">= 14" + }, + "peerDependencies": { + "postcss": ">=8.0.9", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "postcss": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/postcss-load-config/node_modules/lilconfig": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.1.tgz", + "integrity": "sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antonk52" + } + }, + "node_modules/postcss-nested": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", + "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.11" + }, + "engines": { + "node": ">=12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.2.14" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.16", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.16.tgz", + "integrity": "sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==", + "dev": true, + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true + }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "dev": true + }, + "node_modules/pusher-js": { + "version": "8.4.0-rc2", + "resolved": "https://registry.npmjs.org/pusher-js/-/pusher-js-8.4.0-rc2.tgz", + "integrity": "sha512-d87GjOEEl9QgO5BWmViSqW0LOzPvybvX6WA9zLUstNdB57jVJuR27zHkRnrav2a3+zAMlHbP2Og8wug+rG8T+g==", + "dev": true, + "dependencies": { + "tweetnacl": "^1.0.3" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "dev": true, + "dependencies": { + "pify": "^2.3.0" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rollup": { + "version": "4.13.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.13.0.tgz", + "integrity": "sha512-3YegKemjoQnYKmsBlOHfMLVPPA5xLkQ8MHLLSw/fBrFaVkEayL51DilPpNNLq1exr98F2B1TzrV0FUlN3gWRPg==", + "dev": true, + "dependencies": { + "@types/estree": "1.0.5" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.13.0", + "@rollup/rollup-android-arm64": "4.13.0", + "@rollup/rollup-darwin-arm64": "4.13.0", + "@rollup/rollup-darwin-x64": "4.13.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.13.0", + "@rollup/rollup-linux-arm64-gnu": "4.13.0", + "@rollup/rollup-linux-arm64-musl": "4.13.0", + "@rollup/rollup-linux-riscv64-gnu": "4.13.0", + "@rollup/rollup-linux-x64-gnu": "4.13.0", + "@rollup/rollup-linux-x64-musl": "4.13.0", + "@rollup/rollup-win32-arm64-msvc": "4.13.0", + "@rollup/rollup-win32-ia32-msvc": "4.13.0", + "@rollup/rollup-win32-x64-msvc": "4.13.0", + "fsevents": "~2.3.2" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/string-width-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/sucrase": { + "version": "3.35.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", + "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "^10.3.10", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + }, + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/tailwindcss": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.1.tgz", + "integrity": "sha512-qAYmXRfk3ENzuPBakNK0SRrUDipP8NQnEY6772uDhflcQz5EhRdD7JNZxyrFHVQNCwULPBn6FNPp9brpO7ctcA==", + "dev": true, + "dependencies": { + "@alloc/quick-lru": "^5.2.0", + "arg": "^5.0.2", + "chokidar": "^3.5.3", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.3.0", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "jiti": "^1.19.1", + "lilconfig": "^2.1.0", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "object-hash": "^3.0.0", + "picocolors": "^1.0.0", + "postcss": "^8.4.23", + "postcss-import": "^15.1.0", + "postcss-js": "^4.0.1", + "postcss-load-config": "^4.0.1", + "postcss-nested": "^6.0.1", + "postcss-selector-parser": "^6.0.11", + "resolve": "^1.22.2", + "sucrase": "^3.32.0" + }, + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "dev": true, + "dependencies": { + "any-promise": "^1.0.0" + } + }, + "node_modules/thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "dev": true, + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", + "dev": true + }, + "node_modules/tweetnacl": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-1.0.3.tgz", + "integrity": "sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw==", + "dev": true + }, + "node_modules/update-browserslist-db": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/vite": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.1.6.tgz", + "integrity": "sha512-yYIAZs9nVfRJ/AiOLCA91zzhjsHUgMjB+EigzFb6W2XTLO8JixBCKCjvhKZaye+NKYHCrkv3Oh50dH9EdLU2RA==", + "dev": true, + "dependencies": { + "esbuild": "^0.19.3", + "postcss": "^8.4.35", + "rollup": "^4.2.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": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/vite-plugin-full-reload": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/vite-plugin-full-reload/-/vite-plugin-full-reload-1.1.0.tgz", + "integrity": "sha512-3cObNDzX6DdfhD9E7kf6w2mNunFpD7drxyNgHLw+XwIYAgb+Xt16SEXo0Up4VH+TMf3n+DSVJZtW2POBGcBYAA==", + "dev": true, + "dependencies": { + "picocolors": "^1.0.0", + "picomatch": "^2.3.1" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/wrap-ansi-cjs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yaml": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.4.1.tgz", + "integrity": "sha512-pIXzoImaqmfOrL7teGUBt/T7ZDnyeGBWyXQBvOVhLkWLN37GXv8NMLK406UY6dS51JfcQHsmcW5cJ441bHg6Lg==", + "dev": true, + "bin": { + "yaml": "bin.mjs" + }, + "engines": { + "node": ">= 14" + } + } + } +} diff --git a/aigo/package.json b/aigo/package.json new file mode 100644 index 0000000..ab59e03 --- /dev/null +++ b/aigo/package.json @@ -0,0 +1,23 @@ +{ + "private": true, + "type": "module", + "scripts": { + "dev": "vite", + "build": "vite build" + }, + "devDependencies": { + "@tailwindcss/forms": "^0.5.2", + "alpinejs": "^3.4.2", + "autoprefixer": "^10.4.2", + "axios": "^1.6.4", + "laravel-echo": "^1.16.0", + "laravel-vite-plugin": "^1.0", + "postcss": "^8.4.31", + "pusher-js": "^8.4.0-rc2", + "tailwindcss": "^3.1.0", + "vite": "^5.0" + }, + "dependencies": { + "bootstrap-icons": "^1.11.3" + } +} diff --git a/aigo/phpunit.xml b/aigo/phpunit.xml new file mode 100644 index 0000000..506b9a3 --- /dev/null +++ b/aigo/phpunit.xml @@ -0,0 +1,33 @@ + + + + + tests/Unit + + + tests/Feature + + + + + app + + + + + + + + + + + + + + + + diff --git a/aigo/postcss.config.js b/aigo/postcss.config.js new file mode 100644 index 0000000..49c0612 --- /dev/null +++ b/aigo/postcss.config.js @@ -0,0 +1,6 @@ +export default { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +}; diff --git a/aigo/public/.htaccess b/aigo/public/.htaccess new file mode 100644 index 0000000..3aec5e2 --- /dev/null +++ b/aigo/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/aigo/public/asset/address.png b/aigo/public/asset/address.png new file mode 100644 index 0000000..c8a29ee Binary files /dev/null and b/aigo/public/asset/address.png differ diff --git a/aigo/public/asset/css/acceptance-patient.css b/aigo/public/asset/css/acceptance-patient.css new file mode 100644 index 0000000..f62462b --- /dev/null +++ b/aigo/public/asset/css/acceptance-patient.css @@ -0,0 +1,166 @@ +.appointment-card { + border-radius: 20px; + box-shadow: 0px 8px 30px 0px rgba(37, 36, 34, 0.07); + background-color: #fff; + align-items: start; + gap: 10px; + max-width: 600px; + min-width: 400px; +} + +.patient-avatar { + background-color: #a4bbe9; + border-radius: 50%; + width: 50px; + height: 50px; +} + +.patient-info { + display: flex; + margin-top: 8px; + flex-direction: column; +} + +.patient-name { + color: #1c2541; + font: 500 16px/75% Poppins, sans-serif; +} + +.patient-email { + color: #8296c5; + margin-top: 2px; + font: 400 14px/86% Poppins, sans-serif; +} + +.appointment-details { + display: flex; + flex-direction: column; + max-width: 330px; + font-size: 14px; + color: #384c7f; + font-weight: 400; +} + +.location-info { + display: flex; + gap: 10px; +} + +.location-icon { + width: 18px; + fill: #384c7f; +} + +.location-text { + font-family: Poppins, sans-serif; + flex-grow: 1; + margin: auto 0; +} + +.date-time-info { + display: flex; + justify-content: space-between; + width: 100%; + margin-top: 8px; +} + +.date-info { + display: flex; + gap: 6px; + margin: auto -5px auto 0; +} + +.date-icon { + width: 20px; + stroke: #384c7f; +} + +.date-text { + font-family: Poppins, sans-serif; + margin: auto 0; +} + +.time-info { + display: flex; + gap: 9px; +} + +.time-icon { + width: 20px; + fill: #384c7f; +} + +.time-text { + font-family: Poppins, sans-serif; + margin: auto 0; +} + +.approve-button { + border-style: none; + border-radius: 50px; + background-color: var(--Green-2, #51dbd3); + display: flex; + gap: 8px; + padding: 2px 46px; + text-decoration: none; +} + +.approve-button:hover { + background-color: #37b3b7; +} + +.icon-wrapper { + display: flex; + justify-content: center; + align-items: center; +} + +.approve-icon { + width: 40px; + aspect-ratio: 1; + object-fit: auto; + object-position: center; + fill: #fff; + filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.08)); +} + +.approve-text { + margin: auto 0; + color: var(--Green-5, #15647a); + font: 500 14px/193% Poppins, sans-serif; +} + +.decline-button { + border-style: none; + border-radius: 50px; + background-color: #faced7; + display: flex; + gap: 8px; + padding: 2px 50px; + text-decoration: none; +} + +.decline-button:hover { + background-color: #f7b8c5; +} + +.decline-icon-wrapper { + display: flex; + justify-content: center; + align-items: center; +} + +.decline-icon { + width: 40px; + aspect-ratio: 1; + object-fit: auto; + object-position: center; + fill: #fff; + filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.08)); +} + +.decline-text { + margin: auto 0; + color: #cc2a2a; + font: 500 14px/193% Poppins, sans-serif; +} diff --git a/aigo/public/asset/css/activity-report.css b/aigo/public/asset/css/activity-report.css new file mode 100644 index 0000000..0ccf69e --- /dev/null +++ b/aigo/public/asset/css/activity-report.css @@ -0,0 +1,202 @@ +h3, +h4, +h5 { + font-family: "Poppins"; +} + +.content { + padding-left: 250px; +} + +.activity-container { + border-radius: 20px; + box-shadow: 0 8px 30px 0 rgba(37, 36, 34, 0.07); + background-color: #fff; + display: flex; + padding: 0 14px 0 0; + gap: 12px; + text-transform: capitalize; +} + +.summary-icon-wrapper { + justify-content: center; + align-items: center; + border-radius: 20px; + background-color: #fecd5a; + display: flex; + flex-direction: column; + font-size: 14px; + color: #1c1c30; + font-weight: 400; + white-space: nowrap; + text-align: center; + width: 90px; + height: 90px; + padding: 0 30px; +} + +.summary-icon { + object-fit: auto; + object-position: center; + width: 39px; + fill: #1c1c30; + align-self: center; +} + +.summary-text { + font-family: Poppins, sans-serif; + margin-top: 5px; +} + +.summary-details { + display: flex; + flex-direction: column; + margin: auto 0; +} + +.summary-count { + color: #efa800; + font: 600 28px Poppins, sans-serif; +} + +.summary-unit { + color: #384c7f; + font: 400 14px Poppins, sans-serif; +} + +.calories-container { + display: flex; + gap: 14px; +} + +.avatar-container { + background-color: #eaecff; + border-radius: 50%; + display: flex; + align-items: center; + justify-content: center; + width: 56px; + height: 56px; +} + +.calories-icon { + width: 28px; + height: 28px; + object-fit: cover; + object-position: center; +} + +.calories-info { + display: flex; + flex-direction: column; + flex-grow: 1; + flex-basis: 0; + width: fit-content; + margin: auto 0; +} + +.calories-header { + display: flex; + justify-content: space-between; + gap: 20px; + font-size: 16px; +} + +.calories-label { + color: #384c7f; + font-family: Poppins, sans-serif; + font-weight: 500; + font-size: medium; +} + +.calories-value { + color: #8296c5; + text-align: right; + font-size: 15px; + font-family: Poppins, sans-serif; + font-weight: 400; +} + +.calories-value .calories-total { + font-weight: 500; + font-size: 18px; + color: rgba(55, 179, 183, 1); +} + +.calories-progress { + border-radius: 16px; + background-color: #f8f2ff; + display: flex; + flex-direction: column; + height: 8px !important; +} + +.calories-progress-bar { + border-radius: 16px; + background-color: #51dbd3 !important; + height: 8px; +} + +.weight-card { + border-radius: 8px; + box-shadow: 0 5px 10px 0 rgba(234, 240, 246, 1); + background-color: #fff; + display: flex; + max-width: 360px; + gap: 20px; + font-weight: 500; + padding: 17px 16px; +} + +.weight-info { + display: flex; + flex-direction: column; + flex: 1; +} + +.date { + color: #8296c5; + font-family: "Poppins", sans-serif; +} + +.weight { + color: #384c7f; + margin-top: 7px; + font: 18px "Poppins", sans-serif; + font-weight: 500; +} + +.weight-details { + align-self: start; + display: flex; + flex-direction: column; + font-size: 14px; + flex: 1; +} + +.time { + color: #8296c5; + font-family: "Poppins", sans-serif; + font-weight: 400; + align-self: end; +} + +.weight-change { + display: flex; + margin-top: 9px; + gap: 9px; + color: #f5634a; + text-align: right; + justify-content: flex-end; +} + +.change-value { + font-family: "Poppins", sans-serif; + font-size: 16px; +} + +.change-icon { + width: 16px; + height: 16px; + align-self: start; +} diff --git a/aigo/public/asset/css/customer-result.css b/aigo/public/asset/css/customer-result.css new file mode 100644 index 0000000..a6b9e59 --- /dev/null +++ b/aigo/public/asset/css/customer-result.css @@ -0,0 +1,75 @@ +.container { + margin-top: 20px; +} + +.content { + padding-left: 250px; +} + +.main-content { + width: 100%; +} + +.consultation-section { + margin-top: 55px; + padding: 0 20px; +} + +.consultation-header { + color: #1c2541; + text-align: center; + font-size: 30px; + margin-bottom: 40px; +} + +.consultation-card { + background-color: #fff; + border-radius: 8px; +} + +.card-header { + justify-content: space-between; + align-items: center; + margin-bottom: 23px; +} + +.card-body { + display: flex; + justify-content: space-between; + align-items: center; + gap: 20px; +} +.doctor-info { + color: #414d55; + display: flex; + flex-direction: column; +} + +.doctor-name { + font-weight: 500; + font-size: 16px; +} + +.doctor-email { + margin-top: 10px; + font-weight: 400; + font-size: 12px; +} + +.btn .view-result { + background-color: #fff; + color: #2662f0; + text-align: center; + padding: 5px; + border-radius: 5px; + box-shadow: 0px 1px 8px rgba(20, 46, 110, 0.1); +} + +.modal-dialog { + max-width: 500px; + margin: 1.75rem auto; +} + +.modal-content { + padding: 20px; +} diff --git a/aigo/public/asset/css/dashboard.css b/aigo/public/asset/css/dashboard.css new file mode 100644 index 0000000..58d3ae9 --- /dev/null +++ b/aigo/public/asset/css/dashboard.css @@ -0,0 +1,907 @@ +body { + overflow-x: hidden; +} + +.vertical-line { + width: 2px; + height: 180px; + background-color: black; +} + +.customer-profile { + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + text-align: center; + max-width: 324px; +} + +.profile-image { + width: 60px; + height: 60px; + border-radius: 50%; + background-color: #a4bbe9; +} + +.customer-name { + margin-top: 10px; + font: 500 18px/100% Poppins, sans-serif; + color: #384c7f; +} + +.customer-email { + font: 400 15px/100% Poppins, sans-serif; + color: #8296c5; +} + +.customer-stats { + display: flex; + justify-content: center; + align-self: stretch; + gap: 20px; + margin-top: 15px; + padding: 12px 25px; + border-radius: 16px; + background-color: #384c7f; + color: #fff; +} + +.stat-item { + display: flex; + flex-direction: column; + padding: 8px 0; + white-space: nowrap; +} + +.stat-label { + font: 300 12px/117% Poppins, sans-serif; +} + +.stat-value { + display: flex; + justify-content: center; + align-items: center; + gap: 5px; + margin-top: 10px; +} + +.stat-number { + font: 500 20px/100% Poppins, sans-serif; +} + +.stat-unit { + font: 300 12px/117% Poppins, sans-serif; +} + +.obesity-status { + width: 100px; + display: flex; + flex-direction: column; + justify-content: center; + margin: auto 0; +} + +.obesity-label { + font: 300 12px/117% Poppins, sans-serif; +} + +.obesity-value { + margin-top: 10px; + font: 500 16px/87.5% Poppins, sans-serif; +} + +.boxshadow { + border-radius: 16px; + box-shadow: 0px 8px 30px 0px rgba(37, 36, 34, 0.07); + background-color: #fff; + display: flex; + gap: 20px; + /* justify-content: space-between; */ + padding: 25px 80px 25px 30px; +} + +.calories-container { + align-items: center; + display: flex; + gap: 10px; + justify-content: flex-start; + width: 100%; +} + +.icon-wrapper { + align-items: center; + + border-radius: 8px; + display: flex; + height: 46px; + justify-content: center; + margin: auto 0; + width: 46px; +} + +.icon-wrapper, +#calories { + background-color: #ffced4; +} + +.icon-wrapper, +#distance { + background-color: #c9ffde; +} + +.icon-wrapper, +#sleep { + background-color: #cee2ff; +} + +.calories-icon { + fill: #f96577; + object-fit: contain; + width: 24px; +} + +.calories-info { + display: flex; + flex-direction: column; +} + +.calories-label { + color: #8296c5; + font: 400 14px Poppins, sans-serif; + line-height: 12px; +} + +.calories-value { + color: #384c7f; + font: 500 17px Poppins, sans-serif; + line-height: 0; +} + +.activity-log { + display: flex; + flex-direction: column; + max-width: 680px; + font-size: 16px; + color: #384c7f; + font-weight: 500; + text-align: center; +} + +.activity-header { + display: flex; + justify-content: center; + gap: 40px; + padding: 18px 27px; + border-radius: 12px; + white-space: nowrap; +} + +@media (max-width: 991px) { + .activity-header { + flex-wrap: wrap; + padding: 0 20px; + white-space: initial; + } +} + +.header-date, +.header-activity, +.header-distance, +.header-duration { + font-family: Poppins, sans-serif; + width: 160px; +} + +.header-activity, +.header-distance, +.header-duration { + width: 120px; +} + +.activity-item { + display: flex; + justify-content: center; + gap: 40px; + padding: 18px 25px; + border-radius: 12px; + background-color: #fff; + box-shadow: 0px 8px 30px 0px rgba(37, 36, 34, 0.07); +} + +@media (max-width: 991px) { + .activity-item { + flex-wrap: wrap; + padding: 0 20px; + } +} + +.item-date, +.item-activity, +.item-distance, +.item-duration { + font-family: Poppins, sans-serif; + width: 160px; +} + +.item-activity, +.item-distance, +.item-duration { + max-width: 120px; +} + +.appointment-item { + display: flex; + flex-direction: column; + max-width: 335px; + font-size: 14px; +} + +.appointment-time { + display: flex; + gap: 10px; + padding-right: 20px; + color: #384c7f; + font-weight: 400; + line-height: 100%; +} + +.appointment-status { + width: 12px; + height: 12px; + border-radius: 50%; + background-color: #37b3b7; + align-self: start; +} + +.appointment-datetime { + font-family: Poppins, sans-serif; + font-size: 16px; +} + +.appointment-details { + display: flex; + gap: 14px; + width: 100%; + margin-top: 5px; +} + +.appointment-connector { + margin: -4px 0 0 5px; + border: 1px dashed #a4bbe9; + height: 120px; +} + +.doctor-info { + display: flex; + flex-direction: column; + align-items: start; + flex-grow: 1; + flex-basis: 0; + width: auto; + margin: auto 0; + padding: 10px 80px 10px 16px; + border: 1px solid #a4bbe9; + border-radius: 15px; +} + +.doctor-name { + color: #384c7f; + font-family: Poppins, sans-serif; + font-weight: 500; +} + +.hospital-name { + color: #8296c5; + font-family: Poppins, sans-serif; + font-weight: 400; + line-height: 5px; +} + +.content{ + margin-top: 20px; + margin-left: 100px; +} + +.calories-description { + display: block; + font-size: 0.8em; + color: #666; + margin-top: 5px; +} + +body{ + margin-top:20px; + background:#f8f8f8 +} + +.container-notification { + background-color: #ffffff; + border-radius: 6px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Efect shadow */ + padding: 10px; + width: 45px; + height: 45px; + display: inline-flex; + align-items: center; + justify-content: flex-end; +} +.container-notification a { + text-decoration: none; /* Menghapus dekorasi hyperlink */ + color: #8296c5; /* Warna teks */ +} +.container-notification a:hover { + color: #6fffe9; /* Warna teks saat dihover */ +} +.containerContent { + background-color: #ffffff; + border-radius: 6px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Efect shadow */ + width: 250px; + height: 150px; + /* margin-left: 30px; + padding: 10px; */ + display: inline-flex; + align-items: center; +} + +.full-width-container { + width: 100%; + padding: 0; +} +.containerContent a { + text-decoration: none; /* Menghapus dekorasi hyperlink */ + color: #8296c5; /* Warna teks */ +} +.containeritem { + background-color: #ffffff; + border-radius: 6px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Efect shadow */ + margin-left: 30px; + padding: 10px; + display: inline-flex; + align-items: center; + width: calc(100% - 120px); +} +/* Styling untuk item-item */ +.item { + padding-left: 265px; + padding-bottom: 50px; +} + +.main-column { + display: flex; + flex-direction: column; + line-height: normal; + width: 80%; + margin-left: 20px; +} + +@media (max-width: 991px) { + .main-column { + width: 100%; + } +} + +.main-content { + display: flex; + flex-direction: column; + align-self: stretch; + margin: auto 0; +} + +@media (max-width: 991px) { + .main-content { + max-width: 100%; + margin-top: 40px; + } +} + +.payment-section { + display: flex; + gap: 20px; +} + +@media (max-width: 991px) { + .payment-section { + flex-direction: column; + align-items: stretch; + gap: 0px; + } +} + +.payment-card { + display: flex; + flex-direction: column; + line-height: normal; + width: 50%; +} + +@media (max-width: 991px) { + .payment-card { + width: 100%; + } +} + +.earning-card { + align-items: start; + border-radius: 4.444px; + border: 1px solid rgba(243, 244, 246, 1); + background-color: #6FFFE9; + display: flex; + flex-direction: column; + width: 100%; + padding: 18px 80px 31px 14px; +} + +@media (max-width: 991px) { + .earning-card { + margin-top: 17px; + padding-right: 20px; + } +} + +.earning-title { + color: var(--text-color-80-opacity, #0B132B); + letter-spacing: 0.14px; + font: 14px Outfit, sans-serif; +} + +.earning-amount { + color: var(--success-green-100, #0B132B); + margin-top: 11px; + font: 500 20px Outfit, sans-serif; +} + +.earning-date { + color: var(--Inactive-State-Color, #0B132B); + letter-spacing: 0.09px; + margin-top: 11px; + font: 9px Outfit, sans-serif; +} + +.pending-card { + align-items: start; + border-radius: 4.444px; + border: 1px solid rgba(243, 244, 246, 1); + background-color: #0B132B; + display: flex; + flex-direction: column; + width: 100%; + padding: 18px 80px 31px 15px; +} + +@media (max-width: 991px) { + .pending-card { + margin-top: 17px; + padding-right: 20px; + } +} + +.card { + width: 100%; +} + +.card-body{ + width: 100%; +} +.card-full-width { + width: 100%; +} +.pending-title { + color: var(--text-color-80-opacity, #6FFFE9); + letter-spacing: 0.14px; + font: 14px Outfit, sans-serif; +} + +.pending-amount { + color: var(--success-green-100, #2662F0); + margin-top: 11px; + font: 500 20px Outfit, sans-serif; +} + +.pending-date { + color: var(--Inactive-State-Color,#6FFFE9); + letter-spacing: 0.09px; + margin-top: 11px; + font: 9px Outfit, sans-serif; +} + +.payment-title { + color: var(--Inactive-State-Color, rgba(73, 69, 79, 0.8)); + margin-top: 33px; + font: 500 20px Outfit, sans-serif; +} + +@media (max-width: 991px) { + .payment-title { + max-width: 100%; + } +} +.entry-accept { + display: inline-flex; + justify-content: center; + align-items: center; + padding: 15px 26px; + flex: 1; + font-family: Poppins, sans-serif; + border-radius: 50px; + color:#15647A; + background-color: #51DBD3; + height: 30px; + width: 80px; +} + +.entry-decline { + display: inline-flex; + justify-content: center; + align-items: center; + padding: 15px 26px; + flex: 1; + font-family: Poppins, sans-serif; + border-radius: 50px; + color:#CC2A2A; + background-color: #F7B8C5; + height: 30px; + width: 80px; +} + +.tab-container { + display: flex; + margin-top: 24px; + width: 595px; + gap: 17px; + font-size: 15px; + color: var(--text-color-80-opacity, rgba(34, 34, 34, 0.9)); + font-weight: 500; + letter-spacing: 0.15px; + white-space: nowrap; +} + +@media (max-width: 991px) { + .tab-container { + flex-wrap: wrap; + white-space: initial; + } +} + +.tab { + border-radius: 26.667px; + border: 1px solid rgba(65, 59, 137, 1); + background-color: var(--Secondary---White, #fff); + justify-content: center; + padding: 15px; + font-variant-numeric: lining-nums proportional-nums; + font-feature-settings: "dlig" on; + font-family: Outfit, sans-serif; + display: inline-block; + height: auto; + white-space: nowrap; +} + +.tab { + padding: 10px 15px; +} + +@media (max-width: 991px) { + .tab { + white-space: initial; + padding: 0 20px; + } +} + +.tab-small { + border-radius: 26.667px; + border: 1px solid rgba(235, 235, 238, 1); + background-color: var(--Secondary---White, #fff); + justify-content: center; + padding: 17px 23px; + font-variant-numeric: lining-nums proportional-nums; + font-feature-settings: "dlig" on; + font-family: Outfit, sans-serif; +} + +@media (max-width: 991px) { + .tab-small { + white-space: initial; + padding: 0 20px; + } +} + +.tab-medium { + border-radius: 26.667px; + border: 1px solid rgba(235, 235, 238, 1); + background-color: var(--Secondary---White, #fff); + justify-content: center; + padding: 17px 28px; + font-variant-numeric: lining-nums proportional-nums; + font-feature-settings: "dlig" on; + font-family: Outfit, sans-serif; + height: 50px; +} + +@media (max-width: 991px) { + .tab-medium { + white-space: initial; + padding: 0 20px; + } +} + +.tab-large { + border-radius: 26.667px; + border: 1px solid rgba(235, 235, 238, 1); + background-color: var(--Secondary---White, #fff); + justify-content: center; + padding: 17px 26px; + font-variant-numeric: lining-nums proportional-nums; + font-feature-settings: "dlig" on; + font-family: Outfit, sans-serif; +} + +@media (max-width: 991px) { + .tab-large { + white-space: initial; + padding: 0 20px; + } +} + +.payment-history { + border-radius: 10.667px; + border: 1px solid rgba(235, 235, 238, 1); + background-color: var(--Secondary---White, #fff); + display: flex; + flex-direction: column; + font-size: 14px; + font-weight: 400; + padding: 0 28px 33px 0; + margin-top: 16px; + margin-bottom: 10px; + width: 1150px; +} + +@media (max-width: 991px) { + .payment-history { + max-width: 100%; + padding-right: 20px; + } +} + +.history-header, +.history-body { + display: grid; + grid-template-columns: repeat(6, 1fr); + gap: 20px; + align-items: center; + border-bottom: 1px solid rgba(206, 206, 206, 1); + padding: 0 20px; + box-sizing: border-box; +} + +.history-header { + letter-spacing: 0.14px; + padding-right: 68px; + width: 1150px; +} + +@media (max-width: 991px) { + .history-header { + flex-wrap: wrap; + padding-right: 20px; + } +} + +.history-column, +.history-entry { + padding: 20px 0; + text-align: center; + font-family: Outfit, sans-serif; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +.history-column { + font-variant-numeric: lining-nums proportional-nums; + font-feature-settings: "dlig" on; + color: var(--Inactive-State-Color, rgba(73, 69, 79, 0.8)); +} + +.history-body { + color: rgba(73, 69, 79, 0.9); + white-space: nowrap; + letter-spacing: 0.14px; +} + +@media (max-width: 991px) { + .history-body { + white-space: initial; + grid-template-columns: 1fr; + text-align: left; + } +} + +.status-success { + color: green; +} + +.status-rejected { + color: red; +} + +.status-pending { + color: orange; +} + +.entry-detail, +.entry-pay{ + background-color: #f0f0f0; + border: none; + padding: 5px 10px; + cursor: pointer; +} + + + +.history-entry-actions { + display: flex; + justify-content: center; + gap: 10px; +} + +.history-entry { + flex: 1; + white-space: nowrap; + word-wrap: break-word; + letter-spacing: 0.14px; + padding: 20px 21px; +} + +@media (max-width: 991px) { + .history-entry { + white-space: initial; + padding: 0 20px; + } +} + +.entry-detail { + display: flex; + justify-content: center; + align-items: center; + padding: 15px 26px; + flex: 1; + margin-top: 15px; + font-family: Poppins, sans-serif; + border-radius: 50px; + color: white; + background-color: #0978f2; + height: 30px; + width: 150px; +} + +.entry-pay { + display: flex; + justify-content: center; + align-items: center; + padding: 15px 26px; + flex: 1; + margin-top: 15px; + font-family: Poppins, sans-serif; + border-radius: 50px; + color: white; + background-color: #0EAD69; + height: 30px; + width: 150px; +} + + + +@media (max-width: 991px) { + .entry-detail { + white-space: initial; + padding: 0 20px; + } +} + +.status-success { + color: #0ead69; +} + +.status-pending { + color: #0978f2; +} + +.status-rejected { + color: rgba(193, 11, 14, 0.8); +} + +.status-container { + display: flex; + flex-direction: column; + align-items: center; + font-size: 5px; + color: #fff; + font-weight: 500; + white-space: nowrap; + line-height: 540%; +} + +@media (max-width: 991px) { + .status-container { + white-space: initial; + } +} + +.rows-center { + display: flex; + align-items: center; + gap: 4px; +} + +.rows-center img { + border-radius: 3.368px; +} +.change-photo-span { + font-size: 12px; /* Adjust the font size as needed */ +} + +.card-container { + border-radius: 16px; + box-shadow: 0px 8px 30px 0px rgba(37, 36, 34, 0.07); + background-color: #fff; + display: flex; + max-width: 350px; + flex-direction: column; + padding: 50px 22px 31px; +} +.content-wrapper { + display: flex; + align-items: start; + gap: 16px; + font-size: 14px; + color: #435179; + font-weight: 400; +} +.profile-pic { + background-color: #51dbd3; + border-radius: 50%; + width: 80px; + height: 80px; +} +.details { + display: flex; + margin-top: 20px; + flex-direction: column; + flex-grow: 1; + flex-basis: 0; + width: fit-content; +} +.hospital-name { + color: #1c2541; + font: 500 20px Poppins, sans-serif; +} +.date-info { + margin-top: 9px; + font: 16px Poppins, sans-serif; +} +.doctor-name, +.status, +.time-info { + font-family: Poppins, sans-serif; + margin-top: 16px; +} +.action-button { + justify-content: center; + border-radius: 10px; + background-color: #2662f0; + align-self: end; + margin-top: 25px; + color: #fff; + white-space: nowrap; + padding: 17px 39px; + font: 500 15px Poppins, sans-serif; +} + +.status{ + color: #2662f0; +} + diff --git a/aigo/public/asset/css/dashboardAdmin.css b/aigo/public/asset/css/dashboardAdmin.css new file mode 100644 index 0000000..0eaf3e1 --- /dev/null +++ b/aigo/public/asset/css/dashboardAdmin.css @@ -0,0 +1,733 @@ +body { + overflow-x: hidden; +} + +.admin-dashboard-title { + color: #1c2541; + text-align: center; + align-self: start; + font: 500 32px Poppins, sans-serif; +} +.patients-summary { + border-radius: 16px; + box-shadow: 0px 8px 30px 0px rgba(37, 36, 34, 0.07); + background-color: #fff; + display: flex; + flex-direction: column; + padding: 30px 77px 30px 30px; +} + +@media (max-width: 991px) { + .patients-summary { + max-width: 100%; + padding: 0 20px; + } +} + +.content { + padding-left: 265px; + padding-right: 10px; +} + +.header{ + padding-left: 265px; + padding-right: 10px; +} + +.patients-summary-title { + color: #384c7f; + letter-spacing: 0.4px; + font: 500 20px Poppins, sans-serif; +} + +.patients-summary-content { + margin-top: 10px; +} + +.patients-summary-row { + display: flex; + gap: 20px; +} + +@media (max-width: 991px) { + .patients-summary-row { + flex-direction: column; + gap: 0; + } +} + +.patients-summary-column { + display: flex; + flex-direction: column; + line-height: normal; + width: 24%; +} + +@media (max-width: 991px) { + .patients-summary-column { + width: 100%; + } +} + +.gender-stats { + display: flex; + margin-top: 22px; + flex-grow: 1; + gap: 10px; +} + +@media (max-width: 991px) { + .gender-stats { + margin-top: 40px; + } +} + +.gender-icons { + display: flex; + flex-direction: column; + flex: 1; +} + +.male-icon, +.female-icon { + display: flex; + justify-content: center; + align-items: center; + border-radius: 10px; + background-color: #cfddff; + width: 50px; + height: 50px; + padding: 0 19px; +} + +.female-icon { + margin-top: 21px; +} + +.gender-icon { + width: 12px; +} + +.gender-labels { + display: flex; + flex-direction: column; + font-size: 14px; + color: #8296c5; + font-weight: 400; + letter-spacing: 0.28px; + flex: 1; + margin: auto 0; +} + +@media (max-width: 991px) { + .gender-labels { + white-space: initial; + } +} + +.gender-label { + font-family: Poppins, sans-serif; +} + +.gender-count { + color: #1c2541; + letter-spacing: 0.4px; + margin-top: 13px; + font: 500 20px Poppins, sans-serif; +} + +.female-label { + margin-top: 33px; +} + +.bmi-stats { + display: flex; + margin-top: 23px; + flex-grow: 1; + gap: 10px; +} + +@media (max-width: 991px) { + .bmi-stats { + margin-top: 40px; + } +} + +.bmi-icons { + display: flex; + flex-direction: column; + flex: 1; +} + +.normal-icon, +.obesity-icon { + display: flex; + justify-content: center; + align-items: center; + border-radius: 10px; + width: 50px; + height: 50px; + padding: 0 15px; +} + +.normal-icon { + background-color: #b7ffe9; +} + +.obesity-icon { + background-color: #ffb8c9; + margin-top: 21px; +} + +.bmi-icon { + width: 20px; +} + +.bmi-labels { + display: flex; + flex-direction: column; + font-size: 14px; + color: #8296c5; + font-weight: 400; + letter-spacing: 0.28px; + flex: 1; + margin: auto 0; +} + +@media (max-width: 991px) { + .bmi-labels { + white-space: initial; + } +} + +.bmi-label { + font-family: Poppins, sans-serif; +} + +.bmi-count { + color: #1c2541; + letter-spacing: 0.4px; + margin-top: 13px; + font: 500 20px Poppins, sans-serif; +} + +.obesity-label { + margin-top: 32px; +} + +.obesity-count { + margin-top: 9px; +} + +.chart-column { + display: flex; + flex-direction: column; + line-height: normal; + width: 52%; + margin-left: 20px; +} + +@media (max-width: 991px) { + .chart-column { + width: 100%; + } +} + +.chart-container { + display: flex; + flex-grow: 1; + gap: 17px; + font-size: 12px; + color: #6c7588; + font-weight: 400; + letter-spacing: 0.24px; +} + +@media (max-width: 991px) { + .chart-container { + margin-top: 40px; + white-space: initial; + } +} + +.chart-image { + width: 140px; + max-width: 100%; +} + +.chart-legend { + align-self: start; + display: flex; + flex-direction: column; + align-items: center; +} + +@media (max-width: 991px) { + .chart-legend { + white-space: initial; + } +} + +.chart-title { + color: #384c7f; + letter-spacing: 0.4px; + align-self: stretch; + font: 500 20px Poppins, sans-serif; + text-align: right; +} + +.legend-item { + display: flex; + width: 60px; + gap: 8px; + padding: 3px 0; +} + +.obesity-legend { + margin-top: 28px; +} + +.normal-legend { + margin-top: 5px; + padding: 4px 0; +} + +.legend-color { + border-radius: 50%; + width: 8px; + height: 8px; +} + +.obesity-color { + background-color: #f45d78; + align-self: start; +} + +.normal-color { + background-color: #5df4c7; +} + +.legend-label { + font-family: Nunito Sans, sans-serif; +} + +.doctor-total-card { + border-radius: 16px; + box-shadow: 0 8px 30px 0 rgba(37, 36, 34, 0.07); + background-color: #fff; + display: flex; + flex-direction: column; + flex: 1; + padding: 20px; +} + +.doctor-total-header { + display: flex; + gap: 10px; + color: #8296c5; + font: 400 16px/150% Poppins, sans-serif; +} + +.doctor-total-icon { +width: 22px; +aspect-ratio: 1; +object-fit: auto; +object-position: center; +align-self: start; +} + +.doctor-total-label { + font-family: Poppins, sans-serif; +} + +.doctor-total-value { + margin-top: 10px; + color: #1c2541; + font: 500 30px/80% Poppins, sans-serif; + align-self: center; +} + + .user-roles { + border-radius: 20px; + background-color: #fff; + display: flex; + margin-top: 21px; + width: 100%; + flex-direction: column; + align-items: center; + padding: 25px 24px; + } + + @media (max-width: 991px) { + .user-roles { + padding: 0 20px; + } + } + + .user-roles-header { + align-self: stretch; + display: flex; + gap: 20px; + font-size: 16px; + color: #0c1e5b; + font-weight: 500; + letter-spacing: 0.32px; + justify-content: space-between; + padding: 0 2px; + } + + .user-roles-title { + font-family: Poppins, sans-serif; + } + + .user-roles-icon { + aspect-ratio: 3.57; + object-fit: auto; + object-position: center; + width: 18px; + margin: auto 0; + } + + .user-roles-image { + aspect-ratio: 1; + object-fit: auto; + object-position: center; + width: 140px; + margin-top: 28px; + max-width: 100%; + } + + .user-roles-legend { + display: flex; + margin-top: 28px; + gap: 20px; + font-size: 12px; + color: #6c7588; + font-weight: 400; + white-space: nowrap; + letter-spacing: 0.24px; + padding: 0 2px; + } + + @media (max-width: 991px) { + .user-roles-legend { + white-space: initial; + } + } + + .user-role { + display: flex; + gap: 8px; + flex: 1; + } + + @media (max-width: 991px) { + .user-role { + white-space: initial; + } + } + + .user-role-indicator { + border-radius: 50%; + width: 8px; + height: 8px; + } + + .user-role-indicator.patient { + background-color: #5df4c7; + } + + .user-role-indicator.admin { + background-color: #f45d78; + } + + .user-role-indicator.doctor { + background-color: #8db3ff; + } + + .user-role-label { + font-family: Nunito Sans, sans-serif; + } + + .patient-total-card { + border-radius: 16px; + box-shadow: 0 8px 30px 0 rgba(37, 36, 34, 0.07); + background-color: #fff; + display: flex; + flex-direction: column; + flex: 1; + padding: 20px; + } + + .patient-total-header { + display: flex; + gap: 10px; + color: #8296c5; + font: 400 16px/150% Poppins, sans-serif; + } + + .patient-icon { + width: 24px; + aspect-ratio: 1; + object-fit: auto; + object-position: center; + } + + .patient-total-label { + font-family: Poppins, sans-serif; + } + + .patient-total-value { + margin-top: 10px; + color: #1c2541; + font: 500 30px/80% Poppins, sans-serif; + align-self: center; + } + + .notification-container { + border-radius: 20px; + background-color: #fff; + max-width: 830px; + margin-top: 17px; + padding: 25px 28px; + } + + @media (max-width: 991px) { + .notification-container { + padding: 0 20px; + } + } + + .notification-content { + display: flex; + gap: 20px; + } + + @media (max-width: 991px) { + .notification-content { + flex-direction: column; + align-items: stretch; + gap: 0; + } + } + + .notification-details { + display: flex; + flex-direction: column; + line-height: normal; + width: 80%; + margin-left: 0; + } + + @media (max-width: 991px) { + .notification-details { + width: 100%; + } + } + + .notification-header { + display: flex; + flex-grow: 1; + gap: 15px; + } + + @media (max-width: 991px) { + .notification-header { + margin-top: 40px; + } + } + + .notification-icon { + aspect-ratio: 1; + object-fit: auto; + object-position: center; + width: 70px; + } + + .notification-text { + align-self: start; + display: flex; + margin-top: 6px; + flex-direction: column; + flex-grow: 1; + flex-basis: 0; + width: fit-content; + } + + .notification-title { + color: #0c1e5b; + letter-spacing: 0.32px; + font: 600 16px Poppins, sans-serif; + } + + .notification-description { + color: #888fa7; + letter-spacing: 0.26px; + margin-top: 12px; + font: 400 13px/154% Poppins, sans-serif; + } + + .notification-action { + display: flex; + flex-direction: column; + line-height: normal; + width: 20%; + margin-left: 20px; + } + + @media (max-width: 991px) { + .notification-action { + width: 100%; + } + } + + .notification-button { + justify-content: center; + border-radius: 10px; + background-color: #384c7f; + align-self: stretch; + color: #fff; + text-align: center; + letter-spacing: 0.28px; + width: 100%; + margin: auto 0; + padding: 8px 16px; + font: 500 14px Poppins, sans-serif; + } + + @media (max-width: 991px) { + .notification-button { + margin-top: 40px; + } + } + + .image-notif{ + width:100%; + padding:15px; + } + + + .image { + width: 10%; + aspect-ratio: 1.14; + object-fit: cover; + object-position: center; + } + + .search-input { + width: 100%; + padding: 8px 12px; + border: 1px solid #ccc; + border-radius: 5px; + box-sizing: border-box; + font-size: 14px; + margin-bottom: 10px; +} + +.search-input::placeholder { + color: #aaa; +} + + + .container-patient{ + display: flex; + flex-grow: 1; + gap: 17px; + font-size: 12px; + background-color: #ffff; + color: #6c7588; + font-weight: 400; + letter-spacing: 0.24px; + padding: 25px 25px 25px 25px; + + } + + .container-patient { + display: flex; + justify-content: center; + align-items: center; + background-color: #f8f9fa; + padding: 20px; +} + +.data-table { + width: 100%; + max-width: 100%; /* Lebar maksimum tabel */ + background-color: #fff; + padding: 20px; + border-radius: 10px; + box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Efek bayangan */ +} + +.table-header { + display: grid; + grid-template-columns: repeat(4, 250px) auto; /* Menggunakan grid untuk header */ + gap: 10px; + align-items: center; + font-weight: bold; +} + +.header-cell { + padding: 10px; + width: 100%; +} + +.table-image { + max-width: 100%; + height: auto; + margin-top: 20px; +} + +.table-footer { + display: flex; + justify-content: space-between; + align-items: center; + margin-top: 20px; + font-size: 14px; +} + +.pagination { + display: flex; + gap: 5px; +} + +.page-number, +.previous-button, +.next-button { + padding: 5px 10px; + border: 1px solid #ddd; + border-radius: 5px; + text-decoration: none; + color: #333; +} + +.active-page { + background-color: #007bff; + color: #fff; +} + + +.change-photo-span { + font-size: 12px; /* Adjust the font size as needed */ +} + +.card { + width: 100%; +} + +.card-body{ + width: 100%; +} +.card-full-width { + width: 100%; +} + +.content{ + margin-top: 20px; + margin-left: 100px; +} + + + + + diff --git a/aigo/public/asset/css/dashboardDoc.css b/aigo/public/asset/css/dashboardDoc.css new file mode 100644 index 0000000..67c8f63 --- /dev/null +++ b/aigo/public/asset/css/dashboardDoc.css @@ -0,0 +1,1495 @@ +.doctor-dashboard { + display: flex; + -width: 926px; + flex-direction: column; + padding: 0 20px; +} + +.dashboard-title { + color: #1c2541; + text-align: center; + align-self: center; + margin-left: 85px; + font: 500 32px Poppins, sans-serif; +} + +.dashboard-content { + margin-top: 36px; + width: 100%; +} + +@media (max-width: 991px) { + .dashboard-content { + max-width: 100%; + } +} + +.content-row { + display: flex; + gap: 10px; +} + +@media (max-width: 991px) { + .content-row { + flex-direction: column; + align-items: stretch; + gap: 0; + } +} + +.content-column { + display: flex; + flex-direction: column; + line-height: normal; + width: 44%; + margin-left: 0; +} + +@media (max-width: 991px) { + .content-column { + width: 100%; + } +} + +.patient-stats { + justify-content: center; + border-radius: 20px; + box-shadow: 0 8px 30px 0 rgba(37, 36, 34, 0.07); + display: flex; + background-color: #fff; + width: 75%; + flex-grow: 0.5; + flex-direction: column; + white-space: nowrap; + margin: 0 auto; + padding: 38px 35px; +} + +@media (max-width: 991px) { + .patient-stats { + margin-top: 26px; + white-space: initial; + padding: 0 20px; + } +} + +.patient-icon { + aspect-ratio: 1; + object-fit: auto; + object-position: center; + width: 140px; + align-self: center; + max-width: 100%; +} + +.patient-stats-row { + justify-content: center; + display: flex; + margin-top: 30px; + gap: 15px; +} + +@media (max-width: 991px) { + .patient-stats-row { + white-space: initial; + } +} + +.patient-stat { + justify-content: center; + border-radius: 10px; + border: 1px solid rgba(229, 229, 229, 1); + display: flex; + flex-direction: column; + padding: 9px 14px; + align-items: center; + text-align: center; +} + +@media (max-width: 991px) { + .patient-stat { + white-space: initial; + } +} + +.patient-stat-value { + color: var(--Main-Colors-Secondary, #F5F5F5); + font: 600 18px/144% Inter, sans-serif; +} + +.patient-stat-label { + color: var(--Neutral-500, #F5F5F5); + margin-top: 4px; + font: 400 12px/133% Inter, sans-serif; +} + +.content-column-wide { + display: flex; + flex-direction: column; + line-height: normal; + width: 56%; + margin-left: 20px; +} + +@media (max-width: 991px) { + .content-column-wide { + width: 100%; + } +} + +.appointment-summary { + border-radius: 16px; + box-shadow: 0 8px 30px 0 rgba(37, 36, 34, 0.07); + background-color: #fff; + flex-grow: 1; + width: 100%; + padding: 37px 35px 80px; +} + +@media (max-width: 991px) { + .appointment-summary { + max-width: 100%; + margin-top: 26px; + padding: 0 20px; + } +} + +.appointment-summary-row { + display: flex; + gap: 20px; +} + +@media (max-width: 991px) { + .appointment-summary-row { + flex-direction: column; + align-items: stretch; + gap: 0; + } +} + +.appointment-summary-column { + display: flex; + flex-direction: column; + line-height: normal; + width: 57%; + margin-left: 0; +} + +@media (max-width: 991px) { + .appointment-summary-column { + width: 100%; + } +} + +.appointment-summary-header { + display: flex; + gap: 0; +} + +@media (max-width: 991px) { + .appointment-summary-header { + margin-top: 40px; + } +} + +.appointment-summary-title { + color: var(--Dark-3, #384c7f); + letter-spacing: 0.4px; + font: 500 20px Poppins, sans-serif; +} + +.gender-stats { + display: flex; + margin-top: 24px; + gap: 10px; +} + +.appointment-stats { + display: flex; + margin-top: 24px; + gap: 10px; +} + +.gender-icon-container { + display: flex; + flex-direction: column; + flex: 0; +} +.apoinment-icon-container { + display: flex; + flex-direction: column; + flex: 1; +} + +.male-icon { + justify-content: center; + align-items: start; + border-radius: 10px; + background-color: #cfddff; + display: flex; + flex-direction: column; + padding: 15px 19px; +} + +@media (max-width: 991px) { + .male-icon { + padding-right: 20px; + } +} + +.gender-icon { + aspect-ratio: 0.6; + object-fit: auto; + object-position: center; + width: 12px; +} + +.female-icon { + justify-content: center; + align-items: start; + border-radius: 10px; + background-color: #cfddff; + display: flex; + margin-top: 25px; + flex-direction: column; + padding: 15px 19px; +} + +@media (max-width: 991px) { + .female-icon { + padding-right: 20px; + } +} + +.gender-stats-labels { + display: flex; + flex-direction: column; + font-size: 14px; + color: #8296c5; + font-weight: 400; + white-space: nowrap; + letter-spacing: 0.28px; + flex: 1; + margin: auto 0; +} + +@media (max-width: 991px) { + .gender-stats-labels { + white-space: initial; + } +} + +.gender-label { + font-family: Poppins, sans-serif; +} + +.gender-value { + color: #1c2541; + letter-spacing: 0.4px; + margin-top: 13px; + font: 500 20px Poppins, sans-serif; +} + +.appointment-icons { + align-self: end; + display: flex; + margin-top: 45px; + flex-direction: column; +} + +@media (max-width: 991px) { + .appointment-icons { + margin-top: 40px; + } +} + +.total-appointment-icon { + justify-content: center; + align-items: center; + border-radius: 10px; + background-color: #cfddff; + display: flex; + width: 50px; + height: 50px; + padding: 0 19px; +} + +.pending-appointment-icon { + justify-content: center; + align-items: center; + border-radius: 10px; + background-color: #cfddff; + display: flex; + margin-top: 21px; + width: 50px; + height: 50px; + padding: 0 19px; +} + +.appointment-summary-column-narrow { + display: flex; + flex-direction: column; + line-height: normal; + width: 43%; + margin-left: 20px; +} + +@media (max-width: 991px) { + .appointment-summary-column-narrow { + width: 100%; + } +} + +@media (max-width: 991px) { + .appointment-stats { + margin-top: 40px; + } +} + +.appoinment-stats-labels { + display: flex; + flex-direction: column; + font-size: 14px; + color: #8296c5; + font-weight: 400; + white-space: nowrap; + letter-spacing: 0.28px; + flex: 1; + margin: auto 0; +} + +.appointment-stat-value { + color: #1c2541; + letter-spacing: 0.4px; + margin-top: 6px; + font: 500 20px Poppins, sans-serif; +} + +.appointments-container { + border-radius: 15px; + border: 1px solid rgba(233, 241, 255, 1); + background-color: #fff; + display: flex; + width: 95%; + flex-direction: column; + padding: 39px 57px; + margin: 20px 30px 30px 55px; +} + +@media (max-width: 991px) { + .appointments-container { + padding: 0 20px; + } +} + +.appointments-header { + display: flex; + width: 100%; + gap: 20px; +} + +@media (max-width: 991px) { + .appointments-header { + max-width: 100%; + flex-wrap: wrap; + } +} + +.appointments-title { + color: var(--Dark-3, #384c7f); + flex-grow: 1; + flex-basis: auto; + font: 600 24px Poppins, sans-serif; +} + +.view-more-link { + align-self: start; + display: flex; + gap: 10px; + font-size: 17px; + color: var(--Green-2, #51dbd3); + font-weight: 500; + letter-spacing: -0.17px; +} + +.view-more-text { + font-family: Poppins, sans-serif; +} + +.arrow-icon { + width: 16px; + margin: auto 0; +} + +:root { + --Dark-2: #8296c5; + --Dark-4: #1c2541; +} + +.appointments-table-header { + display: flex; + margin-top: 29px; + gap: 20px; + font-size: 18px; + color: var(--Dark-4); + font-weight: 400; + white-space: nowrap; + letter-spacing: -0.2px; + justify-content: space-between; + padding: 12px 16px; +} + +.appointments-table-header > div { + flex: 1; + max-width: calc(25% - 20px); +} + +@media (max-width: 991px) { + .appointments-table-header { + flex-wrap: wrap; + white-space: initial; + } +} + +.header-name, +.header-location, +.header-date, +.header-time, +.header-status { + font-family: Poppins, sans-serif; +} + +.appointment-row { + align-items: center; + text-align: center; + border-radius: 12px; + border: 1px solid rgba(233, 241, 255, 1); + background-color: #f6faff; + display: flex; + flex-wrap: wrap; + margin-top: 20px; + gap: 20px; /* Adjust gap as necessary */ + font-size: 17px; + color: var(--Dark-2); + font-weight: 400; + letter-spacing: -0.17px; + padding: 12px 16px; + width: 100%; /* Ensure the row spans the full width */ +} + +.appointment-row > div { + flex: 1; + max-width: calc(25% - 10px); /* Adjust width and gap as necessary */ +} + +.patient-info { + align-self: stretch; + display: flex; + gap: 10px; +} + +.patient-avatar { + width: 38px; + aspect-ratio: 1; +} + +.patient-name { + font-family: Poppins, sans-serif; + margin: auto 0; +} + +.appointment-location, +.appointment-date, +.appointment-time { + font-family: Poppins, sans-serif; + align-self: stretch; + margin: auto 0; +} + +.appointment-status { + font-family: Poppins, sans-serif; + align-self: stretch; + margin: auto 0; +} + +.status-confirmed { + color: var(--Green-2, #51dbd3); +} + +.status-cancelled { + color: #ff2f3b; +} + +.search-container { + border-radius: 16px; + box-shadow: 0px 8px 30px 0px rgba(37, 36, 34, 0.07); + background-color: #fff; + display: flex; + flex-direction: column; + font-size: 16px; + color: #384c7f; + font-weight: 400; + justify-content: center; + padding: 76px 42px; + width: 90%; + margin: 20px 0px 0px 100px; +} + +@media (max-width: 991px) { + .search-container { + padding: 0 20px; + } +} + +.search-input { + font-family: Poppins, sans-serif; + align-items: start; + border-radius: 50px; + border: 1px solid rgba(130, 150, 197, 1); + background-color: #fff; + justify-content: center; + padding: 20px 24px; +} + +@media (max-width: 991px) { + .search-input { + max-width: 100%; + padding: 0 20px; + } +} + +.appointment-card { + border-radius: 16px; + border: 1px solid rgba(169, 183, 205, 1); + background-color: #f6faff; + display: flex; + margin-top: 38px; + width: 100%; + gap: 20px; + font-size: 17px; + letter-spacing: -0.17px; + padding: 27px 60px 27px 12px; +} + +@media (max-width: 991px) { + .appointment-card { + max-width: 100%; + flex-wrap: wrap; + padding-right: 20px; + } +} + +.appointment-info { + align-self: stretch; + display: flex; + gap: 10px; +} + +@media (max-width: 991px) { + .appointment-info { + max-width: 100%; + flex-wrap: wrap; + } +} + +.profile-pic { + aspect-ratio: 1.11; + object-fit: cover; + object-position: center; + width: 42px; + align-self: stretch; +} + +.name { + font-family: Louis George Café, sans-serif; + align-self: stretch; + flex-grow: 1; + flex-basis: auto; + margin: auto 0; +} + +.status { + color: var(--Green-2, #51dbd3); + font-family: Open Sans, sans-serif; + font-weight: 400; + align-self: stretch; + margin: auto 0; +} + +.date { + font-family: Louis George Café, sans-serif; + align-self: stretch; + margin: auto 0; +} + +.time { + font-family: Louis George Café, sans-serif; + align-self: stretch; + margin: auto 0; +} + +.appointment-actions { + display: flex; + gap: 20px; + font-weight: 400; + white-space: nowrap; + justify-content: space-between; + margin: auto 0; +} + +@media (max-width: 991px) { + .appointment-actions { + white-space: initial; + } +} + +.decline-btn { + font-family: Open Sans, sans-serif; + border-radius: 10px; + background-color: rgba(255, 128, 174, 0.23); + color: #cc2a2a; + padding: 9px 24px; + border: none; + cursor: pointer; +} + +@media (max-width: 991px) { + .decline-btn { + white-space: initial; + padding: 0 20px; + } +} + +.confirm-btn { + font-family: Open Sans, sans-serif; + border-radius: 10px; + background-color: rgba(111, 255, 233, 0.23); + color: #40dbc1; + padding: 9px 17px; + border: none; + cursor: pointer; +} + +@media (max-width: 991px) { + .confirm-btn { + white-space: initial; + } +} + +.patient-acceptance-title { + color: #1c2541; + text-align: center; + align-self: center; + margin-left: 85px; + font: 500 32px Poppins, sans-serif; +} + +.schedule-heading { + color: #1c2541; + text-align: center; + align-self: center; + font: 500 32px Poppins, sans-serif; +} + +.appointments-header { + display: flex; + gap: 20px; + width: 100%; +} + +@media (max-width: 991px) { + .appointments-header { + flex-wrap: wrap; + max-width: 100%; + } +} + +.appointments-title { + color: #141414; + flex-basis: auto; + flex-grow: 1; + font: 600 24px Jost, sans-serif; + gap: 0px; +} + +.appointments-icons { + display: flex; + gap: 8px; +} + +.icon { + aspect-ratio: 0.79; + gap: 0px; + object-fit: auto; + object-position: center; + width: 19px; +} + +.table-header-name { + font-family: Jost, sans-serif; + gap: 0px; +} + +.table-header-row { + align-self: start; + display: flex; + gap: 20px; + justify-content: space-between; +} + +@media (max-width: 991px) { + .table-header-row { + flex-wrap: wrap; + max-width: 100%; + } +} + +.table-header-name, +.table-header-location, +.table-header-patient-id, +.table-header-date, +.table-header-time, +.table-header-status { + text-align: center; +} + +.appointment-details { + display: flex; + gap: 20px; + justify-content: space-between; + margin: auto 0; + white-space: nowrap; +} + +@media (max-width: 991px) { + .appointment-details { + flex-wrap: wrap; + max-width: 100%; + white-space: initial; + } +} + +.appointment-location { + color: var(--Green-2, #51dbd3); + font-family: Open Sans, sans-serif; + font-weight: 400; + gap: 0px; +} + +.appointment-patient-id, +.appointment-date, +.appointment-time { + font-family: Louis George Café, sans-serif; + gap: 0px; +} + +.appointment-status { + color: var(--Green-2, #51dbd3); + font-family: Louis George Café, sans-serif; + gap: 0px; +} + +.appointment-status-cancelled { + color: #ff2424; +} +.appointment-card { + border-radius: 20px; + box-shadow: 0px 8px 30px 0px rgba(37, 36, 34, 0.07); + background-color: #fff; + align-items: start; + gap: 10px; + max-width: 600px; + min-width: 300px; +} + +.patient-avatar { + background-color: #a4bbe9; + border-radius: 50%; + width: 50px; + height: 50px; +} + +.content { + margin-top: 20px; + margin-left: 100px; +} + +.patient-info { + display: flex; + margin-top: 8px; + flex-direction: column; +} + +.patient-name { + color: #1c2541; + font: 500 16px/75% Poppins, sans-serif; +} + +.patient-email { + color: #8296c5; + margin-top: 2px; + font: 400 14px/86% Poppins, sans-serif; +} + +.appointment-details { + display: flex; + flex-direction: column; + max-width: 330px; + font-size: 14px; + color: #384c7f; + font-weight: 400; +} + +.location-info { + display: flex; + gap: 10px; +} + +.location-icon { + width: 18px; + fill: #384c7f; +} + +.location-text { + font-family: Poppins, sans-serif; + flex-grow: 1; + margin: auto 0; +} + +.date-time-info { + display: flex; + justify-content: space-between; + width: 100%; + margin-top: 8px; +} + +.date-info { + display: flex; + gap: 6px; + margin: auto -5px auto 0; +} + +.date-icon { + width: 20px; + stroke: #384c7f; +} + +.date-text { + font-family: Poppins, sans-serif; + margin: auto 0; +} + +.time-info { + display: flex; + gap: 9px; +} + +.time-icon { + width: 20px; + fill: #384c7f; +} + +.time-text { + font-family: Poppins, sans-serif; + margin: auto 0; +} + +.approve-button { + border-radius: 50px; + background-color: var(--Green-2, #51dbd3); + display: flex; + gap: 10px; + padding: 4px 20px; + text-decoration: none; +} + +.approve-button:hover { + background-color: #37b3b7; +} + +.icon-wrapper { + display: flex; + justify-content: center; + align-items: center; +} + +.approve-icon { + width: 40px; + aspect-ratio: 1; + object-fit: auto; + object-position: center; + fill: #fff; + filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.08)); +} + +.approve-text { + margin: auto 0; + color: var(--Green-5, #15647a); + font: 500 14px/193% Poppins, sans-serif; +} + +.decline-button { + border-radius: 50px; + background-color: #faced7; + display: flex; + gap: 5px; + padding: 4px 20px; + text-decoration: none; +} + +.decline-button:hover { + background-color: #f7b8c5; +} + +.decline-icon-wrapper { + display: flex; + justify-content: center; + align-items: center; +} + +.decline-icon { + width: 40px; + aspect-ratio: 1; + object-fit: auto; + object-position: center; + fill: #fff; + filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.08)); +} + +.decline-text { + margin: auto 0; + color: #cc2a2a; + font: 500 14px/193% Poppins, sans-serif; +} + +.container { + padding-right: 68px; + background-color: #f6f7ff; +} + +@media (max-width: 991px) { + .container { + padding-right: 20px; + } +} + +.flex-column { + display: flex; + flex-direction: column; + line-height: normal; +} + +.flex-row { + display: flex; + gap: 20px; +} + +@media (max-width: 991px) { + .link { + white-space: initial; + margin: 0 10px; + } +} + +.link-icon { + aspect-ratio: 1.06; + object-fit: cover; + width: 16px; +} + +.link-text { + font-family: Poppins, sans-serif; + flex-grow: 1; + margin: auto 0; +} + +.expander-icon { + aspect-ratio: 0.5; + object-fit: cover; + width: 4px; + margin: auto 0; +} + +.flex-row-space { + display: flex; + justify-content: space-between; + gap: 20px; +} + +.nav-icon-wrapper { + display: flex; + gap: 19px; +} + +.main-column { + display: flex; + flex-direction: column; + line-height: normal; + width: 80%; + margin-left: 20px; +} + +@media (max-width: 991px) { + .main-column { + width: 100%; + } +} + +.main-content { + display: flex; + flex-direction: column; + align-self: stretch; + margin: auto 0; +} + +@media (max-width: 991px) { + .main-content { + max-width: 100%; + margin-top: 40px; + } +} + +.payment-section { + display: flex; + gap: 20px; +} + +@media (max-width: 991px) { + .payment-section { + flex-direction: column; + align-items: stretch; + gap: 0px; + } +} + +.payment-card { + display: flex; + flex-direction: column; + line-height: normal; + width: 50%; +} + +@media (max-width: 991px) { + .payment-card { + width: 100%; + } +} + +.earning-card { + align-items: start; + border-radius: 4.444px; + border: 1px solid rgba(243, 244, 246, 1); + background-color: #6fffe9; + display: flex; + flex-direction: column; + width: 100%; + padding: 18px 80px 31px 14px; +} + +@media (max-width: 991px) { + .earning-card { + margin-top: 17px; + padding-right: 20px; + } +} + +.earning-title { + color: var(--text-color-80-opacity, #0b132b); + letter-spacing: 0.14px; + font: 14px Outfit, sans-serif; +} + +.earning-amount { + color: var(--success-green-100, #0b132b); + margin-top: 11px; + font: 500 20px Outfit, sans-serif; +} + +.earning-date { + color: var(--Inactive-State-Color, #0b132b); + letter-spacing: 0.09px; + margin-top: 11px; + font: 9px Outfit, sans-serif; +} + +.pending-card { + align-items: start; + border-radius: 4.444px; + border: 1px solid rgba(243, 244, 246, 1); + background-color: #0b132b; + display: flex; + flex-direction: column; + width: 100%; + padding: 18px 80px 31px 15px; +} + +@media (max-width: 991px) { + .pending-card { + margin-top: 17px; + padding-right: 20px; + } +} + +.pending-title { + color: var(--text-color-80-opacity, #6fffe9); + letter-spacing: 0.14px; + font: 14px Outfit, sans-serif; +} + +.pending-amount { + color: var(--success-green-100, #2662f0); + margin-top: 11px; + font: 500 20px Outfit, sans-serif; +} + +.pending-date { + color: var(--Inactive-State-Color, #6fffe9); + letter-spacing: 0.09px; + margin-top: 11px; + font: 9px Outfit, sans-serif; +} + +.payment-title { + color: var(--Inactive-State-Color, rgba(73, 69, 79, 0.8)); + margin-top: 33px; + font: 500 20px Outfit, sans-serif; +} + +@media (max-width: 991px) { + .payment-title { + max-width: 100%; + } +} +.entry-accept { + display: inline-flex; + justify-content: center; + align-items: center; + padding: 15px 26px; + flex: 1; + font-family: Poppins, sans-serif; + border-radius: 50px; + color: #15647a; + background-color: #51dbd3; + height: 30px; + width: 80px; +} + +.entry-decline { + display: inline-flex; + justify-content: center; + align-items: center; + padding: 15px 26px; + flex: 1; + font-family: Poppins, sans-serif; + border-radius: 50px; + color: #cc2a2a; + background-color: #f7b8c5; + height: 30px; + width: 80px; +} + +.tab-container { + display: flex; + margin-top: 24px; + width: 595px; + gap: 17px; + font-size: 15px; + color: var(--text-color-80-opacity, rgba(34, 34, 34, 0.9)); + font-weight: 500; + letter-spacing: 0.15px; + white-space: nowrap; +} + +@media (max-width: 991px) { + .tab-container { + flex-wrap: wrap; + white-space: initial; + } +} + +.tab { + border-radius: 26.667px; + border: 1px solid rgba(65, 59, 137, 1); + background-color: var(--Secondary---White, #fff); + justify-content: center; + padding: 15px; + font-variant-numeric: lining-nums proportional-nums; + font-feature-settings: "dlig" on; + font-family: Outfit, sans-serif; + display: inline-block; + height: auto; + white-space: nowrap; +} + +.tab { + padding: 10px 15px; +} + +@media (max-width: 991px) { + .tab { + white-space: initial; + padding: 0 20px; + } +} + +.tab-small { + border-radius: 26.667px; + border: 1px solid rgba(235, 235, 238, 1); + background-color: var(--Secondary---White, #fff); + justify-content: center; + padding: 17px 23px; + font-variant-numeric: lining-nums proportional-nums; + font-feature-settings: "dlig" on; + font-family: Outfit, sans-serif; +} + +@media (max-width: 991px) { + .tab-small { + white-space: initial; + padding: 0 20px; + } +} + +.tab-medium { + border-radius: 26.667px; + border: 1px solid rgba(235, 235, 238, 1); + background-color: var(--Secondary---White, #fff); + justify-content: center; + padding: 17px 28px; + font-variant-numeric: lining-nums proportional-nums; + font-feature-settings: "dlig" on; + font-family: Outfit, sans-serif; + height: 50px; +} + +@media (max-width: 991px) { + .tab-medium { + white-space: initial; + padding: 0 20px; + } +} + +.tab-large { + border-radius: 26.667px; + border: 1px solid rgba(235, 235, 238, 1); + background-color: var(--Secondary---White, #fff); + justify-content: center; + padding: 17px 26px; + font-variant-numeric: lining-nums proportional-nums; + font-feature-settings: "dlig" on; + font-family: Outfit, sans-serif; +} + +@media (max-width: 991px) { + .tab-large { + white-space: initial; + padding: 0 20px; + } +} + +.payment-history { + border-radius: 10.667px; + border: 1px solid rgba(235, 235, 238, 1); + background-color: var(--Secondary---White, #fff); + display: flex; + flex-direction: column; + font-size: 14px; + font-weight: 400; + padding: 0 28px 33px 0; + margin-top: 16px; + margin-bottom: 10px; + width: 1150px; +} + +@media (max-width: 991px) { + .payment-history { + max-width: 100%; + padding-right: 20px; + } +} + +.history-header, +.history-body { + display: grid; + grid-template-columns: repeat(6, 1fr); + gap: 20px; + align-items: center; + border-bottom: 1px solid rgba(206, 206, 206, 1); + padding: 0 20px; + box-sizing: border-box; +} + +.history-header { + letter-spacing: 0.14px; + padding-right: 68px; + width: 1150px; +} + +@media (max-width: 991px) { + .history-header { + flex-wrap: wrap; + padding-right: 20px; + } +} + +.history-column, +.history-entry { + padding: 20px 0; + text-align: center; + font-family: Outfit, sans-serif; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +.history-column { + font-variant-numeric: lining-nums proportional-nums; + font-feature-settings: "dlig" on; + color: var(--Inactive-State-Color, rgba(73, 69, 79, 0.8)); +} + +.history-body { + color: rgba(73, 69, 79, 0.9); + white-space: nowrap; + letter-spacing: 0.14px; +} + +@media (max-width: 991px) { + .history-body { + white-space: initial; + grid-template-columns: 1fr; + text-align: left; + } +} + +.status-success { + color: green; +} + +.status-rejected { + color: red; +} + +.status-pending { + color: orange; +} + +.entry-detail, +.entry-accept, +.entry-decline { + background-color: #f0f0f0; + border: none; + padding: 5px 10px; + cursor: pointer; +} + +.entry-accept { + background-color: #51dbd3; + color: green; +} + +.entry-decline { + background-color: #f7b8c5; + color: red; +} + +.history-entry-actions { + display: flex; + justify-content: center; + gap: 10px; +} + +.history-entry { + flex: 1; + white-space: nowrap; + word-wrap: break-word; + letter-spacing: 0.14px; + padding: 20px 21px; +} + +@media (max-width: 991px) { + .history-entry { + white-space: initial; + padding: 0 20px; + } +} + +.entry-detail { + display: flex; + justify-content: center; + align-items: center; + padding: 15px 26px; + flex: 1; + margin-top: 15px; + font-family: Poppins, sans-serif; + border-radius: 50px; + color: white; + background-color: #0978f2; + height: 30px; + width: 150px; +} + +@media (max-width: 991px) { + .entry-detail { + white-space: initial; + padding: 0 20px; + } +} + +.status-success { + color: #0ead69; +} + +.status-pending { + color: #0978f2; +} + +.status-rejected { + color: rgba(193, 11, 14, 0.8); +} + +.status-container { + display: flex; + flex-direction: column; + align-items: center; + font-size: 5px; + color: #fff; + font-weight: 500; + white-space: nowrap; + line-height: 540%; +} + +@media (max-width: 991px) { + .status-container { + white-space: initial; + } +} + +.rows-center { + display: flex; + align-items: center; + gap: 4px; +} + +.rows-center img { + border-radius: 3.368px; +} +.change-photo-span { + font-size: 12px; /* Adjust the font size as needed */ +} +.card { + width: 100%; +} + +.card-body { + width: 100%; +} +.card-full-width { + width: 100%; +} + +.chart-container { + width: 200px; + height: 200px; + margin: auto; + } diff --git a/aigo/public/asset/css/doctor-recomendation.css b/aigo/public/asset/css/doctor-recomendation.css new file mode 100644 index 0000000..9d245cb --- /dev/null +++ b/aigo/public/asset/css/doctor-recomendation.css @@ -0,0 +1,42 @@ +body { + font-family: 'Poppins', sans-serif; + margin: 0; + padding: 0; + } + + .container { + padding-top: 20px; + display: flex; + justify-content: center; + } + + .content { + padding-left: 250px; + flex: 1; + max-width: 100%; + } + + .patient-list { + margin: 20px; + width: 100%; + } + + .list-group-item { + display: flex; + justify-content: space-between; + align-items: center; + } + + .btn-recommendation { + margin-right: 10px; + } + + .modal-title { + display: flex; + align-items: center; + } + + .modal-title span { + margin-right: 10px; + } + \ No newline at end of file diff --git a/aigo/public/asset/css/priv-policy.css b/aigo/public/asset/css/priv-policy.css new file mode 100644 index 0000000..39fa354 --- /dev/null +++ b/aigo/public/asset/css/priv-policy.css @@ -0,0 +1,4 @@ +.content{ + margin-top: 20px; + margin-left: 100px; +} \ No newline at end of file diff --git a/aigo/public/asset/css/styleguide.css b/aigo/public/asset/css/styleguide.css new file mode 100644 index 0000000..e69de29 diff --git a/aigo/public/asset/email.png b/aigo/public/asset/email.png new file mode 100644 index 0000000..8e64b34 Binary files /dev/null and b/aigo/public/asset/email.png differ diff --git a/aigo/public/asset/health care.png b/aigo/public/asset/health care.png new file mode 100644 index 0000000..1ffde09 Binary files /dev/null and b/aigo/public/asset/health care.png differ diff --git a/aigo/public/asset/main.css b/aigo/public/asset/main.css new file mode 100644 index 0000000..7ced978 --- /dev/null +++ b/aigo/public/asset/main.css @@ -0,0 +1,231 @@ +html, +body { + margin: 0; + padding: 0; + background-color: #f6f7ff !important; +} + +.sidebar { + height: 100%; + width: 250px; + background-color: #0b132b; + color: #8296c5; + float: left; + position: fixed; + z-index: 1; /* Stay on top */ + top: 0; /* Stay at the top */ +} + +.sidebar a { + color: #6fffe9; +} + +.sidebar a:hover { + color: white; +} + +.sidebar a:focus { + background-color: #1f1f1e; + border-radius: 12px; + padding: 10px; + color: #6fffe9; + font-weight: bold; +} + +.header-logo { + display: flex; + align-items: center; + justify-content: center; + height: 70px; + border-bottom: 1px solid #403d39; +} + +.dashboard { + display: flex; + align-items: center; + justify-content: center; +} +.btn-dashboard { + background-color: #6fffe9; + border: none; + flex-shrink: 0; + color: #0b132b; + border-radius: 8px; + padding: 8px; + padding-left: 60px; + padding-right: 60px; + margin-top: 20px; +} + +.btn-dashboard:hover { + background-color: #f6f7ff; + color: #252422; +} + +.btn-primary { + display: flex; + width: 150px; + height: 45px; + padding-top: 13px; + padding-bottom: 13px; + padding-left: 42px; + padding-right: 43px; + background: #384c7f !important; + border-radius: 50px !important; + justify-content: center; + align-items: center; + + color: white; +} + +.btn-primary:hover { + background: #546695 !important; +} + +.btn-logout { + display: flex; + width: 200px; + height: 40px; + justify-content: center; + align-items: center; + background: #cc2a2a; + border-radius: 6px; + color: #f6f7ff; + border: none; +} + +.btn-logout:hover { + background-color: white; + color: #252422; +} + +.logout { + display: flex; + justify-content: center; + text-decoration: none; +} + +.menu { + margin-top: 30px; + padding-left: 0.49px; + justify-content: flex-start; + align-items: center; + gap: 12.36px; + display: inline-flex; +} + +.menu aside { + width: 20px; + height: 1px; + border: 1px #6fffe9 solid; +} + +.menu h6 { + color: #6fffe9; + font-weight: 400; +} + +.submenu { + display: inline-flex; + justify-content: flex-start; + align-items: center; +} + +.submenu a { + text-decoration: none; + color: #8296c5; + margin-left: 10px; +} + +.submenu:hover { + color: #6fffe9; +} + +.form-label { + color: #1c2541; +} + +.content { + padding-left: 200px; /* Add some padding to the content area */ +} + +::placeholder { + color: #8296c5 !important; +} + +.user-table { + padding-left: 250px; +} + +.container { + display: flex; + justify-content: space-between; +} + +.header { + display: flex; + flex-direction: column; +} + +.event-form { + background-color: white; + box-shadow: 0px 8px 30px 0px rgba(37, 36, 34, 0.07); + border-radius: 20px; +} + +.material-symbols-outlined { + font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24; + text-decoration: none; +} + +#delete-icon { + color: red; +} + +@media only screen and (max-width: 1200px) { + body { + overflow-x: hidden; + } + + .dashboard { + display: flex; + align-items: center; + justify-content: center; + } + + .sidebar { + min-width: 250px; + } +} + +@media only screen and (max-width: 800px) { + body { + overflow-x: hidden; + } + + .dashboard { + display: flex; + align-items: center; + justify-content: center; + } + + .btn-dashboard { + width: 100px; + height: auto; + padding-left: 10px; + padding-right: 10px; + margin-top: 20px; + } + + .sidebar { + min-width: 150px; + overflow-y: visible; + } + + .logout { + position: fixed; + height: 100%; + width: 100%; + text-align: center; + } +} diff --git a/aigo/public/asset/page1.jpg b/aigo/public/asset/page1.jpg new file mode 100644 index 0000000..66bed8f Binary files /dev/null and b/aigo/public/asset/page1.jpg differ diff --git a/aigo/public/asset/page2.jpg b/aigo/public/asset/page2.jpg new file mode 100644 index 0000000..41a9500 Binary files /dev/null and b/aigo/public/asset/page2.jpg differ diff --git a/aigo/public/asset/page3.jpg b/aigo/public/asset/page3.jpg new file mode 100644 index 0000000..3b4e33b Binary files /dev/null and b/aigo/public/asset/page3.jpg differ diff --git a/aigo/public/asset/page4.png b/aigo/public/asset/page4.png new file mode 100644 index 0000000..519d05b Binary files /dev/null and b/aigo/public/asset/page4.png differ diff --git a/aigo/public/asset/page5.png b/aigo/public/asset/page5.png new file mode 100644 index 0000000..e4708ad Binary files /dev/null and b/aigo/public/asset/page5.png differ diff --git a/aigo/public/asset/phone.png b/aigo/public/asset/phone.png new file mode 100644 index 0000000..84b485c Binary files /dev/null and b/aigo/public/asset/phone.png differ diff --git a/aigo/public/asset/png/distance.png b/aigo/public/asset/png/distance.png new file mode 100644 index 0000000..f84b37b Binary files /dev/null and b/aigo/public/asset/png/distance.png differ diff --git a/aigo/public/asset/png/duration.png b/aigo/public/asset/png/duration.png new file mode 100644 index 0000000..feae6c1 Binary files /dev/null and b/aigo/public/asset/png/duration.png differ diff --git a/aigo/public/asset/png/fire.png b/aigo/public/asset/png/fire.png new file mode 100644 index 0000000..2fd60ac Binary files /dev/null and b/aigo/public/asset/png/fire.png differ diff --git a/aigo/public/asset/png/logo.svg b/aigo/public/asset/png/logo.svg new file mode 100644 index 0000000..254c6e5 --- /dev/null +++ b/aigo/public/asset/png/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/aigo/public/asset/png/moon.png b/aigo/public/asset/png/moon.png new file mode 100644 index 0000000..c0604b2 Binary files /dev/null and b/aigo/public/asset/png/moon.png differ diff --git a/aigo/public/asset/png/thumbnail.png b/aigo/public/asset/png/thumbnail.png new file mode 100644 index 0000000..36c5dc0 Binary files /dev/null and b/aigo/public/asset/png/thumbnail.png differ diff --git a/aigo/public/asset/png/web.png b/aigo/public/asset/png/web.png new file mode 100644 index 0000000..b37b4d3 Binary files /dev/null and b/aigo/public/asset/png/web.png differ diff --git a/aigo/public/asset/svg/Lineshadow.svg b/aigo/public/asset/svg/Lineshadow.svg new file mode 100644 index 0000000..3f41140 --- /dev/null +++ b/aigo/public/asset/svg/Lineshadow.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/aigo/public/asset/svg/SPM.svg b/aigo/public/asset/svg/SPM.svg new file mode 100644 index 0000000..46e5ca9 --- /dev/null +++ b/aigo/public/asset/svg/SPM.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/aigo/public/asset/svg/approve-icon.svg b/aigo/public/asset/svg/approve-icon.svg new file mode 100644 index 0000000..9dada9c --- /dev/null +++ b/aigo/public/asset/svg/approve-icon.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/aigo/public/asset/svg/dashline.svg b/aigo/public/asset/svg/dashline.svg new file mode 100644 index 0000000..febf626 --- /dev/null +++ b/aigo/public/asset/svg/dashline.svg @@ -0,0 +1,3 @@ + + + diff --git a/aigo/public/asset/svg/decline-icon.svg b/aigo/public/asset/svg/decline-icon.svg new file mode 100644 index 0000000..18d0a6a --- /dev/null +++ b/aigo/public/asset/svg/decline-icon.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/aigo/public/asset/svg/edit.svg b/aigo/public/asset/svg/edit.svg new file mode 100644 index 0000000..57b5ae9 --- /dev/null +++ b/aigo/public/asset/svg/edit.svg @@ -0,0 +1,3 @@ + + + diff --git a/aigo/public/asset/svg/flame.svg b/aigo/public/asset/svg/flame.svg new file mode 100644 index 0000000..f027d00 --- /dev/null +++ b/aigo/public/asset/svg/flame.svg @@ -0,0 +1,3 @@ + + + diff --git a/aigo/public/asset/svg/foot.svg b/aigo/public/asset/svg/foot.svg new file mode 100644 index 0000000..b760465 --- /dev/null +++ b/aigo/public/asset/svg/foot.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/aigo/public/asset/svg/line.svg b/aigo/public/asset/svg/line.svg new file mode 100644 index 0000000..763be20 --- /dev/null +++ b/aigo/public/asset/svg/line.svg @@ -0,0 +1,3 @@ + + + diff --git a/aigo/public/asset/svg/location.svg b/aigo/public/asset/svg/location.svg new file mode 100644 index 0000000..008b52f --- /dev/null +++ b/aigo/public/asset/svg/location.svg @@ -0,0 +1,3 @@ + + + diff --git a/aigo/public/asset/svg/logo-white.svg b/aigo/public/asset/svg/logo-white.svg new file mode 100644 index 0000000..d7455c8 --- /dev/null +++ b/aigo/public/asset/svg/logo-white.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/aigo/public/asset/svg/logo.svg b/aigo/public/asset/svg/logo.svg new file mode 100644 index 0000000..afcc343 --- /dev/null +++ b/aigo/public/asset/svg/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/aigo/public/asset/svg/moon.svg b/aigo/public/asset/svg/moon.svg new file mode 100644 index 0000000..a76f586 --- /dev/null +++ b/aigo/public/asset/svg/moon.svg @@ -0,0 +1,3 @@ + + + diff --git a/aigo/public/asset/svg/next-arrow.svg b/aigo/public/asset/svg/next-arrow.svg new file mode 100644 index 0000000..e90b79c --- /dev/null +++ b/aigo/public/asset/svg/next-arrow.svg @@ -0,0 +1,3 @@ + + + diff --git a/aigo/public/asset/svg/sched.svg b/aigo/public/asset/svg/sched.svg new file mode 100644 index 0000000..f83fce4 --- /dev/null +++ b/aigo/public/asset/svg/sched.svg @@ -0,0 +1,3 @@ + + + diff --git a/aigo/public/asset/svg/shoes.svg b/aigo/public/asset/svg/shoes.svg new file mode 100644 index 0000000..5af713b --- /dev/null +++ b/aigo/public/asset/svg/shoes.svg @@ -0,0 +1,3 @@ + + + diff --git a/aigo/public/asset/svg/time.svg b/aigo/public/asset/svg/time.svg new file mode 100644 index 0000000..20085aa --- /dev/null +++ b/aigo/public/asset/svg/time.svg @@ -0,0 +1,3 @@ + + + diff --git a/aigo/public/css/chatify/dark.mode.css b/aigo/public/css/chatify/dark.mode.css new file mode 100644 index 0000000..67f4483 --- /dev/null +++ b/aigo/public/css/chatify/dark.mode.css @@ -0,0 +1,158 @@ +/*app scroll*/ +.app-scroll::-webkit-scrollbar-thumb, +.app-scroll-thin::-webkit-scrollbar-thumb { + background: var(--dark-scrollbar-thumb-color); +} +.app-scroll-thin::-webkit-scrollbar { + background: var(--dark-secondary-bg-color); +} +.app-scroll::-webkit-scrollbar:hover, +.app-scroll-thin::-webkit-scrollbar:hover { + background: var(--dark-secondary-bg-color); +} +.messenger { + background: var(--dark-primary-bg-color); +} +.messenger-search[type="text"] { + background: var(--dark-secondary-bg-color); + color: #fff; +} +.messenger-search[type="text"]::placeholder { + color: #fff; +} +.messenger-listView { + background: var(--dark-primary-bg-color); + border: 1px solid var(--dark-border-color); +} +.messenger-listView-tabs { + border-bottom: 1px solid var(--dark-border-color); +} +.messenger-listView-tabs a:hover, +.messenger-listView-tabs a:focus { + background-color: var(--dark-secondary-bg-color); +} +.messenger-favorites div.avatar { + border: 2px solid var(--dark-primary-bg-color); +} +.messenger-list-item:hover { + background: var(--dark-secondary-bg-color); +} +.messenger-messagingView { + border-top: 1px solid var(--dark-secondary-bg-color); + border-bottom: 1px solid var(--dark-secondary-bg-color); + background: var(--dark-messagingView-bg-color); +} +.m-header-messaging { + background: var(--dark-primary-bg-color); +} +.messenger-infoView { + background: var(--dark-primary-bg-color); + border: 1px solid var(--dark-border-color); +} +.messenger-infoView > p { + color: #fff; +} +.divider { + border-top: 1px solid var(--dark-border-color); +} +.messenger-sendCard { + background: var(--dark-primary-bg-color); + border-top: 1px solid var(--dark-border-color); +} +.attachment-preview > p { + color: #fff; +} +.m-send { + color: #fff; +} +.m-send::placeholder { + color: #fff; +} +.message-card .message { + background: var(--dark-message-card-color); + color: #fff; +} +.m-li-divider { + border-bottom: 1px solid var(--dark-border-color); +} +.m-header a, +.m-header a:hover, +.m-header a:focus { + text-decoration: none; + color: #fff; +} +.messenger-list-item td p { + color: #fff; +} +.activeStatus { + border: 2px solid var(--dark-border-color); +} +.messenger-list-item:hover .activeStatus { + border-color: var(--dark-secondary-bg-color); +} +.messenger-favorites > div p { + color: #ffffff; +} +.avatar { + background-color: var(--dark-secondary-bg-color); + border-color: var(--dark-border-color); +} +.messenger-sendCard svg { + color: var(--dark-send-input-icons-color); +} +.messenger-title { + color: #dbdbdb; +} +.messenger-title > span { + background-color: var(--dark-primary-bg-color); +} +.messenger-title::before { + background-color: var(--dark-border-color); +} +.message-hint span { + background: var(--dark-message-hint-bg-color); + color: var(--dark-message-hint-color); +} +.messenger-infoView > nav > p { + color: #fff; +} +/* +*********************************************** +* Placeholder loading +*********************************************** +*/ +.loadingPlaceholder-body div, +.loadingPlaceholder-header tr td div { + background: var(--dark-secondary-bg-color); + background-image: -webkit-linear-gradient( + left, + var(--dark-secondary-bg-color) 0%, + var(--dark-secondary-bg-color) 20%, + var(--dark-secondary-bg-color) 40%, + var(--dark-secondary-bg-color) 100% + ); +} + +/* +*********************************************** +* App Modal +*********************************************** +*/ + +.app-modal-card { + background: var(--dark-modal-bg-color); +} +.app-modal-header { + color: #fff; +} +.app-modal-body { + color: #fff; +} + +.messages .message-time { + color: #fff; +} + +.message-card .actions .delete-btn { + color: #fff; +} diff --git a/aigo/public/css/chatify/light.mode.css b/aigo/public/css/chatify/light.mode.css new file mode 100644 index 0000000..894dc92 --- /dev/null +++ b/aigo/public/css/chatify/light.mode.css @@ -0,0 +1,166 @@ +/*app scroll*/ +.app-scroll::-webkit-scrollbar-thumb, +.app-scroll-thin::-webkit-scrollbar-thumb { + background: var(--scrollbar-thumb-color); +} +.app-scroll-thin::-webkit-scrollbar { + background: var(--secondary-bg-color); +} +.app-scroll::-webkit-scrollbar:hover, +.app-scroll-thin::-webkit-scrollbar:hover { + background: var(--secondary-bg-color); +} + +.messenger { + background: var(--primary-bg-color); +} +.messenger-search[type="text"] { + background: var(--secondary-bg-color); + color: #333; +} +.messenger-listView { + background: var(--primary-bg-color); + border: 1px solid var(--border-color); +} +.messenger-listView-tabs { + border-bottom: 1px solid var(--border-color); +} +.messenger-listView-tabs a:hover, +.messenger-listView-tabs a:focus { + background-color: var(--secondary-bg-color); +} +.messenger-favorites div.avatar { + border: 2px solid var(--primary-bg-color); +} + +.messenger-list-item:hover { + background: var(--secondary-bg-color); +} +.messenger-messagingView { + border-top: 1px solid var(--secondary-bg-color); + border-bottom: 1px solid var(--secondary-bg-color); + background: var(--messagingView-bg-color); +} +.m-header-messaging { + background: var(--primary-bg-color); +} +.messenger-infoView { + background: var(--primary-bg-color); + border: 1px solid var(--border-color); +} +.messenger-infoView > p { + color: #000; +} +.divider { + border-top: 1px solid var(--border-color); +} +.messenger-sendCard { + background: var(--primary-bg-color); + border-top: 1px solid var(--border-color); +} +.attachment-preview > p { + color: #333; +} +.m-send { + color: #333; +} +.message-card .message { + background: var(--message-card-color); + color: #656b75; + box-shadow: 0px 6px 11px rgba(18, 67, 105, 0.03); +} +.m-li-divider { + border-bottom: 1px solid var(--border-color); +} +.m-header a, +.m-header a:hover, +.m-header a:focus { + text-decoration: none; + color: #202020; +} +.messenger-list-item td p { + color: #3c3c3c; +} +.messenger-list-item td span { + color: #929292; +} +.activeStatus { + border: 2px solid var(--primary-bg-color); +} +.messenger-list-item:hover .activeStatus { + border-color: var(--secondary-bg-color); +} +.messenger-favorites > div p { + color: #4a4a4a; +} + +.avatar { + background-color: var(--secondary-bg-color); + border-color: var(--border-color); +} +.messenger-sendCard svg { + color: var(--send-input-icons-color); +} +.messenger-title { + color: #797979; +} +.messenger-title > span { + background-color: var(--primary-bg-color); +} +.messenger-title::before { + background-color: var(--border-color); +} +.message-hint span { + background: var(--message-hint-bg-color); + color: var(--message-hint-color); +} +/* +*********************************************** +* Placeholder loading +*********************************************** +*/ +.loadingPlaceholder-body div, +.loadingPlaceholder-header tr td div { + background: var(--secondary-bg-color); + background-image: -webkit-linear-gradient( + left, + var(--secondary-bg-color) 0%, + var(--secondary-bg-color) 20%, + var(--secondary-bg-color) 40%, + var(--secondary-bg-color) 100% + ); +} +.messenger-infoView > nav > p { + color: #333; +} +/* +*********************************************** +* App Modal +*********************************************** +*/ + +.app-modal-card { + background: var(--modal-bg-color); +} +.app-modal-header { + color: #000; +} +.app-modal-body { + color: #000; +} + +/* +***************************************** +* Responsive Design +***************************************** +*/ +@media (max-width: 1060px) { + .messenger-infoView { + box-shadow: 0px 0px 20px rgba(18, 67, 105, 0.06); + } +} +@media (max-width: 980px) { + .messenger-listView { + box-shadow: 0px 0px 20px rgba(18, 67, 105, 0.06); + } +} diff --git a/aigo/public/css/chatify/style.css b/aigo/public/css/chatify/style.css new file mode 100644 index 0000000..457b878 --- /dev/null +++ b/aigo/public/css/chatify/style.css @@ -0,0 +1,1184 @@ +html, +body { + margin: 0; + padding: 0; + font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, + Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; +} + +:root { + /* + * -------------------------------------------------- + * NOTE: `--primary-color` variable set in + * `headLinks.blade.php` view file. + * -------------------------------------------------- + */ + + /* General variables */ + --icon-size: 20px; + --headers-padding: 1rem; + --listView-header-height: 110px; + + /* Light theme variables */ + --primary-bg-color: #fff; + --secondary-bg-color: #f7f7f7; + --border-color: #eee; + --messagingView-bg-color: #f6f7f9; + --scrollbar-thumb-color: #cfcfcf; + --modal-bg-color: #fff; + --send-input-icons-color: #4b4b4b; + --message-hint-bg-color: #ededed; + --message-hint-color: #4b4b4b; + --message-card-color: #fff; + + /* Dark theme variables */ + --dark-primary-bg-color: #121212; + --dark-secondary-bg-color: #202020; + --dark-border-color: #202020; + --dark-messagingView-bg-color: #1b1b1b; + --dark-scrollbar-thumb-color: #212121; + --dark-modal-bg-color: #1a1a1a; + --dark-send-input-icons-color: #c8c8c8; + --dark-message-hint-bg-color: #292929; + --dark-message-hint-color: #ffffff; + --dark-message-card-color: #292929; +} + +/* NProgress background */ +#nprogress .bar { + background: var(--primary-color) !important; +} +#nprogress .peg { + box-shadow: 0 0 10px var(--primary-color), 0 0 5px var(--primary-color) !important; +} +#nprogress .spinner-icon { + border-top-color: var(--primary-color) !important; + border-left-color: var(--primary-color) !important; +} + +/*internet connection*/ +.internet-connection { + display: none; + background: rgba(0, 0, 0, 0.76); + position: absolute; + bottom: calc( + -100% + (var(--headers-padding) + var(--headers-padding)) - 8px + ); /* 8px = 4px padding-top + 4px padding-bottom */ + left: 0; + right: 0; + text-align: center; + padding: 4px; + color: #fff; + z-index: 1; +} +.internet-connection span { + display: none; +} + +/*green background RGBA*/ +.successBG-rgba { + background: rgba(54, 180, 36, 0.76) !important; +} + +/* app scroll*/ +.app-scroll::-webkit-scrollbar { + width: 5px; + height: 5px; + border-radius: 4px; + background: transparent; + transition: all 0.3s ease; +} +.app-scroll-hidden::-webkit-scrollbar { + width: 0px; + height: 0px; +} +.app-scroll::-webkit-scrollbar-thumb, +.app-scroll-hidden::-webkit-scrollbar-thumb { + border-radius: 0px; +} +.messenger-headTitle { + margin: 0rem 0.7rem; +} +.messenger { + display: inline-flex; + width: 100%; + height: 100%; + font-family: sans-serif; +} +.messenger-listView { + display: flex; + flex-direction: column; + gap: 5px; + position: relative; + top: 0px; + left: 0px; + right: 0px; + z-index: 1; + background: transparent; + width: 45%; + min-width: 200px; + overflow: auto; +} +.messenger-listView .m-header { + height: var(--listView-header-height); +} +.messenger-listView .m-header > nav { + padding: var(--headers-padding); +} +.messenger-messagingView { + display: flex; + flex-direction: column; + gap: 5px; + overflow: hidden; + width: 100%; +} +.messenger-messagingView .m-header { + padding: var(--headers-padding); +} +.messenger-messagingView .m-body { + position: relative; + padding-top: 15px; + overflow-x: hidden; + overflow-y: auto; + height: 100%; +} +.m-header { + font-weight: 600; + background: transparent; +} +.m-header-right { + display: flex; + align-items: center; + gap: 1rem; + float: right; +} +.m-header-messaging { + position: relative; + background: #fff; + box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.06); +} +.m-header svg { + color: var(--primary-color); + font-size: var(--icon-size); + transition: transform 0.12s; +} +.m-header svg:active { + transform: scale(0.9); +} +.messenger-search[type="text"] { + margin: 0px 10px; + width: calc(100% - 20px); + border: none; + padding: 8px 10px; + border-radius: 6px; + outline: none; +} +.messenger-listView-tabs { + display: inline-flex; + width: 100%; + margin-top: 10px; + background-color: transparent; + box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.06); +} +.messenger-listView-tabs a { + display: flex; + align-items: center; + justify-content: center; + gap: 1rem; + width: 100%; + text-align: center; + padding: 10px; + text-decoration: none; + background-color: transparent; + transition: background 0.3s; +} +.messenger-listView-tabs a:hover, +.messenger-listView-tabs a:focus { + text-decoration: none; +} +.messenger-listView-tabs a, +.messenger-listView-tabs a:hover, +.messenger-listView-tabs a:focus { + color: var(--primary-color); +} +.active-tab { + border-bottom: 2px solid var(--primary-color); +} +.messenger-tab { + overflow: auto; + height: calc(100vh - var(--listView-header-height) - 2px); + display: none; + position: relative; +} +.add-to-favorite { + display: none; +} +.add-to-favorite svg { + color: rgba(180, 180, 180, 0.52) !important; +} +.favorite-added svg { + color: #ffc107 !important; +} +.favorite svg { + color: #ffc107 !important; +} +.show { + display: block; +} +.hide { + display: none; +} +.messenger-list-item { + margin: 0; + width: 100%; + cursor: pointer; + transition: background 0.1s; +} +.m-list-active span, +.m-list-active p { + color: #fff !important; +} + +.m-list-active, +.m-list-active:hover, +.m-list-active:focus { + background: var(--primary-color) !important; +} +.m-list-active b { + background: #fff !important; + color: var(--primary-color) !important; +} +.m-list-active .activeStatus { + border-color: var(--primary-color) !important; +} +.messenger-list-item td { + padding: 10px; +} +.messenger-list-item tr > td:first-child { + padding-right: 0; + width: 55px; +} +.messenger-list-item td p { + margin-bottom: 4px; + font-size: 14px; +} +.messenger-list-item td p span { + float: right; +} +.messenger-list-item td span { + color: #cacaca; + font-weight: 400; + font-size: 12px; +} +.messenger-list-item td b { + float: right; + color: #fff; + background: var(--primary-color); + padding: 0px 4px; + border-radius: 20px; + font-size: 13px; + width: auto; + height: auto; + text-align: center; +} +.avatar { + text-align: center; + border-radius: 100%; + border: 1px solid; + overflow: hidden; + background-image: url(""); + background-repeat: no-repeat; + background-size: cover; + background-position: center center; +} +.av-l { + width: 100px; + height: 100px; +} +.av-m { + width: 45px; + height: 45px; +} +.av-s { + width: 32px !important; + height: 32px !important; +} +.saved-messages.avatar { + background-color: transparent; + text-align: center; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; +} +.saved-messages.avatar > svg { + font-size: 22px; + color: var(--primary-color); +} +.messenger-list-item.m-list-active .saved-messages.avatar > svg { + color: #fff; +} +.messenger-list-item.m-list-active .saved-messages.avatar { + border-color: #ffffff81; +} +.messenger-favorites { + padding: 10px; + overflow: auto; + white-space: nowrap; +} +.messenger-favorites > div { + display: inline-block; + text-align: center; + transition: transform 0.3s; + cursor: pointer; +} +.messenger-favorites > div p { + font-size: 12px; + margin: 8px 0px; + margin-bottom: 0px; +} +.messenger-favorites div.avatar { + border: 2px solid #fff; + margin: 0px 4px; + box-shadow: 0px 0px 0px 2px var(--primary-color); +} +.messenger-favorites > div:active { + transform: scale(0.9); +} +.messenger-title { + position: relative; + margin: 0; + padding: 10px !important; + text-transform: capitalize; + font-size: 12px; + text-align: center; + z-index: 1; +} +.messenger-title > span { + position: relative; + padding: 0px 10px; + z-index: 1; +} +.messenger-title::before { + content: ""; + display: block; + width: 100%; + height: 1px; + position: absolute; + bottom: 50%; + left: 0; + right: 0; + z-index: 0; +} +.messenger-infoView { + display: block; + overflow: auto; + width: 40%; + min-width: 200px; +} +.messenger-infoView nav { + display: flex; + align-items: center; + justify-content: space-between; + padding: var(--headers-padding); +} +.messenger-infoView nav a { + color: var(--primary-color); + text-decoration: none; + font-size: var(--icon-size); +} +.messenger-infoView > div { + margin: auto; + margin-top: 8%; + text-align: center; +} +.messenger-infoView > p { + text-align: center; + margin: auto; + margin-top: 15px; + font-size: 18px; + font-weight: 600; +} +.messenger-infoView-btns a { + display: block; + text-decoration: none !important; + padding: 5px 10px; + margin: 0% 10%; + border-radius: 3px; + font-size: 14px; + transition: background 0.3s; +} +.messenger-infoView-btns a.default { + color: var(--primary-color); +} +.messenger-infoView-btns a.default:hover { + background: #f0f6ff; +} +.messenger-infoView-btns a.danger { + color: #ff5555; +} +.messenger-infoView-btns a.danger:hover { + background: rgba(255, 85, 85, 0.11); +} +.shared-photo { + border-radius: 3px; + background: #f7f7f7; + height: 120px; + overflow: hidden; + display: inline-block; + margin: 0px 1px; + width: calc(50% - 12px); + background-position: center center; + background-size: cover; + background-repeat: no-repeat; + cursor: pointer; +} +.shared-photo img { + width: auto; + height: 100%; +} +.messenger-infoView-shared { + display: none; +} +.messenger-infoView-shared .messenger-title { + padding-bottom: 10px; +} +.messenger-infoView-btns .delete-conversation { + display: none; +} +.message-card { + display: flex; + flex-direction: row; + gap: 0.5rem; + align-items: center; + width: 100%; + margin: 2px 15px; + width: calc(100% - 30px); /* 30px = 15px padding left + right */ + justify-content: flex-start; +} +.message-card .message-card-content { + display: flex; + flex-direction: column; + gap: 4px; + max-width: 60%; +} +.message-card.mc-sender .message-card-content { + align-items: end; +} +.message-card .image-wrapper .image-file { + position: relative; +} +.message-card .image-wrapper .image-file > div { + display: none; + position: absolute; + bottom: 0; + right: 0; + left: 0; + background: linear-gradient( + 0deg, + rgba(0, 0, 0, 1) 0%, + rgba(0, 0, 0, 0.5) 100% + ); + padding: 0.5rem; + font-size: 11px; + color: #fff; +} +.message-card-content:hover .image-wrapper .image-file > div { + display: block; +} +.message-card div { + margin-top: 0px; +} +.message-card .message { + margin: 0; + padding: 6px 15px; + padding-bottom: 5px; + width: fit-content; + width: -webkit-fit-content; + border-radius: 20px; + word-break: break-word; + display: table-cell; +} +.message-card .message-time { + display: inline-block; + font-size: 11px; +} +.message-card .message .message-time:before { + content: ""; + background: transparent; + width: 4px; + height: 4px; + display: inline-block; +} +.message-card.mc-sender { + justify-content: flex-end; +} +.message-card.mc-sender .message { + direction: ltr; + color: #fff !important; + background: var(--primary-color) !important; +} +.message-card.mc-sender .message .message-time { + color: rgba(255, 255, 255, 0.67); +} + +.mc-error .message { + background: rgba(255, 0, 0, 0.27) !important; + color: #ff0000 !important; +} +.mc-error .message .message-time { + color: #ff0000 !important; +} +.messenger-sendCard .send-button svg { + color: var(--primary-color); +} +.listView-x, +.show-listView { + display: none; +} +.messenger-sendCard { + display: none; + margin: 10px; + margin-bottom: 1rem; + border-radius: 8px; + padding-left: 8px; + padding-right: 8px; +} +.messenger-sendCard form { + width: 100%; + display: flex; + align-items: center; + justify-content: center; + margin: 0; +} +.messenger-sendCard input[type="file"] { + display: none; +} +.messenger-sendCard button, +.messenger-sendCard button:active, +.messenger-sendCard button:focus { + border: none; + outline: none; + background: none; + padding: 0; + margin: 0; +} +.messenger-sendCard label { + margin: 0; +} +.messenger-sendCard svg { + margin: 9px 10px; + color: #bdcbd6; + cursor: pointer; + font-size: 21px; + transition: transform 0.15s; +} + +.messenger-sendCard svg:active { + transform: scale(0.9); +} +.m-send { + font-size: 14px; + width: 100%; + border: none; + padding: 10px; + outline: none; + resize: none; + background: transparent; + font-family: sans-serif; + height: 44px; + max-height: 200px; +} +.attachment-preview { + position: relative; + padding: 10px; +} + +.attachment-preview > p { + margin: 0; + font-size: 12px; + padding: 0px; + padding-top: 10px; +} +.attachment-preview > p > svg { + font-size: 16px; + margin: 0; + margin-bottom: -1px; + color: #737373; +} +.attachment-preview svg:active { + transform: none; +} +.message-card .image-file, +.attachment-preview .image-file { + cursor: pointer; + width: 140px; + height: 70px; + border-radius: 6px; + width: 260px; + height: 170px; + overflow: hidden; + background-color: #f7f7f7; + background-size: cover; + background-repeat: no-repeat; + background-position: center center; +} +.attachment-preview > svg:first-child { + position: absolute; + background: rgba(0, 0, 0, 0.33); + width: 20px; + height: 20px; + padding: 3px; + border-radius: 100%; + font-size: 16px; + margin: 0; + top: 10px; + color: #fff; +} +#message-form > button { + height: 40px; +} +.file-download { + font-size: 12px; + display: block; + color: #fff; + text-decoration: none; + font-weight: 600; + border: 1px solid rgba(0, 0, 0, 0.08); + background: rgba(0, 0, 0, 0.03); + padding: 2px 8px; + margin-top: 10px; + border-radius: 20px; + transition: transform 0.3s, background 0.3s; +} +.file-download:hover, +.file-download:focus { + color: #fff; + text-decoration: none; + background: rgba(0, 0, 0, 0.08); +} +.file-download:active { + transform: scale(0.95); +} +.typing-indicator { + display: none; +} +.messages { + padding: 5px 0px; + display: flex; + flex-direction: column; + gap: 4px; +} +.message-hint { + margin: 0; + text-align: center; +} +.center-el { + position: absolute; + left: 50%; + top: 50%; + transform: translate(-50%, -50%); +} +.message-hint span { + padding: 3px 10px; + border-radius: 20px; + display: inline-block; +} +.upload-avatar-details { + font-size: 14px; + color: #949ba5; + display: none; +} +.upload-avatar-preview { + position: relative; + border: 1px solid #e0e0e0; + margin: 20px auto; +} +.upload-avatar-loading { + position: absolute; + top: calc(50% - 21px); + margin: 0; + left: calc(50% - 20px); +} +.divider { + margin: 15px; +} +.update-messengerColor { + margin: 1rem 0rem; +} +.update-messengerColor .color-btn { + width: 30px; + height: 30px; + border-radius: 20px; + display: inline-block; + cursor: pointer; +} +.m-color-active { + border: 3px solid rgba(255, 255, 255, 0.5); +} +.update-messengerColor .color-btn { + transition: transform 0.15s, border 0.15s; +} +.update-messengerColor .color-btn:active { + transform: scale(0.9); +} +.dark-mode-switch { + margin: 0px 5px; + cursor: pointer; + color: var(--primary-color); +} +.activeStatus { + width: 12px; + height: 12px; + background: #4caf50; + border-radius: 20px; + position: absolute; + bottom: 12%; + right: 6%; + transition: border 0.1s; +} +.lastMessageIndicator { + color: var(--primary-color) !important; +} + +/* +*********************************************** +* App Buttons +*********************************************** +*/ +.app-btn { + cursor: pointer; + border: none; + padding: 3px 15px; + border-radius: 20px; + margin: 1px; + font-size: 14px; + display: inline-block; + outline: none; + text-decoration: none; + transition: all 0.3s; + color: rgb(33, 128, 243); +} +.app-btn:hover, +.app-btn:focus { + color: rgb(33, 128, 243); + outline: none; + text-decoration: none; +} +.app-btn:active { + transform: scale(0.9); +} +.a-btn-light { + background: #f1f1f1; + color: #333; +} +.a-btn-light:hover, +.a-btn-light:focus { + color: #333; + background: #e4e4e4; +} +.a-btn-primary { + background: #0976d6; + color: #fff; +} +.a-btn-primary:hover, +.a-btn-primary:focus { + background: #0085ef; + color: #fff; +} +.a-btn-warning { + background: #ffc107; + color: #fff; +} +.a-btn-warning:hover, +.a-btn-warning:focus { + background: #ffa726; + color: #fff; +} +.a-btn-success { + background: #1e8a53 !important; + color: #fff; +} +.a-btn-success:hover, +.a-btn-success:focus { + background: #2ecc71 !important; + color: #fff; +} +.a-btn-danger { + background: #ea1909 !important; + color: #fff; +} +.a-btn-danger:hover, +.a-btn-danger:focus { + color: #fff; + background: #b70d00 !important; +} +.btn-disabled { + opacity: 0.5; +} +/* +*********************************************** +* App Modal +*********************************************** +*/ +.app-modal { + display: none; + position: fixed; + top: 0; + bottom: 0; + right: 0; + left: 0; + background: rgba(0, 0, 0, 0.53); + z-index: 50; +} +.app-modal-container { + position: absolute; + left: 50%; + top: 50%; + transform: translate(-50%, -50%); +} +.app-modal-card { + width: auto; + max-width: 400px; + margin: auto; + padding: 20px 40px; + border-radius: 5px; + text-align: center; + box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.27); + transform: scale(0); +} +.app-modal-header { + font-weight: 500; +} +.app-modal-footer { + margin-top: 10px; +} +.app-show-modal { + transform: scale(1); + animation: show_modal 0.15s; +} +/* modal animation */ +@keyframes show_modal { + from { + transform: scale(0); + } + to { + transform: scale(1); + } +} + +/* +*********************************************** +* Placeholder loading +*********************************************** +*/ +.loadingPlaceholder-wrapper { + position: relative; +} + +.loadingPlaceholder-body div, +.loadingPlaceholder-header tr td div { + background-repeat: no-repeat; + background-size: 800px 104px; + height: 104px; + position: relative; +} + +.loadingPlaceholder-body div { + position: absolute; + right: 0px; + left: 0px; + top: 0px; +} + +div.loadingPlaceholder-avatar { + height: 45px !important; + width: 45px; + margin: 10px; + border-radius: 60px; +} +div.loadingPlaceholder-name { + height: 15px !important; + margin-bottom: 10px; + width: 150px; + border-radius: 2px; +} + +div.loadingPlaceholder-date { + height: 10px !important; + width: 106px; + border-radius: 2px; +} +/* +*********************************************** +* Image modal box +*********************************************** +*/ +.imageModal { + display: none; + position: fixed; + z-index: 50; + padding-top: 100px; + left: 0; + top: 0; + width: 100%; + height: 100%; + overflow: auto; + background-color: rgb(0, 0, 0); + background-color: rgba(0, 0, 0, 0.9); +} +.imageModal-content { + margin: auto; + display: block; + height: calc(100vh - 150px); +} +.imageModal-content { + -webkit-animation-name: zoom; + -webkit-animation-duration: 0.15s; + animation-name: zoom; + animation-duration: 0.15s; +} + +@-webkit-keyframes zoom { + from { + -webkit-transform: scale(0); + } + to { + -webkit-transform: scale(1); + } +} +@keyframes zoom { + from { + transform: scale(0); + } + to { + transform: scale(1); + } +} + +.imageModal-close { + position: absolute; + top: 15px; + right: 35px; + color: #f1f1f1; + font-size: 40px; + font-weight: bold; + transition: 0.3s; +} + +.imageModal-close:hover, +.imageModal-close:focus { + color: #bbb; + text-decoration: none; + cursor: pointer; +} + +/* +*********************************************** +* Typing (jumping) dots animation and style +*********************************************** +*/ +.dot { + width: 8px; + height: 8px; + background: #bcc1c6; + display: inline-block; + border-radius: 50%; + right: 0px; + bottom: 0px; + position: relative; + animation: jump 1s infinite; +} + +.typing-dots .dot-1 { + -webkit-animation-delay: 100ms; + animation-delay: 100ms; +} + +.typing-dots .dot-2 { + -webkit-animation-delay: 200ms; + animation-delay: 200ms; +} + +.typing-dots .dot-3 { + -webkit-animation-delay: 300ms; + animation-delay: 300ms; +} + +@keyframes jump { + 0% { + bottom: 0px; + } + 20% { + bottom: 5px; + } + 40% { + bottom: 0px; + } +} +/* +***************************************** +* Responsive Design +***************************************** +*/ +@media (max-width: 1060px) { + .messenger-infoView { + position: fixed; + right: 0; + top: 0; + bottom: 0; + max-width: 334px; + } +} +@media (max-width: 980px) { + .messenger-listView.conversation-active { + display: none; + } + .messenger-listView { + position: fixed; + left: 0; + top: 0; + bottom: 0; + max-width: 334px; + } + .listView-x { + display: block; + } + .show-listView { + display: inline-block; + } +} +@media (max-width: 680px) { + .messenger-messagingView { + position: fixed; + top: 0; + left: 0; + height: 100%; + } + .messenger-infoView { + display: none; + width: 100%; + max-width: unset; + } + .messenger-listView { + width: 100%; + max-width: unset; + } + .listView-x { + display: none; + } + .app-modal-container { + transform: unset; + } + .app-modal-card { + max-width: unset; + position: fixed; + left: 0; + right: 0; + top: 0; + bottom: 0; + width: 100%; + height: 100%; + border-radius: 0px; + } +} +@media (min-width: 680px) { + .messenger-listView { + display: unset; + } +} +@media only screen and (max-width: 700px) { + .imageModal-content { + width: 100%; + } +} + +@media (max-width: 576px) { + .user-name { + max-width: 150px; + white-space: nowrap; + overflow: hidden !important; + text-overflow: ellipsis; + } + .chatify-md-block { + display: block; + } +} + +.chatify-d-flex { + display: flex !important; +} + +.chatify-d-none { + display: none !important; +} + +.chatify-d-hidden { + visibility: hidden !important; +} + +.chatify-justify-content-between { + justify-content: space-between !important; +} + +.chatify-align-items-center { + align-items: center !important; +} + +.chat-message-wrapper { + display: flex; + flex-direction: column; + align-items: end; + unicode-bidi: bidi-override; + direction: ltr; +} + +.pb-3 { + padding-bottom: 0.75rem; /* 12px */ +} + +.mb-2 { + margin-bottom: 0.5rem; /* 8px */ +} + +.messenger [type="text"]:focus { + outline: 1px solid var(--primary-color); + border-color: var(--primary-color) !important; + border-color: var(--primary-color); + box-shadow: 0 0 2px var(--primary-color); +} + +.messenger textarea:focus { + outline: none; + border: none; + box-shadow: none; +} +.message-card .actions { + opacity: 0.6; +} +.message-card .actions .delete-btn { + display: none; + cursor: pointer; + color: #333333; +} + +.message-card:hover .actions .delete-btn { + display: block; +} + +/* +***************************************** +* Emoji Button scroll-bars +***************************************** +*/ +.emoji-picker__emojis::-webkit-scrollbar { + width: 5px; + height: 5px; + border-radius: 4px; + background: transparent; + transition: all 0.3s ease; +} +.emoji-picker__emojis::-webkit-scrollbar-thumb { + border-radius: 4px; + background: transparent; +} diff --git a/aigo/public/favicon.ico b/aigo/public/favicon.ico new file mode 100644 index 0000000..e69de29 diff --git a/aigo/public/index.php b/aigo/public/index.php new file mode 100644 index 0000000..947d989 --- /dev/null +++ b/aigo/public/index.php @@ -0,0 +1,17 @@ +handleRequest(Request::capture()); diff --git a/aigo/public/js/chatify/autosize.js b/aigo/public/js/chatify/autosize.js new file mode 100644 index 0000000..59af1be --- /dev/null +++ b/aigo/public/js/chatify/autosize.js @@ -0,0 +1,288 @@ +/* +**************************************************************************** +* Text Area auto resize +**************************************************************************** +*/ +(function (global, factory) { + if (typeof define === "function" && define.amd) { + define(['module', 'exports'], factory); + } else if (typeof exports !== "undefined") { + factory(module, exports); + } else { + var mod = { + exports: {} + }; + factory(mod, mod.exports); + global.autosize = mod.exports; + } + })(this, function (module, exports) { + 'use strict'; + + var map = typeof Map === "function" ? new Map() : function () { + var keys = []; + var values = []; + + return { + has: function has(key) { + return keys.indexOf(key) > -1; + }, + get: function get(key) { + return values[keys.indexOf(key)]; + }, + set: function set(key, value) { + if (keys.indexOf(key) === -1) { + keys.push(key); + values.push(value); + } + }, + delete: function _delete(key) { + var index = keys.indexOf(key); + if (index > -1) { + keys.splice(index, 1); + values.splice(index, 1); + } + } + }; + }(); + + var createEvent = function createEvent(name) { + return new Event(name, { bubbles: true }); + }; + try { + new Event('test'); + } catch (e) { + // IE does not support `new Event()` + createEvent = function createEvent(name) { + var evt = document.createEvent('Event'); + evt.initEvent(name, true, false); + return evt; + }; + } + + function assign(ta) { + if (!ta || !ta.nodeName || ta.nodeName !== 'TEXTAREA' || map.has(ta)) return; + + var heightOffset = null; + var clientWidth = null; + var cachedHeight = null; + + function init() { + var style = window.getComputedStyle(ta, null); + + if (style.resize === 'vertical') { + ta.style.resize = 'none'; + } else if (style.resize === 'both') { + ta.style.resize = 'horizontal'; + } + + if (style.boxSizing === 'content-box') { + heightOffset = -(parseFloat(style.paddingTop) + parseFloat(style.paddingBottom)); + } else { + heightOffset = parseFloat(style.borderTopWidth) + parseFloat(style.borderBottomWidth); + } + // Fix when a textarea is not on document body and heightOffset is Not a Number + if (isNaN(heightOffset)) { + heightOffset = 0; + } + + update(); + } + + function changeOverflow(value) { + { + // Chrome/Safari-specific fix: + // When the textarea y-overflow is hidden, Chrome/Safari do not reflow the text to account for the space + // made available by removing the scrollbar. The following forces the necessary text reflow. + var width = ta.style.width; + ta.style.width = '0px'; + // Force reflow: + /* jshint ignore:start */ + ta.offsetWidth; + /* jshint ignore:end */ + ta.style.width = width; + } + + ta.style.overflowY = value; + } + + function getParentOverflows(el) { + var arr = []; + + while (el && el.parentNode && el.parentNode instanceof Element) { + if (el.parentNode.scrollTop) { + arr.push({ + node: el.parentNode, + scrollTop: el.parentNode.scrollTop + }); + } + el = el.parentNode; + } + + return arr; + } + + function resize() { + if (ta.scrollHeight === 0) { + // If the scrollHeight is 0, then the element probably has display:none or is detached from the DOM. + return; + } + + var overflows = getParentOverflows(ta); + var docTop = document.documentElement && document.documentElement.scrollTop; // Needed for Mobile IE (ticket #240) + + ta.style.height = ''; + ta.style.height = ta.scrollHeight + heightOffset + 'px'; + + // used to check if an update is actually necessary on window.resize + clientWidth = ta.clientWidth; + + // prevents scroll-position jumping + overflows.forEach(function (el) { + el.node.scrollTop = el.scrollTop; + }); + + if (docTop) { + document.documentElement.scrollTop = docTop; + } + } + + function update() { + resize(); + + var styleHeight = Math.round(parseFloat(ta.style.height)); + var computed = window.getComputedStyle(ta, null); + + // Using offsetHeight as a replacement for computed.height in IE, because IE does not account use of border-box + var actualHeight = computed.boxSizing === 'content-box' ? Math.round(parseFloat(computed.height)) : ta.offsetHeight; + + // The actual height not matching the style height (set via the resize method) indicates that + // the max-height has been exceeded, in which case the overflow should be allowed. + if (actualHeight < styleHeight) { + if (computed.overflowY === 'hidden') { + changeOverflow('scroll'); + resize(); + actualHeight = computed.boxSizing === 'content-box' ? Math.round(parseFloat(window.getComputedStyle(ta, null).height)) : ta.offsetHeight; + } + } else { + // Normally keep overflow set to hidden, to avoid flash of scrollbar as the textarea expands. + if (computed.overflowY !== 'hidden') { + changeOverflow('hidden'); + resize(); + actualHeight = computed.boxSizing === 'content-box' ? Math.round(parseFloat(window.getComputedStyle(ta, null).height)) : ta.offsetHeight; + } + } + + if (cachedHeight !== actualHeight) { + cachedHeight = actualHeight; + var evt = createEvent('autosize:resized'); + try { + ta.dispatchEvent(evt); + } catch (err) { + // Firefox will throw an error on dispatchEvent for a detached element + // https://bugzilla.mozilla.org/show_bug.cgi?id=889376 + } + } + } + + var pageResize = function pageResize() { + if (ta.clientWidth !== clientWidth) { + update(); + } + }; + + var destroy = function (style) { + window.removeEventListener('resize', pageResize, false); + ta.removeEventListener('input', update, false); + ta.removeEventListener('keyup', update, false); + ta.removeEventListener('autosize:destroy', destroy, false); + ta.removeEventListener('autosize:update', update, false); + + Object.keys(style).forEach(function (key) { + ta.style[key] = style[key]; + }); + + map.delete(ta); + }.bind(ta, { + height: ta.style.height, + resize: ta.style.resize, + overflowY: ta.style.overflowY, + overflowX: ta.style.overflowX, + wordWrap: ta.style.wordWrap + }); + + ta.addEventListener('autosize:destroy', destroy, false); + + // IE9 does not fire onpropertychange or oninput for deletions, + // so binding to onkeyup to catch most of those events. + // There is no way that I know of to detect something like 'cut' in IE9. + if ('onpropertychange' in ta && 'oninput' in ta) { + ta.addEventListener('keyup', update, false); + } + + window.addEventListener('resize', pageResize, false); + ta.addEventListener('input', update, false); + ta.addEventListener('autosize:update', update, false); + ta.style.overflowX = 'hidden'; + ta.style.wordWrap = 'break-word'; + + map.set(ta, { + destroy: destroy, + update: update + }); + + init(); + } + + function destroy(ta) { + var methods = map.get(ta); + if (methods) { + methods.destroy(); + } + } + + function update(ta) { + var methods = map.get(ta); + if (methods) { + methods.update(); + } + } + + var autosize = null; + + // Do nothing in Node.js environment and IE8 (or lower) + if (typeof window === 'undefined' || typeof window.getComputedStyle !== 'function') { + autosize = function autosize(el) { + return el; + }; + autosize.destroy = function (el) { + return el; + }; + autosize.update = function (el) { + return el; + }; + } else { + autosize = function autosize(el, options) { + if (el) { + Array.prototype.forEach.call(el.length ? el : [el], function (x) { + return assign(x, options); + }); + } + return el; + }; + autosize.destroy = function (el) { + if (el) { + Array.prototype.forEach.call(el.length ? el : [el], destroy); + } + return el; + }; + autosize.update = function (el) { + if (el) { + Array.prototype.forEach.call(el.length ? el : [el], update); + } + return el; + }; + } + + exports.default = autosize; + module.exports = exports['default']; + }); \ No newline at end of file diff --git a/aigo/public/js/chatify/code.js b/aigo/public/js/chatify/code.js new file mode 100644 index 0000000..29c9ce4 --- /dev/null +++ b/aigo/public/js/chatify/code.js @@ -0,0 +1,1711 @@ +/** + *------------------------------------------------------------- + * Global variables + *------------------------------------------------------------- + */ +var messenger, + typingTimeout, + typingNow = 0, + temporaryMsgId = 0, + defaultAvatarInSettings = null, + messengerColor, + dark_mode, + messages_page = 1; + +const messagesContainer = $(".messenger-messagingView .m-body"), + messengerTitleDefault = $(".messenger-headTitle").text(), + messageInputContainer = $(".messenger-sendCard"), + messageInput = $("#message-form .m-send"), + auth_id = $("meta[name=url]").attr("data-user"), + url = $("meta[name=url]").attr("content"), + messengerTheme = $("meta[name=messenger-theme]").attr("content"), + defaultMessengerColor = $("meta[name=messenger-color]").attr("content"), + csrfToken = $('meta[name="csrf-token"]').attr("content"); + +const getMessengerId = () => $("meta[name=id]").attr("content"); +const setMessengerId = (id) => $("meta[name=id]").attr("content", id); + +/** + *------------------------------------------------------------- + * Pusher initialization + *------------------------------------------------------------- + */ +Pusher.logToConsole = chatify.pusher.debug; +const pusher = new Pusher(chatify.pusher.key, { + encrypted: chatify.pusher.options.encrypted, + cluster: chatify.pusher.options.cluster, + wsHost: chatify.pusher.options.host, + wsPort: chatify.pusher.options.port, + wssPort: chatify.pusher.options.port, + forceTLS: chatify.pusher.options.useTLS, + authEndpoint: chatify.pusherAuthEndpoint, + auth: { + headers: { + "X-CSRF-TOKEN": csrfToken, + }, + }, +}); +/** + *------------------------------------------------------------- + * Re-usable methods + *------------------------------------------------------------- + */ +const escapeHtml = (unsafe) => { + return unsafe + .replace(/&/g, "&") + .replace(//g, ">"); +}; +function actionOnScroll(selector, callback, topScroll = false) { + $(selector).on("scroll", function () { + let element = $(this).get(0); + const condition = topScroll + ? element.scrollTop == 0 + : element.scrollTop + element.clientHeight >= element.scrollHeight; + if (condition) { + callback(); + } + }); +} +function routerPush(title, url) { + $("meta[name=url]").attr("content", url); + return window.history.pushState({}, title || document.title, url); +} +function updateSelectedContact(user_id) { + $(document).find(".messenger-list-item").removeClass("m-list-active"); + $(document) + .find( + ".messenger-list-item[data-contact=" + (user_id || getMessengerId()) + "]" + ) + .addClass("m-list-active"); +} +/** + *------------------------------------------------------------- + * Global Templates + *------------------------------------------------------------- + */ +// Loading svg +function loadingSVG(size = "25px", className = "", style = "") { + return ` + + + + + + + + + + +`; +} +function loadingWithContainer(className) { + return `
${loadingSVG( + "25px", + "", + "margin:auto" + )}
`; +} + +// loading placeholder for users list item +function listItemLoading(items) { + let template = ""; + for (let i = 0; i < items; i++) { + template += ` +
+
+
+ + + + + +
+
+
+
+
+
+
+`; + } + return template; +} + +// loading placeholder for avatars +function avatarLoading(items) { + let template = ""; + for (let i = 0; i < items; i++) { + template += ` +
+
+
+ + + + +
+
+
+
+
+
+`; + } + return template; +} + +// While sending a message, show this temporary message card. +function sendTempMessageCard(message, id) { + return ` +
+
+
+ ${message} + + + +
+
+
+`; +} +// upload image preview card. +function attachmentTemplate(fileType, fileName, imgURL = null) { + if (fileType != "image") { + return ( + ` +
+ +

` + + escapeHtml(fileName) + + `

+
+` + ); + } else { + return ( + ` +
+ +
+

` + + escapeHtml(fileName) + + `

+
+` + ); + } +} + +// Active Status Circle +function activeStatusCircle() { + return ``; +} + +/** + *------------------------------------------------------------- + * Css Media Queries [For responsive design] + *------------------------------------------------------------- + */ +$(window).resize(function () { + cssMediaQueries(); +}); +function cssMediaQueries() { + if (window.matchMedia("(min-width: 980px)").matches) { + $(".messenger-listView").removeAttr("style"); + } + if (window.matchMedia("(max-width: 980px)").matches) { + $("body") + .find(".messenger-list-item") + .find("tr[data-action]") + .attr("data-action", "1"); + $("body").find(".favorite-list-item").find("div").attr("data-action", "1"); + } else { + $("body") + .find(".messenger-list-item") + .find("tr[data-action]") + .attr("data-action", "0"); + $("body").find(".favorite-list-item").find("div").attr("data-action", "0"); + } +} + +/** + *------------------------------------------------------------- + * App Modal + *------------------------------------------------------------- + */ +let app_modal = function ({ + show = true, + name, + data = 0, + buttons = true, + header = null, + body = null, +}) { + const modal = $(".app-modal[data-name=" + name + "]"); + // header + header ? modal.find(".app-modal-header").html(header) : ""; + + // body + body ? modal.find(".app-modal-body").html(body) : ""; + + // buttons + buttons == true + ? modal.find(".app-modal-footer").show() + : modal.find(".app-modal-footer").hide(); + + // show / hide + if (show == true) { + modal.show(); + $(".app-modal-card[data-name=" + name + "]").addClass("app-show-modal"); + $(".app-modal-card[data-name=" + name + "]").attr("data-modal", data); + } else { + modal.hide(); + $(".app-modal-card[data-name=" + name + "]").removeClass("app-show-modal"); + $(".app-modal-card[data-name=" + name + "]").attr("data-modal", data); + } +}; + +/** + *------------------------------------------------------------- + * Slide to bottom on [action] - e.g. [message received, sent, loaded] + *------------------------------------------------------------- + */ +function scrollToBottom(container) { + $(container) + .stop() + .animate({ + scrollTop: $(container)[0].scrollHeight, + }); +} + +/** + *------------------------------------------------------------- + * click and drag to scroll - function + *------------------------------------------------------------- + */ +function hScroller(scroller) { + const slider = document.querySelector(scroller); + let isDown = false; + let startX; + let scrollLeft; + + slider.addEventListener("mousedown", (e) => { + isDown = true; + startX = e.pageX - slider.offsetLeft; + scrollLeft = slider.scrollLeft; + }); + slider.addEventListener("mouseleave", () => { + isDown = false; + }); + slider.addEventListener("mouseup", () => { + isDown = false; + }); + slider.addEventListener("mousemove", (e) => { + if (!isDown) return; + e.preventDefault(); + const x = e.pageX - slider.offsetLeft; + const walk = (x - startX) * 1; + slider.scrollLeft = scrollLeft - walk; + }); +} + +/** + *------------------------------------------------------------- + * Disable/enable message form fields, messaging container... + * on load info or if needed elsewhere. + * + * Default : true + *------------------------------------------------------------- + */ +function disableOnLoad(disable = true) { + if (disable) { + // hide star button + $(".add-to-favorite").hide(); + // hide send card + $(".messenger-sendCard").hide(); + // add loading opacity to messages container + messagesContainer.css("opacity", ".5"); + // disable message form fields + messageInput.attr("readonly", "readonly"); + $("#message-form button").attr("disabled", "disabled"); + $(".upload-attachment").attr("disabled", "disabled"); + } else { + // show star button + if (getMessengerId() != auth_id) { + $(".add-to-favorite").show(); + } + // show send card + $(".messenger-sendCard").show(); + // remove loading opacity to messages container + messagesContainer.css("opacity", "1"); + // enable message form fields + messageInput.removeAttr("readonly"); + $("#message-form button").removeAttr("disabled"); + $(".upload-attachment").removeAttr("disabled"); + } +} + +/** + *------------------------------------------------------------- + * Error message card + *------------------------------------------------------------- + */ +function errorMessageCard(id) { + messagesContainer + .find(".message-card[data-id=" + id + "]") + .addClass("mc-error"); + messagesContainer + .find(".message-card[data-id=" + id + "]") + .find("svg.loadingSVG") + .remove(); + messagesContainer + .find(".message-card[data-id=" + id + "] p") + .prepend(''); +} + +/** + *------------------------------------------------------------- + * Fetch id data (user/group) and update the view + *------------------------------------------------------------- + */ +function IDinfo(id) { + // clear temporary message id + temporaryMsgId = 0; + // clear typing now + typingNow = 0; + // show loading bar + NProgress.start(); + // disable message form + disableOnLoad(); + if (messenger != 0) { + // get shared photos + getSharedPhotos(id); + // Get info + $.ajax({ + url: url + "/idInfo", + method: "POST", + data: { _token: csrfToken, id }, + dataType: "JSON", + success: (data) => { + if (!data?.fetch) { + NProgress.done(); + NProgress.remove(); + return; + } + // avatar photo + $(".messenger-infoView") + .find(".avatar") + .css("background-image", 'url("' + data.user_avatar + '")'); + $(".header-avatar").css( + "background-image", + 'url("' + data.user_avatar + '")' + ); + // Show shared and actions + $(".messenger-infoView-btns .delete-conversation").show(); + $(".messenger-infoView-shared").show(); + // fetch messages + fetchMessages(id, true); + // focus on messaging input + messageInput.focus(); + // update info in view + $(".messenger-infoView .info-name").text(data.fetch.name); + $(".m-header-messaging .user-name").text(data.fetch.name); + // Star status + data.favorite > 0 + ? $(".add-to-favorite").addClass("favorite") + : $(".add-to-favorite").removeClass("favorite"); + // form reset and focus + $("#message-form").trigger("reset"); + cancelAttachment(); + messageInput.focus(); + }, + error: () => { + console.error("Couldn't fetch user data!"); + // remove loading bar + NProgress.done(); + NProgress.remove(); + }, + }); + } else { + // remove loading bar + NProgress.done(); + NProgress.remove(); + } +} + +/** + *------------------------------------------------------------- + * Send message function + *------------------------------------------------------------- + */ +function sendMessage() { + temporaryMsgId += 1; + let tempID = `temp_${temporaryMsgId}`; + let hasFile = !!$(".upload-attachment").val(); + const inputValue = $.trim(messageInput.val()); + if (inputValue.length > 0 || hasFile) { + const formData = new FormData($("#message-form")[0]); + formData.append("id", getMessengerId()); + formData.append("temporaryMsgId", tempID); + formData.append("_token", csrfToken); + $.ajax({ + url: $("#message-form").attr("action"), + method: "POST", + data: formData, + dataType: "JSON", + processData: false, + contentType: false, + beforeSend: () => { + // remove message hint + $(".messages").find(".message-hint").hide(); + // append a temporary message card + if (hasFile) { + messagesContainer + .find(".messages") + .append( + sendTempMessageCard( + inputValue + "\n" + loadingSVG("28px"), + tempID + ) + ); + } else { + messagesContainer + .find(".messages") + .append(sendTempMessageCard(inputValue, tempID)); + } + // scroll to bottom + scrollToBottom(messagesContainer); + messageInput.css({ height: "42px" }); + // form reset and focus + $("#message-form").trigger("reset"); + cancelAttachment(); + messageInput.focus(); + }, + success: (data) => { + if (data.error > 0) { + // message card error status + errorMessageCard(tempID); + console.error(data.error_msg); + } else { + // update contact item + updateContactItem(getMessengerId()); + // temporary message card + const tempMsgCardElement = messagesContainer.find( + `.message-card[data-id=${data.tempID}]` + ); + // add the message card coming from the server before the temp-card + tempMsgCardElement.before(data.message); + // then, remove the temporary message card + tempMsgCardElement.remove(); + // scroll to bottom + scrollToBottom(messagesContainer); + // send contact item updates + sendContactItemUpdates(true); + } + }, + error: () => { + // message card error status + errorMessageCard(tempID); + // error log + console.error( + "Failed sending the message! Please, check your server response." + ); + }, + }); + } + return false; +} + +/** + *------------------------------------------------------------- + * Fetch messages from database + *------------------------------------------------------------- + */ +let messagesPage = 1; +let noMoreMessages = false; +let messagesLoading = false; +function setMessagesLoading(loading = false) { + if (!loading) { + messagesContainer.find(".messages").find(".loading-messages").remove(); + NProgress.done(); + NProgress.remove(); + } else { + messagesContainer + .find(".messages") + .prepend(loadingWithContainer("loading-messages")); + } + messagesLoading = loading; +} +function fetchMessages(id, newFetch = false) { + if (newFetch) { + messagesPage = 1; + noMoreMessages = false; + } + if (messenger != 0 && !noMoreMessages && !messagesLoading) { + const messagesElement = messagesContainer.find(".messages"); + setMessagesLoading(true); + $.ajax({ + url: url + "/fetchMessages", + method: "POST", + data: { + _token: csrfToken, + id: id, + page: messagesPage, + }, + dataType: "JSON", + success: (data) => { + setMessagesLoading(false); + if (messagesPage == 1) { + messagesElement.html(data.messages); + scrollToBottom(messagesContainer); + } else { + const lastMsg = messagesElement.find( + messagesElement.find(".message-card")[0] + ); + const curOffset = + lastMsg.offset().top - messagesContainer.scrollTop(); + messagesElement.prepend(data.messages); + messagesContainer.scrollTop(lastMsg.offset().top - curOffset); + } + // trigger seen event + makeSeen(true); + // Pagination lock & messages page + noMoreMessages = messagesPage >= data?.last_page; + if (!noMoreMessages) messagesPage += 1; + // Enable message form if messenger not = 0; means if data is valid + if (messenger != 0) { + disableOnLoad(false); + } + }, + error: (error) => { + setMessagesLoading(false); + console.error(error); + }, + }); + } +} + +/** + *------------------------------------------------------------- + * Cancel file attached in the message. + *------------------------------------------------------------- + */ +function cancelAttachment() { + $(".messenger-sendCard").find(".attachment-preview").remove(); + $(".upload-attachment").replaceWith( + $(".upload-attachment").val("").clone(true) + ); +} + +/** + *------------------------------------------------------------- + * Cancel updating avatar in settings + *------------------------------------------------------------- + */ +function cancelUpdatingAvatar() { + $(".upload-avatar-preview").css("background-image", defaultAvatarInSettings); + $(".upload-avatar").replaceWith($(".upload-avatar").val("").clone(true)); +} + +/** + *------------------------------------------------------------- + * Pusher channels and event listening.. + *------------------------------------------------------------- + */ + +// subscribe to the channel +const channelName = "private-chatify"; +var channel = pusher.subscribe(`${channelName}.${auth_id}`); +var clientSendChannel; +var clientListenChannel; + +function initClientChannel() { + if (getMessengerId()) { + clientSendChannel = pusher.subscribe(`${channelName}.${getMessengerId()}`); + clientListenChannel = pusher.subscribe(`${channelName}.${auth_id}`); + } +} +initClientChannel(); + +// Listen to messages, and append if data received +channel.bind("messaging", function (data) { + if (data.from_id == getMessengerId() && data.to_id == auth_id) { + $(".messages").find(".message-hint").remove(); + messagesContainer.find(".messages").append(data.message); + scrollToBottom(messagesContainer); + makeSeen(true); + // remove unseen counter for the user from the contacts list + $(".messenger-list-item[data-contact=" + getMessengerId() + "]") + .find("tr>td>b") + .remove(); + } + + playNotificationSound( + "new_message", + !(data.from_id == getMessengerId() && data.to_id == auth_id) + ); +}); + +// listen to typing indicator +clientListenChannel.bind("client-typing", function (data) { + if (data.from_id == getMessengerId() && data.to_id == auth_id) { + data.typing == true + ? messagesContainer.find(".typing-indicator").show() + : messagesContainer.find(".typing-indicator").hide(); + } + // scroll to bottom + scrollToBottom(messagesContainer); +}); + +// listen to seen event +clientListenChannel.bind("client-seen", function (data) { + if (data.from_id == getMessengerId() && data.to_id == auth_id) { + if (data.seen == true) { + $(".message-time") + .find(".fa-check") + .before(' '); + $(".message-time").find(".fa-check").remove(); + } + } +}); + +// listen to contact item updates event +clientListenChannel.bind("client-contactItem", function (data) { + if (data.to == auth_id) { + if (data.update) { + updateContactItem(data.from); + } else { + console.error("Can not update contact item!"); + } + } +}); + +// listen on message delete event +clientListenChannel.bind("client-messageDelete", function (data) { + $("body").find(`.message-card[data-id=${data.id}]`).remove(); +}); +// listen on delete conversation event +clientListenChannel.bind("client-deleteConversation", function (data) { + if (data.from == getMessengerId() && data.to == auth_id) { + $("body").find(`.messages`).html(""); + $(".messages").find(".message-hint").show(); + } +}); +// ------------------------------------- +// presence channel [User Active Status] +var activeStatusChannel = pusher.subscribe("presence-activeStatus"); + +// Joined +activeStatusChannel.bind("pusher:member_added", function (member) { + setActiveStatus(1); + $(".messenger-list-item[data-contact=" + member.id + "]") + .find(".activeStatus") + .remove(); + $(".messenger-list-item[data-contact=" + member.id + "]") + .find(".avatar") + .before(activeStatusCircle()); +}); + +// Leaved +activeStatusChannel.bind("pusher:member_removed", function (member) { + setActiveStatus(0); + $(".messenger-list-item[data-contact=" + member.id + "]") + .find(".activeStatus") + .remove(); +}); + +function handleVisibilityChange() { + if (!document.hidden) { + makeSeen(true); + } +} + +document.addEventListener("visibilitychange", handleVisibilityChange, false); + +/** + *------------------------------------------------------------- + * Trigger typing event + *------------------------------------------------------------- + */ +function isTyping(status) { + return clientSendChannel.trigger("client-typing", { + from_id: auth_id, // Me + to_id: getMessengerId(), // Messenger + typing: status, + }); +} + +/** + *------------------------------------------------------------- + * Trigger seen event + *------------------------------------------------------------- + */ +function makeSeen(status) { + if (document?.hidden) { + return; + } + // remove unseen counter for the user from the contacts list + $(".messenger-list-item[data-contact=" + getMessengerId() + "]") + .find("tr>td>b") + .remove(); + // seen + $.ajax({ + url: url + "/makeSeen", + method: "POST", + data: { _token: csrfToken, id: getMessengerId() }, + dataType: "JSON", + }); + return clientSendChannel.trigger("client-seen", { + from_id: auth_id, // Me + to_id: getMessengerId(), // Messenger + seen: status, + }); +} + +/** + *------------------------------------------------------------- + * Trigger contact item updates + *------------------------------------------------------------- + */ +function sendContactItemUpdates(status) { + return clientSendChannel.trigger("client-contactItem", { + from: auth_id, // Me + to: getMessengerId(), // Messenger + update: status, + }); +} + +/** + *------------------------------------------------------------- + * Trigger message delete + *------------------------------------------------------------- + */ +function sendMessageDeleteEvent(messageId) { + return clientSendChannel.trigger("client-messageDelete", { + id: messageId, + }); +} +/** + *------------------------------------------------------------- + * Trigger delete conversation + *------------------------------------------------------------- + */ +function sendDeleteConversationEvent() { + return clientSendChannel.trigger("client-deleteConversation", { + from: auth_id, + to: getMessengerId(), + }); +} + +/** + *------------------------------------------------------------- + * Check internet connection using pusher states + *------------------------------------------------------------- + */ +function checkInternet(state, selector) { + let net_errs = 0; + const messengerTitle = $(".messenger-headTitle"); + switch (state) { + case "connected": + if (net_errs < 1) { + messengerTitle.text(messengerTitleDefault); + selector.addClass("successBG-rgba"); + selector.find("span").hide(); + selector.slideDown("fast", function () { + selector.find(".ic-connected").show(); + }); + setTimeout(function () { + $(".internet-connection").slideUp("fast"); + }, 3000); + } + break; + case "connecting": + messengerTitle.text($(".ic-connecting").text()); + selector.removeClass("successBG-rgba"); + selector.find("span").hide(); + selector.slideDown("fast", function () { + selector.find(".ic-connecting").show(); + }); + net_errs = 1; + break; + // Not connected + default: + messengerTitle.text($(".ic-noInternet").text()); + selector.removeClass("successBG-rgba"); + selector.find("span").hide(); + selector.slideDown("fast", function () { + selector.find(".ic-noInternet").show(); + }); + net_errs = 1; + break; + } +} + +/** + *------------------------------------------------------------- + * Get contacts + *------------------------------------------------------------- + */ +let contactsPage = 1; +let contactsLoading = false; +let noMoreContacts = false; +function setContactsLoading(loading = false) { + if (!loading) { + $(".listOfContacts").find(".loading-contacts").remove(); + } else { + $(".listOfContacts").append( + `
${listItemLoading(4)}
` + ); + } + contactsLoading = loading; +} +function getContacts() { + if (!contactsLoading && !noMoreContacts) { + setContactsLoading(true); + $.ajax({ + url: url + "/getContacts", + method: "GET", + data: { _token: csrfToken, page: contactsPage }, + dataType: "JSON", + success: (data) => { + setContactsLoading(false); + if (contactsPage < 2) { + $(".listOfContacts").html(data.contacts); + } else { + $(".listOfContacts").append(data.contacts); + } + updateSelectedContact(); + // update data-action required with [responsive design] + cssMediaQueries(); + // Pagination lock & messages page + noMoreContacts = contactsPage >= data?.last_page; + if (!noMoreContacts) contactsPage += 1; + }, + error: (error) => { + setContactsLoading(false); + console.error(error); + }, + }); + } +} + +/** + *------------------------------------------------------------- + * Update contact item + *------------------------------------------------------------- + */ +function updateContactItem(user_id) { + if (user_id != auth_id) { + $.ajax({ + url: url + "/updateContacts", + method: "POST", + data: { + _token: csrfToken, + user_id, + }, + dataType: "JSON", + success: (data) => { + $(".listOfContacts") + .find(".messenger-list-item[data-contact=" + user_id + "]") + .remove(); + if (data.contactItem) $(".listOfContacts").prepend(data.contactItem); + if (user_id == getMessengerId()) updateSelectedContact(user_id); + // show/hide message hint (empty state message) + const totalContacts = + $(".listOfContacts").find(".messenger-list-item")?.length || 0; + if (totalContacts > 0) { + $(".listOfContacts").find(".message-hint").hide(); + } else { + $(".listOfContacts").find(".message-hint").show(); + } + // update data-action required with [responsive design] + cssMediaQueries(); + }, + error: (error) => { + console.error(error); + }, + }); + } +} + +/** + *------------------------------------------------------------- + * Star + *------------------------------------------------------------- + */ + +function star(user_id) { + if (getMessengerId() != auth_id) { + $.ajax({ + url: url + "/star", + method: "POST", + data: { _token: csrfToken, user_id: user_id }, + dataType: "JSON", + success: (data) => { + data.status > 0 + ? $(".add-to-favorite").addClass("favorite") + : $(".add-to-favorite").removeClass("favorite"); + }, + error: () => { + console.error("Server error, check your response"); + }, + }); + } +} + +/** + *------------------------------------------------------------- + * Get favorite list + *------------------------------------------------------------- + */ +function getFavoritesList() { + $(".messenger-favorites").html(avatarLoading(4)); + $.ajax({ + url: url + "/favorites", + method: "POST", + data: { _token: csrfToken }, + dataType: "JSON", + success: (data) => { + if (data.count > 0) { + $(".favorites-section").show(); + $(".messenger-favorites").html(data.favorites); + } else { + $(".favorites-section").hide(); + } + // update data-action required with [responsive design] + cssMediaQueries(); + }, + error: () => { + console.error("Server error, check your response"); + }, + }); +} + +/** + *------------------------------------------------------------- + * Get shared photos + *------------------------------------------------------------- + */ +function getSharedPhotos(user_id) { + $.ajax({ + url: url + "/shared", + method: "POST", + data: { _token: csrfToken, user_id: user_id }, + dataType: "JSON", + success: (data) => { + $(".shared-photos-list").html(data.shared); + }, + error: () => { + console.error("Server error, check your response"); + }, + }); +} + +/** + *------------------------------------------------------------- + * Search in messenger + *------------------------------------------------------------- + */ +let searchPage = 1; +let noMoreDataSearch = false; +let searchLoading = false; +let searchTempVal = ""; +function setSearchLoading(loading = false) { + if (!loading) { + $(".search-records").find(".loading-search").remove(); + } else { + $(".search-records").append( + `` + ); + } + searchLoading = loading; +} +function messengerSearch(input) { + if (input != searchTempVal) { + searchPage = 1; + noMoreDataSearch = false; + searchLoading = false; + } + searchTempVal = input; + if (!searchLoading && !noMoreDataSearch) { + if (searchPage < 2) { + $(".search-records").html(""); + } + setSearchLoading(true); + $.ajax({ + url: url + "/search", + method: "GET", + data: { _token: csrfToken, input: input, page: searchPage }, + dataType: "JSON", + success: (data) => { + setSearchLoading(false); + if (searchPage < 2) { + $(".search-records").html(data.records); + } else { + $(".search-records").append(data.records); + } + // update data-action required with [responsive design] + cssMediaQueries(); + // Pagination lock & messages page + noMoreDataSearch = searchPage >= data?.last_page; + if (!noMoreDataSearch) searchPage += 1; + }, + error: (error) => { + setSearchLoading(false); + console.error(error); + }, + }); + } +} + +/** + *------------------------------------------------------------- + * Delete Conversation + *------------------------------------------------------------- + */ +function deleteConversation(id) { + $.ajax({ + url: url + "/deleteConversation", + method: "POST", + data: { _token: csrfToken, id: id }, + dataType: "JSON", + beforeSend: () => { + // hide delete modal + app_modal({ + show: false, + name: "delete", + }); + // Show waiting alert modal + app_modal({ + show: true, + name: "alert", + buttons: false, + body: loadingSVG("32px", null, "margin:auto"), + }); + }, + success: (data) => { + // delete contact from the list + $(".listOfContacts") + .find(".messenger-list-item[data-contact=" + id + "]") + .remove(); + // refresh info + IDinfo(id); + + if (!data.deleted) + return alert("Error occurred, messages can not be deleted!"); + + // Hide waiting alert modal + app_modal({ + show: false, + name: "alert", + buttons: true, + body: "", + }); + + sendDeleteConversationEvent(); + + // update contact list item + sendContactItemUpdates(true); + }, + error: () => { + console.error("Server error, check your response"); + }, + }); +} + +/** + *------------------------------------------------------------- + * Delete Message By ID + *------------------------------------------------------------- + */ +function deleteMessage(id) { + $.ajax({ + url: url + "/deleteMessage", + method: "POST", + data: { _token: csrfToken, id: id }, + dataType: "JSON", + beforeSend: () => { + // hide delete modal + app_modal({ + show: false, + name: "delete", + }); + // Show waiting alert modal + app_modal({ + show: true, + name: "alert", + buttons: false, + body: loadingSVG("32px", null, "margin:auto"), + }); + }, + success: (data) => { + $(".messages").find(`.message-card[data-id=${id}]`).remove(); + if (!data.deleted) + console.error("Error occurred, message can not be deleted!"); + + sendMessageDeleteEvent(id); + + // Hide waiting alert modal + app_modal({ + show: false, + name: "alert", + buttons: true, + body: "", + }); + }, + error: () => { + console.error("Server error, check your response"); + }, + }); +} + +/** + *------------------------------------------------------------- + * Update Settings + *------------------------------------------------------------- + */ +function updateSettings() { + const formData = new FormData($("#update-settings")[0]); + if (messengerColor) { + formData.append("messengerColor", messengerColor); + } + if (dark_mode) { + formData.append("dark_mode", dark_mode); + } + $.ajax({ + url: url + "/updateSettings", + method: "POST", + data: formData, + dataType: "JSON", + processData: false, + contentType: false, + beforeSend: () => { + // close settings modal + app_modal({ + show: false, + name: "settings", + }); + // Show waiting alert modal + app_modal({ + show: true, + name: "alert", + buttons: false, + body: loadingSVG("32px", null, "margin:auto"), + }); + }, + success: (data) => { + if (data.error) { + // Show error message in alert modal + app_modal({ + show: true, + name: "alert", + buttons: true, + body: data.msg, + }); + } else { + // Hide alert modal + app_modal({ + show: false, + name: "alert", + buttons: true, + body: "", + }); + + // reload the page + location.reload(true); + } + }, + error: () => { + console.error("Server error, check your response"); + }, + }); +} + +/** + *------------------------------------------------------------- + * Set Active status + *------------------------------------------------------------- + */ +function setActiveStatus(status) { + $.ajax({ + url: url + "/setActiveStatus", + method: "POST", + data: { _token: csrfToken, status: status }, + dataType: "JSON", + success: (data) => { + // Nothing to do + }, + error: () => { + console.error("Server error, check your response"); + }, + }); +} + +/** + *------------------------------------------------------------- + * On DOM ready + *------------------------------------------------------------- + */ +$(document).ready(function () { + // get contacts list + getContacts(); + + // get contacts list + getFavoritesList(); + + // Clear typing timeout + clearTimeout(typingTimeout); + + // NProgress configurations + NProgress.configure({ showSpinner: false, minimum: 0.7, speed: 500 }); + + // make message input autosize. + autosize($(".m-send")); + + // check if pusher has access to the channel [Internet status] + pusher.connection.bind("state_change", function (states) { + let selector = $(".internet-connection"); + checkInternet(states.current, selector); + // listening for pusher:subscription_succeeded + channel.bind("pusher:subscription_succeeded", function () { + // On connection state change [Updating] and get [info & msgs] + if (getMessengerId() != 0) { + if ( + $(".messenger-list-item") + .find("tr[data-action]") + .attr("data-action") == "1" + ) { + $(".messenger-listView").hide(); + } + IDinfo(getMessengerId()); + } + }); + }); + + // tabs on click, show/hide... + $(".messenger-listView-tabs a").on("click", function () { + var dataView = $(this).attr("data-view"); + $(".messenger-listView-tabs a").removeClass("active-tab"); + $(this).addClass("active-tab"); + $(".messenger-tab").hide(); + $(".messenger-tab[data-view=" + dataView + "]").show(); + }); + + // set item active on click + $("body").on("click", ".messenger-list-item", function () { + $(".messenger-list-item").removeClass("m-list-active"); + $(this).addClass("m-list-active"); + const userID = $(this).attr("data-contact"); + routerPush(document.title, `${url}/${userID}`); + updateSelectedContact(userID); + }); + + // show info side button + $(".messenger-infoView nav a , .show-infoSide").on("click", function () { + $(".messenger-infoView").toggle(); + }); + + // make favorites card dragable on click to slide. + hScroller(".messenger-favorites"); + + // click action for list item [user/group] + $("body").on("click", ".messenger-list-item", function () { + if ($(this).find("tr[data-action]").attr("data-action") == "1") { + $(".messenger-listView").hide(); + } + const dataId = $(this).find("p[data-id]").attr("data-id"); + setMessengerId(dataId); + IDinfo(dataId); + }); + + // click action for favorite button + $("body").on("click", ".favorite-list-item", function () { + if ($(this).find("div").attr("data-action") == "1") { + $(".messenger-listView").hide(); + } + const uid = $(this).find("div.avatar").attr("data-id"); + setMessengerId(uid); + IDinfo(uid); + updateSelectedContact(uid); + routerPush(document.title, `${url}/${uid}`); + }); + + // list view buttons + $(".listView-x").on("click", function () { + $(".messenger-listView").hide(); + }); + $(".show-listView").on("click", function () { + routerPush(document.title, `${url}/`); + $(".messenger-listView").show(); + }); + + // click action for [add to favorite] button. + $(".add-to-favorite").on("click", function () { + star(getMessengerId()); + }); + + // calling Css Media Queries + cssMediaQueries(); + + // message form on submit. + $("#message-form").on("submit", (e) => { + e.preventDefault(); + sendMessage(); + }); + + // message input on keyup [Enter to send, Enter+Shift for new line] + $("#message-form .m-send").on("keyup", (e) => { + // if enter key pressed. + if (e.which == 13 || e.keyCode == 13) { + // if shift + enter key pressed, do nothing (new line). + // if only enter key pressed, send message. + if (!e.shiftKey) { + triggered = isTyping(false); + sendMessage(); + } + } + }); + + // On [upload attachment] input change, show a preview of the image/file. + $("body").on("change", ".upload-attachment", (e) => { + let file = e.target.files[0]; + if (!attachmentValidate(file)) return false; + let reader = new FileReader(); + let sendCard = $(".messenger-sendCard"); + reader.readAsDataURL(file); + reader.addEventListener("loadstart", (e) => { + $("#message-form").before(loadingSVG()); + }); + reader.addEventListener("load", (e) => { + $(".messenger-sendCard").find(".loadingSVG").remove(); + if (!file.type.match("image.*")) { + // if the file not image + sendCard.find(".attachment-preview").remove(); // older one + sendCard.prepend(attachmentTemplate("file", file.name)); + } else { + // if the file is an image + sendCard.find(".attachment-preview").remove(); // older one + sendCard.prepend( + attachmentTemplate("image", file.name, e.target.result) + ); + } + }); + }); + + function attachmentValidate(file) { + const fileElement = $(".upload-attachment"); + const { name: fileName, size: fileSize } = file; + const fileExtension = fileName.split(".").pop(); + if ( + !chatify.allAllowedExtensions.includes( + fileExtension.toString().toLowerCase() + ) + ) { + alert("file type not allowed"); + fileElement.val(""); + return false; + } + // Validate file size. + if (fileSize > chatify.maxUploadSize) { + alert("File is too large!"); + return false; + } + return true; + } + + // Attachment preview cancel button. + $("body").on("click", ".attachment-preview .cancel", () => { + cancelAttachment(); + }); + + // typing indicator on [input] keyDown + $("#message-form .m-send").on("keydown", () => { + if (typingNow < 1) { + isTyping(true); + typingNow = 1; + } + clearTimeout(typingTimeout); + typingTimeout = setTimeout(function () { + isTyping(false); + typingNow = 0; + }, 1000); + }); + + // Image modal + $("body").on("click", ".chat-image", function () { + let src = $(this).css("background-image").split(/"/)[1]; + $("#imageModalBox").show(); + $("#imageModalBoxSrc").attr("src", src); + }); + $(".imageModal-close").on("click", function () { + $("#imageModalBox").hide(); + }); + + // Search input on focus + $(".messenger-search").on("focus", function () { + $(".messenger-tab").hide(); + $('.messenger-tab[data-view="search"]').show(); + }); + $(".messenger-search").on("blur", function () { + setTimeout(function () { + $(".messenger-tab").hide(); + $('.messenger-tab[data-view="users"]').show(); + }, 200); + }); + // Search action on keyup + const debouncedSearch = debounce(function () { + const value = $(".messenger-search").val(); + messengerSearch(value); + }, 500); + $(".messenger-search").on("keyup", function (e) { + const value = $(this).val(); + if ($.trim(value).length > 0) { + $(".messenger-search").trigger("focus"); + debouncedSearch(); + } else { + $(".messenger-tab").hide(); + $('.messenger-listView-tabs a[data-view="users"]').trigger("click"); + } + }); + + // Delete Conversation button + $(".messenger-infoView-btns .delete-conversation").on("click", function () { + app_modal({ + name: "delete", + }); + }); + // Delete Message Button + $("body").on("click", ".message-card .actions .delete-btn", function () { + app_modal({ + name: "delete", + data: $(this).data("id"), + }); + }); + // Delete modal [on delete button click] + $(".app-modal[data-name=delete]") + .find(".app-modal-footer .delete") + .on("click", function () { + const id = $("body") + .find(".app-modal[data-name=delete]") + .find(".app-modal-card") + .attr("data-modal"); + if (id == 0) { + deleteConversation(getMessengerId()); + } else { + deleteMessage(id); + } + app_modal({ + show: false, + name: "delete", + }); + }); + // delete modal [cancel button] + $(".app-modal[data-name=delete]") + .find(".app-modal-footer .cancel") + .on("click", function () { + app_modal({ + show: false, + name: "delete", + }); + }); + + // Settings button action to show settings modal + $("body").on("click", ".settings-btn", function (e) { + e.preventDefault(); + app_modal({ + show: true, + name: "settings", + }); + }); + + // on submit settings' form + $("#update-settings").on("submit", (e) => { + e.preventDefault(); + updateSettings(); + }); + // Settings modal [cancel button] + $(".app-modal[data-name=settings]") + .find(".app-modal-footer .cancel") + .on("click", function () { + app_modal({ + show: false, + name: "settings", + }); + cancelUpdatingAvatar(); + }); + // upload avatar on change + $("body").on("change", ".upload-avatar", (e) => { + // store the original avatar + if (defaultAvatarInSettings == null) { + defaultAvatarInSettings = $(".upload-avatar-preview").css( + "background-image" + ); + } + let file = e.target.files[0]; + if (!attachmentValidate(file)) return false; + let reader = new FileReader(); + reader.readAsDataURL(file); + reader.addEventListener("loadstart", (e) => { + $(".upload-avatar-preview").append( + loadingSVG("42px", "upload-avatar-loading") + ); + }); + reader.addEventListener("load", (e) => { + $(".upload-avatar-preview").find(".loadingSVG").remove(); + if (!file.type.match("image.*")) { + // if the file is not an image + console.error("File you selected is not an image!"); + } else { + // if the file is an image + $(".upload-avatar-preview").css( + "background-image", + 'url("' + e.target.result + '")' + ); + } + }); + }); + // change messenger color button + $("body").on("click", ".update-messengerColor .color-btn", function () { + messengerColor = $(this).attr("data-color"); + $(".update-messengerColor .color-btn").removeClass("m-color-active"); + $(this).addClass("m-color-active"); + }); + // Switch to Dark/Light mode + $("body").on("click", ".dark-mode-switch", function () { + if ($(this).attr("data-mode") == "0") { + $(this).attr("data-mode", "1"); + $(this).removeClass("far"); + $(this).addClass("fas"); + dark_mode = "dark"; + } else { + $(this).attr("data-mode", "0"); + $(this).removeClass("fas"); + $(this).addClass("far"); + dark_mode = "light"; + } + }); + + //Messages pagination + actionOnScroll( + ".m-body.messages-container", + function () { + fetchMessages(getMessengerId()); + }, + true + ); + //Contacts pagination + actionOnScroll(".messenger-tab.users-tab", function () { + getContacts(); + }); + //Search pagination + actionOnScroll(".messenger-tab.search-tab", function () { + messengerSearch($(".messenger-search").val()); + }); +}); + +/** + *------------------------------------------------------------- + * Observer on DOM changes + *------------------------------------------------------------- + */ +let previousMessengerId = getMessengerId(); +const observer = new MutationObserver(function (mutations) { + if (getMessengerId() !== previousMessengerId) { + previousMessengerId = getMessengerId(); + initClientChannel(); + } +}); +const config = { subtree: true, childList: true }; + +// start listening to changes +observer.observe(document, config); + +// stop listening to changes +// observer.disconnect(); + +/** + *------------------------------------------------------------- + * Resize messaging area when resize the viewport. + * on mobile devices when the keyboard is shown, the viewport + * height is changed, so we need to resize the messaging area + * to fit the new height. + *------------------------------------------------------------- + */ +var resizeTimeout; +window.visualViewport.addEventListener("resize", (e) => { + clearTimeout(resizeTimeout); + resizeTimeout = setTimeout(function () { + const h = e.target.height; + if (h) { + $(".messenger-messagingView").css({ height: h + "px" }); + } + }, 100); +}); + +/** + *------------------------------------------------------------- + * Emoji Picker + *------------------------------------------------------------- + */ +const emojiButton = document.querySelector(".emoji-button"); + +const emojiPicker = new EmojiButton({ + theme: messengerTheme, + autoHide: false, + position: "top-start", +}); + +emojiButton.addEventListener("click", (e) => { + e.preventDefault(); + emojiPicker.togglePicker(emojiButton); +}); + +emojiPicker.on("emoji", (emoji) => { + const el = messageInput[0]; + const startPos = el.selectionStart; + const endPos = el.selectionEnd; + const value = messageInput.val(); + const newValue = + value.substring(0, startPos) + + emoji + + value.substring(endPos, value.length); + messageInput.val(newValue); + el.selectionStart = el.selectionEnd = startPos + emoji.length; + el.focus(); +}); + +/** + *------------------------------------------------------------- + * Notification sounds + *------------------------------------------------------------- + */ +function playNotificationSound(soundName, condition = false) { + if ((document.hidden || condition) && chatify.sounds.enabled) { + const sound = new Audio( + `/${chatify.sounds.public_path}/${chatify.sounds[soundName]}` + ); + sound.play(); + } +} +/** + *------------------------------------------------------------- + * Update and format dates to time ago. + *------------------------------------------------------------- + */ +function updateElementsDateToTimeAgo() { + $(".message-time").each(function () { + const time = $(this).attr("data-time"); + $(this).find(".time").text(dateStringToTimeAgo(time)); + }); + $(".contact-item-time").each(function () { + const time = $(this).attr("data-time"); + $(this).text(dateStringToTimeAgo(time)); + }); +} +setInterval(() => { + updateElementsDateToTimeAgo(); +}, 60000); diff --git a/aigo/public/js/chatify/font.awesome.min.js b/aigo/public/js/chatify/font.awesome.min.js new file mode 100644 index 0000000..a55186f --- /dev/null +++ b/aigo/public/js/chatify/font.awesome.min.js @@ -0,0 +1,5 @@ +/*! + * Font Awesome Free 5.10.2 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +!function(){"use strict";var c={},l={};try{"undefined"!=typeof window&&(c=window),"undefined"!=typeof document&&(l=document)}catch(c){}var h=(c.navigator||{}).userAgent,z=void 0===h?"":h,v=c,a=l,m=(v.document,!!a.documentElement&&!!a.head&&"function"==typeof a.addEventListener&&a.createElement,~z.indexOf("MSIE")||z.indexOf("Trident/"),"___FONT_AWESOME___"),s=function(){try{return!0}catch(c){return!1}}();var e=v||{};e[m]||(e[m]={}),e[m].styles||(e[m].styles={}),e[m].hooks||(e[m].hooks={}),e[m].shims||(e[m].shims=[]);var t=e[m];function M(c,z){var l=(2>>0;h--;)l[h]=c[h];return l}function gc(c){return c.classList?bc(c.classList):(c.getAttribute("class")||"").split(" ").filter(function(c){return c})}function Sc(c,l){var h,z=l.split("-"),v=z[0],a=z.slice(1).join("-");return v!==c||""===a||(h=a,~T.indexOf(h))?null:a}function yc(c){return"".concat(c).replace(/&/g,"&").replace(/"/g,""").replace(/'/g,"'").replace(//g,">")}function wc(h){return Object.keys(h||{}).reduce(function(c,l){return c+"".concat(l,": ").concat(h[l],";")},"")}function Ac(c){return c.size!==Lc.size||c.x!==Lc.x||c.y!==Lc.y||c.rotate!==Lc.rotate||c.flipX||c.flipY}function kc(c){var l=c.transform,h=c.containerWidth,z=c.iconWidth,v={transform:"translate(".concat(h/2," 256)")},a="translate(".concat(32*l.x,", ").concat(32*l.y,") "),m="scale(".concat(l.size/16*(l.flipX?-1:1),", ").concat(l.size/16*(l.flipY?-1:1),") "),s="rotate(".concat(l.rotate," 0 0)");return{outer:v,inner:{transform:"".concat(a," ").concat(m," ").concat(s)},path:{transform:"translate(".concat(z/2*-1," -256)")}}}var xc={x:0,y:0,width:"100%",height:"100%"};function qc(c){var l=!(1").concat(m.map(Jc).join(""),"")}var $c=function(){};function cl(c){return"string"==typeof(c.getAttribute?c.getAttribute(Z):null)}var ll={replace:function(c){var l=c[0],h=c[1].map(function(c){return Jc(c)}).join("\n");if(l.parentNode&&l.outerHTML)l.outerHTML=h+(G.keepOriginalSource&&"svg"!==l.tagName.toLowerCase()?"\x3c!-- ".concat(l.outerHTML," --\x3e"):"");else if(l.parentNode){var z=document.createElement("span");l.parentNode.replaceChild(z,l),z.outerHTML=h}},nest:function(c){var l=c[0],h=c[1];if(~gc(l).indexOf(G.replacementClass))return ll.replace(c);var z=new RegExp("".concat(G.familyPrefix,"-.*"));delete h[0].attributes.style;var v=h[0].attributes.class.split(" ").reduce(function(c,l){return l===G.replacementClass||l.match(z)?c.toSvg.push(l):c.toNode.push(l),c},{toNode:[],toSvg:[]});h[0].attributes.class=v.toSvg.join(" ");var a=h.map(function(c){return Jc(c)}).join("\n");l.setAttribute("class",v.toNode.join(" ")),l.setAttribute(Z,""),l.innerHTML=a}};function hl(c){c()}function zl(h,c){var z="function"==typeof c?c:$c;if(0===h.length)z();else{var l=hl;G.mutateApproach===w&&(l=o.requestAnimationFrame||hl),l(function(){var c=!0===G.autoReplaceSvg?ll.replace:ll[G.autoReplaceSvg]||ll.replace,l=Rc.begin("mutate");h.map(c),l(),z()})}}var vl=!1;function al(){vl=!1}var ml=null;function sl(c){if(t&&G.observeMutations){var v=c.treeCallback,a=c.nodeCallback,m=c.pseudoElementsCallback,l=c.observeMutationsRoot,h=void 0===l?V:l;ml=new t(function(c){vl||bc(c).forEach(function(c){if("childList"===c.type&&0 { + callback.apply(this, args); + }, delay); + }; +} diff --git a/aigo/public/robots.txt b/aigo/public/robots.txt new file mode 100644 index 0000000..eb05362 --- /dev/null +++ b/aigo/public/robots.txt @@ -0,0 +1,2 @@ +User-agent: * +Disallow: diff --git a/aigo/public/sounds/chatify/new-message-sound.mp3 b/aigo/public/sounds/chatify/new-message-sound.mp3 new file mode 100644 index 0000000..a7dd14c Binary files /dev/null and b/aigo/public/sounds/chatify/new-message-sound.mp3 differ diff --git a/aigo/resources/css/app.css b/aigo/resources/css/app.css new file mode 100644 index 0000000..b5c61c9 --- /dev/null +++ b/aigo/resources/css/app.css @@ -0,0 +1,3 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; diff --git a/aigo/resources/js/app.js b/aigo/resources/js/app.js new file mode 100644 index 0000000..a8093be --- /dev/null +++ b/aigo/resources/js/app.js @@ -0,0 +1,7 @@ +import './bootstrap'; + +import Alpine from 'alpinejs'; + +window.Alpine = Alpine; + +Alpine.start(); diff --git a/aigo/resources/js/bootstrap.js b/aigo/resources/js/bootstrap.js new file mode 100644 index 0000000..deb2e10 --- /dev/null +++ b/aigo/resources/js/bootstrap.js @@ -0,0 +1,12 @@ +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 + * allow your team to quickly build robust real-time web applications. + */ + +import './echo'; diff --git a/aigo/resources/js/echo.js b/aigo/resources/js/echo.js new file mode 100644 index 0000000..9349afa --- /dev/null +++ b/aigo/resources/js/echo.js @@ -0,0 +1,14 @@ +import Echo from 'laravel-echo'; + +import Pusher from 'pusher-js'; +window.Pusher = Pusher; + +window.Echo = new Echo({ + broadcaster: 'reverb', + key: import.meta.env.VITE_REVERB_APP_KEY, + wsHost: import.meta.env.VITE_REVERB_HOST, + wsPort: import.meta.env.VITE_REVERB_PORT ?? 80, + wssPort: import.meta.env.VITE_REVERB_PORT ?? 443, + forceTLS: (import.meta.env.VITE_REVERB_SCHEME ?? 'https') === 'https', + enabledTransports: ['ws', 'wss'], +}); diff --git a/aigo/resources/views/about.blade.php b/aigo/resources/views/about.blade.php new file mode 100644 index 0000000..fe1345b --- /dev/null +++ b/aigo/resources/views/about.blade.php @@ -0,0 +1,112 @@ + + + + + + + + + + + About Us + + + + + @include('navbar') +
+
+
+

Kesehatan Anda Awal Dari Langkah Kami

+
+
+
+
+
+
+
+

Apa itu AIGO ?

+
+
+

+ Aigo hadir sebagai sahabat setia dalam perjalanan Anda menuju kesehatan yang lebih baik. + Awalnya dimulai dari keinginan sederhana untuk membantu individu dalam mengatasi obesitas, + kami dengan penuh semangat berbagi informasi, dukungan, dan motivasi untuk mengubah gaya hidup Anda. + Kami mengerti bahwa setiap langkah menuju kesehatan memiliki tantangan dan rintangan yang berbeda. + Oleh karena itu, kami berkomitmen untuk menjadi tempat di mana Anda dapat menemukan inspirasi, + saran yang dapat dipercaya, dan komunitas yang peduli. Bersama-sama, mari kita hadapi setiap rintangan + dengan keyakinan dan semangat, karena setiap langkah kecil yang Anda ambil memiliki dampak besar dalam + perjalanan menuju kesehatan yang lebih baik. +

+
+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+

Visi

+

Menjadi sumber terdepan dalam mengatasi obesitas melalui + platform daring yang inovatif dan terpercaya.

+
+
+

Misi

+
    +
  1. Menyediakan informasi obesitas yang akurat dan mudah dipahami.
  2. +
  3. Mengembangkan alat evaluasi obesitas yang interaktif dan efektif.
  4. +
  5. Memberikan panduan praktis tentang pola makan sehat dan aktivitas fisik.
  6. +
  7. Membangun kesadaran komunitas tentang pentingnya kesehatan berat badan dan gaya hidup seimbang.
  8. +
+
+
+
+
+
+ + + + diff --git a/aigo/resources/views/acceptance-patients.blade.php b/aigo/resources/views/acceptance-patients.blade.php new file mode 100644 index 0000000..98c4dbf --- /dev/null +++ b/aigo/resources/views/acceptance-patients.blade.php @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + Patient Acceptance + + +
+ @include('doctor-sidebar') +
+

+
Patient Acceptance
+

+ +
+ + {{-- LIST CARDS --}} + + @foreach ($consultations as $consultation) +
+
+
+
+
+

{{ $consultation->patient->name }}

+

{{ $consultation->patient->email }}

+
+
+
+ Location icon +

{{ $consultation->location }}

+
+
+
+ Calendar icon +

{{ $consultation->consultation_date }}

+
+
+ Clock icon +

{{ $consultation->consultation_time }}

+
+
+ +
+
+
+ @csrf + +
+
+ +
+
+ @csrf + +
+
+
+
+
+ @endforeach +
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/aigo/resources/views/activity-report.blade.php b/aigo/resources/views/activity-report.blade.php new file mode 100644 index 0000000..699a972 --- /dev/null +++ b/aigo/resources/views/activity-report.blade.php @@ -0,0 +1,271 @@ + + + + + + + + + + + + + + + + + + Activity Report + + +
+ @include('client-sidebar') +
+

+
Activity Report
+

+
+

Summary

+
+
+
+ Steps icon +
Steps
+
+
+
{{ $totalSteps }}
+
Steps per minute
+
+
+
+ +
+
+
+ Steps icon +
Distance
+
+
+
{{ $totalDistance }}
+
Meters
+
+
+
+ +
+
+
+ Steps icon +
Duration
+
+
+
{{ $durationValue }}
+
{{ ucfirst($durationUnit) }}
+
+
+
+ +
+
+
+ Steps icon +
Avg. Sleep
+
+
+
{{ $averageSleepTime }}
+
Hours / Day
+
+
+
+ +

Recommendation & Statistics

+
+ +
+
Recommendation
+
+
+ Calories icon +
+
+
+

Calories (cal)

+

+ 0 / {{ $predictedCalories }} +

+
+
+
+
+ +
+
+ +
+
+ Calories icon +
+
+ @php + $maxDistance = $recommended_distance; + $percentage = 0; + if ($maxDistance != 0) { + $percentage = ($totalDistance / $maxDistance) * 100; + $percentage = min($percentage, 100); // Ensure the percentage doesn't exceed 100 + } + @endphp +
+

Running Distance (m)

+

+ {{ $totalDistance }} /{{ $maxDistance }} +

+
+
+
+
+
+
+
+ + {{-- STATISTICS --}} +
+
Daily Activity
+ +
+
+ +
+
+
Weight Tracking
+ @php + $previousWeight = null; + @endphp + + @foreach ($filteredHealthData as $data) +
+
+
{{ $data->formatted_created_at }}
+
{{ $data->weight }} kg
+
+
+
{{ $data->time }}
+
+ @if ($data->weight_difference > 0) +
+{{ $data->weight_difference }} kg
+ @elseif ($data->weight_difference < 0) +
{{ $data->weight_difference }} kg
+ @else +
+{{ $data->weight_difference }} kg
+ @endif +
+
+
+ @endforeach +
+
+ + +
+
+
Activity History
+
+ + + + + + + + + + + + @foreach ($activities as $activity) + + + + + + + + @endforeach + +
TanggalOlahragaJarak LariWaktu/DurasiAvg. Steps
{{ $activity['date'] }}{{ $activity['type'] }}{{ $activity['distance'] }} meter{{ $activity['duration'] }} detik{{ $activity['avg_steps'] }} detik
+
+
+
+ +
+ + +
+
+ + + + + + + + {{-- --}} + + + + diff --git a/aigo/resources/views/admin-profile.blade.php b/aigo/resources/views/admin-profile.blade.php new file mode 100644 index 0000000..c4f8c35 --- /dev/null +++ b/aigo/resources/views/admin-profile.blade.php @@ -0,0 +1,144 @@ + + + + + + + + + + + + + + + + Admin Profile + + + + @include('admin-sidebar') +
+
+
+
+
+
+
+
+
+
+
+ 140x140 +
+
+
+
+
+

John Smith

+

@johnny.s

+
+ +
+
+
+ administrator +
Joined 09 Dec 2017
+
+
+
+ +
+
+
+
+
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+
+
+ + +
+
+
+
+
+
+ + +
+
+
+
+
+
+
+
Change Password
+
+
+
+ + +
+
+
+
+
+
+ + +
+
+
+
+
+
+ +
+
+
+
+
+
+ +
+
+ + +
+
+
+
+
+
+
+
+
+
+ + + + diff --git a/aigo/resources/views/admin-sidebar.blade.php b/aigo/resources/views/admin-sidebar.blade.php new file mode 100644 index 0000000..77f0828 --- /dev/null +++ b/aigo/resources/views/admin-sidebar.blade.php @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + Dashboard + + + +
+ + + +
+ + + + + + + + + + \ No newline at end of file diff --git a/aigo/resources/views/auth/login.blade.php b/aigo/resources/views/auth/login.blade.php new file mode 100644 index 0000000..673e941 --- /dev/null +++ b/aigo/resources/views/auth/login.blade.php @@ -0,0 +1,87 @@ + + + + + + + + + + + + + Login + + + + + + + + + + @vite(['resources/css/app.css', 'resources/js/app.js']) + + + @include('navbar') +
+ +
+

Login

+ +
+ @csrf + + +
+ + + +
+ + +
+ + + + + +
+ + +
+ +
+ +
+ + + {{ __('Log in') }} + +
+ + +
+

Belum memiliki akun?Daftar sekarang

+
+
+
+
+ + + + + + + diff --git a/aigo/resources/views/auth/register.blade.php b/aigo/resources/views/auth/register.blade.php new file mode 100644 index 0000000..0abf440 --- /dev/null +++ b/aigo/resources/views/auth/register.blade.php @@ -0,0 +1,123 @@ + + + + + + + + + + + + + Register + + + + + + + + + + @vite(['resources/css/app.css', 'resources/js/app.js']) + + + @include('navbar') +
+
+

Register

+
+ @csrf + + +
+ + + +
+ + +
+ + + +
+ + +
+ + + +
+ + +
+ + + +
+ + +
+ + + +
+ + +
+ + + +
+ + + + +
+ + + + + +
+ + +
+ + + + + +
+ +
+ + + {{ __('Register') }} + +
+ +
+
+
+ + + diff --git a/aigo/resources/views/client-sidebar.blade.php b/aigo/resources/views/client-sidebar.blade.php new file mode 100644 index 0000000..9a338df --- /dev/null +++ b/aigo/resources/views/client-sidebar.blade.php @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + Dashboard + + + +
+ + + +
+ + + + + + + + + + \ No newline at end of file diff --git a/aigo/resources/views/components/input-error.blade.php b/aigo/resources/views/components/input-error.blade.php new file mode 100644 index 0000000..ad95f6b --- /dev/null +++ b/aigo/resources/views/components/input-error.blade.php @@ -0,0 +1,9 @@ +@props(['messages']) + +@if ($messages) +
    merge(['class' => 'text-sm text-red-600 dark:text-red-400 space-y-1']) }}> + @foreach ((array) $messages as $message) +
  • {{ $message }}
  • + @endforeach +
+@endif diff --git a/aigo/resources/views/components/input-label.blade.php b/aigo/resources/views/components/input-label.blade.php new file mode 100644 index 0000000..e93b059 --- /dev/null +++ b/aigo/resources/views/components/input-label.blade.php @@ -0,0 +1,5 @@ +@props(['value']) + + diff --git a/aigo/resources/views/components/primary-button.blade.php b/aigo/resources/views/components/primary-button.blade.php new file mode 100644 index 0000000..99bf389 --- /dev/null +++ b/aigo/resources/views/components/primary-button.blade.php @@ -0,0 +1,3 @@ + diff --git a/aigo/resources/views/components/text-input.blade.php b/aigo/resources/views/components/text-input.blade.php new file mode 100644 index 0000000..7779a13 --- /dev/null +++ b/aigo/resources/views/components/text-input.blade.php @@ -0,0 +1,3 @@ +@props(['disabled' => false]) + +merge(['class' => 'border-gray-300 dark:border-gray-700 dark:bg-gray-900 dark:text-gray-300 focus:border-indigo-500 dark:focus:border-indigo-600 focus:ring-indigo-500 dark:focus:ring-indigo-600 rounded-md shadow-sm']) !!}> diff --git a/aigo/resources/views/contact.blade.php b/aigo/resources/views/contact.blade.php new file mode 100644 index 0000000..e2623f6 --- /dev/null +++ b/aigo/resources/views/contact.blade.php @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + Contact + + + @include('navbar') +
+

Get In Touch

+
+
+
+ +
+

Phone

+

Admin

+

+62 817794453

+

Customer Service

+

+62 81334754

+
+
+
+
+ +
+

Email

+

@Aigo.com

+
+
+
+
+ +
+

Address

+

Jl. Telekomunikasi. 1, Terusan Buahbatu - Bojongsoang, Telkom University, Sukapura, Kec. Dayeuhkolot, Kabupaten Bandung, Jawa Barat 40257

+
+
+
+
+ + + + + + \ No newline at end of file diff --git a/aigo/resources/views/customer-profile.blade.php b/aigo/resources/views/customer-profile.blade.php new file mode 100644 index 0000000..bbb2449 --- /dev/null +++ b/aigo/resources/views/customer-profile.blade.php @@ -0,0 +1,136 @@ + + + + + + + + + + + + + + + + Customer Profile + + + + @include('client-sidebar') +
+
+
+
+
+
+
+
+
+
+
+ 140x140 +
+
+
+
+
+

John Smith

+

@johnny.s

+
+ +
+
+
+ administrator +
Joined 09 Dec 2017
+
+
+
+ +
+
+
+
+
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+
+
+ + +
+
+
+
+
+
+
+
Change Password
+
+
+
+ + +
+
+
+
+
+
+ + +
+
+
+
+
+
+ +
+
+
+
+
+
+ +
+
+ + +
+
+
+
+
+
+
+
+
+
+ + + + diff --git a/aigo/resources/views/customer-result.blade.php b/aigo/resources/views/customer-result.blade.php new file mode 100644 index 0000000..837d77a --- /dev/null +++ b/aigo/resources/views/customer-result.blade.php @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + Jadwal Konsultasi + + + @include('client-sidebar') +
+
+
+
+
Hasil Konsultasi Dokter
+
+ @foreach ($consultations as $consultation) +
+
+
+ +
+ +
+
+ + + + @endforeach +
+
+
+
+
+ + + + + \ No newline at end of file diff --git a/aigo/resources/views/customer-schedule.blade.php b/aigo/resources/views/customer-schedule.blade.php new file mode 100644 index 0000000..71e6720 --- /dev/null +++ b/aigo/resources/views/customer-schedule.blade.php @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + Jadwal Konsultasi + + + @include('client-sidebar') +
+ +
+ + + + + + + + + + + + + + @foreach ($approvedConsultations as $consultation) + + + + + + {{-- --}} + + + + + + + @endforeach + + +
Nama DokterLokasiGenderEmailAction
{{ $consultation->doctor->name }}{{ $consultation->location }}{{ $consultation->doctor->gender }}{{ $consultation->doctor->email }}{{ $item->updated_at->format('d F Y') }} + info + chat +
+
+ +
+ + + + + + + + + \ No newline at end of file diff --git a/aigo/resources/views/customer-transaction.blade.php b/aigo/resources/views/customer-transaction.blade.php new file mode 100644 index 0000000..9c920c4 --- /dev/null +++ b/aigo/resources/views/customer-transaction.blade.php @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + Customer Transaction + + + @include('client-sidebar') +
+
+
+
+
+
+
+
Total Earnings
+
₹430.00
+
as of 01-December 2022
+
+
+
+
+
Pending Payments
+
₹100.00
+
as of 01-December 2022
+
+
+
+
Payment History
+
+
All
+
Complete
+
Pending
+
Rejected
+
+
+
+
Order ID
+
Date
+
Amount
+
Total Questions
+
Status
+
Action
+
+
+
#15267
+
Mar 1, 2023
+
100
+
1
+
Success
+ +
+
+
#153587
+
Jan 26, 2023
+
300
+
3
+
Success
+ +
+
+
#12436
+
Feb 12, 2033
+
100
+
1
+
Success
+ +
+
+
#16879
+
Feb 28, 2033
+
500
+
5
+
Rejected
+ +
+
+
#16378
+
March 13, 2033
+
500
+
5
+
Success
+ +
+
+
#16609
+
March 18, 2033
+
100
+
1
+
Pending
+ +
+
+ + +
+
+
+
+ + + + + \ No newline at end of file diff --git a/aigo/resources/views/dashboardAdmin.blade.php b/aigo/resources/views/dashboardAdmin.blade.php new file mode 100644 index 0000000..9a64896 --- /dev/null +++ b/aigo/resources/views/dashboardAdmin.blade.php @@ -0,0 +1,220 @@ + + + + + + + + + + + + + + + + Admin + + + + @include('admin-sidebar') +
+

Admin Dashboard

+
+
+
+
+
+
+
+ Doctor Total Icon +
Doctor Total
+
+

{{ $doctorCount }}

+
+
+
+
+
+ Patient icon +
Patient Total
+
+

{{ $patientCount }}

+
+
+
+
+
+

User Roles

+ User roles icon +
+ +
+
+
+
+

Patients Summary

+
+
+
+
+
+
+ Male Icon +
+
+ Female Icon +
+
+
+
Male
+
{{ $maleCount }}
+
Female
+
{{ $femaleCount }}
+
+
+
+
+
+
+
+ Normal BMI Icon +
+
+ Obesity BMI Icon +
+
+
+
Normal
+
{{ $normalCount }}
+
Obesity
+
{{ $obesityCount }}
+
+
+
+
+

Statistics

+
+ +
+
+
+
+
+
+
+
+
+ Notification icon +
+

Don't forget to check notifications!

+

You might have missed something important!

+
+
+
+
+ +
+
+
+
+
+
+ +
+ + + + + + + + + + + + \ No newline at end of file diff --git a/aigo/resources/views/dashboardClient.blade.php b/aigo/resources/views/dashboardClient.blade.php new file mode 100644 index 0000000..f3e720a --- /dev/null +++ b/aigo/resources/views/dashboardClient.blade.php @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + Dashboard + + +
+ @include('client-sidebar') +
+

+
Customer Dashboard
+

+ +
+ + {{-- KOLOM 1 --}} +
+ {{-- PROFILE & RECOMMENDATIONS --}} +
+ {{-- PROFILE --}} +
+
+
+

{{auth()->user()->name}}

+

{{auth()->user()->email}}

+ +
+
+ Weight +
+ {{$healthData->weight ?? '0'}} + kg +
+
+ +
+ Height +
+ {{$healthData->height ?? '0'}} + cm +
+
+ +
+ Obesity Status + {{ $healthData->obesity_status ?? "0"}} +
+
+
+ +
+ + {{-- RECOMMENDATIONS --}} +
+

Recommendations

+
+
+ Calories icon +
+
+

Calories +

+

{{ $healthData->calorie_recommendation ?? '0' }} cal

+ +
+
+ +
+
+ Calories icon +
+
+

Running Distance

+

{{ $totalDistance ?? '0' }} meters

+
+
+ +
+
+ Calories icon +
+
+

Sleep Time

+

{{ $healthData->sleeptime ?? '0' }} hours/day

+
+
+
+
+ + + {{-- ACTIVITY HISTORY --}} +
+
+
+
Date
+
Activity
+
Distance
+
Duration
+
+ + @foreach ($activities as $activity) +
+
{{ $activity['date'] }}
+
{{ $activity['type'] }}
+
{{ $activity['distance'] }} m
+
{{ $activity['duration'] }} seconds
+
+ @endforeach +
+
+
+ + +
+ +
+
+ + + + {{-- --}} + + diff --git a/aigo/resources/views/dashboardDoctor.blade.php b/aigo/resources/views/dashboardDoctor.blade.php new file mode 100644 index 0000000..f213d76 --- /dev/null +++ b/aigo/resources/views/dashboardDoctor.blade.php @@ -0,0 +1,173 @@ + + + + + + + + + + + + + + + Doctor Dashboard + + + @include('doctor-sidebar') +
+
+
+

Doctor Dashboard

+
+
+
+
+
+ +
+
+
+
{{ $normalWeightCount }}
+
Normal
+
+
+
{{ $overweightCount }}
+
Overweight
+
+
+
{{ $unknownCount }}
+
Unknown
+
+
+
+
+
+
+
+
+

Patients Summary

+
+
+
+
+
+
+
+ Male icon +
+
+ Female icon +
+
+
+
Male
+
{{ $malePatients }}
+
Female
+
{{ $femalePatients }}
+
+
+
+
+
+
+
+ Male icon +
+
+ Female icon +
+
+
+
Total appointment
+
{{ $totalAppointments }}
+
Pending appointment
+
{{ $pendingAppointments }}
+
+
+
+
+
+
+
+
+
+
+

Appointments

+ + View More + + +
+ +
+
Name
+
Location
+
Date
+
Time
+
Status
+
+ + @foreach ($latestAppointments as $appointment) +
+
+ {{ $appointment->patient->name }} avatar +
{{ $appointment->patient->name }}
+
+
{{ $appointment->location }}
+
{{ $appointment->consultation_date }}
+
{{ $appointment->consultation_time }}
+
+ @if ($appointment->consultation_status === 'cancelled' || $appointment->consultation_status === 'declined') + {{ ucfirst($appointment->consultation_status) }} + @elseif ($appointment->consultation_status === 'pending') + {{ ucfirst($appointment->consultation_status) }} + @elseif ($appointment->consultation_status === 'approved') + {{ ucfirst($appointment->consultation_status) }} + @else + {{ ucfirst($appointment->consultation_status) }} + @endif +
+
+ @endforeach +
+
+
+
+ + + + + + diff --git a/aigo/resources/views/doctor-list.blade.php b/aigo/resources/views/doctor-list.blade.php new file mode 100644 index 0000000..d24b334 --- /dev/null +++ b/aigo/resources/views/doctor-list.blade.php @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + List Dokter + + + @include('admin-sidebar') +
+ +
+ + + + + + + + + + + + + + + @foreach ($data as $item) + + + + + + + {{-- --}} + + + @endforeach + + +
UsernameNama LengkapGenderEmailTeleponAction
{{ $item->username }}{{ $item->name }}{{ $item->gender }}{{ $item->email }}{{ $item->telepon }}{{ $item->updated_at->format('d F Y') }} + edit + delete_forever +
+
+
+ + + + + + + + + + + \ No newline at end of file diff --git a/aigo/resources/views/doctor-notifications.blade.php b/aigo/resources/views/doctor-notifications.blade.php new file mode 100644 index 0000000..c8c3895 --- /dev/null +++ b/aigo/resources/views/doctor-notifications.blade.php @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + Patient Acceptance + + +
+ @include('doctor-sidebar') +
+

+
Log & History
+

+ +
+ @if ($notifications->count() > 0) +
    + @foreach ($notifications as $notification) +
  • +
    +
    + {{ $notification->message }} +
    + {{ $notification->created_at->diffForHumans() }} +
    +
    +
  • + @endforeach +
+ @else +

No notifications found.

+ @endif +
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/aigo/resources/views/doctor-profile.blade.php b/aigo/resources/views/doctor-profile.blade.php new file mode 100644 index 0000000..f6eb52c --- /dev/null +++ b/aigo/resources/views/doctor-profile.blade.php @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + + Doctor Profile + + + @include('doctor-sidebar') +
+
+
+
+
+
+
+
+
+
+
+ 140x140 +
+
+
+
+
+

{{auth()->user()->name}}

+

{{auth()->user()->email}}

+
+ +
+
+
+ administrator +
Joined 09 Dec 2017
+
+
+
+ +
+
+
+
+
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+
+
+ + +
+
+
+
+
+
+
+
+
Change Password
+
+
+
+ + +
+
+
+
+
+
+ + +
+
+
+
+
+
+ +
+
+
+
+
+
+ +
+
+ + +
+
+
+
+
+
+
+
+
+
+ + + + diff --git a/aigo/resources/views/doctor-result-form.blade.php b/aigo/resources/views/doctor-result-form.blade.php new file mode 100644 index 0000000..a1c5a68 --- /dev/null +++ b/aigo/resources/views/doctor-result-form.blade.php @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + Berikan Rekomendasi Pasien + + + @include('doctor-sidebar') +
+ +
+
+
+
Consultation Result
+ +
+
+ @csrf + + + +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ + +
+
+
+
+
+ +
+ + + + + \ No newline at end of file diff --git a/aigo/resources/views/doctor-schedule.blade.php b/aigo/resources/views/doctor-schedule.blade.php new file mode 100644 index 0000000..07ff956 --- /dev/null +++ b/aigo/resources/views/doctor-schedule.blade.php @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + Doctor Dashboard + + + @include('doctor-sidebar') +
+ +
+ + + + + + + + + + + + + + + + @foreach ($approvedConsultations as $consultation) + + + + + + + + {{-- --}} + + + + @endforeach + + +
Nama LengkapLokasiGenderEmailBerat BadanTinggi BadanAction
{{ $consultation->patient->name }}{{ $consultation->location }}{{ $consultation->patient->gender }}{{ $consultation->patient->email }}{{ $consultation->patient->healthDatas->last()->weight ?? 'N/A'}} {{ $consultation->patient->healthDatas->last()->height ?? 'N/A'}}{{ $item->updated_at->format('d F Y') }} + assignment_add + chat +
+
+ +
+ + + + + \ No newline at end of file diff --git a/aigo/resources/views/doctor-sidebar.blade.php b/aigo/resources/views/doctor-sidebar.blade.php new file mode 100644 index 0000000..fe6c5b8 --- /dev/null +++ b/aigo/resources/views/doctor-sidebar.blade.php @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + Dashboard + + + +
+ + + +
+ + + + + + + + + + \ No newline at end of file diff --git a/aigo/resources/views/doctor-transaction.blade.php b/aigo/resources/views/doctor-transaction.blade.php new file mode 100644 index 0000000..d672670 --- /dev/null +++ b/aigo/resources/views/doctor-transaction.blade.php @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + Doctor Transaction + + + @include('doctor-sidebar') +
+
+
+
+
+
+
+
Total Earnings
+
₹430.00
+
as of 01-December 2022
+
+
+
+
+
Pending Payments
+
₹100.00
+
as of 01-December 2022
+
+
+
+
Payment History
+
+
All
+
Complete
+
Pending
+
Rejected
+
+
+
+
Order ID
+
Date
+
Amount
+
Total Questions
+
Status
+
Action
+
+
+
#15267
+
Mar 1, 2023
+
100
+
1
+
Success
+ +
+
+
#153587
+
Jan 26, 2023
+
300
+
3
+
Success
+ +
+
+
#12436
+
Feb 12, 2033
+
100
+
1
+
Success
+ +
+
+
#16879
+
Feb 28, 2033
+
500
+
5
+
Rejected
+ +
+
+
#16378
+
March 13, 2033
+
500
+
5
+
Success
+ +
+
+
#16609
+
March 18, 2033
+
100
+
1
+
Pending
+
+ + +
+
+
+ + +
+
+
+
+ + + + + \ No newline at end of file diff --git a/aigo/resources/views/health-data.blade.php b/aigo/resources/views/health-data.blade.php new file mode 100644 index 0000000..a0e3bf4 --- /dev/null +++ b/aigo/resources/views/health-data.blade.php @@ -0,0 +1,186 @@ + + + + + + + + + + + + + + + + Request Consultation + + +
+ @include('client-sidebar') +
+
+
+

Health Data

+
+
+
+
+ @csrf + {{-- ROW 1 --}} +
+ {{-- Tanggal Lahir --}} +
+
+ +
+ +
+
+
+ @error('birthdate') +
{{ $message }}
+ @enderror +
+
+ {{-- Berat Badan --}} +
+
+ + + @error('weight') +
{{ $message }}
+ @enderror +
+
+
+ {{-- ROW 2 --}} +
+ {{-- Tinggi Badan --}} +
+
+ + + @error('height') +
{{ $message }}
+ @enderror +
+
+ {{-- Waktu Tidur --}} +
+
+ + + @error('sleeptime') +
{{ $message }}
+ @enderror +
+
+
+ {{-- ROW 3 --}} +
+ {{-- Riwayat Alergi Makanan --}} +
+
+ + + @error('alergi_makanan') +
{{ $message }}
+ @enderror +
+
+ {{-- Kebiasaan Makan --}} +
+
+ + + @error('food') +
{{ $message }}
+ @enderror +
+
+
+ {{-- ROW 4 --}} +
+ {{-- Riwayat Penyakit --}} +
+
+ + + @error('disease') +
{{ $message }}
+ @enderror +
+
+
+
+
+ +
+
+
+ +
+
+
+ + + + + + diff --git a/aigo/resources/views/home.blade.php b/aigo/resources/views/home.blade.php new file mode 100644 index 0000000..308e465 --- /dev/null +++ b/aigo/resources/views/home.blade.php @@ -0,0 +1,151 @@ + + + + + + + + + + + Home + + + + + @include('navbar') +
+
+
+
+
+

Cegah sebelum Terlambat. Kenali Risiko dan Amati Pola Makan serta Gaya Hidup Anda.

+

Obesitas bukan hanya masalah penampilan, tapi juga kesehatan. Perubahan kecil dalam gaya hidup dapat membuat perbedaan besar.

+ Kenali Tubuh Anda +
+
+ +
+
+
+
+
+
+
+

Our Service

+
+
+
+
+
+ ... +
+

Cek Tingkat Obesitas

+
+
+
+
+
+ ... +
+

Rekomendasi Pengelolaan Kesehatan

+
+
+
+
+
+ ... +
+

Konsultasi Dokter

+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/aigo/resources/views/jadwal-konsultasi.blade.php b/aigo/resources/views/jadwal-konsultasi.blade.php new file mode 100644 index 0000000..1158c5d --- /dev/null +++ b/aigo/resources/views/jadwal-konsultasi.blade.php @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + Request Consultation + + +
+ @include('client-sidebar') +
+
+
+

Jadwal Konsultasi

+
+
+
+ +
+ @csrf + {{-- ROW 1 --}} +
+ {{-- PILIH DOKTER --}} +
+
+ + + @error('doctor_id') +
{{ $message }}
+ @enderror +
+
+ + {{-- TANGGAL KONSULTASI --}} +
+
+ +
+ +
+
+
+ @error('consultation_date') +
{{ $message }}
+ @enderror +
+
+
+ + {{-- ROW 2 --}} +
+ {{-- JAM KONSULTASI --}} +
+
+ + + @error('consultation_time') +
{{ $message }}
+ @enderror +
+
+ + {{-- LOKASI KONSULTASI --}} +
+
+ + + @error('location') +
{{ $message }}
+ @enderror +
+
+
+
+
+ +
+
+
+
+
+
+ + + + + + diff --git a/aigo/resources/views/navbar.blade.php b/aigo/resources/views/navbar.blade.php new file mode 100644 index 0000000..7e92656 --- /dev/null +++ b/aigo/resources/views/navbar.blade.php @@ -0,0 +1,57 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/aigo/resources/views/patient-list.blade.php b/aigo/resources/views/patient-list.blade.php new file mode 100644 index 0000000..74def28 --- /dev/null +++ b/aigo/resources/views/patient-list.blade.php @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + List Pasien + + + + @include('admin-sidebar') +
+ + +
+ + + + + + + + + + + + + + + @foreach ($data as $item) + + + + + + + {{-- --}} + + + @endforeach + + +
UsernameNama LengkapGenderEmailTeleponAction
{{ $item->username }}{{ $item->name }}{{ $item->gender }}{{ $item->email }}{{ $item->telepon }}{{ $item->updated_at->format('d F Y') }} + edit + delete_forever +
+
+
+ + + + + + + + + + + \ No newline at end of file diff --git a/aigo/resources/views/patient-notifications.blade.php b/aigo/resources/views/patient-notifications.blade.php new file mode 100644 index 0000000..b965004 --- /dev/null +++ b/aigo/resources/views/patient-notifications.blade.php @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + Patient Acceptance + + +
+ @include('client-sidebar') +
+

+
Notifications
+

+ +
+ @if ($notifications->count() > 0) +
    + @foreach ($notifications as $notification) +
  • +
    +
    + {{ $notification->message }} +
    + {{ $notification->created_at->diffForHumans() }} +
    +
    +
  • + @endforeach +
+ @else +

No notifications found.

+ @endif +
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/aigo/resources/views/privacy-policy-admin.blade.php b/aigo/resources/views/privacy-policy-admin.blade.php new file mode 100644 index 0000000..30ea661 --- /dev/null +++ b/aigo/resources/views/privacy-policy-admin.blade.php @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + Privacy & Policy + + + @include('admin-sidebar') +
+
+

Privacy Policy for Aigo

+ +

At Aigo , accessible from aigo.w333zard.my.id/, one of our main priorities is the privacy of our visitors. This Privacy Policy document contains types of information that is collected and recorded by Aigo and how we use it.

+ +

If you have additional questions or require more information about our Privacy Policy, do not hesitate to contact us.

+ +

Log Files

+ +

Aigo follows a standard procedure of using log files. These files log visitors when they visit websites. All hosting companies do this and a part of hosting services' analytics. The information collected by log files include internet protocol (IP) addresses, browser type, Internet Service Provider (ISP), date and time stamp, referring/exit pages, and possibly the number of clicks. These are not linked to any information that is personally identifiable. The purpose of the information is for analyzing trends, administering the site, tracking users' movement on the website, and gathering demographic information. Our Privacy Policy was created with the help of the Privacy Policy Generator.

+ +

Cookies and Web Beacons

+ +

Like any other website, Aigo uses "cookies". These cookies are used to store information including visitors' preferences, and the pages on the website that the visitor accessed or visited. The information is used to optimize the users' experience by customizing our web page content based on visitors' browser type and/or other information.

+ +

For more general information on cookies, please read the "Cookies" article from the Privacy Policy Generator.

+ + + +

Privacy Policies

+ +

You may consult this list to find the Privacy Policy for each of the advertising partners of Aigo .

+ +

Third-party ad servers or ad networks uses technologies like cookies, JavaScript, or Web Beacons that are used in their respective advertisements and links that appear on Aigo , which are sent directly to users' browser. They automatically receive your IP address when this occurs. These technologies are used to measure the effectiveness of their advertising campaigns and/or to personalize the advertising content that you see on websites that you visit.

+ +

Note that Aigo has no access to or control over these cookies that are used by third-party advertisers.

+ +

Third Party Privacy Policies

+ +

Aigo 's Privacy Policy does not apply to other advertisers or websites. Thus, we are advising you to consult the respective Privacy Policies of these third-party ad servers for more detailed information. It may include their practices and instructions about how to opt-out of certain options.

+ +

You can choose to disable cookies through your individual browser options. To know more detailed information about cookie management with specific web browsers, it can be found at the browsers' respective websites. What Are Cookies?

+ +

Children's Information

+ +

Another part of our priority is adding protection for children while using the internet. We encourage parents and guardians to observe, participate in, and/or monitor and guide their online activity.

+ +

Aigo does not knowingly collect any Personal Identifiable Information from children under the age of 13. If you think that your child provided this kind of information on our website, we strongly encourage you to contact us immediately and we will do our best efforts to promptly remove such information from our records.

+ +

Online Privacy Policy Only

+ +

This Privacy Policy applies only to our online activities and is valid for visitors to our website with regards to the information that they shared and/or collect in Aigo . This policy is not applicable to any information collected offline or via channels other than this website.

+ +

Consent

+ +

By using our website, you hereby consent to our Privacy Policy and agree to its Terms and Conditions.

+
+
+ + + + + \ No newline at end of file diff --git a/aigo/resources/views/privacy-policy-client.blade.php b/aigo/resources/views/privacy-policy-client.blade.php new file mode 100644 index 0000000..1a44fc1 --- /dev/null +++ b/aigo/resources/views/privacy-policy-client.blade.php @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + Privacy & Policy + + + @include('client-sidebar') +
+
+

Privacy Policy for Aigo

+ +

At Aigo , accessible from aigo.w333zard.my.id/, one of our main priorities is the privacy of our visitors. This Privacy Policy document contains types of information that is collected and recorded by Aigo and how we use it.

+ +

If you have additional questions or require more information about our Privacy Policy, do not hesitate to contact us.

+ +

Log Files

+ +

Aigo follows a standard procedure of using log files. These files log visitors when they visit websites. All hosting companies do this and a part of hosting services' analytics. The information collected by log files include internet protocol (IP) addresses, browser type, Internet Service Provider (ISP), date and time stamp, referring/exit pages, and possibly the number of clicks. These are not linked to any information that is personally identifiable. The purpose of the information is for analyzing trends, administering the site, tracking users' movement on the website, and gathering demographic information. Our Privacy Policy was created with the help of the Privacy Policy Generator.

+ +

Cookies and Web Beacons

+ +

Like any other website, Aigo uses "cookies". These cookies are used to store information including visitors' preferences, and the pages on the website that the visitor accessed or visited. The information is used to optimize the users' experience by customizing our web page content based on visitors' browser type and/or other information.

+ +

For more general information on cookies, please read the "Cookies" article from the Privacy Policy Generator.

+ + + +

Privacy Policies

+ +

You may consult this list to find the Privacy Policy for each of the advertising partners of Aigo .

+ +

Third-party ad servers or ad networks uses technologies like cookies, JavaScript, or Web Beacons that are used in their respective advertisements and links that appear on Aigo , which are sent directly to users' browser. They automatically receive your IP address when this occurs. These technologies are used to measure the effectiveness of their advertising campaigns and/or to personalize the advertising content that you see on websites that you visit.

+ +

Note that Aigo has no access to or control over these cookies that are used by third-party advertisers.

+ +

Third Party Privacy Policies

+ +

Aigo 's Privacy Policy does not apply to other advertisers or websites. Thus, we are advising you to consult the respective Privacy Policies of these third-party ad servers for more detailed information. It may include their practices and instructions about how to opt-out of certain options.

+ +

You can choose to disable cookies through your individual browser options. To know more detailed information about cookie management with specific web browsers, it can be found at the browsers' respective websites. What Are Cookies?

+ +

Children's Information

+ +

Another part of our priority is adding protection for children while using the internet. We encourage parents and guardians to observe, participate in, and/or monitor and guide their online activity.

+ +

Aigo does not knowingly collect any Personal Identifiable Information from children under the age of 13. If you think that your child provided this kind of information on our website, we strongly encourage you to contact us immediately and we will do our best efforts to promptly remove such information from our records.

+ +

Online Privacy Policy Only

+ +

This Privacy Policy applies only to our online activities and is valid for visitors to our website with regards to the information that they shared and/or collect in Aigo . This policy is not applicable to any information collected offline or via channels other than this website.

+ +

Consent

+ +

By using our website, you hereby consent to our Privacy Policy and agree to its Terms and Conditions.

+
+
+ + + + + \ No newline at end of file diff --git a/aigo/resources/views/privacy-policy-doctor.blade.php b/aigo/resources/views/privacy-policy-doctor.blade.php new file mode 100644 index 0000000..3b3b981 --- /dev/null +++ b/aigo/resources/views/privacy-policy-doctor.blade.php @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + Privacy & Policy + + + @include('doctor-sidebar') +
+
+

Privacy Policy for Aigo

+ +

At Aigo , accessible from aigo.w333zard.my.id/, one of our main priorities is the privacy of our visitors. This Privacy Policy document contains types of information that is collected and recorded by Aigo and how we use it.

+ +

If you have additional questions or require more information about our Privacy Policy, do not hesitate to contact us.

+ +

Log Files

+ +

Aigo follows a standard procedure of using log files. These files log visitors when they visit websites. All hosting companies do this and a part of hosting services' analytics. The information collected by log files include internet protocol (IP) addresses, browser type, Internet Service Provider (ISP), date and time stamp, referring/exit pages, and possibly the number of clicks. These are not linked to any information that is personally identifiable. The purpose of the information is for analyzing trends, administering the site, tracking users' movement on the website, and gathering demographic information. Our Privacy Policy was created with the help of the Privacy Policy Generator.

+ +

Cookies and Web Beacons

+ +

Like any other website, Aigo uses "cookies". These cookies are used to store information including visitors' preferences, and the pages on the website that the visitor accessed or visited. The information is used to optimize the users' experience by customizing our web page content based on visitors' browser type and/or other information.

+ +

For more general information on cookies, please read the "Cookies" article from the Privacy Policy Generator.

+ + + +

Privacy Policies

+ +

You may consult this list to find the Privacy Policy for each of the advertising partners of Aigo .

+ +

Third-party ad servers or ad networks uses technologies like cookies, JavaScript, or Web Beacons that are used in their respective advertisements and links that appear on Aigo , which are sent directly to users' browser. They automatically receive your IP address when this occurs. These technologies are used to measure the effectiveness of their advertising campaigns and/or to personalize the advertising content that you see on websites that you visit.

+ +

Note that Aigo has no access to or control over these cookies that are used by third-party advertisers.

+ +

Third Party Privacy Policies

+ +

Aigo 's Privacy Policy does not apply to other advertisers or websites. Thus, we are advising you to consult the respective Privacy Policies of these third-party ad servers for more detailed information. It may include their practices and instructions about how to opt-out of certain options.

+ +

You can choose to disable cookies through your individual browser options. To know more detailed information about cookie management with specific web browsers, it can be found at the browsers' respective websites. What Are Cookies?

+ +

Children's Information

+ +

Another part of our priority is adding protection for children while using the internet. We encourage parents and guardians to observe, participate in, and/or monitor and guide their online activity.

+ +

Aigo does not knowingly collect any Personal Identifiable Information from children under the age of 13. If you think that your child provided this kind of information on our website, we strongly encourage you to contact us immediately and we will do our best efforts to promptly remove such information from our records.

+ +

Online Privacy Policy Only

+ +

This Privacy Policy applies only to our online activities and is valid for visitors to our website with regards to the information that they shared and/or collect in Aigo . This policy is not applicable to any information collected offline or via channels other than this website.

+ +

Consent

+ +

By using our website, you hereby consent to our Privacy Policy and agree to its Terms and Conditions.

+
+
+ + + + + \ No newline at end of file diff --git a/aigo/resources/views/terms-con-admin.blade.php b/aigo/resources/views/terms-con-admin.blade.php new file mode 100644 index 0000000..cc13a23 --- /dev/null +++ b/aigo/resources/views/terms-con-admin.blade.php @@ -0,0 +1,146 @@ + + + + + + + + + + + + + + + Terms and Conditions + + + @include('admin-sidebar') +
+
+

Terms and Conditions

+ +

Welcome to Aigo!

+ +

These terms and conditions outline the rules and regulations for the use of Aigo's Website, located at aigo.w333zard.my.id/.

+ +

By accessing this website we assume you accept these terms and conditions. Do not continue to use Aigo if you do not agree to take all of the terms and conditions stated on this page.

+ +

The following terminology applies to these Terms and Conditions, Privacy Statement and Disclaimer Notice and all Agreements: "Client", "You" and "Your" refers to you, the person log on this website and compliant to the Company’s terms and conditions. "The Company", "Ourselves", "We", "Our" and "Us", refers to our Company. "Party", "Parties", or "Us", refers to both the Client and ourselves. All terms refer to the offer, acceptance and consideration of payment necessary to undertake the process of our assistance to the Client in the most appropriate manner for the express purpose of meeting the Client’s needs in respect of provision of the Company’s stated services, in accordance with and subject to, prevailing law of Netherlands. Any use of the above terminology or other words in the singular, plural, capitalization and/or he/she or they, are taken as interchangeable and therefore as referring to same. Our Terms and Conditions were created with the help of the Terms & Conditions Generator.

+ +

Cookies

+ +

We employ the use of cookies. By accessing Aigo, you agreed to use cookies in agreement with the Aigo's Privacy Policy.

+ +

Most interactive websites use cookies to let us retrieve the user's details for each visit. Cookies are used by our website to enable the functionality of certain areas to make it easier for people visiting our website. Some of our affiliate/advertising partners may also use cookies.

+ +

License

+ +

Unless otherwise stated, Aigo and/or its licensors own the intellectual property rights for all material on Aigo. All intellectual property rights are reserved. You may access this from Aigo for your own personal use subjected to restrictions set in these terms and conditions.

+ +

You must not:

+
    +
  • Republish material from Aigo
  • +
  • Sell, rent or sub-license material from Aigo
  • +
  • Reproduce, duplicate or copy material from Aigo
  • +
  • Redistribute content from Aigo
  • +
+ +

This Agreement shall begin on the date hereof.

+ +

Parts of this website offer an opportunity for users to post and exchange opinions and information in certain areas of the website. Aigo does not filter, edit, publish or review Comments prior to their presence on the website. Comments do not reflect the views and opinions of Aigo,its agents and/or affiliates. Comments reflect the views and opinions of the person who post their views and opinions. To the extent permitted by applicable laws, Aigo shall not be liable for the Comments or for any liability, damages or expenses caused and/or suffered as a result of any use of and/or posting of and/or appearance of the Comments on this website.

+ +

Aigo reserves the right to monitor all Comments and to remove any Comments which can be considered inappropriate, offensive or causes breach of these Terms and Conditions.

+ +

You warrant and represent that:

+ +
    +
  • You are entitled to post the Comments on our website and have all necessary licenses and consents to do so;
  • +
  • The Comments do not invade any intellectual property right, including without limitation copyright, patent or trademark of any third party;
  • +
  • The Comments do not contain any defamatory, libelous, offensive, indecent or otherwise unlawful material which is an invasion of privacy
  • +
  • The Comments will not be used to solicit or promote business or custom or present commercial activities or unlawful activity.
  • +
+ +

You hereby grant Aigo a non-exclusive license to use, reproduce, edit and authorize others to use, reproduce and edit any of your Comments in any and all forms, formats or media.

+ +

Hyperlinking to our Content

+ +

The following organizations may link to our Website without prior written approval:

+ +
    +
  • Government agencies;
  • +
  • Search engines;
  • +
  • News organizations;
  • +
  • Online directory distributors may link to our Website in the same manner as they hyperlink to the Websites of other listed businesses; and
  • +
  • System wide Accredited Businesses except soliciting non-profit organizations, charity shopping malls, and charity fundraising groups which may not hyperlink to our Web site.
  • +
+ +

These organizations may link to our home page, to publications or to other Website information so long as the link: (a) is not in any way deceptive; (b) does not falsely imply sponsorship, endorsement or approval of the linking party and its products and/or services; and (c) fits within the context of the linking party's site.

+ +

We may consider and approve other link requests from the following types of organizations:

+ +
    +
  • commonly-known consumer and/or business information sources;
  • +
  • dot.com community sites;
  • +
  • associations or other groups representing charities;
  • +
  • online directory distributors;
  • +
  • internet portals;
  • +
  • accounting, law and consulting firms; and
  • +
  • educational institutions and trade associations.
  • +
+ +

We will approve link requests from these organizations if we decide that: (a) the link would not make us look unfavorably to ourselves or to our accredited businesses; (b) the organization does not have any negative records with us; (c) the benefit to us from the visibility of the hyperlink compensates the absence of Aigo; and (d) the link is in the context of general resource information.

+ +

These organizations may link to our home page so long as the link: (a) is not in any way deceptive; (b) does not falsely imply sponsorship, endorsement or approval of the linking party and its products or services; and (c) fits within the context of the linking party's site.

+ +

If you are one of the organizations listed in paragraph 2 above and are interested in linking to our website, you must inform us by sending an e-mail to Aigo. Please include your name, your organization name, contact information as well as the URL of your site, a list of any URLs from which you intend to link to our Website, and a list of the URLs on our site to which you would like to link. Wait 2-3 weeks for a response.

+ +

Approved organizations may hyperlink to our Website as follows:

+ +
    +
  • By use of our corporate name; or
  • +
  • By use of the uniform resource locator being linked to; or
  • +
  • By use of any other description of our Website being linked to that makes sense within the context and format of content on the linking party's site.
  • +
+ +

No use of Aigo's logo or other artwork will be allowed for linking absent a trademark license agreement.

+ +

iFrames

+ +

Without prior approval and written permission, you may not create frames around our Webpages that alter in any way the visual presentation or appearance of our Website.

+ +

Content Liability

+ +

We shall not be hold responsible for any content that appears on your Website. You agree to protect and defend us against all claims that is rising on your Website. No link(s) should appear on any Website that may be interpreted as libelous, obscene or criminal, or which infringes, otherwise violates, or advocates the infringement or other violation of, any third party rights.

+ +

Reservation of Rights

+ +

We reserve the right to request that you remove all links or any particular link to our Website. You approve to immediately remove all links to our Website upon request. We also reserve the right to amen these terms and conditions and it's linking policy at any time. By continuously linking to our Website, you agree to be bound to and follow these linking terms and conditions.

+ +

Removal of links from our website

+ +

If you find any link on our Website that is offensive for any reason, you are free to contact and inform us any moment. We will consider requests to remove links but we are not obligated to or so or to respond to you directly.

+ +

We do not ensure that the information on this website is correct, we do not warrant its completeness or accuracy; nor do we promise to ensure that the website remains available or that the material on the website is kept up to date.

+ +

Disclaimer

+ +

To the maximum extent permitted by applicable law, we exclude all representations, warranties and conditions relating to our website and the use of this website. Nothing in this disclaimer will:

+ +
    +
  • limit or exclude our or your liability for death or personal injury;
  • +
  • limit or exclude our or your liability for fraud or fraudulent misrepresentation;
  • +
  • limit any of our or your liabilities in any way that is not permitted under applicable law; or
  • +
  • exclude any of our or your liabilities that may not be excluded under applicable law.
  • +
+ +

The limitations and prohibitions of liability set in this Section and elsewhere in this disclaimer: (a) are subject to the preceding paragraph; and (b) govern all liabilities arising under the disclaimer, including liabilities arising in contract, in tort and for breach of statutory duty.

+ +

As long as the website and the information and services on the website are provided free of charge, we will not be liable for any loss or damage of any nature.

+
+
+ + + + + \ No newline at end of file diff --git a/aigo/resources/views/terms-con-client.blade.php b/aigo/resources/views/terms-con-client.blade.php new file mode 100644 index 0000000..6269bed --- /dev/null +++ b/aigo/resources/views/terms-con-client.blade.php @@ -0,0 +1,146 @@ + + + + + + + + + + + + + + + Terms and Conditions + + + @include('client-sidebar') +
+
+

Terms and Conditions

+ +

Welcome to Aigo!

+ +

These terms and conditions outline the rules and regulations for the use of Aigo's Website, located at aigo.w333zard.my.id/.

+ +

By accessing this website we assume you accept these terms and conditions. Do not continue to use Aigo if you do not agree to take all of the terms and conditions stated on this page.

+ +

The following terminology applies to these Terms and Conditions, Privacy Statement and Disclaimer Notice and all Agreements: "Client", "You" and "Your" refers to you, the person log on this website and compliant to the Company’s terms and conditions. "The Company", "Ourselves", "We", "Our" and "Us", refers to our Company. "Party", "Parties", or "Us", refers to both the Client and ourselves. All terms refer to the offer, acceptance and consideration of payment necessary to undertake the process of our assistance to the Client in the most appropriate manner for the express purpose of meeting the Client’s needs in respect of provision of the Company’s stated services, in accordance with and subject to, prevailing law of Netherlands. Any use of the above terminology or other words in the singular, plural, capitalization and/or he/she or they, are taken as interchangeable and therefore as referring to same. Our Terms and Conditions were created with the help of the Terms & Conditions Generator.

+ +

Cookies

+ +

We employ the use of cookies. By accessing Aigo, you agreed to use cookies in agreement with the Aigo's Privacy Policy.

+ +

Most interactive websites use cookies to let us retrieve the user's details for each visit. Cookies are used by our website to enable the functionality of certain areas to make it easier for people visiting our website. Some of our affiliate/advertising partners may also use cookies.

+ +

License

+ +

Unless otherwise stated, Aigo and/or its licensors own the intellectual property rights for all material on Aigo. All intellectual property rights are reserved. You may access this from Aigo for your own personal use subjected to restrictions set in these terms and conditions.

+ +

You must not:

+
    +
  • Republish material from Aigo
  • +
  • Sell, rent or sub-license material from Aigo
  • +
  • Reproduce, duplicate or copy material from Aigo
  • +
  • Redistribute content from Aigo
  • +
+ +

This Agreement shall begin on the date hereof.

+ +

Parts of this website offer an opportunity for users to post and exchange opinions and information in certain areas of the website. Aigo does not filter, edit, publish or review Comments prior to their presence on the website. Comments do not reflect the views and opinions of Aigo,its agents and/or affiliates. Comments reflect the views and opinions of the person who post their views and opinions. To the extent permitted by applicable laws, Aigo shall not be liable for the Comments or for any liability, damages or expenses caused and/or suffered as a result of any use of and/or posting of and/or appearance of the Comments on this website.

+ +

Aigo reserves the right to monitor all Comments and to remove any Comments which can be considered inappropriate, offensive or causes breach of these Terms and Conditions.

+ +

You warrant and represent that:

+ +
    +
  • You are entitled to post the Comments on our website and have all necessary licenses and consents to do so;
  • +
  • The Comments do not invade any intellectual property right, including without limitation copyright, patent or trademark of any third party;
  • +
  • The Comments do not contain any defamatory, libelous, offensive, indecent or otherwise unlawful material which is an invasion of privacy
  • +
  • The Comments will not be used to solicit or promote business or custom or present commercial activities or unlawful activity.
  • +
+ +

You hereby grant Aigo a non-exclusive license to use, reproduce, edit and authorize others to use, reproduce and edit any of your Comments in any and all forms, formats or media.

+ +

Hyperlinking to our Content

+ +

The following organizations may link to our Website without prior written approval:

+ +
    +
  • Government agencies;
  • +
  • Search engines;
  • +
  • News organizations;
  • +
  • Online directory distributors may link to our Website in the same manner as they hyperlink to the Websites of other listed businesses; and
  • +
  • System wide Accredited Businesses except soliciting non-profit organizations, charity shopping malls, and charity fundraising groups which may not hyperlink to our Web site.
  • +
+ +

These organizations may link to our home page, to publications or to other Website information so long as the link: (a) is not in any way deceptive; (b) does not falsely imply sponsorship, endorsement or approval of the linking party and its products and/or services; and (c) fits within the context of the linking party's site.

+ +

We may consider and approve other link requests from the following types of organizations:

+ +
    +
  • commonly-known consumer and/or business information sources;
  • +
  • dot.com community sites;
  • +
  • associations or other groups representing charities;
  • +
  • online directory distributors;
  • +
  • internet portals;
  • +
  • accounting, law and consulting firms; and
  • +
  • educational institutions and trade associations.
  • +
+ +

We will approve link requests from these organizations if we decide that: (a) the link would not make us look unfavorably to ourselves or to our accredited businesses; (b) the organization does not have any negative records with us; (c) the benefit to us from the visibility of the hyperlink compensates the absence of Aigo; and (d) the link is in the context of general resource information.

+ +

These organizations may link to our home page so long as the link: (a) is not in any way deceptive; (b) does not falsely imply sponsorship, endorsement or approval of the linking party and its products or services; and (c) fits within the context of the linking party's site.

+ +

If you are one of the organizations listed in paragraph 2 above and are interested in linking to our website, you must inform us by sending an e-mail to Aigo. Please include your name, your organization name, contact information as well as the URL of your site, a list of any URLs from which you intend to link to our Website, and a list of the URLs on our site to which you would like to link. Wait 2-3 weeks for a response.

+ +

Approved organizations may hyperlink to our Website as follows:

+ +
    +
  • By use of our corporate name; or
  • +
  • By use of the uniform resource locator being linked to; or
  • +
  • By use of any other description of our Website being linked to that makes sense within the context and format of content on the linking party's site.
  • +
+ +

No use of Aigo's logo or other artwork will be allowed for linking absent a trademark license agreement.

+ +

iFrames

+ +

Without prior approval and written permission, you may not create frames around our Webpages that alter in any way the visual presentation or appearance of our Website.

+ +

Content Liability

+ +

We shall not be hold responsible for any content that appears on your Website. You agree to protect and defend us against all claims that is rising on your Website. No link(s) should appear on any Website that may be interpreted as libelous, obscene or criminal, or which infringes, otherwise violates, or advocates the infringement or other violation of, any third party rights.

+ +

Reservation of Rights

+ +

We reserve the right to request that you remove all links or any particular link to our Website. You approve to immediately remove all links to our Website upon request. We also reserve the right to amen these terms and conditions and it's linking policy at any time. By continuously linking to our Website, you agree to be bound to and follow these linking terms and conditions.

+ +

Removal of links from our website

+ +

If you find any link on our Website that is offensive for any reason, you are free to contact and inform us any moment. We will consider requests to remove links but we are not obligated to or so or to respond to you directly.

+ +

We do not ensure that the information on this website is correct, we do not warrant its completeness or accuracy; nor do we promise to ensure that the website remains available or that the material on the website is kept up to date.

+ +

Disclaimer

+ +

To the maximum extent permitted by applicable law, we exclude all representations, warranties and conditions relating to our website and the use of this website. Nothing in this disclaimer will:

+ +
    +
  • limit or exclude our or your liability for death or personal injury;
  • +
  • limit or exclude our or your liability for fraud or fraudulent misrepresentation;
  • +
  • limit any of our or your liabilities in any way that is not permitted under applicable law; or
  • +
  • exclude any of our or your liabilities that may not be excluded under applicable law.
  • +
+ +

The limitations and prohibitions of liability set in this Section and elsewhere in this disclaimer: (a) are subject to the preceding paragraph; and (b) govern all liabilities arising under the disclaimer, including liabilities arising in contract, in tort and for breach of statutory duty.

+ +

As long as the website and the information and services on the website are provided free of charge, we will not be liable for any loss or damage of any nature.

+
+
+ + + + + \ No newline at end of file diff --git a/aigo/resources/views/terms-con-doctor.blade.php b/aigo/resources/views/terms-con-doctor.blade.php new file mode 100644 index 0000000..ba505ae --- /dev/null +++ b/aigo/resources/views/terms-con-doctor.blade.php @@ -0,0 +1,144 @@ + + + + + + + + + + + + + + + Terms and Conditions + + + @include('doctor-sidebar') +
+
+

Terms and Conditions

+ +

Welcome to Aigo!

+ +

These terms and conditions outline the rules and regulations for the use of Aigo's Website, located at aigo.w333zard.my.id/.

+ +

By accessing this website we assume you accept these terms and conditions. Do not continue to use Aigo if you do not agree to take all of the terms and conditions stated on this page.

+ +

The following terminology applies to these Terms and Conditions, Privacy Statement and Disclaimer Notice and all Agreements: "Client", "You" and "Your" refers to you, the person log on this website and compliant to the Company’s terms and conditions. "The Company", "Ourselves", "We", "Our" and "Us", refers to our Company. "Party", "Parties", or "Us", refers to both the Client and ourselves. All terms refer to the offer, acceptance and consideration of payment necessary to undertake the process of our assistance to the Client in the most appropriate manner for the express purpose of meeting the Client’s needs in respect of provision of the Company’s stated services, in accordance with and subject to, prevailing law of Netherlands. Any use of the above terminology or other words in the singular, plural, capitalization and/or he/she or they, are taken as interchangeable and therefore as referring to same. Our Terms and Conditions were created with the help of the Terms & Conditions Generator.

+ +

Cookies

+ +

We employ the use of cookies. By accessing Aigo, you agreed to use cookies in agreement with the Aigo's Privacy Policy.

+ +

Most interactive websites use cookies to let us retrieve the user's details for each visit. Cookies are used by our website to enable the functionality of certain areas to make it easier for people visiting our website. Some of our affiliate/advertising partners may also use cookies.

+ +

License

+ +

Unless otherwise stated, Aigo and/or its licensors own the intellectual property rights for all material on Aigo. All intellectual property rights are reserved. You may access this from Aigo for your own personal use subjected to restrictions set in these terms and conditions.

+ +

You must not:

+
    +
  • Republish material from Aigo
  • +
  • Sell, rent or sub-license material from Aigo
  • +
  • Reproduce, duplicate or copy material from Aigo
  • +
  • Redistribute content from Aigo
  • +
+ +

This Agreement shall begin on the date hereof.

+ +

Parts of this website offer an opportunity for users to post and exchange opinions and information in certain areas of the website. Aigo does not filter, edit, publish or review Comments prior to their presence on the website. Comments do not reflect the views and opinions of Aigo,its agents and/or affiliates. Comments reflect the views and opinions of the person who post their views and opinions. To the extent permitted by applicable laws, Aigo shall not be liable for the Comments or for any liability, damages or expenses caused and/or suffered as a result of any use of and/or posting of and/or appearance of the Comments on this website.

+ +

Aigo reserves the right to monitor all Comments and to remove any Comments which can be considered inappropriate, offensive or causes breach of these Terms and Conditions.

+ +

You warrant and represent that:

+ +
    +
  • You are entitled to post the Comments on our website and have all necessary licenses and consents to do so;
  • +
  • The Comments do not invade any intellectual property right, including without limitation copyright, patent or trademark of any third party;
  • +
  • The Comments do not contain any defamatory, libelous, offensive, indecent or otherwise unlawful material which is an invasion of privacy
  • +
  • The Comments will not be used to solicit or promote business or custom or present commercial activities or unlawful activity.
  • +
+ +

You hereby grant Aigo a non-exclusive license to use, reproduce, edit and authorize others to use, reproduce and edit any of your Comments in any and all forms, formats or media.

+ +

Hyperlinking to our Content

+ +

The following organizations may link to our Website without prior written approval:

+ +
    +
  • Government agencies;
  • +
  • Search engines;
  • +
  • News organizations;
  • +
  • Online directory distributors may link to our Website in the same manner as they hyperlink to the Websites of other listed businesses; and
  • +
  • System wide Accredited Businesses except soliciting non-profit organizations, charity shopping malls, and charity fundraising groups which may not hyperlink to our Web site.
  • +
+ +

These organizations may link to our home page, to publications or to other Website information so long as the link: (a) is not in any way deceptive; (b) does not falsely imply sponsorship, endorsement or approval of the linking party and its products and/or services; and (c) fits within the context of the linking party's site.

+ +

We may consider and approve other link requests from the following types of organizations:

+ +
    +
  • commonly-known consumer and/or business information sources;
  • +
  • dot.com community sites;
  • +
  • associations or other groups representing charities;
  • +
  • online directory distributors;
  • +
  • internet portals;
  • +
  • accounting, law and consulting firms; and
  • +
  • educational institutions and trade associations.
  • +
+ +

We will approve link requests from these organizations if we decide that: (a) the link would not make us look unfavorably to ourselves or to our accredited businesses; (b) the organization does not have any negative records with us; (c) the benefit to us from the visibility of the hyperlink compensates the absence of Aigo; and (d) the link is in the context of general resource information.

+ +

These organizations may link to our home page so long as the link: (a) is not in any way deceptive; (b) does not falsely imply sponsorship, endorsement or approval of the linking party and its products or services; and (c) fits within the context of the linking party's site.

+ +

If you are one of the organizations listed in paragraph 2 above and are interested in linking to our website, you must inform us by sending an e-mail to Aigo. Please include your name, your organization name, contact information as well as the URL of your site, a list of any URLs from which you intend to link to our Website, and a list of the URLs on our site to which you would like to link. Wait 2-3 weeks for a response.

+ +

Approved organizations may hyperlink to our Website as follows:

+ +
    +
  • By use of our corporate name; or
  • +
  • By use of the uniform resource locator being linked to; or
  • +
  • By use of any other description of our Website being linked to that makes sense within the context and format of content on the linking party's site.
  • +
+ +

No use of Aigo's logo or other artwork will be allowed for linking absent a trademark license agreement.

+ +

iFrames

+ +

Without prior approval and written permission, you may not create frames around our Webpages that alter in any way the visual presentation or appearance of our Website.

+ +

Content Liability

+ +

We shall not be hold responsible for any content that appears on your Website. You agree to protect and defend us against all claims that is rising on your Website. No link(s) should appear on any Website that may be interpreted as libelous, obscene or criminal, or which infringes, otherwise violates, or advocates the infringement or other violation of, any third party rights.

+ +

Reservation of Rights

+ +

We reserve the right to request that you remove all links or any particular link to our Website. You approve to immediately remove all links to our Website upon request. We also reserve the right to amen these terms and conditions and it's linking policy at any time. By continuously linking to our Website, you agree to be bound to and follow these linking terms and conditions.

+ +

Removal of links from our website

+ +

If you find any link on our Website that is offensive for any reason, you are free to contact and inform us any moment. We will consider requests to remove links but we are not obligated to or so or to respond to you directly.

+ +

We do not ensure that the information on this website is correct, we do not warrant its completeness or accuracy; nor do we promise to ensure that the website remains available or that the material on the website is kept up to date.

+ +

Disclaimer

+ +

To the maximum extent permitted by applicable law, we exclude all representations, warranties and conditions relating to our website and the use of this website. Nothing in this disclaimer will:

+ +
    +
  • limit or exclude our or your liability for death or personal injury;
  • +
  • limit or exclude our or your liability for fraud or fraudulent misrepresentation;
  • +
  • limit any of our or your liabilities in any way that is not permitted under applicable law; or
  • +
  • exclude any of our or your liabilities that may not be excluded under applicable law.
  • +
+ +

The limitations and prohibitions of liability set in this Section and elsewhere in this disclaimer: (a) are subject to the preceding paragraph; and (b) govern all liabilities arising under the disclaimer, including liabilities arising in contract, in tort and for breach of statutory duty.

+ +

As long as the website and the information and services on the website are provided free of charge, we will not be liable for any loss or damage of any nature.

+
+
+ + + \ No newline at end of file diff --git a/aigo/resources/views/update-user.blade.php b/aigo/resources/views/update-user.blade.php new file mode 100644 index 0000000..b282d3e --- /dev/null +++ b/aigo/resources/views/update-user.blade.php @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + Update User + + +
+ @include('admin-sidebar') +
+
+
+

Update User Data

+
+
+
+
+ @csrf + {{-- ROW 1 --}} +
+ {{-- Nama --}} +
+
+ + +
+
+ {{-- User Role --}} +
+
+ + +
+
+
+ {{-- ROW 2 --}} +
+ {{-- Telepon --}} +
+
+ + +
+
+ {{-- Email --}} +
+
+ + +
+
+
+ {{-- ROW 3 --}} +
+ {{-- Alamat --}} +
+
+ + +
+
+ {{-- Gender --}} +
+
+ + +
+
+
+
+
+ +
+
+
+
+
+
+ + + + + diff --git a/aigo/resources/views/vendor/Chatify/layouts/favorite.blade.php b/aigo/resources/views/vendor/Chatify/layouts/favorite.blade.php new file mode 100644 index 0000000..ed08f49 --- /dev/null +++ b/aigo/resources/views/vendor/Chatify/layouts/favorite.blade.php @@ -0,0 +1,8 @@ +
+ @if($user) +
+
+

{{ strlen($user->name) > 5 ? substr($user->name,0,6).'..' : $user->name }}

+ @endif +
diff --git a/aigo/resources/views/vendor/Chatify/layouts/footerLinks.blade.php b/aigo/resources/views/vendor/Chatify/layouts/footerLinks.blade.php new file mode 100644 index 0000000..4554023 --- /dev/null +++ b/aigo/resources/views/vendor/Chatify/layouts/footerLinks.blade.php @@ -0,0 +1,17 @@ + + + + + diff --git a/aigo/resources/views/vendor/Chatify/layouts/headLinks.blade.php b/aigo/resources/views/vendor/Chatify/layouts/headLinks.blade.php new file mode 100644 index 0000000..630c934 --- /dev/null +++ b/aigo/resources/views/vendor/Chatify/layouts/headLinks.blade.php @@ -0,0 +1,30 @@ +{{ config('chatify.name') }} + +{{-- Meta tags --}} + + + + + + + +{{-- scripts --}} + + + + + + +{{-- styles --}} + + + + + +{{-- Setting messenger primary color to css --}} + diff --git a/aigo/resources/views/vendor/Chatify/layouts/info.blade.php b/aigo/resources/views/vendor/Chatify/layouts/info.blade.php new file mode 100644 index 0000000..0b0d2ff --- /dev/null +++ b/aigo/resources/views/vendor/Chatify/layouts/info.blade.php @@ -0,0 +1,11 @@ +{{-- user info and avatar --}} +
+

{{ config('chatify.name') }}

+ +{{-- shared photos --}} +
+

Shared Photos

+
+
diff --git a/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php b/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php new file mode 100644 index 0000000..a1436ab --- /dev/null +++ b/aigo/resources/views/vendor/Chatify/layouts/listItem.blade.php @@ -0,0 +1,90 @@ +{{-- -------------------- Saved Messages -------------------- --}} +@if($get == 'saved') + + + {{-- Avatar side --}} + + {{-- center side --}} + + +
+
+ +
+
+

Saved Messages You

+ Save messages secretly +
+@endif + +{{-- -------------------- Contact list -------------------- --}} +@if($get == 'users' && !!$lastMessage) +body, 'UTF-8', 'UTF-8'); +$lastMessageBody = strlen($lastMessageBody) > 30 ? mb_substr($lastMessageBody, 0, 30, 'UTF-8').'..' : $lastMessageBody; +?> + + + {{-- Avatar side --}} + + {{-- center side --}} + + +
+ @if($user->active_status) + + @endif +
+
+
+

+ {{ strlen($user->name) > 12 ? trim(substr($user->name,0,12)).'..' : $user->name }} + {{ $lastMessage->timeAgo }}

+ + {{-- Last Message user indicator --}} + {!! + $lastMessage->from_id == Auth::user()->id + ? 'You :' + : '' + !!} + {{-- Last message body --}} + @if($lastMessage->attachment == null) + {!! + $lastMessageBody + !!} + @else + Attachment + @endif + + {{-- New messages counter --}} + {!! $unseenCounter > 0 ? "".$unseenCounter."" : '' !!} +
+@endif + +{{-- -------------------- Search Item -------------------- --}} +@if($get == 'search_item') + + + {{-- Avatar side --}} + + {{-- center side --}} + + + +
+
+
+
+

+ {{ strlen($user->name) > 12 ? trim(substr($user->name,0,12)).'..' : $user->name }} +

+@endif + +{{-- -------------------- Shared photos Item -------------------- --}} +@if($get == 'sharedPhoto') +
+@endif + + diff --git a/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php b/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php new file mode 100644 index 0000000..6c1719d --- /dev/null +++ b/aigo/resources/views/vendor/Chatify/layouts/messageCard.blade.php @@ -0,0 +1,39 @@ + + ".($isSender ? "" : '' )." $timeAgo + "; +?> + +
+ {{-- Delete Message Button --}} + @if ($isSender) +
+ +
+ @endif + {{-- Card --}} +
+ @if (@$attachment->type != 'image' || $message) +
+ {!! ($message == null && $attachment != null && @$attachment->type != 'file') ? $attachment->title : nl2br($message) !!} + {!! $timeAndSeen !!} + {{-- If attachment is a file --}} + @if(@$attachment->type == 'file') + + {{$attachment->title}} + @endif +
+ @endif + @if(@$attachment->type == 'image') +
+
+
{{ $attachment->title }}
+
+
+ {!! $timeAndSeen !!} +
+
+ @endif +
+
diff --git a/aigo/resources/views/vendor/Chatify/layouts/modals.blade.php b/aigo/resources/views/vendor/Chatify/layouts/modals.blade.php new file mode 100644 index 0000000..504aaac --- /dev/null +++ b/aigo/resources/views/vendor/Chatify/layouts/modals.blade.php @@ -0,0 +1,73 @@ +{{-- ---------------------- Image modal box ---------------------- --}} +
+ × + +
+ + {{-- ---------------------- Delete Modal ---------------------- --}} +
+
+
+
Are you sure you want to delete this?
+
You can not undo this action
+ +
+
+
+ {{-- ---------------------- Alert Modal ---------------------- --}} +
+
+
+
+
+ +
+
+
+ {{-- ---------------------- Settings Modal ---------------------- --}} +
+
+
+
+ @csrf + {{--
Update your profile settings
--}} +
+ {{-- Udate profile avatar --}} +
+

+ + {{-- Dark/Light Mode --}} +

+

Dark Mode

+ {{-- change messenger color --}} +

+ {{--

Change {{ config('chatify.name') }} Color

--}} +
+ @foreach (config('chatify.colors') as $color) + + @if (($loop->index + 1) % 5 == 0) +
+ @endif + @endforeach +
+
+ +
+
+
+
diff --git a/aigo/resources/views/vendor/Chatify/layouts/sendForm.blade.php b/aigo/resources/views/vendor/Chatify/layouts/sendForm.blade.php new file mode 100644 index 0000000..c435734 --- /dev/null +++ b/aigo/resources/views/vendor/Chatify/layouts/sendForm.blade.php @@ -0,0 +1,9 @@ +
+
+ @csrf + + + + +
+
diff --git a/aigo/resources/views/vendor/Chatify/pages/app-original.php b/aigo/resources/views/vendor/Chatify/pages/app-original.php new file mode 100644 index 0000000..e03918a --- /dev/null +++ b/aigo/resources/views/vendor/Chatify/pages/app-original.php @@ -0,0 +1,107 @@ +@include('Chatify::layouts.headLinks') +
+ {{-- ----------------------Users/Groups lists side---------------------- --}} +
+ {{-- Header and search bar --}} + + {{-- tabs and lists --}} +
+ {{-- Lists [Users/Group] --}} + {{-- ---------------- [ User Tab ] ---------------- --}} +
+ {{-- Favorites --}} +
+

Favorites

+
+
+ {{-- Saved Messages --}} +

Your Space

+ {!! view('Chatify::layouts.listItem', ['get' => 'saved']) !!} + {{-- Contact --}} +

All Messages

+
+
+ {{-- ---------------- [ Search Tab ] ---------------- --}} +
+ {{-- items --}} +

Search

+
+

Type to search..

+
+
+
+
+ + {{-- ----------------------Messaging side---------------------- --}} +
+ {{-- header title [conversation name] amd buttons --}} + + + {{-- Messaging area --}} +
+
+

Please select a chat to start messaging

+
+ {{-- Typing indicator --}} +
+
+
+ + + + + +
+
+
+ +
+ {{-- Send Message Form --}} + @include('Chatify::layouts.sendForm') +
+ {{-- ---------------------- Info side ---------------------- --}} +
+ {{-- nav actions --}} + + {!! view('Chatify::layouts.info')->render() !!} +
+
+ +@include('Chatify::layouts.modals') +@include('Chatify::layouts.footerLinks') diff --git a/aigo/resources/views/vendor/Chatify/pages/app.blade.php b/aigo/resources/views/vendor/Chatify/pages/app.blade.php new file mode 100644 index 0000000..f7542d0 --- /dev/null +++ b/aigo/resources/views/vendor/Chatify/pages/app.blade.php @@ -0,0 +1,112 @@ +@include('Chatify::layouts.headLinks') +
+ {{-- ----------------------Users/Groups lists side---------------------- --}} +
+ {{-- Header and search bar --}} + + {{-- tabs and lists --}} +
+ {{-- Lists [Users/Group] --}} + {{-- ---------------- [ User Tab ] ---------------- --}} +
+ {{-- Favorites --}} +
+

Favorites

+
+
+ {{-- Saved Messages --}} +

Your Space

+ {!! view('Chatify::layouts.listItem', ['get' => 'saved']) !!} + {{-- Contact --}} +

All Messages

+
+
+ {{-- ---------------- [ Search Tab ] ---------------- --}} +
+ {{-- items --}} +

Search

+
+

Type to search..

+
+
+
+
+ + {{-- ----------------------Messaging side---------------------- --}} +
+ {{-- header title [conversation name] amd buttons --}} + + + {{-- Messaging area --}} +
+
+

Please select a chat to start messaging

+
+ {{-- Typing indicator --}} +
+
+
+ + + + + +
+
+
+ +
+ {{-- Send Message Form --}} + @include('Chatify::layouts.sendForm') +
+ {{-- ---------------------- Info side ---------------------- --}} +
+ {{-- nav actions --}} + + {!! view('Chatify::layouts.info')->render() !!} +
+
+ +@include('Chatify::layouts.modals') +@include('Chatify::layouts.footerLinks') diff --git a/aigo/routes/auth.php b/aigo/routes/auth.php new file mode 100644 index 0000000..f269771 --- /dev/null +++ b/aigo/routes/auth.php @@ -0,0 +1,61 @@ +name('login'); + +Route::middleware('guest')->group(function () { + Route::get('register', [RegisteredUserController::class, 'create']) + ->name('register'); + + Route::post('register', [RegisteredUserController::class, 'store']); + + Route::get('login', [AuthenticatedSessionController::class, 'create']) + ->name('login'); + + Route::post('login', [AuthenticatedSessionController::class, 'store'])->name('store.login'); + + Route::get('forgot-password', [PasswordResetLinkController::class, 'create']) + ->name('password.request'); + + Route::post('forgot-password', [PasswordResetLinkController::class, 'store']) + ->name('password.email'); + + Route::get('reset-password/{token}', [NewPasswordController::class, 'create']) + ->name('password.reset'); + + Route::post('reset-password', [NewPasswordController::class, 'store']) + ->name('password.store'); +}); + +Route::middleware('auth')->group(function () { + Route::get('verify-email', EmailVerificationPromptController::class) + ->name('verification.notice'); + + Route::get('verify-email/{id}/{hash}', VerifyEmailController::class) + ->middleware(['signed', 'throttle:6,1']) + ->name('verification.verify'); + + Route::post('email/verification-notification', [EmailVerificationNotificationController::class, 'store']) + ->middleware('throttle:6,1') + ->name('verification.send'); + + Route::get('confirm-password', [ConfirmablePasswordController::class, 'show']) + ->name('password.confirm'); + + Route::post('confirm-password', [ConfirmablePasswordController::class, 'store']); + + Route::put('password', [PasswordController::class, 'update'])->name('password.update'); + + Route::post('logout', [AuthenticatedSessionController::class, 'destroy']) + ->name('logout'); +}); diff --git a/aigo/routes/channels.php b/aigo/routes/channels.php new file mode 100644 index 0000000..df2ad28 --- /dev/null +++ b/aigo/routes/channels.php @@ -0,0 +1,7 @@ +id === (int) $id; +}); diff --git a/aigo/routes/chatify/api.php b/aigo/routes/chatify/api.php new file mode 100644 index 0000000..9e3669d --- /dev/null +++ b/aigo/routes/chatify/api.php @@ -0,0 +1,75 @@ +name('api.pusher.auth'); + +/** + * Fetch info for specific id [user/group] + */ +Route::post('/idInfo', 'MessagesController@idFetchData')->name('api.idInfo'); + +/** + * Send message route + */ +Route::post('/sendMessage', 'MessagesController@send')->name('api.send.message'); + +/** + * Fetch messages + */ +Route::post('/fetchMessages', 'MessagesController@fetch')->name('api.fetch.messages'); + +/** + * Download attachments route to create a downloadable links + */ +Route::get('/download/{fileName}', 'MessagesController@download')->name('api.'.config('chatify.attachments.download_route_name')); + +/** + * Make messages as seen + */ +Route::post('/makeSeen', 'MessagesController@seen')->name('api.messages.seen'); + +/** + * Get contacts + */ +Route::get('/getContacts', 'MessagesController@getContacts')->name('api.contacts.get'); + +/** + * Star in favorite list + */ +Route::post('/star', 'MessagesController@favorite')->name('api.star'); + +/** + * get favorites list + */ +Route::post('/favorites', 'MessagesController@getFavorites')->name('api.favorites'); + +/** + * Search in messenger + */ +Route::get('/search', 'MessagesController@search')->name('api.search'); + +/** + * Get shared photos + */ +Route::post('/shared', 'MessagesController@sharedPhotos')->name('api.shared'); + +/** + * Delete Conversation + */ +Route::post('/deleteConversation', 'MessagesController@deleteConversation')->name('api.conversation.delete'); + +/** + * Delete Conversation + */ +Route::post('/updateSettings', 'MessagesController@updateSettings')->name('api.avatar.update'); + +/** + * Set active status + */ +Route::post('/setActiveStatus', 'MessagesController@setActiveStatus')->name('api.activeStatus.set'); + + diff --git a/aigo/routes/chatify/web.php b/aigo/routes/chatify/web.php new file mode 100644 index 0000000..95d7b8a --- /dev/null +++ b/aigo/routes/chatify/web.php @@ -0,0 +1,118 @@ +name(config('chatify.routes.prefix')); + +/** + * Fetch info for specific id [user/group] + */ +Route::post('/idInfo', 'MessagesController@idFetchData'); + +/** + * Send message route + */ +Route::post('/sendMessage', 'MessagesController@send')->name('send.message'); + +/** + * Fetch messages + */ +Route::post('/fetchMessages', 'MessagesController@fetch')->name('fetch.messages'); + +/** + * Download attachments route to create a downloadable links + */ +Route::get('/download/{fileName}', 'MessagesController@download')->name(config('chatify.attachments.download_route_name')); + +/** + * Authentication for pusher private channels + */ +Route::post('/chat/auth', 'MessagesController@pusherAuth')->name('pusher.auth'); + +/** + * Make messages as seen + */ +Route::post('/makeSeen', 'MessagesController@seen')->name('messages.seen'); + +/** + * Get contacts + */ +Route::get('/getContacts', 'MessagesController@getContacts')->name('contacts.get'); + +/** + * Update contact item data + */ +Route::post('/updateContacts', 'MessagesController@updateContactItem')->name('contacts.update'); + + +/** + * Star in favorite list + */ +Route::post('/star', 'MessagesController@favorite')->name('star'); + +/** + * get favorites list + */ +Route::post('/favorites', 'MessagesController@getFavorites')->name('favorites'); + +/** + * Search in messenger + */ +Route::get('/search', 'MessagesController@search')->name('search'); + +/** + * Get shared photos + */ +Route::post('/shared', 'MessagesController@sharedPhotos')->name('shared'); + +/** + * Delete Conversation + */ +Route::post('/deleteConversation', 'MessagesController@deleteConversation')->name('conversation.delete'); + +/** + * Delete Message + */ +Route::post('/deleteMessage', 'MessagesController@deleteMessage')->name('message.delete'); + +/** + * Update setting + */ +Route::post('/updateSettings', 'MessagesController@updateSettings')->name('avatar.update'); + +/** + * Set active status + */ +Route::post('/setActiveStatus', 'MessagesController@setActiveStatus')->name('activeStatus.set'); + + + + + + +/* +* [Group] view by id +*/ +Route::get('/group/{id}', 'MessagesController@index')->name('group'); + +/* +* user view by id. +* Note : If you added routes after the [User] which is the below one, +* it will considered as user id. +* +* e.g. - The commented routes below : +*/ +// Route::get('/route', function(){ return 'Munaf'; }); // works as a route +Route::get('/{id}', 'MessagesController@index')->name('user'); +// Route::get('/route', function(){ return 'Munaf'; }); // works as a user id diff --git a/aigo/routes/console.php b/aigo/routes/console.php new file mode 100644 index 0000000..eff2ed2 --- /dev/null +++ b/aigo/routes/console.php @@ -0,0 +1,8 @@ +comment(Inspiring::quote()); +})->purpose('Display an inspiring quote')->hourly(); diff --git a/aigo/routes/web.php b/aigo/routes/web.php new file mode 100644 index 0000000..9e1cb02 --- /dev/null +++ b/aigo/routes/web.php @@ -0,0 +1,116 @@ +name('strava.authorize'); +Route::get('/strava/callback', [StravaController::class, 'handleCallback'])->name('strava.callback'); + + + +// 1. CLIENT PAGES +Route::group(['prefix' => 'client', 'middleware' => ['auth', 'verified']], function () { + // DASHBOARD CONTROLLER + Route::get('/dashboard', [DashboardController::class, 'dashboardClient'])->name('dashboard')->middleware('role'); + Route::get('/activity-report', [DashboardController::class, 'activityReport'])->name('activity-report'); + Route::get('/schedule', [DashboardController::class, 'schedule'])->name('customer.schedule'); + Route::get('/notifications', [DashboardController::class, 'notifications'])->name('client.notifications'); + Route::get('/results', [DashboardController::class, 'consultationResults'])->name('patient.consultation-results'); + + // CONSULTATION CONTROLLER + Route::get('/health-data', [ConsultationController::class, 'showHealthDataForm'])->name('health-data.show'); + Route::post('/health-data', [ConsultationController::class, 'storeHealthDataForm'])->name('health-data.store'); + Route::get('/jadwal', [ConsultationController::class, 'showJadwalForm'])->name('jadwal.show'); + Route::post('/consultation', [ConsultationController::class, 'storeConsultation'])->name('consultation.store'); + Route::get('/profile', function () {return view('customer-profile');})->name('customer.profile'); + Route::get('/transaction', function () {return view('customer-transaction');})->name('customer.transaction'); + Route::get('/priv-policy', function () {return view('privacy-policy-client');})->name('customer.priv-policy'); + Route::get('/terms-con', function () {return view('terms-con-client');})->name('customer.terms-con'); +}); + + +// 2. ADMIN PAGES +Route::group(['middleware' => ['auth', 'verified']], function () { + Route::get('/admin/dashboard', [AdminController::class, 'dashboard'])->name('admin.dashboard')->middleware('role'); + Route::get('/admin/doctor-info', [AdminController::class, 'showDoctor'])->name('showDoctor'); + Route::get('/admin/patient-info', [AdminController::class, 'showPatient'])->name('showPatient'); + Route::get('/delete/user/{id}', [AdminController::class, 'delete'])->name('delete-user'); + Route::get('/user/{id}', [AdminController::class, 'showUserDetail'])->name('show-user'); + Route::post('/update/user/{id}', [AdminController::class, 'updateData'])->name('update-user'); + Route::get('/admin/profile', function () {return view('admin-profile');})->name('admin.profile'); + Route::get('/admin/priv-policy', function () {return view('privacy-policy-admin');})->name('admin.priv-policy'); + Route::get('/admin/terms-con', function () {return view('terms-con-admin');})->name('admin.terms-con'); + +}); + +// 3. DOCTOR PAGES +Route::group(['prefix' => 'doctor', 'middleware' => ['auth', 'verified']], function () { + Route::get('/dashboard', [DoctorController::class, 'dashboard'])->name('doctor.dashboard')->middleware('role'); + Route::post('/decline-consultation/{consultationId}', [DoctorController::class, 'declineConsultation'])->name('doctor.decline-consultation'); + Route::get('/patient-acceptance', [DoctorController::class, 'patientAcceptance'])->name('doctor.patient-acceptance'); + Route::get('/notifications', [DoctorController::class, 'notifications'])->name('doctor.notifications'); + + Route::get('/schedule', function () {return view('doctor-schedule');})->name('doctor.schedule'); + Route::get('/transaction', function () {return view('doctor-transaction');})->name('doctor.transaction'); + + Route::get('/profile', function () {return view('doctor-profile');})->name('doctor.profile'); + Route::get('/doctor/priv-policy', function () {return view('privacy-policy-doctor');})->name('doctor.priv-policy'); + Route::get('/doctor/terms-con', function () {return view('terms-con-doctor');})->name('doctor.terms-con'); + + Route::post('/approve-consultation/{consultationId}', [DoctorController::class, 'approveConsultation'])->name('doctor.approve-consultation'); + Route::get('/schedule', [DoctorController::class, 'schedule'])->name('doctor.schedule'); + + Route::get('/consultation-result/{patientId}', [DoctorController::class, 'showConsultationResultForm'])->name('doctor.show-consultation-result-form'); + Route::post('/consultation-result', [DoctorController::class, 'storeConsultationResult'])->name('doctor.store-consultation-result'); +}); + + +Route::middleware('auth')->group(function () { + Route::get('/profile', [ProfileController::class, 'edit'])->name('profile.edit'); + Route::patch('/profile', [ProfileController::class, 'update'])->name('profile.update'); + Route::delete('/profile', [ProfileController::class, 'destroy'])->name('profile.destroy'); +}); + +Route::middleware('auth')->get('/api/current-user-id', function () { + return response()->json(['user_id' => Auth::id()]); +}); + + +require __DIR__.'/auth.php'; diff --git a/aigo/storage/app/.gitignore b/aigo/storage/app/.gitignore new file mode 100644 index 0000000..8f4803c --- /dev/null +++ b/aigo/storage/app/.gitignore @@ -0,0 +1,3 @@ +* +!public/ +!.gitignore diff --git a/aigo/storage/app/public/.gitignore b/aigo/storage/app/public/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/aigo/storage/app/public/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/aigo/storage/framework/.gitignore b/aigo/storage/framework/.gitignore new file mode 100644 index 0000000..05c4471 --- /dev/null +++ b/aigo/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/aigo/tailwind.config.js b/aigo/tailwind.config.js new file mode 100644 index 0000000..cab0e0e --- /dev/null +++ b/aigo/tailwind.config.js @@ -0,0 +1,27 @@ +import defaultTheme from "tailwindcss/defaultTheme"; +import forms from "@tailwindcss/forms"; + +/** @type {import('tailwindcss').Config} */ + +module.exports = { + darkMode: "selector", + // ... +}; + +export default { + content: [ + "./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php", + "./storage/framework/views/*.php", + "./resources/views/**/*.blade.php", + ], + + theme: { + extend: { + fontFamily: { + sans: ["Figtree", ...defaultTheme.fontFamily.sans], + }, + }, + }, + + plugins: [forms], +}; diff --git a/aigo/tests/Feature/Auth/AuthenticationTest.php b/aigo/tests/Feature/Auth/AuthenticationTest.php new file mode 100644 index 0000000..acc2f86 --- /dev/null +++ b/aigo/tests/Feature/Auth/AuthenticationTest.php @@ -0,0 +1,111 @@ +get('/login'); + $response->assertStatus(200); + } + + public function test_users_can_authenticate_with_valid_credentials(): void + { + $user = User::factory()->create([ + 'password' => bcrypt($password = 'password'), + ]); + + $response = $this->post('/login', [ + 'email' => $user->email, + 'password' => $password, + ]); + + $this->assertAuthenticatedAs($user); + + // Assert redirect based on user role + if ($user->user_role === 'admin') { + $response->assertRedirect(route('admin-dashboard', [], false)); + } elseif ($user->user_role === 'doctor') { + //$response->assertRedirect(route('doctor-dashboard', [], false)); + } else { + $response->assertRedirect(route('user-dashboard', [], false)); + } + } + + + public function test_users_can_not_authenticate_with_invalid_password(): void + { + $user = User::factory()->create(); + + $response = $this->post('/login', [ + 'email' => $user->email, + 'password' => 'wrong-password', + ]); + + $response->assertSessionHasErrors(); + $this->assertGuest(); + } + + public function test_users_can_logout(): void + { + $user = User::factory()->create(); + + $response = $this->actingAs($user)->post('/logout'); + + $response->assertRedirect('/'); + $this->assertGuest(); + } + + public function test_user_can_redirect_to_user_dashboard(): void + { + $user = User::factory()->create(['user_role' => 'user']); + $userResponse = $this->post('/login', [ + 'email' => $user->email, + 'password' => 'password', + ]); + $userResponse->assertRedirect(route('user-dashboard')); + } + + public function test_admin_can_redirect_to_admin_dashboard(): void + { + $admin = User::factory()->create(['user_role' => 'admin']); + $adminResponse = $this->post('/login', [ + 'email' => $admin->email, + 'password' => 'password', // Assuming password is 'password' for all users + ]); + + $adminResponse->assertRedirect(route('admin-dashboard')); + } + + // public function test_doctor_can_redirect_to_doctor_dashboard(): void + // { + // $doctor = User::factory()->create(['user_role' => 'doctor']); + // $doctorResponse = $this->post('/login', [ + // 'email' => $doctor->email, + // 'password' => 'password', + // ]); + + // $doctorResponse->assertRedirect(route('doctor-dashboard')); + // } + + public function test_logout_destroys_authenticated_session(): void + { + $user = User::factory()->create(); + + $this->actingAs($user)->post('/logout'); + + $this->assertGuest(); + $this->assertFalse(Auth::check()); + $this->assertNull(Auth::user()); + $this->assertTrue(Session::has('_token')); + } +} diff --git a/aigo/tests/Feature/Auth/RegistrationTest.php b/aigo/tests/Feature/Auth/RegistrationTest.php new file mode 100644 index 0000000..c466344 --- /dev/null +++ b/aigo/tests/Feature/Auth/RegistrationTest.php @@ -0,0 +1,123 @@ +get('/register'); + + $response->assertStatus(200); + } + + public function test_new_user_can_register() + { + $userData = [ + 'username' => $this->faker->userName, + 'password' => 'password123', + 'password_confirmation' => 'password123', + 'name' => $this->faker->name, + 'email' => $this->faker->unique()->safeEmail, + 'telepon' => $this->faker->phoneNumber, + 'alamat' => $this->faker->address, + 'gender' => $this->faker->randomElement(['male', 'female']), + ]; + + $response = $this->post('/register', $userData); + + $response->assertStatus(302); // Check if redirected after successful registration + $response->assertRedirect(route('login')); + + $this->assertDatabaseHas('users', [ + 'username' => $userData['username'], + 'email' => strtolower($userData['email']), + 'telepon' => $userData['telepon'], + 'alamat' => $userData['alamat'], + 'gender' => $userData['gender'], + ]); + + // Assert that the password is hashed + $user = User::where('email', $userData['email'])->first(); + $this->assertTrue(Hash::check($userData['password'], $user->password)); + } + + public function test_registration_validation_fails_if_missing_required_fields() + { + $response = $this->post('/register', []); + + $response->assertSessionHasErrors(['username', 'password', 'name', 'email', 'telepon', 'gender']); + } + + public function test_registration_validation_fails_if_email_invalid() + { + $userData = [ + 'username' => $this->faker->userName, + 'password' => 'password123', + 'password_confirmation' => 'password123', + 'name' => $this->faker->name, + 'email' => 'invalid_email', + 'telepon' => $this->faker->phoneNumber, + 'alamat' => $this->faker->address, + 'gender' => $this->faker->randomElement(['male', 'female']), + ]; + + $response = $this->post('/register', $userData); + + $response->assertSessionHasErrors(['email']); + } + + public function test_registration_fails_if_duplicate_username() + { + $existingUser = User::factory()->create(); + + $userData = [ + 'username' => $existingUser->username, + 'password' => 'password123', + 'password_confirmation' => 'password123', + 'name' => $this->faker->name, + 'email' => $this->faker->unique()->safeEmail, + 'telepon' => $this->faker->phoneNumber, + 'alamat' => $this->faker->address, + 'gender' => $this->faker->randomElement(['male', 'female']), + ]; + + $response = $this->post('/register', $userData); + + $response->assertSessionHasErrors(['username']); + } + + public function test_registration_fails_if_duplicate_email() + { + $existingUser = User::factory()->create(); + + $userData = [ + 'username' => $this->faker->userName, + 'password' => 'password123', + 'password_confirmation' => 'password123', + 'name' => $this->faker->name, + 'email' => $existingUser->email, + 'telepon' => $this->faker->phoneNumber, + 'alamat' => $this->faker->address, + 'gender' => $this->faker->randomElement(['male', 'female']), + ]; + + $response = $this->post('/register', $userData); + + $response->assertSessionHasErrors(['email']); + } + + + +} diff --git a/aigo/tests/Feature/ExampleTest.php b/aigo/tests/Feature/ExampleTest.php new file mode 100644 index 0000000..8364a84 --- /dev/null +++ b/aigo/tests/Feature/ExampleTest.php @@ -0,0 +1,19 @@ +get('/'); + + $response->assertStatus(200); + } +} diff --git a/aigo/tests/TestCase.php b/aigo/tests/TestCase.php new file mode 100644 index 0000000..fe1ffc2 --- /dev/null +++ b/aigo/tests/TestCase.php @@ -0,0 +1,10 @@ +assertTrue(true); + } +} diff --git a/aigo/vite.config.js b/aigo/vite.config.js new file mode 100644 index 0000000..89f26f5 --- /dev/null +++ b/aigo/vite.config.js @@ -0,0 +1,14 @@ +import { defineConfig } from 'vite'; +import laravel from 'laravel-vite-plugin'; + +export default defineConfig({ + plugins: [ + laravel({ + input: [ + 'resources/css/app.css', + 'resources/js/app.js', + ], + refresh: true, + }), + ], +}); diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..6915c62 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,132 @@ +services: + app: + build: + context: . + args: + VITE_REVERB_APP_KEY: ${REVERB_APP_KEY} + VITE_REVERB_HOST: ${VITE_REVERB_HOST} + VITE_REVERB_PORT: ${VITE_REVERB_PORT} + VITE_REVERB_SCHEME: ${VITE_REVERB_SCHEME} + ports: + - "80" + environment: + APP_ENV: production + APP_DEBUG: "false" + APP_KEY: ${APP_KEY} + APP_URL: ${APP_URL} + DB_HOST: db + DB_PORT: "3306" + DB_DATABASE: ${DB_DATABASE} + DB_USERNAME: ${DB_USERNAME} + DB_PASSWORD: ${DB_PASSWORD} + BROADCAST_CONNECTION: reverb + REVERB_APP_ID: ${REVERB_APP_ID} + REVERB_APP_KEY: ${REVERB_APP_KEY} + REVERB_APP_SECRET: ${REVERB_APP_SECRET} + REVERB_HOST: 0.0.0.0 + REVERB_PORT: "8080" + REVERB_SCHEME: http + SESSION_DRIVER: database + SESSION_LIFETIME: "120" + QUEUE_CONNECTION: database + STRAVA_CLIENT_ID: ${STRAVA_CLIENT_ID} + STRAVA_CLIENT_SECRET: ${STRAVA_CLIENT_SECRET} + STRAVA_REDIRECT_URI: ${APP_URL}/strava/callback + depends_on: + db: + condition: service_healthy + volumes: + - aigo-storage:/var/www/aigo/storage + + reverb: + build: + context: . + args: + VITE_REVERB_APP_KEY: ${REVERB_APP_KEY} + VITE_REVERB_HOST: ${VITE_REVERB_HOST} + VITE_REVERB_PORT: ${VITE_REVERB_PORT} + VITE_REVERB_SCHEME: ${VITE_REVERB_SCHEME} + ports: + - "8080" + environment: + APP_ENV: production + APP_DEBUG: "false" + APP_KEY: ${APP_KEY} + APP_URL: ${APP_URL} + DB_HOST: db + DB_PORT: "3306" + DB_DATABASE: ${DB_DATABASE} + DB_USERNAME: ${DB_USERNAME} + DB_PASSWORD: ${DB_PASSWORD} + BROADCAST_CONNECTION: reverb + REVERB_APP_ID: ${REVERB_APP_ID} + REVERB_APP_KEY: ${REVERB_APP_KEY} + REVERB_APP_SECRET: ${REVERB_APP_SECRET} + REVERB_HOST: 0.0.0.0 + REVERB_PORT: "8080" + REVERB_SCHEME: http + SESSION_DRIVER: database + QUEUE_CONNECTION: database + command: php artisan reverb:start --host=0.0.0.0 --port=8080 + depends_on: + db: + condition: service_healthy + volumes: + - aigo-storage:/var/www/aigo/storage + + queue: + build: + context: . + args: + VITE_REVERB_APP_KEY: ${REVERB_APP_KEY} + VITE_REVERB_HOST: ${VITE_REVERB_HOST} + VITE_REVERB_PORT: ${VITE_REVERB_PORT} + VITE_REVERB_SCHEME: ${VITE_REVERB_SCHEME} + environment: + APP_ENV: production + APP_DEBUG: "false" + APP_KEY: ${APP_KEY} + APP_URL: ${APP_URL} + DB_HOST: db + DB_PORT: "3306" + DB_DATABASE: ${DB_DATABASE} + DB_USERNAME: ${DB_USERNAME} + DB_PASSWORD: ${DB_PASSWORD} + BROADCAST_CONNECTION: reverb + REVERB_APP_ID: ${REVERB_APP_ID} + REVERB_APP_KEY: ${REVERB_APP_KEY} + REVERB_APP_SECRET: ${REVERB_APP_SECRET} + REVERB_HOST: 0.0.0.0 + REVERB_PORT: "8080" + REVERB_SCHEME: http + SESSION_DRIVER: database + QUEUE_CONNECTION: database + command: php artisan queue:work + depends_on: + db: + condition: service_healthy + volumes: + - aigo-storage:/var/www/aigo/storage + + db: + image: mysql:8.0 + ports: + - "3306" + environment: + MYSQL_ROOT_PASSWORD: ${DB_ROOT_PASSWORD} + MYSQL_DATABASE: ${DB_DATABASE} + MYSQL_USER: ${DB_USERNAME} + MYSQL_PASSWORD: ${DB_PASSWORD} + volumes: + - dbdata:/var/lib/mysql + - ./humicpro_aigo.sql:/docker-entrypoint-initdb.d/01-import.sql + healthcheck: + test: ["CMD", "mysqladmin", "ping", "-h", "localhost"] + interval: 5s + timeout: 3s + retries: 10 + start_period: 30s + +volumes: + dbdata: + aigo-storage: diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh new file mode 100755 index 0000000..f4616f3 --- /dev/null +++ b/docker-entrypoint.sh @@ -0,0 +1,43 @@ +#!/bin/bash +set -e + +cd /var/www/aigo + +# Ensure storage directories exist (volume mount may hide image-created dirs) +mkdir -p storage/framework/{cache/sessions,cache/data,views,testing} \ + storage/logs \ + bootstrap/cache +chown -R www-data:www-data storage bootstrap/cache + +# Wait for database +if [ -n "$DB_HOST" ]; then + echo "Waiting for database connection..." + for i in $(seq 1 30); do + if php -r " + try { + new PDO('mysql:host=$DB_HOST;port=${DB_PORT:-3306}', '$DB_USERNAME', '$DB_PASSWORD'); + echo 'ok'; + } catch (PDOException \$e) { + exit(1); + } + " 2>/dev/null; then + echo "Database connected." + break + fi + echo "Waiting for database... attempt $i" + sleep 2 + done +fi + +# Create storage symlink +php artisan storage:link --force + +# Run migrations +php artisan migrate --force + +# Cache +php artisan config:cache +php artisan route:cache +php artisan view:cache + +exec "$@" diff --git a/docker/apache/000-default.conf b/docker/apache/000-default.conf new file mode 100644 index 0000000..f07930f --- /dev/null +++ b/docker/apache/000-default.conf @@ -0,0 +1,12 @@ + + DocumentRoot /var/www/aigo/public + + + Options -Indexes +FollowSymLinks + AllowOverride All + Require all granted + + + ErrorLog ${APACHE_LOG_DIR}/error.log + CustomLog ${APACHE_LOG_DIR}/access.log combined + diff --git a/humicpro_aigo.sql b/humicpro_aigo.sql new file mode 100644 index 0000000..86f8968 --- /dev/null +++ b/humicpro_aigo.sql @@ -0,0 +1,527 @@ +/*M!999999\- enable the sandbox mode */ +-- MariaDB dump 10.19 Distrib 10.6.25-MariaDB, for Linux (x86_64) +-- +-- Host: localhost Database: humicpro_aigo +-- ------------------------------------------------------ +-- Server version 10.6.25-MariaDB + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!40101 SET NAMES utf8mb4 */; +/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; +/*!40103 SET TIME_ZONE='+00:00' */; +/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; +/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; + +-- +-- Table structure for table `cache` +-- + +DROP TABLE IF EXISTS `cache`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `cache` ( + `key` varchar(255) NOT NULL, + `value` mediumtext NOT NULL, + `expiration` int(11) NOT NULL, + PRIMARY KEY (`key`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cache` +-- + +LOCK TABLES `cache` WRITE; +/*!40000 ALTER TABLE `cache` DISABLE KEYS */; +/*!40000 ALTER TABLE `cache` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `cache_locks` +-- + +DROP TABLE IF EXISTS `cache_locks`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `cache_locks` ( + `key` varchar(255) NOT NULL, + `owner` varchar(255) NOT NULL, + `expiration` int(11) NOT NULL, + PRIMARY KEY (`key`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cache_locks` +-- + +LOCK TABLES `cache_locks` WRITE; +/*!40000 ALTER TABLE `cache_locks` DISABLE KEYS */; +/*!40000 ALTER TABLE `cache_locks` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `ch_favorites` +-- + +DROP TABLE IF EXISTS `ch_favorites`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `ch_favorites` ( + `id` char(36) NOT NULL, + `user_id` bigint(20) NOT NULL, + `favorite_id` bigint(20) NOT NULL, + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ch_favorites` +-- + +LOCK TABLES `ch_favorites` WRITE; +/*!40000 ALTER TABLE `ch_favorites` DISABLE KEYS */; +/*!40000 ALTER TABLE `ch_favorites` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `ch_messages` +-- + +DROP TABLE IF EXISTS `ch_messages`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `ch_messages` ( + `id` char(36) NOT NULL, + `from_id` bigint(20) NOT NULL, + `to_id` bigint(20) NOT NULL, + `body` varchar(5000) DEFAULT NULL, + `attachment` varchar(255) DEFAULT NULL, + `seen` tinyint(1) NOT NULL DEFAULT 0, + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ch_messages` +-- + +LOCK TABLES `ch_messages` WRITE; +/*!40000 ALTER TABLE `ch_messages` DISABLE KEYS */; +INSERT INTO `ch_messages` (`id`, `from_id`, `to_id`, `body`, `attachment`, `seen`, `created_at`, `updated_at`) VALUES ('0030eb6d-a8aa-4476-b7e5-4881facec0e9',4,20,'hello',NULL,1,'2024-06-07 00:55:46','2024-06-07 00:55:47'),('304bb01c-7336-4427-92d5-684f59cdfbe3',4,20,'can i help u',NULL,1,'2024-06-07 00:55:58','2024-06-07 00:55:59'),('81abe6d9-27cc-4161-a641-5346bfa32119',20,4,'Tes',NULL,1,'2024-06-07 00:55:41','2024-06-07 00:55:43'),('98df24f4-e527-4f8b-8032-7f21cb513838',1,7,'s',NULL,1,'2024-06-04 10:26:36','2024-06-04 10:26:36'),('a57487f6-d3bc-4f2e-ac9f-48affa0c0a3d',20,4,'Yes',NULL,1,'2024-06-07 00:56:09','2024-06-07 00:56:12'); +/*!40000 ALTER TABLE `ch_messages` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `consultations` +-- + +DROP TABLE IF EXISTS `consultations`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `consultations` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `patient_id` bigint(20) unsigned NOT NULL, + `doctor_id` bigint(20) unsigned NOT NULL, + `consultation_date` date NOT NULL, + `consultation_time` time NOT NULL, + `location` varchar(255) NOT NULL, + `consultation_status` varchar(255) NOT NULL DEFAULT 'pending', + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `consultations_patient_id_foreign` (`patient_id`), + KEY `consultations_doctor_id_foreign` (`doctor_id`), + CONSTRAINT `consultations_doctor_id_foreign` FOREIGN KEY (`doctor_id`) REFERENCES `users` (`id`) ON DELETE CASCADE, + CONSTRAINT `consultations_patient_id_foreign` FOREIGN KEY (`patient_id`) REFERENCES `users` (`id`) ON DELETE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=75 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `consultations` +-- + +LOCK TABLES `consultations` WRITE; +/*!40000 ALTER TABLE `consultations` DISABLE KEYS */; +INSERT INTO `consultations` (`id`, `patient_id`, `doctor_id`, `consultation_date`, `consultation_time`, `location`, `consultation_status`, `created_at`, `updated_at`) VALUES (1,5,4,'2023-12-02','07:20:00','South Myrnastad','pending','2024-06-01 05:55:29','2024-06-01 05:55:29'),(2,2,4,'2024-05-28','20:17:20','North Alisaport','finished','2024-06-01 05:55:29','2024-06-04 05:07:15'),(3,2,4,'2024-01-23','15:10:39','North Berthaport','pending','2024-06-01 05:55:29','2024-06-01 05:55:29'),(4,5,7,'2025-03-05','07:30:16','North Braxtonburgh','approved','2024-06-01 05:55:29','2024-06-01 05:55:29'),(5,6,7,'2024-08-15','03:53:19','North Cordellland','cancelled','2024-06-01 05:55:29','2024-06-01 05:55:29'),(6,2,4,'2024-06-20','08:38:42','New Fatima','cancelled','2024-06-01 05:55:29','2024-06-01 05:55:29'),(8,5,4,'2024-10-21','16:40:17','Gaylordmouth','approved','2024-06-01 05:55:29','2024-06-01 05:55:29'),(9,3,7,'2024-06-19','15:38:25','Legrosshire','approved','2024-06-01 05:55:29','2024-06-01 05:55:29'),(10,2,4,'2024-08-12','20:02:18','New Josianne','cancelled','2024-06-01 05:55:29','2024-06-01 05:55:29'),(11,6,4,'2024-05-09','10:17:05','Gleichnerside','cancelled','2024-06-01 05:55:29','2024-06-01 05:55:29'),(12,3,4,'2024-03-09','04:54:36','Boyerberg','cancelled','2024-06-01 05:55:29','2024-06-01 05:55:29'),(13,5,7,'2025-03-17','01:11:16','Newellborough','pending','2024-06-01 05:55:29','2024-06-01 05:55:29'),(15,6,4,'2024-10-17','02:39:37','Rohanmouth','pending','2024-06-01 05:55:29','2024-06-01 05:55:29'),(16,6,10,'2024-03-22','12:21:26','South Lempi','pending','2024-06-01 05:55:31','2024-06-01 05:55:31'),(18,6,4,'2024-10-12','21:01:45','New Wiley','finished','2024-06-01 05:55:31','2024-06-04 05:08:18'),(19,9,4,'2025-04-06','21:42:37','Kayleighville','pending','2024-06-01 05:55:31','2024-06-01 05:55:31'),(20,5,4,'2024-03-05','04:10:51','Stewartland','declined','2024-06-01 05:55:31','2024-06-03 06:45:38'),(21,9,4,'2025-02-04','05:01:57','North Enolaton','pending','2024-06-01 05:55:31','2024-06-01 05:55:31'),(22,5,4,'2024-02-26','20:47:08','West Juanitamouth','pending','2024-06-01 05:55:31','2024-06-01 05:55:31'),(23,8,4,'2024-06-27','18:16:37','West Stephanshire','pending','2024-06-01 05:55:31','2024-06-01 05:55:31'),(24,9,7,'2023-10-04','04:26:16','Jedidiahtown','cancelled','2024-06-01 05:55:31','2024-06-01 05:55:31'),(25,5,10,'2023-12-28','16:52:05','Spencerbury','approved','2024-06-01 05:55:31','2024-06-01 05:55:31'),(27,6,7,'2025-03-25','04:25:08','Dominicberg','cancelled','2024-06-01 05:55:31','2024-06-01 05:55:31'),(28,6,7,'2024-10-06','18:15:56','Lake Spencerhaven','pending','2024-06-01 05:55:31','2024-06-01 05:55:31'),(29,3,10,'2024-10-22','05:24:22','Emeliahaven','approved','2024-06-01 05:55:31','2024-06-01 05:55:31'),(30,8,10,'2023-07-24','23:52:26','South Darwinborough','approved','2024-06-01 05:55:31','2024-06-01 05:55:31'),(31,2,13,'2023-11-24','14:54:54','South Markus','cancelled','2024-06-01 05:55:32','2024-06-01 05:55:32'),(32,3,10,'2024-02-24','01:50:33','Lake Monabury','approved','2024-06-01 05:55:32','2024-06-01 05:55:32'),(33,5,7,'2024-01-22','23:49:45','Swaniawskiside','approved','2024-06-01 05:55:32','2024-06-01 05:55:32'),(36,9,13,'2024-09-29','13:41:49','West Gabeburgh','pending','2024-06-01 05:55:32','2024-06-01 05:55:32'),(37,6,10,'2023-12-31','09:43:48','Elmoreburgh','approved','2024-06-01 05:55:32','2024-06-01 05:55:32'),(38,12,10,'2023-10-09','04:01:42','Port Margretfurt','cancelled','2024-06-01 05:55:32','2024-06-01 05:55:32'),(39,8,10,'2025-01-11','12:15:25','Sigurdshire','cancelled','2024-06-01 05:55:32','2024-06-01 05:55:32'),(41,5,4,'2024-05-23','11:52:48','McKenziemouth','cancelled','2024-06-01 05:55:32','2024-06-01 05:55:32'),(42,8,10,'2024-03-25','23:30:29','North Murphyhaven','cancelled','2024-06-01 05:55:32','2024-06-01 05:55:32'),(43,8,10,'2023-07-19','10:46:58','Kunzeside','approved','2024-06-01 05:55:32','2024-06-01 05:55:32'),(44,6,4,'2024-12-10','14:30:52','Beulahmouth','approved','2024-06-01 05:55:32','2024-06-01 05:55:32'),(49,1,4,'2024-06-12','21:41:00','Bandung','finished','2024-06-01 06:21:09','2024-06-01 06:21:56'),(50,1,4,'2024-06-12','14:33:00','Online','finished','2024-06-01 06:21:20','2024-06-01 06:22:37'),(51,1,4,'2024-06-26','03:12:00','Online','declined','2024-06-03 10:42:33','2024-06-07 00:53:55'),(52,1,7,'2024-06-12','12:41:00','RS. Kencana','finished','2024-06-04 10:24:36','2024-06-04 10:25:18'),(53,1,7,'2024-06-13','12:14:00','Online','approved','2024-06-04 10:25:51','2024-06-04 10:25:58'),(54,20,7,'2024-06-07','15:52:00','gghh','pending','2024-06-07 00:52:20','2024-06-07 00:52:20'),(55,1,4,'2024-06-19','12:49:00','Online','declined','2024-06-07 00:54:09','2024-06-07 00:54:31'),(56,20,4,'2024-06-07','14:54:00','jjj','approved','2024-06-07 00:54:42','2024-06-07 00:54:58'),(57,17,4,'2024-06-12','18:52:00','padang','approved','2024-06-11 04:50:17','2024-06-22 03:41:36'),(58,16,7,'2024-06-18','17:20:00','Online','pending','2024-06-14 00:20:57','2024-06-14 00:20:57'),(59,23,7,'2024-06-22','06:00:00','Bandung','pending','2024-06-22 00:58:18','2024-06-22 00:58:18'),(60,25,4,'2024-08-29','20:20:00','Bandung','pending','2024-08-29 06:20:52','2024-08-29 06:20:52'),(61,25,4,'2024-08-29','20:32:00','Bandung','pending','2024-08-29 06:32:47','2024-08-29 06:32:47'),(62,26,7,'2024-09-26','02:03:00','indonesia','pending','2024-09-26 19:18:33','2024-09-26 19:18:33'),(63,24,4,'2024-10-22','19:35:00','Telkom','pending','2024-10-09 05:35:37','2024-10-09 05:35:37'),(64,24,4,'2024-10-10','18:00:00','Telkom','pending','2024-10-10 03:08:34','2024-10-10 03:08:34'),(65,24,4,'2024-10-10','17:17:00','Telkom','pending','2024-10-10 03:17:20','2024-10-10 03:17:20'),(66,24,4,'2024-10-10','17:17:00','Telkom','pending','2024-10-10 03:17:48','2024-10-10 03:17:48'),(67,24,7,'2024-10-10','17:23:00','Telkom','pending','2024-10-10 03:23:57','2024-10-10 03:23:57'),(68,24,7,'2024-10-10','17:23:00','Telkom','pending','2024-10-10 03:24:39','2024-10-10 03:24:39'),(69,24,7,'2024-10-10','17:25:00','Telkom','pending','2024-10-10 03:26:19','2024-10-10 03:26:19'),(70,29,4,'2024-10-10','17:37:00','Telkom','pending','2024-10-10 03:38:05','2024-10-10 03:38:05'),(71,24,4,'2024-10-10','17:41:00','Telkom','pending','2024-10-10 03:41:07','2024-10-10 03:41:07'),(72,28,4,'2024-10-11','18:58:00','online','pending','2024-10-10 13:58:36','2024-10-10 13:58:36'),(73,28,13,'2024-10-11','08:46:00','online','pending','2024-10-10 15:43:32','2024-10-10 15:43:32'),(74,32,4,'2025-04-17','17:22:00','bdg','pending','2025-04-11 02:22:24','2025-04-11 02:22:24'); +/*!40000 ALTER TABLE `consultations` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `failed_jobs` +-- + +DROP TABLE IF EXISTS `failed_jobs`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `failed_jobs` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `uuid` varchar(255) NOT NULL, + `connection` text NOT NULL, + `queue` text NOT NULL, + `payload` longtext NOT NULL, + `exception` longtext NOT NULL, + `failed_at` timestamp NOT NULL DEFAULT current_timestamp(), + PRIMARY KEY (`id`), + UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `failed_jobs` +-- + +LOCK TABLES `failed_jobs` WRITE; +/*!40000 ALTER TABLE `failed_jobs` DISABLE KEYS */; +/*!40000 ALTER TABLE `failed_jobs` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `health_datas` +-- + +DROP TABLE IF EXISTS `health_datas`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `health_datas` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `users_id` bigint(20) unsigned NOT NULL, + `birthdate` date NOT NULL, + `weight` double NOT NULL, + `height` double NOT NULL, + `sleeptime` int(11) NOT NULL, + `disease` varchar(255) NOT NULL, + `food` varchar(255) NOT NULL, + `alergi_makanan` varchar(255) NOT NULL, + `obesity_status` varchar(255) DEFAULT NULL, + `calorie_recommendation` int(11) DEFAULT NULL, + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `health_datas_users_id_foreign` (`users_id`), + CONSTRAINT `health_datas_users_id_foreign` FOREIGN KEY (`users_id`) REFERENCES `users` (`id`) ON DELETE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=40 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `health_datas` +-- + +LOCK TABLES `health_datas` WRITE; +/*!40000 ALTER TABLE `health_datas` DISABLE KEYS */; +INSERT INTO `health_datas` (`id`, `users_id`, `birthdate`, `weight`, `height`, `sleeptime`, `disease`, `food`, `alergi_makanan`, `obesity_status`, `calorie_recommendation`, `created_at`, `updated_at`) VALUES (1,1,'2000-02-08',70,170,8,'Flu','Burger','-','Normal weight',1880,'2024-06-01 05:53:56','2024-06-01 05:56:15'),(2,1,'2000-02-08',70,170,8,'Flu','Burger','-','Normal weight',1880,'2024-06-01 06:11:48','2024-06-01 06:11:57'),(3,1,'2000-02-08',70,170,8,'Flu','Burger','-','Normal weight',1880,'2024-06-01 06:12:01','2024-06-01 06:12:07'),(4,1,'2000-02-08',70,170,8,'Flu','Burger','-','Normal weight',1880,'2024-06-01 06:21:03','2024-06-01 06:21:10'),(5,1,'2000-02-08',70,170,8,'Flu','Burger','-','Normal weight',1880,'2024-06-01 06:21:14','2024-06-01 06:21:20'),(6,1,'2000-02-08',70,170,8,'Flu','Burger','-','Normal weight',1880,'2024-06-03 10:42:24','2024-06-03 10:42:34'),(7,1,'2000-02-08',70,170,8,'Flu','Burger','-','Normal weight',1880,'2024-06-04 10:24:19','2024-06-04 10:24:36'),(8,1,'2000-02-08',70,170,8,'Flu','Burger','-','Normal weight',1880,'2024-06-04 10:25:42','2024-06-04 10:25:51'),(9,15,'2020-10-27',60,180,8,'Flu','Burger','-','Normal weight',1887,'2024-06-06 01:04:42','2024-06-06 01:07:56'),(10,20,'1993-09-02',73,170,4,'-','makan malam','-','Overweight',1880,'2024-06-07 00:51:23','2024-06-07 00:52:23'),(11,20,'1993-09-02',73,170,4,'-','makan malam','-',NULL,NULL,'2024-06-07 00:53:42','2024-06-07 00:53:42'),(12,1,'2000-02-08',70,170,8,'Flu','Burger','-','Normal weight',1880,'2024-06-07 00:53:51','2024-06-07 00:54:11'),(13,20,'1993-09-02',73,170,4,'-','makan malam','-','Overweight',1880,'2024-06-07 00:53:54','2024-06-07 00:54:44'),(14,1,'2000-02-08',200,170,8,'Flu','Burger','-','Obese',2389,'2024-06-10 23:15:06','2024-06-10 23:15:20'),(15,17,'2004-02-20',65,173,4,'pilek','makan brutal','kacang','Normal weight',1887,'2024-06-11 04:49:49','2024-06-11 04:50:18'),(16,17,'2004-02-20',65,173,4,'pilek','makan brutal','kacang','Normal weight',1887,'2024-06-11 05:25:15','2024-06-12 07:19:47'),(17,16,'2003-05-19',52,165,6,'-','kurang teratur','-','Normal weight',1758,'2024-06-14 00:20:38','2024-06-14 00:20:58'),(18,1,'2000-02-08',200,170,8,'Flu','Burger','Flu','Obese',2389,'2024-06-22 00:06:33','2024-06-22 01:11:58'),(19,17,'2004-02-20',65,173,4,'pilek','makan brutal','kacang','Normal weight',1887,'2024-06-22 00:52:06','2024-06-22 01:01:19'),(20,23,'1890-07-01',70,170,8,'Flu','Nasi','Flu','Normal weight',1364,'2024-06-22 00:57:53','2024-06-22 00:58:19'),(21,23,'1890-07-01',70,170,8,'Flu','Nasi','Flu','Normal weight',1364,'2024-06-22 01:12:43','2024-06-22 01:19:50'),(22,23,'1890-07-01',70,170,8,'Flu','Nasi','Flu',NULL,NULL,'2024-06-22 03:41:46','2024-06-22 03:41:46'),(23,25,'2007-06-28',80,180,8,'Sakit Perut','Nasi Goreng','Udang',NULL,NULL,'2024-08-29 06:19:08','2024-08-29 06:19:08'),(24,25,'2007-06-28',80,180,8,'Sakit Perut','Nasi Goreng','Udang','Normal weight',1880,'2024-08-29 06:19:17','2024-08-29 06:32:28'),(25,25,'2007-06-28',80,180,8,'Sakit Perut','Nasi Goreng','Udang','Normal weight',1880,'2024-08-29 06:32:36','2024-08-29 06:32:47'),(26,26,'2003-09-27',75,170,5,'-','Ayam Goreng','-','Overweight',1880,'2024-09-26 19:17:08','2024-09-26 19:18:35'),(27,24,'1997-06-03',100,170,8,'Tidak Ada','Tidak Ada','Tidak Ada','Obese',2238,'2024-10-09 05:35:19','2024-10-09 05:35:42'),(28,24,'1997-06-03',70,170,6,'Tidak Ada','Tidak Ada','Tidak Ada','Normal weight',1880,'2024-10-10 03:08:20','2024-10-10 03:08:35'),(29,24,'1997-06-03',70,170,6,'Tidak Ada','Tidak Ada','Tidak Ada','Normal weight',1880,'2024-10-10 03:16:50','2024-10-10 03:17:20'),(30,24,'1997-06-03',70,170,6,'Tidak Ada','Tidak Ada','Tidak Ada','Normal weight',1880,'2024-10-10 03:17:30','2024-10-10 03:17:49'),(31,24,'1997-06-03',70,170,6,'Tidak Ada','Tidak Ada','Tidak Ada',NULL,NULL,'2024-10-10 03:19:36','2024-10-10 03:19:36'),(32,24,'1997-06-03',70,170,6,'Tidak Ada','Tidak Ada','Tidak Ada','Normal weight',1880,'2024-10-10 03:23:46','2024-10-10 03:24:40'),(33,24,'1997-06-03',70,170,6,'Tidak Ada','Tidak Ada','Tidak Ada','Normal weight',1880,'2024-10-10 03:25:48','2024-10-10 03:26:20'),(34,29,'1990-07-11',70,180,6,'Tidak','Tidak','Tidak','Normal weight',1806,'2024-10-10 03:37:48','2024-10-10 03:38:06'),(35,24,'1997-06-03',70,170,6,'Tidak Ada','Tidak Ada','Tidak Ada','Normal weight',1880,'2024-10-10 03:40:54','2024-10-10 03:41:08'),(36,29,'1990-07-11',70,180,6,'Tidak','Tidak','Tidak','Normal weight',1806,'2024-10-10 03:46:23','2024-10-10 03:46:58'),(37,28,'2001-02-16',69,165,5,'Asma','ayam','Udang',NULL,NULL,'2024-10-10 13:57:34','2024-10-10 13:57:34'),(38,28,'2001-02-16',69,165,5,'Asma','ayam','Udang','Overweight',1880,'2024-10-10 15:33:11','2024-10-26 20:44:58'),(39,32,'2025-04-02',12,12,2,'flu','flu','flu','Obese',1695,'2025-04-11 02:22:07','2025-04-11 02:22:27'); +/*!40000 ALTER TABLE `health_datas` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `job_batches` +-- + +DROP TABLE IF EXISTS `job_batches`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `job_batches` ( + `id` varchar(255) NOT NULL, + `name` varchar(255) NOT NULL, + `total_jobs` int(11) NOT NULL, + `pending_jobs` int(11) NOT NULL, + `failed_jobs` int(11) NOT NULL, + `failed_job_ids` longtext NOT NULL, + `options` mediumtext DEFAULT NULL, + `cancelled_at` int(11) DEFAULT NULL, + `created_at` int(11) NOT NULL, + `finished_at` int(11) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `job_batches` +-- + +LOCK TABLES `job_batches` WRITE; +/*!40000 ALTER TABLE `job_batches` DISABLE KEYS */; +/*!40000 ALTER TABLE `job_batches` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `jobs` +-- + +DROP TABLE IF EXISTS `jobs`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `jobs` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `queue` varchar(255) NOT NULL, + `payload` longtext NOT NULL, + `attempts` tinyint(3) unsigned NOT NULL, + `reserved_at` int(10) unsigned DEFAULT NULL, + `available_at` int(10) unsigned NOT NULL, + `created_at` int(10) unsigned NOT NULL, + PRIMARY KEY (`id`), + KEY `jobs_queue_index` (`queue`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `jobs` +-- + +LOCK TABLES `jobs` WRITE; +/*!40000 ALTER TABLE `jobs` DISABLE KEYS */; +/*!40000 ALTER TABLE `jobs` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `migrations` +-- + +DROP TABLE IF EXISTS `migrations`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `migrations` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `migration` varchar(255) NOT NULL, + `batch` int(11) NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `migrations` +-- + +LOCK TABLES `migrations` WRITE; +/*!40000 ALTER TABLE `migrations` DISABLE KEYS */; +INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1,'0001_01_01_000000_create_users_table',1),(2,'0001_01_01_000001_create_cache_table',1),(3,'0001_01_01_000002_create_jobs_table',1),(4,'2024_04_05_111159_create_health_datas_table',1),(5,'2024_04_09_053948_create_physical_activities_table',1),(6,'2024_04_29_999999_add_active_status_to_users',1),(7,'2024_04_29_999999_add_avatar_to_users',1),(8,'2024_04_29_999999_add_dark_mode_to_users',1),(9,'2024_04_29_999999_add_messenger_color_to_users',1),(10,'2024_04_29_999999_create_chatify_favorites_table',1),(11,'2024_04_29_999999_create_chatify_messages_table',1),(12,'2024_05_01_125310_create_consultations_table',1),(13,'2024_05_24_175930_create_notifications_table',1),(14,'2024_06_01_051819_create_result_table',1); +/*!40000 ALTER TABLE `migrations` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `notifications` +-- + +DROP TABLE IF EXISTS `notifications`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `notifications` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `user_id` bigint(20) unsigned NOT NULL, + `consultation_id` bigint(20) unsigned NOT NULL, + `message` varchar(255) NOT NULL, + `is_read` tinyint(1) NOT NULL DEFAULT 0, + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `notifications_user_id_foreign` (`user_id`), + KEY `notifications_consultation_id_foreign` (`consultation_id`), + CONSTRAINT `notifications_consultation_id_foreign` FOREIGN KEY (`consultation_id`) REFERENCES `consultations` (`id`) ON DELETE CASCADE, + CONSTRAINT `notifications_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `notifications` +-- + +LOCK TABLES `notifications` WRITE; +/*!40000 ALTER TABLE `notifications` DISABLE KEYS */; +INSERT INTO `notifications` (`id`, `user_id`, `consultation_id`, `message`, `is_read`, `created_at`, `updated_at`) VALUES (9,1,49,'Your consultation request has been approved by Dr. Brook Jerde MD.',0,'2024-06-01 06:21:27','2024-06-01 06:21:27'),(10,4,49,'You have approved the consultation request from Wzrd.',0,'2024-06-01 06:21:27','2024-06-01 06:21:27'),(11,1,50,'Your consultation request has been approved by Dr. Brook Jerde MD.',0,'2024-06-01 06:22:12','2024-06-01 06:22:12'),(12,4,50,'You have approved the consultation request from Wzrd.',0,'2024-06-01 06:22:12','2024-06-01 06:22:12'),(13,5,20,'Your consultation request has been declined by Dr. Brook Jerde MD.',0,'2024-06-03 06:45:38','2024-06-03 06:45:38'),(14,4,20,'You have declined the consultation request from Dr. Savanna Pollich.',0,'2024-06-03 06:45:38','2024-06-03 06:45:38'),(15,1,52,'Your consultation request has been approved by Dr. Dr. Thomas Huel DDS.',0,'2024-06-04 10:24:51','2024-06-04 10:24:51'),(16,7,52,'You have approved the consultation request from Wzrd.',0,'2024-06-04 10:24:51','2024-06-04 10:24:51'),(17,1,53,'Your consultation request has been approved by Dr. Dr. Thomas Huel DDS.',0,'2024-06-04 10:25:58','2024-06-04 10:25:58'),(18,7,53,'You have approved the consultation request from Wzrd.',0,'2024-06-04 10:25:58','2024-06-04 10:25:58'),(19,1,51,'Your consultation request has been declined by Dr. Brook Jerde MD.',0,'2024-06-07 00:53:56','2024-06-07 00:53:56'),(20,4,51,'You have declined the consultation request from Wzrd.',0,'2024-06-07 00:53:56','2024-06-07 00:53:56'),(21,1,55,'Your consultation request has been declined by Dr. Brook Jerde MD.',0,'2024-06-07 00:54:36','2024-06-07 00:54:36'),(22,4,55,'You have declined the consultation request from Wzrd.',0,'2024-06-07 00:54:36','2024-06-07 00:54:36'),(23,20,56,'Your consultation request has been approved by Dr. Brook Jerde MD.',0,'2024-06-07 00:54:58','2024-06-07 00:54:58'),(24,4,56,'You have approved the consultation request from satria.',0,'2024-06-07 00:54:58','2024-06-07 00:54:58'),(25,17,57,'Your consultation request has been approved by Dr. Brook Jerde MD.',0,'2024-06-22 03:41:36','2024-06-22 03:41:36'),(26,4,57,'You have approved the consultation request from wili.',0,'2024-06-22 03:41:36','2024-06-22 03:41:36'); +/*!40000 ALTER TABLE `notifications` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `password_reset_tokens` +-- + +DROP TABLE IF EXISTS `password_reset_tokens`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `password_reset_tokens` ( + `email` varchar(255) NOT NULL, + `token` varchar(255) NOT NULL, + `created_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`email`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `password_reset_tokens` +-- + +LOCK TABLES `password_reset_tokens` WRITE; +/*!40000 ALTER TABLE `password_reset_tokens` DISABLE KEYS */; +/*!40000 ALTER TABLE `password_reset_tokens` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `physical_activities` +-- + +DROP TABLE IF EXISTS `physical_activities`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `physical_activities` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `users_id` bigint(20) unsigned NOT NULL, + `date` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), + `type` varchar(255) NOT NULL, + `distance` decimal(8,2) NOT NULL, + `duration` int(11) NOT NULL, + `avg_speed` decimal(8,2) NOT NULL, + `avg_steps` int(11) NOT NULL, + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `physical_activities_users_id_foreign` (`users_id`), + CONSTRAINT `physical_activities_users_id_foreign` FOREIGN KEY (`users_id`) REFERENCES `users` (`id`) ON DELETE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=11324074224 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `physical_activities` +-- + +LOCK TABLES `physical_activities` WRITE; +/*!40000 ALTER TABLE `physical_activities` DISABLE KEYS */; +INSERT INTO `physical_activities` (`id`, `users_id`, `date`, `type`, `distance`, `duration`, `avg_speed`, `avg_steps`, `created_at`, `updated_at`) VALUES (7089659599,1,'2022-05-05 00:14:45','Run',1424.50,591,2.41,75,'2024-06-01 05:53:20','2024-06-01 05:53:20'),(7105137840,1,'2022-05-07 23:35:31','Run',139.50,19,7.34,0,'2024-06-01 05:53:20','2024-06-01 05:53:20'),(7105256797,1,'2022-05-07 23:56:03','Run',2286.90,995,2.30,74,'2024-06-01 05:53:20','2024-06-01 05:53:20'),(11324074162,1,'2024-05-03 17:35:28','Run',1011.90,12,84.32,0,'2024-06-01 05:53:20','2024-06-01 05:53:20'),(11324074163,1,'2024-05-03 17:35:28','Run',1011.90,12,84.32,0,'2024-06-06 09:50:11','2024-06-06 09:50:11'),(11324074164,1,'2022-05-07 23:56:03','Run',2286.90,995,2.30,74,'2024-06-06 09:50:11','2024-06-06 09:50:11'),(11324074165,1,'2022-05-07 23:35:31','Run',139.50,19,7.34,0,'2024-06-06 09:50:11','2024-06-06 09:50:11'),(11324074166,1,'2022-05-05 00:14:45','Run',1424.50,591,2.41,75,'2024-06-06 09:50:12','2024-06-06 09:50:12'),(11324074167,1,'2024-05-03 17:35:28','Run',1011.90,12,84.32,0,'2024-06-07 00:35:59','2024-06-07 00:35:59'),(11324074168,1,'2022-05-07 23:56:03','Run',2286.90,995,2.30,74,'2024-06-07 00:36:00','2024-06-07 00:36:00'),(11324074169,1,'2022-05-07 23:35:31','Run',139.50,19,7.34,0,'2024-06-07 00:36:00','2024-06-07 00:36:00'),(11324074170,1,'2022-05-05 00:14:45','Run',1424.50,591,2.41,75,'2024-06-07 00:36:00','2024-06-07 00:36:00'),(11324074171,1,'2024-05-03 17:35:28','Run',1011.90,12,84.32,0,'2024-06-10 23:15:15','2024-06-10 23:15:15'),(11324074172,1,'2022-05-07 23:56:03','Run',2286.90,995,2.30,74,'2024-06-10 23:15:19','2024-06-10 23:15:19'),(11324074173,1,'2022-05-07 23:35:31','Run',139.50,19,7.34,0,'2024-06-10 23:15:20','2024-06-10 23:15:20'),(11324074174,1,'2022-05-05 00:14:45','Run',1424.50,591,2.41,75,'2024-06-10 23:15:21','2024-06-10 23:15:21'),(11324074175,17,'2024-04-20 05:28:25','Ride',1591.00,323,4.93,0,'2024-06-11 04:49:08','2024-06-11 04:49:08'),(11324074176,17,'2024-04-18 10:56:04','Ride',18191.50,3271,5.56,0,'2024-06-11 04:49:08','2024-06-11 04:49:08'),(11324074177,17,'2024-04-18 07:42:30','Ride',17759.30,3219,5.52,0,'2024-06-11 04:49:08','2024-06-11 04:49:08'),(11324074178,17,'2024-04-20 05:28:25','Ride',1591.00,323,4.93,0,'2024-06-11 04:53:12','2024-06-11 04:53:12'),(11324074179,17,'2024-04-18 10:56:04','Ride',18191.50,3271,5.56,0,'2024-06-11 04:53:12','2024-06-11 04:53:12'),(11324074180,17,'2024-04-18 07:42:30','Ride',17759.30,3219,5.52,0,'2024-06-11 04:53:12','2024-06-11 04:53:12'),(11324074181,17,'2024-04-20 05:28:25','Ride',1591.00,323,4.93,0,'2024-06-11 05:02:14','2024-06-11 05:02:14'),(11324074182,17,'2024-04-18 10:56:04','Ride',18191.50,3271,5.56,0,'2024-06-11 05:02:14','2024-06-11 05:02:14'),(11324074183,17,'2024-04-18 07:42:30','Ride',17759.30,3219,5.52,0,'2024-06-11 05:02:14','2024-06-11 05:02:14'),(11324074184,17,'2024-04-20 05:28:25','Ride',1591.00,323,4.93,0,'2024-06-12 07:19:44','2024-06-12 07:19:44'),(11324074185,17,'2024-04-18 10:56:04','Ride',18191.50,3271,5.56,0,'2024-06-12 07:19:44','2024-06-12 07:19:44'),(11324074186,17,'2024-04-18 07:42:30','Ride',17759.30,3219,5.52,0,'2024-06-12 07:19:44','2024-06-12 07:19:44'),(11324074187,16,'2024-04-28 00:49:25','Walk',2712.30,2403,1.13,0,'2024-06-14 00:19:49','2024-06-14 00:19:49'),(11324074188,16,'2024-04-18 23:36:47','Walk',3374.40,2953,1.14,0,'2024-06-14 00:19:50','2024-06-14 00:19:50'),(11324074189,1,'2024-06-12 10:11:32','Run',523.20,91,5.75,0,'2024-06-15 22:30:24','2024-06-15 22:30:24'),(11324074190,1,'2024-06-12 10:11:32','Run',523.20,91,5.75,0,'2024-06-16 00:21:50','2024-06-16 00:21:50'),(11324074191,1,'2024-04-20 05:28:25','Ride',1591.00,323,4.93,0,'2024-06-18 01:40:58','2024-06-18 01:40:58'),(11324074192,1,'2024-04-18 10:56:04','Ride',18191.50,3271,5.56,0,'2024-06-18 01:40:59','2024-06-18 01:40:59'),(11324074193,1,'2024-04-18 07:42:30','Ride',17759.30,3219,5.52,0,'2024-06-18 01:40:59','2024-06-18 01:40:59'),(11324074194,17,'2024-04-20 05:28:25','Ride',1591.00,323,4.93,0,'2024-06-18 02:31:22','2024-06-18 02:31:22'),(11324074195,17,'2024-04-18 10:56:04','Ride',18191.50,3271,5.56,0,'2024-06-18 02:31:22','2024-06-18 02:31:22'),(11324074196,17,'2024-04-18 07:42:30','Ride',17759.30,3219,5.52,0,'2024-06-18 02:31:22','2024-06-18 02:31:22'),(11324074197,1,'2024-04-20 05:28:25','Ride',1591.00,323,4.93,0,'2024-06-21 11:24:47','2024-06-21 11:24:47'),(11324074198,1,'2024-04-18 10:56:04','Ride',18191.50,3271,5.56,0,'2024-06-21 11:24:47','2024-06-21 11:24:47'),(11324074199,1,'2024-04-18 07:42:30','Ride',17759.30,3219,5.52,0,'2024-06-21 11:24:47','2024-06-21 11:24:47'),(11324074200,17,'2024-04-20 05:28:25','Ride',1591.00,323,4.93,0,'2024-06-22 00:00:45','2024-06-22 00:00:45'),(11324074201,17,'2024-04-18 10:56:04','Ride',18191.50,3271,5.56,0,'2024-06-22 00:00:45','2024-06-22 00:00:45'),(11324074202,17,'2024-04-18 07:42:30','Ride',17759.30,3219,5.52,0,'2024-06-22 00:00:45','2024-06-22 00:00:45'),(11324074203,1,'2024-04-20 05:28:25','Ride',1591.00,323,4.93,0,'2024-06-22 00:05:52','2024-06-22 00:05:52'),(11324074204,1,'2024-04-18 10:56:04','Ride',18191.50,3271,5.56,0,'2024-06-22 00:05:52','2024-06-22 00:05:52'),(11324074205,1,'2024-04-18 07:42:30','Ride',17759.30,3219,5.52,0,'2024-06-22 00:05:52','2024-06-22 00:05:52'),(11324074206,17,'2024-04-20 05:28:25','Ride',1591.00,323,4.93,0,'2024-06-22 01:20:31','2024-06-22 01:20:31'),(11324074207,17,'2024-04-18 10:56:04','Ride',18191.50,3271,5.56,0,'2024-06-22 01:20:31','2024-06-22 01:20:31'),(11324074208,17,'2024-04-18 07:42:30','Ride',17759.30,3219,5.52,0,'2024-06-22 01:20:31','2024-06-22 01:20:31'),(11324074209,1,'2024-06-22 08:22:52','Run',37.90,10,3.79,0,'2024-06-22 01:23:55','2024-06-22 01:23:55'),(11324074210,1,'2024-06-12 10:11:32','Run',523.20,91,5.75,0,'2024-06-22 01:23:55','2024-06-22 01:23:55'),(11324074211,23,'2024-06-22 08:07:59','Walk',44.50,13,3.43,0,'2024-06-22 02:51:07','2024-06-22 02:51:07'),(11324074212,23,'2024-06-22 08:00:39','Walk',79.80,10,7.98,0,'2024-06-22 02:51:07','2024-06-22 02:51:07'),(11324074213,23,'2024-06-22 08:07:59','Walk',44.50,13,3.43,0,'2024-06-22 02:52:49','2024-06-22 02:52:49'),(11324074214,23,'2024-06-22 08:00:39','Walk',79.80,10,7.98,0,'2024-06-22 02:52:49','2024-06-22 02:52:49'),(11324074215,1,'2024-06-22 08:11:45','Walk',25.90,41,0.63,0,'2024-06-27 06:50:05','2024-06-27 06:50:05'),(11324074216,1,'2024-04-20 05:28:25','Ride',1591.00,323,4.93,0,'2024-06-27 06:50:05','2024-06-27 06:50:05'),(11324074217,1,'2024-04-18 10:56:04','Ride',18191.50,3271,5.56,0,'2024-06-27 06:50:05','2024-06-27 06:50:05'),(11324074218,1,'2024-04-18 07:42:30','Ride',17759.30,3219,5.52,0,'2024-06-27 06:50:05','2024-06-27 06:50:05'),(11324074219,29,'2024-10-10 10:49:13','Run',296.20,144,2.06,65,'2024-10-10 04:00:32','2024-10-10 04:00:32'),(11324074220,29,'2024-10-10 11:02:40','Run',13.30,6,2.22,72,'2024-10-10 04:04:37','2024-10-10 04:04:37'),(11324074221,29,'2024-10-10 10:49:13','Run',296.20,144,2.06,65,'2024-10-10 04:04:37','2024-10-10 04:04:37'),(11324074222,29,'2024-10-10 11:02:40','Run',13.30,6,2.22,72,'2024-10-10 04:05:46','2024-10-10 04:05:46'),(11324074223,29,'2024-10-10 10:49:13','Run',296.20,144,2.06,65,'2024-10-10 04:05:46','2024-10-10 04:05:46'); +/*!40000 ALTER TABLE `physical_activities` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `result` +-- + +DROP TABLE IF EXISTS `result`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `result` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `patient_id` bigint(20) unsigned NOT NULL, + `doctor_id` bigint(20) unsigned NOT NULL, + `consultation_id` bigint(20) unsigned DEFAULT NULL, + `jarak_lari` int(11) NOT NULL, + `sleeptime` double NOT NULL, + `food` varchar(255) NOT NULL, + `unrecommended_food` varchar(255) NOT NULL, + `notes` text NOT NULL, + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `result_patient_id_foreign` (`patient_id`), + KEY `result_doctor_id_foreign` (`doctor_id`), + KEY `result_consultation_id_foreign` (`consultation_id`), + CONSTRAINT `result_consultation_id_foreign` FOREIGN KEY (`consultation_id`) REFERENCES `consultations` (`id`) ON DELETE SET NULL, + CONSTRAINT `result_doctor_id_foreign` FOREIGN KEY (`doctor_id`) REFERENCES `users` (`id`) ON DELETE CASCADE, + CONSTRAINT `result_patient_id_foreign` FOREIGN KEY (`patient_id`) REFERENCES `users` (`id`) ON DELETE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `result` +-- + +LOCK TABLES `result` WRITE; +/*!40000 ALTER TABLE `result` DISABLE KEYS */; +INSERT INTO `result` (`id`, `patient_id`, `doctor_id`, `consultation_id`, `jarak_lari`, `sleeptime`, `food`, `unrecommended_food`, `notes`, `created_at`, `updated_at`) VALUES (4,1,4,49,4124,7,'Sayur','Burger','-','2024-06-01 06:21:56','2024-06-01 06:21:56'),(5,1,4,50,7424,8,'Sayur-sayuran','Bakwan','Mantap!','2024-06-01 06:22:37','2024-06-01 06:22:37'),(6,2,4,2,2134,6,'Sayur-sayuran','Gorengan','Good luck','2024-06-04 05:07:15','2024-06-04 05:07:15'),(7,6,4,18,4133,8,'Susu dan Sereal','Mie','-','2024-06-04 05:08:18','2024-06-04 05:08:18'),(8,1,7,52,4215,8,'Sayur','Burger','Good','2024-06-04 10:25:18','2024-06-04 10:25:18'); +/*!40000 ALTER TABLE `result` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sessions` +-- + +DROP TABLE IF EXISTS `sessions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `sessions` ( + `id` varchar(255) NOT NULL, + `user_id` bigint(20) unsigned DEFAULT NULL, + `ip_address` varchar(45) DEFAULT NULL, + `user_agent` text DEFAULT NULL, + `payload` longtext NOT NULL, + `last_activity` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `sessions_user_id_index` (`user_id`), + KEY `sessions_last_activity_index` (`last_activity`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sessions` +-- + +LOCK TABLES `sessions` WRITE; +/*!40000 ALTER TABLE `sessions` DISABLE KEYS */; +INSERT INTO `sessions` (`id`, `user_id`, `ip_address`, `user_agent`, `payload`, `last_activity`) VALUES ('23Fxc3Y4IDMyjsF05ucQixXqrWg3NUs15JLASs0q',NULL,'138.124.159.248','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Brave Chrome/85.0.4183.121 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoicnpqdDRmSjA0b0RvNFdJUmc1Zk51RUphcVlNU1M3dEZneVhXV3p1ZyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NDM6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20vYWJvdXQiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1776670724),('2wAePq1WQshzy2pW4Cnpc9Tn05DX2r90nVPNZ8qG',NULL,'103.100.234.67','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Brave Chrome/89.0.4389.114 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoiUzEyRkxhWENiY0RUQmVCQ3RQN2ZHamNLUE9ocGxmRWRrY3FUd2plNyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NDM6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20vYWJvdXQiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1777014655),('3YE58T9aL5f5EuSO2oa0ozlMEHNvlzkcSlflObl2',NULL,'57.129.136.58','python-httpx/0.27.2','YTozOntzOjY6Il90b2tlbiI7czo0MDoiY3BXelVpS3p1ZTRwQlpxdVE3N1NuWXJqMGJVZzBSb1FmUDJTcTRPRCI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzI6Imh0dHA6Ly9haWdvLmh1bWljcHJvdG90eXBpbmcuY29tIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==',1778199841),('9FAJvXSppEufY3P4Ql0LOEzP3hiXbGj91972EzU0',NULL,'66.249.66.37','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','YTozOntzOjY6Il90b2tlbiI7czo0MDoia3RKcmxERVFYWXVqSm4yekk5ZXgzaHpHNXRZNzlKWkh1SmFZTktxYiI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6Mzc6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20iO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1777638110),('A9CBS9Ot2xNjUvD3PHEPP5Pa2OimImHe44i76B02',NULL,'66.132.195.63','Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)','YTozOntzOjY6Il90b2tlbiI7czo0MDoialpUZ0dwWmJJM0ZpOE1sMTk5Rnh0RHk2eWJQT0FYbVNRUDNQTWpLYiI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzM6Imh0dHBzOi8vYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1778427571),('ac0EM6zyZS8awmPZIfb6c1RNkLzcEW0BFo6evCut',NULL,'167.71.143.240','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoiM01jcGJ0ZnBlRVRibVFzV0hVUXcycnhYN1NwTW52OHpvSFdZVUp5YSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzI6Imh0dHA6Ly9haWdvLmh1bWljcHJvdG90eXBpbmcuY29tIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==',1777251199),('B4Xx4BtILGhOb03fiGdDM89bjUrhTHTGnzwphBX0',NULL,'104.28.193.25','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoiQjJoZ1lMR0dSY0dHTjJWVUFCMkhrZGRNeGhscUZRbnRYVGJpclo2UyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6Mzc6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20iO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1778457928),('bbOtEyvo0RdXxsf7Q0MqRdaMEQe0p57R5MQ7drXP',NULL,'34.193.251.180','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoiREFNY2Z5MjZxTm5OZ2N1Y0prZU4wQmlrdUxQOXRVMFZqbzh2aDVhayI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6Mzc6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20iO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1778266426),('BMFNbzxNh5AikPlsZ7MJ3Xb13EH45zJqOiNbjyRL',NULL,'54.38.147.12','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)','YTozOntzOjY6Il90b2tlbiI7czo0MDoiTmdRdmJVYmJPY0hNYlY5aU5KVDhaek8wQ2tla04xc1lFeWRCcVlGaiI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NDA6Imh0dHBzOi8vaHVtaWNwcm90b3R5cGluZy5jb20vYWlnby9wdWJsaWMiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1777391692),('BvcFOadYlYukiwxWuzJGtmH9YPlXzeBavoa4Mjd7',NULL,'113.180.130.6','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoibWFkMmc0bEJxY3dXdWc0cVZvV3VDY1JuNDB2RjFTOHE0bTFqZFcxOSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6Mzc6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20iO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1777014596),('CAb9O2cEnJpxU3NX2TSivTJdrJMfJzuDOGdk92p0',NULL,'66.132.195.31','Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)','YTozOntzOjY6Il90b2tlbiI7czo0MDoiMUczU3VEOFZFUmswa1JvRFVXb05WOGdpcG1GYnlHOXMxVmlWMkdTWSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzY6Imh0dHA6Ly93d3cuYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777087311),('CmrzKWYPOvCiItyUWjh3cJBoDhUsbaLFGfUCnF5x',NULL,'146.190.255.53','Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0','YTozOntzOjY6Il90b2tlbiI7czo0MDoiTk5sVjFWVGkzTnBNWHhwVU5Hd09yWXZPSmtxR2MxNHVJTEJ6Q3IxaSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6Mzc6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20iO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1777364516),('cYiZ0f6jl1DH9H3VRGvmt4xhfynTYNHbaUxWem1G',NULL,'192.121.185.99','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:123.0) Gecko/20100101 Firefox/123','YTozOntzOjY6Il90b2tlbiI7czo0MDoiMDRXNTI0SUlSeVkzSEZhQmxJa2dEQzVDRzMyTkZqTndHZk1WUm1PUSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzY6Imh0dHA6Ly93d3cuYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1778253533),('DmGugbvTnbswnf6OCQ57Y4z67Llva5VPckmPsEMQ',NULL,'113.187.166.90','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoiSG9JVmFheDNYZFkzcHZTSHdwd0ZCOW84RjFxbnp1S3oyUkpncWEzUyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6Mzc6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20iO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1777273584),('E3rEqmGPXuS3ilqxZ1bVncifE7NfgXrOPTthBfHT',NULL,'34.193.251.180','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoic3NCQm1DZ3FVRVlIT1dUeURyMWJneFprNms0ZEcyN2dUMGx0a1lCcyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzY6Imh0dHA6Ly93d3cuYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1778452966),('EDlsDiR0KiF1ATptx9p5fZg4VFMZoSg92pUak0vP',NULL,'136.115.234.236','Mozilla/5.0 (compatible; CMS-Checker/1.0; +https://example.com)','YTozOntzOjY6Il90b2tlbiI7czo0MDoiMFg5aEYzanRjRUc0NmtXTUVKNEJFNUlzekE3c0RqYUZPVGh2eFR3WiI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzY6Imh0dHA6Ly93d3cuYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777821263),('eLHIZbyNfK8sBBeQZh6Mj2SpooSLH6TCtwNZvQ24',NULL,'74.7.243.234','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)','YTozOntzOjY6Il90b2tlbiI7czo0MDoiblZHN1lnd25JUTJtaU8zRElQeHlKdEJqSnNzSGNUWkFIOUVuYmVzNSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzM6Imh0dHBzOi8vYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1778065645),('EuSFsKsIBhJ6AfwBvGjqIhqIOBmjKqU0qedDYusS',NULL,'34.30.185.191','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoicnZCejE4bnBlSDBCU0lvNTJPMEVjRHhLc1NGTTRLd1ZJNk82Y3ZCOCI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzI6Imh0dHA6Ly9haWdvLmh1bWljcHJvdG90eXBpbmcuY29tIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==',1778036599),('f3Ihyog2qDJpv8qTqQ9mM8TBnmTvYvJ6GAfSXHVa',NULL,'103.145.57.171','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoiWGtEZFp0T0t5N1puQU9XU3pObmNqSEgzbjd4UW5CSWh0Y0xNaDRWMCI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6Mzc6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20iO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1777532828),('fq2aE83d8jud1bWhhANRBth16fxgHFsIXtbwgD5s',NULL,'13.219.121.241','RecordedFuture Global Inventory Crawler','YTozOntzOjY6Il90b2tlbiI7czo0MDoiMVZ3dVdBNFdlVDRkemtNejBIYUVZa3RTcEdrZDhaS2pQQ0p1OXdTNCI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6Mzc6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20iO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1778119507),('G5s1B8odwx93jyW9yLHM9iGtMV7al4rcRLezDrH1',NULL,'192.71.126.27','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36 Agency/93.8.2357.5','YTozOntzOjY6Il90b2tlbiI7czo0MDoicllqTnlrVlI5TXdZNFlUOW9qc1MxVXk5QjZUOFVLbVMzZzlZRFZpVyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzI6Imh0dHA6Ly9haWdvLmh1bWljcHJvdG90eXBpbmcuY29tIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==',1776674948),('GKF0bos3ZM9Cs7exzwQtj9VOdttEHR4udfeT8gVA',NULL,'147.185.132.66','Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity','YTozOntzOjY6Il90b2tlbiI7czo0MDoiWkdiOEZjdnBobmVsanJ1SDN3NjVWME1vb3cyUkFaNlF2WUNvNDdnSyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6Mzc6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20iO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1778258701),('hI6HQTkyYEU0nCueqUZrbfH3dAJ65urVnuX4y5X6',NULL,'66.249.66.36','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.7727.137 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','YTozOntzOjY6Il90b2tlbiI7czo0MDoieE1CRHF2Q2hFQTZNNUloS1FON0Z3eVBGeUNaODgzc21WQ1l4cWZYVCI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6Mzc6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20iO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1777638094),('hJFAS82GJyCnCQUbMUhOSouY4MFFExOn7CL9LlBE',NULL,'168.144.68.254','Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0','YTozOntzOjY6Il90b2tlbiI7czo0MDoiYVdMMklhUFVXdWhVeXNCUVVzUmFrQU5nZjB5Vk02OWp6NzNwQ0x5ayI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzI6Imh0dHA6Ly9haWdvLmh1bWljcHJvdG90eXBpbmcuY29tIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==',1777796593),('hLUr6kL11stBaq5dWEobakW3VTe5Be4H1s47nK4Y',NULL,'145.239.161.191','python-httpx/0.27.2','YTozOntzOjY6Il90b2tlbiI7czo0MDoiRG9lMXlaU1pSa3FqWDdsT09McktPcnB2bUY2dUxFMVdoakJQQmVBSCI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzI6Imh0dHA6Ly9haWdvLmh1bWljcHJvdG90eXBpbmcuY29tIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==',1777565404),('i5KRRtfrVpMfJp3kDLJWXHNCU4nkkpuzWGvZtFHP',NULL,'159.223.228.73','Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0','YTozOntzOjY6Il90b2tlbiI7czo0MDoiRm5lT01IbE5IOHJCQ2tRZGFFQUtEbVQwTzFuOHBqcHNkbFpPVVQyWiI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6Mzc6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20iO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1777524670),('ImQDGpgow9TEdrOFyTQG1wBpAWY2teDk3fcDVWq6',NULL,'35.208.135.133','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoidjRWb3RMc1FBdlo0NlZIa2l3d1hrbVVyRE9vWG5sajNOeGZTdXZNWiI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NDI6Imh0dHA6Ly93d3cuYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbS9sb2dpbiI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777877055),('j4OgFmxFi0Ai1OvNeqMTFTtyJhbvQxMiU2Y866IS',NULL,'74.7.227.34','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)','YTozOntzOjY6Il90b2tlbiI7czo0MDoiM0xxVGJIa1NxQjlqSXNyNmZ2em5TNms3dHRDU0ZXdWJyOFhmanh4aCI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NDY6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20vcmVnaXN0ZXIiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1778428652),('J7onzAjQF9u3ww9Ta45r973nyCKqyR0IQfpyVSGY',NULL,'34.90.72.216','Scrapy/2.13.4 (+https://scrapy.org)','YTozOntzOjY6Il90b2tlbiI7czo0MDoibm1WS2NRRG1YclZsbjRuT0FObzhBZ1NSVWtmcks0UW16QlA1ZFVicCI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzM6Imh0dHBzOi8vYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777298372),('jcIZHAaFsKous4MUTuBjOXwTMNhO29SCw54fVCJN',NULL,'167.71.143.240','Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0','YTozOntzOjY6Il90b2tlbiI7czo0MDoickV3YTlYZDNUN3VEV0Y2T3hqeTg1VTJWNGcyT0tha2hCcWZidjVZMiI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzM6Imh0dHBzOi8vYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777251199),('jV3etsdZjEFR44bgMJ6FKJcV2aEpLUnBMFQykmIS',NULL,'199.45.154.155','Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)','YTozOntzOjY6Il90b2tlbiI7czo0MDoiR09Pb3Q1blE2V25GOGw0cWViYnBoMm5jNnZFMDIyYWhUTnF2eDltOCI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzI6Imh0dHA6Ly9haWdvLmh1bWljcHJvdG90eXBpbmcuY29tIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==',1776971148),('kd2meepxDwfAwqC1crDVuuS0itT3e6CxqqM2XMgI',NULL,'182.3.51.235','Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko','YTozOntzOjY6Il90b2tlbiI7czo0MDoiWG1vcm9KT3hiMjQ4RFZmV1NKNUQ0QTJLWm5VNUpLTm5UMmMzTUFvUCI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzI6Imh0dHA6Ly9haWdvLmh1bWljcHJvdG90eXBpbmcuY29tIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==',1777926639),('lbKiAEKnOrNIlwUmlt2YyqHqeaptmoeDcZj127in',NULL,'139.59.80.79','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:125.0) Gecko/20100101 Firefox/125.0','YTozOntzOjY6Il90b2tlbiI7czo0MDoiT2JMQ2d0YVN2TTRscVZuNm5JMFRVQ2ZUczFQV3ZmTVROb29mYVhzQiI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzY6Imh0dHA6Ly93d3cuYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1776940276),('lM56BjGebqdzqfEuypPpiWYiyhZVb2fOOoNy0Ftf',NULL,'64.227.174.189','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoib0JsMFVSWWdXeHJFOUtLQndGcE53T0lXanJlU3J6T2ptUVo4b20xbCI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzY6Imh0dHA6Ly93d3cuYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777133843),('LUsySOkbHrMwbVAurQDoXAg2acE6jY00EOXqAykU',NULL,'104.168.28.15','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.0.1 Safari/605.1.15','YTozOntzOjY6Il90b2tlbiI7czo0MDoiaEZZeks2VXNBUFpGcGwwZTlZWWprN0ZnakQ4NmZyZUJmUnNJNjJJYyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzY6Imh0dHA6Ly93d3cuYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1776939452),('mpuK1usVDbco2U9ABCJ69OGqVhjBhFHRmAhQNJ4F',NULL,'66.132.195.54','Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)','YTozOntzOjY6Il90b2tlbiI7czo0MDoiUnZKb2k4V0VCQnZsNUlhZlI5VnVEMEpWQlNxSktMN2lLZTc1VXBYaiI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzY6Imh0dHA6Ly93d3cuYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777710392),('n7OnH9ce7V4C49iPbQKL44ce0LeH08n2SudSEa2P',NULL,'40.77.167.3','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoib1l4SWUzbkVqUHRJY1FCNGxmZ1lkb0IzeTZhc2pTRFRuakQ4TWg1bCI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzM6Imh0dHBzOi8vYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777224590),('NkYycmblAm9nby4UfEwz8zX3f0rYGLxKExAkasUm',NULL,'182.10.129.176','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 Edg/147.0.0.0','YTozOntzOjY6Il90b2tlbiI7czo0MDoid1MzU1k1MUVORGRFQmxHUGQ2NTFlbkRkSzBaSkpSMjhlUGVlN1NwRCI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NDI6Imh0dHBzOi8vYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbS9yZWdpc3RlciI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1778231923),('NSqlwZKZaFlWRngbDBo391UEliNabNv5qLHO1iUH',NULL,'185.247.137.86','Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/)','YTozOntzOjY6Il90b2tlbiI7czo0MDoiWnNIYUdsd0FwN0tqeEFQeFhpUmtucHpNalVCRFVXcmNMaXB4SUVTNiI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzY6Imh0dHA6Ly93d3cuYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777840479),('nx9QXnt38EdLmS13wcaEj3BeBlTlOv4M3i2ApyEQ',NULL,'3.18.186.238','visionheight.com/scan Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) Chrome/126.0.0.0 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoiMnJrcWpmVndTZk5WVHhMZmRLOURiSHN6akFEOHZYRDEwT2V4bXVhVCI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzM6Imh0dHBzOi8vYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1776684359),('o0Q3AHibv7ugx2GIKLmerXOIug5cIcdbJO7UKT69',NULL,'185.151.8.79','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/115','YTozOntzOjY6Il90b2tlbiI7czo0MDoiMEhHM1lvWVRNdktUS0h3SnBnb3FDWk5tYlpMV2dtRUZoa0hxMk54aSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzI6Imh0dHA6Ly9haWdvLmh1bWljcHJvdG90eXBpbmcuY29tIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==',1778378994),('OInuXOKkIEetTa85YiV7CeoJ9DM1bNIKf6OhYDbF',NULL,'17.22.253.231','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','YTozOntzOjY6Il90b2tlbiI7czo0MDoiOW02eGc2QXFRckgwVXJNemJKUEVwT2V6cVo0SFF6V3BQMVJvNERIMiI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NTg6Imh0dHBzOi8vd3d3Lmh1bWljcHJvdG90eXBpbmcuY29tL2FpZ28uaHVtaWNwcm90b3R5cGluZy5jb20iO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1777759022),('oLjDXzM0Hv99cFT6Yl0nuv6er19vKiJ3yTCtIFIG',NULL,'145.239.161.191','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0','YTozOntzOjY6Il90b2tlbiI7czo0MDoiaFB3eURwajJuSkUwVFltYXRCcWsxTldQZWszSzJWanFBWWhFcGZwSSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzM6Imh0dHBzOi8vYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777565410),('oXoMopQn12xJufJqcmaBFKvSKTmeA2QhTGOGqAhd',NULL,'51.89.129.146','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)','YTozOntzOjY6Il90b2tlbiI7czo0MDoiNUJGbk4xMnNjRHJHbHdCeWlWZWVrOTRwOUc3TWY0R1B1TnA5VzZhNSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6Mzk6Imh0dHA6Ly9odW1pY3Byb3RvdHlwaW5nLmNvbS9haWdvL3B1YmxpYyI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777388508),('pav2FAjl9AkXcREFAYsoQhdfBZaJ089ZVl9ylRQZ',NULL,'103.26.82.185','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoiYmU3VHlXV216UHQ1QWswRmZlUWNxdVRVcFp4NERvVVFvbVhlQm56ZyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NDU6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20vY29udGFjdCI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777014676),('PLLuMVp7lWd6RFJksaNIZ1aMdLVwl5k8rXTl6AdF',NULL,'146.190.255.53','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoiMkFmUEc4ZXIzNHN6T2QxQUs1MGlkYTBGVUlCRFdZRXQ4T043YnBmbiI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzY6Imh0dHA6Ly93d3cuYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777364516),('pOzZVl4rwJswf4VaFMjrHzLohBKrLpt15tMHQUch',NULL,'142.93.144.66','Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0','YTozOntzOjY6Il90b2tlbiI7czo0MDoiRDllU1VrTVN4WFlndWY5WExsWlB1VDNQV2Q1cjZBR0hJR0hjbHZudyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzM6Imh0dHBzOi8vYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1776600336),('PSN83ZCbxcCkWGDQo2Af4E3OP4hW9wYePq2wSoli',NULL,'198.235.24.185','Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity','YTozOntzOjY6Il90b2tlbiI7czo0MDoiYnJjOFQ0WHREYUVzSVlrdHR4WjBpYU5Eb2VCUElzMHRMMzlnMEJLQyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzM6Imh0dHBzOi8vYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1778341880),('QI8yNsPjhUAx0e59FKaJ3ulM8M9bqzcKix1rLMHI',NULL,'109.224.242.196','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoiOGt5V1NpOGlWWEtNVmtpMTFyYVdVcUpDTHFqOHVHWDZaaWNRUXFjdyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NDU6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20vY29udGFjdCI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777839830),('QmBR8WsXm8650rgfRxmcXAyYcQGW8sP4N2nD6LPu',NULL,'74.7.227.10','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)','YTozOntzOjY6Il90b2tlbiI7czo0MDoieHNpTlVvMzduRTZuR1ZuODE2elZiWnVQeVRDZWFLRTBkbTB6elBGRiI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NDI6Imh0dHBzOi8vYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbS9yZWdpc3RlciI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777818465),('qr3N95NpAmQ1afG8BwKwKDegSYU9aKXMislbWUIa',NULL,'77.247.120.140','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoiUHZSV1gxeUNkdElER1RXRk9iUE56cFh5U3lmMFpIdGFpVDZTd3ZyRyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6Mzc6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20iO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1777792414),('RCFRg9EjuA2qPRFUnU4Ijti3lRD9J8Ksn9EsE85z',NULL,'142.93.144.66','Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0','YTozOntzOjY6Il90b2tlbiI7czo0MDoicVJuNXlSOVNOUzBOczVsMjVYbE81Ym1kTGxHaDZZaXVIckk2WjM1RCI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzI6Imh0dHA6Ly9haWdvLmh1bWljcHJvdG90eXBpbmcuY29tIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==',1776600336),('RPUdacfROhCfz2vDeUFMxFbMqTSTffTdunA8sToB',NULL,'104.168.28.15','Mozilla/5.0 (Debian; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoiUlZjR1hpWHZRTHJmU00yNElTTzRYUUlTMFZ3TUY3QWJYZEt6YVpBRSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6Mzc6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20iO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1776939452),('RVSHJOhLP63qC20xYQFfIbV5xxyILi32DsZywoF8',NULL,'66.249.71.172','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','YTozOntzOjY6Il90b2tlbiI7czo0MDoiT00zbmFwd25FcEVRVUMxYmZiN0U1Rm9sMVlZSHN2OHBldkJLMmJrZyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6Mzc6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20iO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1777638112),('s30Xd9LfhMF0ZYkO6CGrZB61BLo1XNlSE66EXv5v',NULL,'34.10.2.22','Mozilla/5.0 (compatible; CMS-Checker/1.0; +https://example.com)','YTozOntzOjY6Il90b2tlbiI7czo0MDoiYUxEQTduWURPeHlzRnVRb1R5a2JjYTcwdTdZcHBwcTVkVUlSTko1eCI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzI6Imh0dHA6Ly9haWdvLmh1bWljcHJvdG90eXBpbmcuY29tIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==',1777820791),('S88kaKsYGZMWGsERNCzxEU3TzNnuSF1Ygk09OAuX',NULL,'205.169.39.14','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.5938.132 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoidEZSeDlDRkh0ZHUxd2FCdm51dFBhb1VlT01nNUdMSUFnQVpRbzhXcSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzI6Imh0dHA6Ly9haWdvLmh1bWljcHJvdG90eXBpbmcuY29tIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==',1777298646),('t7DAwiNV1ogICgGgFHSiYSFPnUM02kEfcXvUWXhR',NULL,'51.195.215.128','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)','YTozOntzOjY6Il90b2tlbiI7czo0MDoiSzRVU0RCOHkzQU9HZ3h0Q1N6UXZmU0I5c3FDNUg3VGtjSElPSG1PSyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NDQ6Imh0dHBzOi8vd3d3Lmh1bWljcHJvdG90eXBpbmcuY29tL2FpZ28vcHVibGljIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==',1777392483),('tFH8SwNJObzuwHbMfHQrKuE7OImE3OiKQTWCDQJt',NULL,'157.55.39.9','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoieXpsMnZmRE1ZZFZ3Y0dMdzlhVjc5NGhvbGtUOVNYN0gzR3BXcjQ4SSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6Mzc6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20iO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1776687699),('TNLloT4pEgU4OSV0EK2hT7qoZo35oFUkAH9p4D18',NULL,'94.23.188.208','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)','YTozOntzOjY6Il90b2tlbiI7czo0MDoiZ09uc052VzMxemhqbzRWU1lEeXlPdkx5Y1BGTHo3OWxxdUdKQ2hyUyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NDM6Imh0dHA6Ly93d3cuaHVtaWNwcm90b3R5cGluZy5jb20vYWlnby9wdWJsaWMiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1777501299),('TqD7gpHO3FNrfwkpDjAcmoHZtCBpiyxhHcgY8Jjx',NULL,'14.185.72.92','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoidTV0aWxucGNoTXhoZVZQVHJkRW44RnVqU3VGV0t5UDNlRExxbkphdSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6Mzc6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20iO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1778051632),('TYnuOkUoJ4ezU6BMpezzjrbNuIGBbe3MlqD5udgh',NULL,'57.129.136.58','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0','YTozOntzOjY6Il90b2tlbiI7czo0MDoiSjFtVDJqY1V4M1ZPcG9rT2cxT1R1NlBSamdZeGI3Yjd6dmVZMUNZNSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzM6Imh0dHBzOi8vYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1778199843),('tytxkkYFyZmRQeUH1tYhRNbclAEHAmmxNoxYlS8w',NULL,'198.163.193.174','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Brave Chrome/89.0.4389.114 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoiYVVaQktwR0V2N1VQQnZJY05SRTl5RTk0MnJQblpiMDAxZTZWRnF1RiI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NDM6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20vYWJvdXQiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1777705741),('uUjGtUyGc4IZeV8nyv0vMqehGMkqGNP2Jo9abte8',NULL,'205.210.31.178','Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity','YTozOntzOjY6Il90b2tlbiI7czo0MDoibXZZRHl2WkgycVljWFdHVEFLbTNJSTY1emp1ZnN2dUt6QzdjdUpGMSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzI6Imh0dHA6Ly9haWdvLmh1bWljcHJvdG90eXBpbmcuY29tIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==',1778404165),('UUSYbIPbObq6SXlHzb5MMhxBWIXc8oAcOWs23Oti',NULL,'134.122.16.141','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoiaThPSDZ5Y2RpdUxRQVBtVGExbWFrQ3RGVk1PN3BEbFZIcEFPeXU2cSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzI6Imh0dHA6Ly9haWdvLmh1bWljcHJvdG90eXBpbmcuY29tIjt9czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==',1777425355),('uuVEjbjvx589FXZP55u98tZKYleF5hH4vCuLN05x',NULL,'64.227.174.189','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoiUTA2RUpTZEF1dmR4VkFqajdpRm5uczBHYnN4NHdGM041N2o0ejJqayI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzY6Imh0dHA6Ly93d3cuYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777133846),('V0DVau76I4MKjZV2XWYc0US9jT5m7chUfrfxb3v1',NULL,'172.71.164.167','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36 Edg/122.0.0.0','YTozOntzOjY6Il90b2tlbiI7czo0MDoiWFNaTld0Q0ZJN3RpY0d4SWM4WjlSTENidWFMOER3RkM5SXpPUk9pSyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzY6Imh0dHA6Ly93d3cuYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1776574954),('V0Tu5VqFV1MOO6BRBr5iTq53dsskLWX2QPG52Ops',NULL,'52.214.31.127','Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; +info@netcraft.com)','YTozOntzOjY6Il90b2tlbiI7czo0MDoiV0VyWTRNaHlIcVNubkpEWkEyVnNGeUlicmtFeElhNnZIS2UzMUMySCI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzM6Imh0dHBzOi8vYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1778529221),('vjivQMFI1KEJrlCOuvvzKe9ld783BSzNZJaxF8td',NULL,'77.74.177.114','Mozilla/5.0 (Linux; arm_64; Android 12; CPH2205) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 YaBrowser/23.3.3.86.00 SA/3 Mobile Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoiUHp1SldhYnhXdjRteFFtZ2hXWmgzNUM2ckN6eEJBU0NpaGprQXpsNyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzM6Imh0dHBzOi8vYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1776819962),('W2o4TPWO8m6HqV3V4eSNNRiLnRt20utwZgVfQndJ',NULL,'178.123.114.240','Mozilla/5.0 (Macintosh; Intel Mac OS X 11_1_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoiUkxaNkFRY3Z0UGFTRDZUNVJlQndsYTc0cnU2cVBRdWd1ZXhhaksydSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NDM6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20vYWJvdXQiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1777360115),('wr8LPUdMppGJMJYj30yh6eMCnPXqafsXI1U2B5I8',NULL,'206.135.187.191','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4880.146 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoiRmxhUndvbjJEeVZaeDl0aVpSdVlXYWNoOUhVSDFwZnBoMG9hRWt3MSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NDM6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20vYWJvdXQiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1778145655),('WTh1Nc7wGoLyzzsKmTewLlLa9pltkoa8id5Ag8dU',NULL,'35.208.135.133','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoiSzNCVHFtQzA0VFZOMUNKdFVocjVzMGFYZjZJbG83bzY4TW5IQ3J4ZSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzY6Imh0dHA6Ly93d3cuYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777877054),('WXLsXVJyBjcOASt7X3nj3xYMoDqIIFG4o53JLbFT',NULL,'77.74.177.118','Mozilla/5.0 (Linux; arm_64; Android 12; CPH2205) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 YaBrowser/23.3.3.86.00 SA/3 Mobile Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoiNGl6dVJ0c3BRZzZGVUQ2OEFNQkVyNDUwYjJ2TUtBb0lmaWc3NTZFdyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzM6Imh0dHBzOi8vYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777845623),('X9eSZsUIbFEVgyfpHgLR39dFZthvnWiYJK9EMdui',NULL,'192.71.142.40','Mozilla/5.0 (iPhone; CPU iPhone OS 17_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.1.2 Mobile/15E148 Safari/604','YTozOntzOjY6Il90b2tlbiI7czo0MDoiMGkxYmNmb1J4MmdlYlNLcEg5d0FWTUMzZVV4dmNyR284dnkydXN5NiI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzY6Imh0dHA6Ly93d3cuYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777327955),('XAo4loojXFkvjdoI9JeY6gOZHvSdHRlT35zt00zY',NULL,'168.144.68.254','Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0','YTozOntzOjY6Il90b2tlbiI7czo0MDoidW04dUxlZGZEN3ZDbXFXOGdIVVNERWVBcmlkTkVEaEpUZkN5d2ZTZiI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzM6Imh0dHBzOi8vYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777796594),('XeyRNQuVRC7w3OdmhfjHRl9CD38qeE6WUSDheMSG',NULL,'199.45.154.113','Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)','YTozOntzOjY6Il90b2tlbiI7czo0MDoiaEFaUHhqZFFrOHoxYXBWRW00bjk2TkUxSVVYRHZyckdpc25pUUR0OCI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzY6Imh0dHA6Ly93d3cuYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1776952600),('XLSQ8zJdjzgYL0Wc3wTnU21eB8Jq5dPdEhWXAN41',NULL,'57.129.136.58','python-httpx/0.27.2','YTozOntzOjY6Il90b2tlbiI7czo0MDoib1R0YUhYWEx0S1M2bGZ6STBFbjFVMDN4M0lOU2hiY3hQQkpsOUhvNSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzM6Imh0dHBzOi8vYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1778199841),('xRTzRhGyNPFCvUiN3Qm19tmb9EFBoiq9sNFSkA9f',NULL,'34.100.229.63','Mozilla/5.0 (Linux; Android 5.1.1; SM-E700H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Mobile Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoicXptbE14anJmTDRqellIN3gxd3g1TjM2cEYwTzIzTmM5TEY0R1FJOSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzM6Imh0dHBzOi8vYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777568647),('xUJJfOUQgpjCE5PzaNVJuifKYQNlLfJBlI3lt5RJ',NULL,'145.239.161.191','python-httpx/0.27.2','YTozOntzOjY6Il90b2tlbiI7czo0MDoiRUdKZE9IbDdGaVlVNmI1N0ZMekVNOVpMZTRGZ1c4YzlWOFkxSUEwRSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzM6Imh0dHBzOi8vYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777565404),('y9IXeUitJBOR6cV8NtXr0bTcSik2Ayp4NzCYdoR1',NULL,'159.223.228.73','Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0','YTozOntzOjY6Il90b2tlbiI7czo0MDoiN2FjNGlKMHZuTkt3UHVwSkg0N3duWHpvN2Ztc1RNWHQ4QjNoNHpxbSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzY6Imh0dHA6Ly93d3cuYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1777524670),('yI1Whmh4CbYDx9Tc18FhRA1oV90TVdba7cGEBauk',NULL,'40.77.167.52','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoibE9zdGlDNjNPcDAyTFNUbW4zUGFCb0NmNzRRT3Bka0VyWGlLOUhUZiI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NDI6Imh0dHBzOi8vYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbS9yZWdpc3RlciI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1776650000),('yKa4bJOqSTVJtdd0zK1yu4e3fuKxxrpUtD6vwoYv',NULL,'185.247.137.19','Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/)','YTozOntzOjY6Il90b2tlbiI7czo0MDoiMklsbmFyT3RVcmxLc1FGTmNaWnQxYmVLOXJ0elFvdVNFY1QwTjg2NCI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MzM6Imh0dHBzOi8vYWlnby5odW1pY3Byb3RvdHlwaW5nLmNvbSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1776857022),('zMvjXvL9FCLroKts1g8ZfuJZLzpCf3yyWSPkD4Rp',NULL,'66.249.71.171','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.7727.137 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','YTozOntzOjY6Il90b2tlbiI7czo0MDoiTlRNQ2F2RDMzUjBQOEZKQlVYRnlCV01zODZvdDQ5Y3NEek13UmlyaCI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NDM6Imh0dHBzOi8vd3d3LmFpZ28uaHVtaWNwcm90b3R5cGluZy5jb20vYWJvdXQiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1777838150); +/*!40000 ALTER TABLE `sessions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `users` +-- + +DROP TABLE IF EXISTS `users`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `users` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `user_role` varchar(255) NOT NULL, + `username` varchar(255) NOT NULL, + `password` varchar(255) NOT NULL, + `name` varchar(255) NOT NULL, + `email` varchar(255) NOT NULL, + `email_verified_at` timestamp NULL DEFAULT NULL, + `telepon` varchar(255) NOT NULL, + `alamat` varchar(255) NOT NULL, + `gender` varchar(255) NOT NULL, + `remember_token` varchar(100) DEFAULT NULL, + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + `active_status` tinyint(1) NOT NULL DEFAULT 0, + `avatar` varchar(255) NOT NULL DEFAULT 'avatar.png', + `dark_mode` tinyint(1) NOT NULL DEFAULT 0, + `messenger_color` varchar(255) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `users_username_unique` (`username`), + UNIQUE KEY `users_email_unique` (`email`) +) ENGINE=InnoDB AUTO_INCREMENT=36 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `users` +-- + +LOCK TABLES `users` WRITE; +/*!40000 ALTER TABLE `users` DISABLE KEYS */; +INSERT INTO `users` (`id`, `user_role`, `username`, `password`, `name`, `email`, `email_verified_at`, `telepon`, `alamat`, `gender`, `remember_token`, `created_at`, `updated_at`, `active_status`, `avatar`, `dark_mode`, `messenger_color`) VALUES (1,'user','w333zard','$2y$12$vqAM30B8Nku.SFABSy1hsOPf5c0nx3vKn0EQTlr59M1KJo9IABSOG','Wzrd','wzrd@gmail.com',NULL,'081392147474','Bandung','male','d7MRcAZTHFgTUGRgt0rjytxfdNk9bc4XPSkzjw70KrZ53X2tnTPJpkOzs6Vq','2024-06-01 05:53:14','2024-06-04 10:26:39',0,'avatar.png',0,NULL),(2,'user','fiona74','$2y$12$7qKxhbLtP1Ji41g.8oX1Du8SMdGLrXzezEJxLWkyc6H7oNVat86.i','Miss Yvonne Reilly','white.rebeka@example.net',NULL,'732-608-2649','253 McGlynn Loop Suite 580\nOdessabury, PA 89500','male',NULL,'2024-06-01 05:54:34','2024-06-01 05:54:34',0,'avatar.png',0,NULL),(3,'user','conn.sister','$2y$12$Ib8VEmsQIYXgRxNU5cdYB.uAwP5Z2hnxNJXuYHGw7ruULen2.hxE2','Josiane Yundt','bell84@example.net',NULL,'(319) 294-5206','25250 Scottie Coves Apt. 087\nLake Samanta, ID 49859','female',NULL,'2024-06-01 05:54:34','2024-06-01 05:54:34',0,'avatar.png',0,NULL),(4,'doctor','homenick.vergie','$2y$12$ihmUevbKN8nLttXkm52h/.AW4ljlC6psb/RTWPaQCnZKgL6H2ZR5.','Brook Jerde MD','lconsidine@example.com',NULL,'1-539-665-4318','99208 Hagenes Stravenue\nHyattton, IN 55466-0972','male','yInLnyHttK8GSpWReLB8nap9FbwH7KSVkBNdePEIzn7z5royAQFVR3Dh1asN','2024-06-01 05:54:34','2024-06-01 05:54:34',0,'avatar.png',0,NULL),(5,'user','kozey.arjun','$2y$12$9J6Qe1MW/lgse7JUSWrjvufKAd/R0cVUrZJ5KywNjYIc9TFwS5fUy','Dr. Savanna Pollich','zora.hill@example.org',NULL,'+1-978-966-9205','85851 Bartell Points Suite 374\nSouth Catalinamouth, OK 08021','male',NULL,'2024-06-01 05:55:28','2024-06-01 05:55:28',0,'avatar.png',0,NULL),(6,'user','mcclure.michael','$2y$12$35qM7AcPm.trJxQoL.DKSu0xwgz8AlzfSuVeCawbJCN/BPQvs/oRO','Brianne Gerhold','ruth.ratke@example.org',NULL,'+14258341017','953 Jodie Radial\nBodebury, MS 49657-0768','female',NULL,'2024-06-01 05:55:28','2024-06-01 05:55:28',0,'avatar.png',0,NULL),(7,'doctor','april.farrell','$2y$12$PmUyYRX3uN86dxw331Rnq.vPn7XU5LzrCo6.kvRNgp2J4fmM3Ueb6','Dr. Thomas Huel DDS','luisa.schinner@example.com',NULL,'(440) 794-3689','35092 Ursula Via Suite 137\nNikolashaven, CA 14676-8653','male',NULL,'2024-06-01 05:55:29','2024-06-04 10:26:33',1,'avatar.png',0,NULL),(8,'user','erick.bauch','$2y$12$aePpoOCoY4IGmEZXvLPaU.qe8FPqqcn3Rvzm.g0eAjiIJ6mLjDLtu','Dr. Earline Ullrich IV','amina.johnston@example.org',NULL,'425-475-4723','278 Walker Freeway Suite 499\nOberbrunnerborough, WY 97255','female',NULL,'2024-06-01 05:55:31','2024-06-01 05:55:31',0,'avatar.png',0,NULL),(9,'user','robin62','$2y$12$S9F8lfD3sg6/YCNpDla0yem2DEoTuUYfbvA.egIz8bfd3oAQOokqa','Prof. Pablo Smitham','hbreitenberg@example.com',NULL,'318.605.4385','604 Stroman Courts Apt. 049\nEast Maximo, MS 59928','female',NULL,'2024-06-01 05:55:31','2024-06-01 05:55:31',0,'avatar.png',0,NULL),(10,'doctor','nash47','$2y$12$zYYrxrQwg9tA5OCTWuqkd.6Y4Fn4jpXdFgN/SJoHeB8ntF0gt2WPW','Ms. Sydni Bogisich','stuart09@example.net',NULL,'351-578-2629','672 Nolan Turnpike Suite 414\nSouth Rachael, CT 05959','male',NULL,'2024-06-01 05:55:31','2024-06-01 05:55:31',0,'avatar.png',0,NULL),(11,'user','abagail.mills','$2y$12$eCxBHNaaY4//PurIgAe.O.iPdHSerCJFRNbuXVxSsFb3oh3EXCHeu','Rosanna Fritsch','shanon38@example.net',NULL,'1-240-329-5626','98446 Brady Tunnel Apt. 569\nWest Garnett, NY 86986','male',NULL,'2024-06-01 05:55:32','2024-06-01 05:55:32',0,'avatar.png',0,NULL),(12,'user','jkoepp','$2y$12$dL45ozH7p3q1Hm2Xr7So6uHZkN78EQSPz57W6qzs0rtcjCnShfvPi','Issac Bogan','jerde.adalberto@example.org',NULL,'412-970-1887','4361 Ryley Inlet\nEast Vance, ND 39203','male',NULL,'2024-06-01 05:55:32','2024-06-01 05:55:32',0,'avatar.png',0,NULL),(13,'doctor','lavonne22','$2y$12$ZeE9jQy3KOKVTa2867ueme.rUN7oNxX6eFcgwSAWDMFT8KCCWHpCe','Dr. Armando Larson Jr.','cruickshank.hugh@example.net',NULL,'+1-424-675-5415','712 Langosh Springs Suite 281\nPort Abigale, SD 81790-7386','male',NULL,'2024-06-01 05:55:32','2024-06-01 05:55:32',0,'avatar.png',0,NULL),(14,'user','OurMine','$2y$12$UlrkNvBwJ6ZjHl9R/duCjuJIc1QiEqwSOPNusFh8XoiZtbpc3ZPYW','OurMine','temp@gmail.com',NULL,'08120391831','Bandung','male',NULL,'2024-06-03 10:14:39','2024-06-03 10:14:39',0,'avatar.png',0,NULL),(15,'user','OurMinez','$2y$12$J1E8XWmGJVYPJY33gEFqeOakgNiqda10le7TyPWWuR0uOrCKIgP66','OurMine','ourmine@gmail.com',NULL,'081294297529','Serang','male',NULL,'2024-06-05 23:33:08','2024-06-05 23:33:08',0,'avatar.png',0,NULL),(16,'user','vidyaratmayanti','$2y$12$sIEJsgp9ifsh34R23RD89eOEX/zRk/as9HYWCYNz21EkxB2wrggpa','vidya','vidyaanandar@gmail.com',NULL,'0813395835584','jalan sukapura','female',NULL,'2024-06-06 07:46:24','2024-06-06 07:46:24',0,'avatar.png',0,NULL),(17,'user','wili','$2y$12$QNUScDrSQllZgMgz.03Z1OoZJenrhx428rzF5Sy2SlG0FRgbFzlky','wili','vanillateaaaa@gmail.com',NULL,'081919423939','bandung','male',NULL,'2024-06-06 07:47:39','2024-06-06 07:47:39',0,'avatar.png',0,NULL),(18,'user','w333zard_','$2y$12$hT2S.9nZ30zr8sshX0MY3u//FUNL/MBh6sCcXuFTZ9T2Eq8i9Qr5q','w333zard','w333zard@gmail.com',NULL,'081392147474','Bandung','male',NULL,'2024-06-06 09:31:32','2024-06-06 09:31:32',0,'avatar.png',0,NULL),(19,'user','Wili1','$2y$12$Qh21eJl1KjGoSSKkV0e7NOyw2pLTLqMHZcfy1H.Lsk1tnr.XbQe2y','Wili','wili@gmail.com',NULL,'08927728282','Jajakajkaka','male',NULL,'2024-06-06 23:39:27','2024-06-06 23:39:27',0,'avatar.png',0,NULL),(20,'user','satria','$2y$12$lEhWWerDRW9mIh5Dl/G2muQ7am5bIYbNNPtT63xq46rBuc8fQkCgu','satria','satman0273@gmail.com',NULL,'122445','reyuuu','male',NULL,'2024-06-07 00:45:17','2024-06-07 00:56:17',0,'avatar.png',0,NULL),(21,'user','Glorious Satria Dhamang Aji','$2y$12$CaOzSb2HlyFGHILEQfARb.ZE5Q75hxvjW0HnimC3H57XBOUjzymMm','satriadhm','glorioussatria@gmail.com',NULL,'082241389340','Klaseman','male',NULL,'2024-06-13 18:13:13','2024-06-13 18:13:13',0,'avatar.png',0,NULL),(22,'user','vidya ratmayanti','$2y$12$GaVjjyaQGn6msiYBPJvR5..gGH0wifUrxfU6T0kIwGaHNG1P1Nm/O','vidya','vidyaaandar@gmail.com',NULL,'081339583085','jalan sukapura','female',NULL,'2024-06-14 00:19:20','2024-06-14 00:19:20',0,'avatar.png',0,NULL),(23,'user','satriamandala','$2y$12$N1j5eRelUNM7mS2frEtWAOGjJtb56leXNxqR.sI4IefnByZC6qgjy','Satria','satria@local.com',NULL,'083242343242','Bandung','male',NULL,'2024-06-22 00:51:39','2024-06-22 00:51:39',0,'avatar.png',0,NULL),(24,'user','rakha','$2y$12$./NT0qImtg8fFrA60XRTbOHcXoUZJ5OGRjWPobEd5KjAwmEyWzwii','rakha rakha','cakha219@gmail.com',NULL,'082261690122','jl. ahmad yani','male',NULL,'2024-07-15 04:44:08','2024-07-15 04:44:08',0,'avatar.png',0,NULL),(25,'user','rakhamuhammad50@gmail.com','$2y$12$9InQ6LIKmdFAscaHUkmMHOYSPseyV16SZRmSYfXsyOpZzyfyqqqii','Muhammad Rakha','rakhamuhammad50@gmail.com',NULL,'082271701212','jl.ahmad yani','male',NULL,'2024-08-29 05:25:56','2024-08-29 05:25:56',0,'avatar.png',0,NULL),(26,'user','lboyz','$2y$12$vxqFds/HAC6qCt/9mdY2WutlXH/M2kD4Kj6oPXU1ecZURcpAHpFXu','duta','razaqduta@gmail.com',NULL,'082294317150','wisma sehati','male',NULL,'2024-09-26 18:17:02','2024-09-26 18:17:02',0,'avatar.png',0,NULL),(27,'user','tes','$2y$12$D557srz78ZSVAu8cl3uIguNDYRC/NfyukxIkYuVWYlrfeCFw8egZm','jong un','jongun189@gmail.com',NULL,'085342234480','JL. Telekomunikasi','male',NULL,'2024-10-01 12:13:31','2024-10-01 12:13:31',0,'avatar.png',0,NULL),(28,'user','tes12','$2y$12$N8UOjp5trhUzxJboV6bAgOwtjsq4Q72AT1c4T4342075QK5aG/aT6','jong un','test@gmail.com',NULL,'0822984461154','jl. Tes','male',NULL,'2024-10-03 15:01:21','2024-10-03 15:01:21',0,'avatar.png',0,NULL),(29,'user','mrakhaa','$2y$12$CUH1MIAiHrhC8qbHOUlmX.9Y5B3DdutjgVjRIKcok5CJ2RK2k1iqW','Rakha','rakhamuhammad2908@gmail.com',NULL,'082261690122','Jl. Ahmad Yani','male',NULL,'2024-10-10 03:32:04','2024-10-10 03:32:04',0,'avatar.png',0,NULL),(30,'user','mridha747','$2y$12$4Fep3uFi6PjuBOuj/APyLuZYR3A5J0WIZI512xoubfe0szoxTdzw6','Muhammad Ridha','mridha747@gmail.com',NULL,'082267370810','Jl. Ahmad Yani','male',NULL,'2024-11-01 07:01:09','2024-11-01 07:01:09',0,'avatar.png',0,NULL),(31,'user','dodit','$2y$12$FN4Yh7Np1NCqFm.R.qohmOgb4JFejIEtu1JP2W9pK1k4ySQq4GoH6','dodit kurnianto','dodit@gmail.com',NULL,'08235417819','Bandung','male',NULL,'2025-04-11 00:05:38','2025-04-11 00:05:38',0,'avatar.png',0,NULL),(32,'user','didit','$2y$12$VFbQ4B8QRC7pC344QLQKOuhkHvs1ZoGVeKSYTdldkioQw3RP0Fg.m','didit','didit@gmail.com',NULL,'081527171','bdg','male',NULL,'2025-04-11 02:20:12','2025-04-11 02:20:12',0,'avatar.png',0,NULL),(33,'user','tsaqila','$2y$12$P8C6tMdXAdCM3kgt36MF/OLy9AfCCzP56ty02kImmae6slBLMJcj.','Tsaqila','tsaqila48@gmail.com',NULL,'083897472865','-','female',NULL,'2025-04-24 07:42:18','2025-04-24 07:42:18',0,'avatar.png',0,NULL),(34,'user','asdasd','$2y$12$iTQS/oULgvCYmQP/nCnGyupIJ/ONKLg.Ja2NGsHLBDC9OmCaSVLh.','asdasda','asdasdasd@gmail.com',NULL,'sdasdasd','asdasdasd','male',NULL,'2025-04-25 09:26:55','2025-04-25 09:26:55',0,'avatar.png',0,NULL),(35,'user','vikhanmuharram','$2y$12$RA7Rc9.NecZWFDMBanhkAuTonQYF6ydpTK1XQuFsZSdlOhNRyYJf2','Muhammad Vikhan Muharram','muhammadvikhanmuharram@gmail.com',NULL,'081221003708','Bandung','male',NULL,'2025-08-12 01:07:07','2025-08-12 01:07:07',0,'avatar.png',0,NULL); +/*!40000 ALTER TABLE `users` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Dumping events for database 'humicpro_aigo' +-- + +-- +-- Dumping routines for database 'humicpro_aigo' +-- +/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; + +/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; +/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; +/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; +/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; + +-- Dump completed on 2026-05-12 16:17:20