0.1.6A bugfix

This commit is contained in:
User
2025-05-28 15:15:19 -04:00
parent 7837e7db0c
commit 2c730be26f
6 changed files with 137 additions and 4767 deletions

View File

@@ -4,7 +4,6 @@ namespace App\Http\Controllers;
use Illuminate\Contracts\Routing\ResponseFactory; use Illuminate\Contracts\Routing\ResponseFactory;
use Illuminate\Foundation\Application; use Illuminate\Foundation\Application;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\File; use Illuminate\Support\Facades\File;
use Inertia\Inertia; use Inertia\Inertia;
use Inertia\Response; use Inertia\Response;

View File

@@ -32,7 +32,7 @@ class CopyManga
/** /**
* @var string * @var string
*/ */
protected string $url = "https://api.mangacopy.com/api/"; protected string $url = "https://mapi.copy20.com/api/";
/** /**
* @var string Encryption for legacy image fetch * @var string Encryption for legacy image fetch
@@ -151,7 +151,7 @@ class CopyManga
if ($method === 'OPTIONS') { if ($method === 'OPTIONS') {
$options = ['headers' => ['Access-Control-Request-Method' => 'GET']]; $options = ['headers' => ['Access-Control-Request-Method' => 'GET']];
} else { } else {
$options = ['headers' => ['platform' => '1', 'version' => '2022.10.28', 'webp' => '0', 'region' => '0', 'Accept' => 'application/json']]; $options = ['headers' => ['platform' => '1', 'version' => '2025.05.09', 'webp' => '0', 'region' => '0', 'Accept' => 'application/json']];
} }
$response = $client->request($method, $url, $options); $response = $client->request($method, $url, $options);
@@ -227,10 +227,20 @@ class CopyManga
$parameters['limit'] = $limit; $parameters['limit'] = $limit;
$parameters['offset'] = $offset; $parameters['offset'] = $offset;
$parameters['top'] = $top; $parameters['top'] = $top;
$parameters['free_type'] = 1;
$parameters['ordering'] = "-datetime_updated";
$parameters['_update'] = true;
$a = $this->network21();
return $this->execute($this->buildUrl("comics", $parameters), ttl: 15 * 60); return $this->execute($this->buildUrl("comics", $parameters), ttl: 15 * 60);
} }
public function network21()
{
return $this->execute($this->buildUrl("system/network21", ['platform' => 1]));
}
/** /**
* Search comic by name * Search comic by name
* *

BIN
bun.lockb

Binary file not shown.

200
composer.lock generated
View File

@@ -1184,16 +1184,16 @@
}, },
{ {
"name": "laravel/framework", "name": "laravel/framework",
"version": "v12.12.0", "version": "v12.16.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/laravel/framework.git", "url": "https://github.com/laravel/framework.git",
"reference": "8f6cd73696068c28f30f5964556ec9d14e5d90d7" "reference": "293bb1c70224faebfd3d4328e201c37115da055f"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/laravel/framework/zipball/8f6cd73696068c28f30f5964556ec9d14e5d90d7", "url": "https://api.github.com/repos/laravel/framework/zipball/293bb1c70224faebfd3d4328e201c37115da055f",
"reference": "8f6cd73696068c28f30f5964556ec9d14e5d90d7", "reference": "293bb1c70224faebfd3d4328e201c37115da055f",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -1214,7 +1214,7 @@
"guzzlehttp/uri-template": "^1.0", "guzzlehttp/uri-template": "^1.0",
"laravel/prompts": "^0.3.0", "laravel/prompts": "^0.3.0",
"laravel/serializable-closure": "^1.3|^2.0", "laravel/serializable-closure": "^1.3|^2.0",
"league/commonmark": "^2.6", "league/commonmark": "^2.7",
"league/flysystem": "^3.25.1", "league/flysystem": "^3.25.1",
"league/flysystem-local": "^3.25.1", "league/flysystem-local": "^3.25.1",
"league/uri": "^7.5.1", "league/uri": "^7.5.1",
@@ -1306,7 +1306,7 @@
"php-http/discovery": "^1.15", "php-http/discovery": "^1.15",
"phpstan/phpstan": "^2.0", "phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^10.5.35|^11.5.3|^12.0.1", "phpunit/phpunit": "^10.5.35|^11.5.3|^12.0.1",
"predis/predis": "^2.3", "predis/predis": "^2.3|^3.0",
"resend/resend-php": "^0.10.0", "resend/resend-php": "^0.10.0",
"symfony/cache": "^7.2.0", "symfony/cache": "^7.2.0",
"symfony/http-client": "^7.2.0", "symfony/http-client": "^7.2.0",
@@ -1338,7 +1338,7 @@
"pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).", "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).",
"php-http/discovery": "Required to use PSR-7 bridging features (^1.15).", "php-http/discovery": "Required to use PSR-7 bridging features (^1.15).",
"phpunit/phpunit": "Required to use assertions and run tests (^10.5.35|^11.5.3|^12.0.1).", "phpunit/phpunit": "Required to use assertions and run tests (^10.5.35|^11.5.3|^12.0.1).",
"predis/predis": "Required to use the predis connector (^2.3).", "predis/predis": "Required to use the predis connector (^2.3|^3.0).",
"psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).", "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).", "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).", "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0).",
@@ -1395,20 +1395,20 @@
"issues": "https://github.com/laravel/framework/issues", "issues": "https://github.com/laravel/framework/issues",
"source": "https://github.com/laravel/framework" "source": "https://github.com/laravel/framework"
}, },
"time": "2025-05-01T16:13:12+00:00" "time": "2025-05-27T15:49:44+00:00"
}, },
{ {
"name": "laravel/horizon", "name": "laravel/horizon",
"version": "v5.31.2", "version": "v5.32.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/laravel/horizon.git", "url": "https://github.com/laravel/horizon.git",
"reference": "e6068c65be6c02a01e34531abf3143fab91f0de0" "reference": "e78d9689d85b3d4769dc64def5eb6d94e5776beb"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/laravel/horizon/zipball/e6068c65be6c02a01e34531abf3143fab91f0de0", "url": "https://api.github.com/repos/laravel/horizon/zipball/e78d9689d85b3d4769dc64def5eb6d94e5776beb",
"reference": "e6068c65be6c02a01e34531abf3143fab91f0de0", "reference": "e78d9689d85b3d4769dc64def5eb6d94e5776beb",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -1448,7 +1448,7 @@
] ]
}, },
"branch-alias": { "branch-alias": {
"dev-master": "5.x-dev" "dev-master": "6.x-dev"
} }
}, },
"autoload": { "autoload": {
@@ -1473,9 +1473,9 @@
], ],
"support": { "support": {
"issues": "https://github.com/laravel/horizon/issues", "issues": "https://github.com/laravel/horizon/issues",
"source": "https://github.com/laravel/horizon/tree/v5.31.2" "source": "https://github.com/laravel/horizon/tree/v5.32.1"
}, },
"time": "2025-04-18T12:57:39+00:00" "time": "2025-05-19T13:13:30+00:00"
}, },
{ {
"name": "laravel/prompts", "name": "laravel/prompts",
@@ -1729,16 +1729,16 @@
}, },
{ {
"name": "league/commonmark", "name": "league/commonmark",
"version": "2.6.2", "version": "2.7.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/thephpleague/commonmark.git", "url": "https://github.com/thephpleague/commonmark.git",
"reference": "06c3b0bf2540338094575612f4a1778d0d2d5e94" "reference": "6fbb36d44824ed4091adbcf4c7d4a3923cdb3405"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/thephpleague/commonmark/zipball/06c3b0bf2540338094575612f4a1778d0d2d5e94", "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/6fbb36d44824ed4091adbcf4c7d4a3923cdb3405",
"reference": "06c3b0bf2540338094575612f4a1778d0d2d5e94", "reference": "6fbb36d44824ed4091adbcf4c7d4a3923cdb3405",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -1775,7 +1775,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-main": "2.7-dev" "dev-main": "2.8-dev"
} }
}, },
"autoload": { "autoload": {
@@ -1832,7 +1832,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2025-04-18T21:09:27+00:00" "time": "2025-05-05T12:20:28+00:00"
}, },
{ {
"name": "league/config", "name": "league/config",
@@ -2695,31 +2695,31 @@
}, },
{ {
"name": "nunomaduro/termwind", "name": "nunomaduro/termwind",
"version": "v2.3.0", "version": "v2.3.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/nunomaduro/termwind.git", "url": "https://github.com/nunomaduro/termwind.git",
"reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda" "reference": "dfa08f390e509967a15c22493dc0bac5733d9123"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/nunomaduro/termwind/zipball/52915afe6a1044e8b9cee1bcff836fb63acf9cda", "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/dfa08f390e509967a15c22493dc0bac5733d9123",
"reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda", "reference": "dfa08f390e509967a15c22493dc0bac5733d9123",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"ext-mbstring": "*", "ext-mbstring": "*",
"php": "^8.2", "php": "^8.2",
"symfony/console": "^7.1.8" "symfony/console": "^7.2.6"
}, },
"require-dev": { "require-dev": {
"illuminate/console": "^11.33.2", "illuminate/console": "^11.44.7",
"laravel/pint": "^1.18.2", "laravel/pint": "^1.22.0",
"mockery/mockery": "^1.6.12", "mockery/mockery": "^1.6.12",
"pestphp/pest": "^2.36.0", "pestphp/pest": "^2.36.0 || ^3.8.2",
"phpstan/phpstan": "^1.12.11", "phpstan/phpstan": "^1.12.25",
"phpstan/phpstan-strict-rules": "^1.6.1", "phpstan/phpstan-strict-rules": "^1.6.2",
"symfony/var-dumper": "^7.1.8", "symfony/var-dumper": "^7.2.6",
"thecodingmachine/phpstan-strict-rules": "^1.0.0" "thecodingmachine/phpstan-strict-rules": "^1.0.0"
}, },
"type": "library", "type": "library",
@@ -2762,7 +2762,7 @@
], ],
"support": { "support": {
"issues": "https://github.com/nunomaduro/termwind/issues", "issues": "https://github.com/nunomaduro/termwind/issues",
"source": "https://github.com/nunomaduro/termwind/tree/v2.3.0" "source": "https://github.com/nunomaduro/termwind/tree/v2.3.1"
}, },
"funding": [ "funding": [
{ {
@@ -2778,7 +2778,7 @@
"type": "github" "type": "github"
} }
], ],
"time": "2024-11-21T10:39:51+00:00" "time": "2025-05-08T08:14:37+00:00"
}, },
{ {
"name": "nyholm/psr7", "name": "nyholm/psr7",
@@ -3747,16 +3747,16 @@
}, },
{ {
"name": "sentry/sentry", "name": "sentry/sentry",
"version": "4.11.0", "version": "4.11.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/getsentry/sentry-php.git", "url": "https://github.com/getsentry/sentry-php.git",
"reference": "ebf67deb9902b6da58a4b3383cbd12fed3f4f555" "reference": "53dc0bcb6a667cac5b760b46f98d5380e63e02ca"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/getsentry/sentry-php/zipball/ebf67deb9902b6da58a4b3383cbd12fed3f4f555", "url": "https://api.github.com/repos/getsentry/sentry-php/zipball/53dc0bcb6a667cac5b760b46f98d5380e63e02ca",
"reference": "ebf67deb9902b6da58a4b3383cbd12fed3f4f555", "reference": "53dc0bcb6a667cac5b760b46f98d5380e63e02ca",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -3820,7 +3820,7 @@
], ],
"support": { "support": {
"issues": "https://github.com/getsentry/sentry-php/issues", "issues": "https://github.com/getsentry/sentry-php/issues",
"source": "https://github.com/getsentry/sentry-php/tree/4.11.0" "source": "https://github.com/getsentry/sentry-php/tree/4.11.1"
}, },
"funding": [ "funding": [
{ {
@@ -3832,7 +3832,7 @@
"type": "custom" "type": "custom"
} }
], ],
"time": "2025-04-14T09:04:23+00:00" "time": "2025-05-12T11:30:33+00:00"
}, },
{ {
"name": "sentry/sentry-laravel", "name": "sentry/sentry-laravel",
@@ -4157,16 +4157,16 @@
}, },
{ {
"name": "symfony/deprecation-contracts", "name": "symfony/deprecation-contracts",
"version": "v3.5.1", "version": "v3.6.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/deprecation-contracts.git", "url": "https://github.com/symfony/deprecation-contracts.git",
"reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6" "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6", "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
"reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6", "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -4179,7 +4179,7 @@
"name": "symfony/contracts" "name": "symfony/contracts"
}, },
"branch-alias": { "branch-alias": {
"dev-main": "3.5-dev" "dev-main": "3.6-dev"
} }
}, },
"autoload": { "autoload": {
@@ -4204,7 +4204,7 @@
"description": "A generic function and convention to trigger deprecation notices", "description": "A generic function and convention to trigger deprecation notices",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1" "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
}, },
"funding": [ "funding": [
{ {
@@ -4220,7 +4220,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2024-09-25T14:20:29+00:00" "time": "2024-09-25T14:21:43+00:00"
}, },
{ {
"name": "symfony/error-handler", "name": "symfony/error-handler",
@@ -4379,16 +4379,16 @@
}, },
{ {
"name": "symfony/event-dispatcher-contracts", "name": "symfony/event-dispatcher-contracts",
"version": "v3.5.1", "version": "v3.6.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/event-dispatcher-contracts.git", "url": "https://github.com/symfony/event-dispatcher-contracts.git",
"reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f" "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f", "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
"reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f", "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -4402,7 +4402,7 @@
"name": "symfony/contracts" "name": "symfony/contracts"
}, },
"branch-alias": { "branch-alias": {
"dev-main": "3.5-dev" "dev-main": "3.6-dev"
} }
}, },
"autoload": { "autoload": {
@@ -4435,7 +4435,7 @@
"standards" "standards"
], ],
"support": { "support": {
"source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1" "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
}, },
"funding": [ "funding": [
{ {
@@ -4451,7 +4451,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2024-09-25T14:20:29+00:00" "time": "2024-09-25T14:21:43+00:00"
}, },
{ {
"name": "symfony/finder", "name": "symfony/finder",
@@ -5804,16 +5804,16 @@
}, },
{ {
"name": "symfony/service-contracts", "name": "symfony/service-contracts",
"version": "v3.5.1", "version": "v3.6.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/service-contracts.git", "url": "https://github.com/symfony/service-contracts.git",
"reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0" "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0", "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
"reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0", "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -5831,7 +5831,7 @@
"name": "symfony/contracts" "name": "symfony/contracts"
}, },
"branch-alias": { "branch-alias": {
"dev-main": "3.5-dev" "dev-main": "3.6-dev"
} }
}, },
"autoload": { "autoload": {
@@ -5867,7 +5867,7 @@
"standards" "standards"
], ],
"support": { "support": {
"source": "https://github.com/symfony/service-contracts/tree/v3.5.1" "source": "https://github.com/symfony/service-contracts/tree/v3.6.0"
}, },
"funding": [ "funding": [
{ {
@@ -5883,7 +5883,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2024-09-25T14:20:29+00:00" "time": "2025-04-25T09:37:31+00:00"
}, },
{ {
"name": "symfony/string", "name": "symfony/string",
@@ -6069,16 +6069,16 @@
}, },
{ {
"name": "symfony/translation-contracts", "name": "symfony/translation-contracts",
"version": "v3.5.1", "version": "v3.6.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/translation-contracts.git", "url": "https://github.com/symfony/translation-contracts.git",
"reference": "4667ff3bd513750603a09c8dedbea942487fb07c" "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c", "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
"reference": "4667ff3bd513750603a09c8dedbea942487fb07c", "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -6091,7 +6091,7 @@
"name": "symfony/contracts" "name": "symfony/contracts"
}, },
"branch-alias": { "branch-alias": {
"dev-main": "3.5-dev" "dev-main": "3.6-dev"
} }
}, },
"autoload": { "autoload": {
@@ -6127,7 +6127,7 @@
"standards" "standards"
], ],
"support": { "support": {
"source": "https://github.com/symfony/translation-contracts/tree/v3.5.1" "source": "https://github.com/symfony/translation-contracts/tree/v3.6.0"
}, },
"funding": [ "funding": [
{ {
@@ -6143,7 +6143,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2024-09-25T14:20:29+00:00" "time": "2024-09-27T08:32:26+00:00"
}, },
{ {
"name": "symfony/uid", "name": "symfony/uid",
@@ -6304,16 +6304,16 @@
}, },
{ {
"name": "tightenco/ziggy", "name": "tightenco/ziggy",
"version": "v2.5.2", "version": "v2.5.3",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/tighten/ziggy.git", "url": "https://github.com/tighten/ziggy.git",
"reference": "d59dbb61dc0a1d9abb2130451b9e5e0f264bfe1c" "reference": "0b3b521d2c55fbdb04b6721532f7f5f49d32f52b"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/tighten/ziggy/zipball/d59dbb61dc0a1d9abb2130451b9e5e0f264bfe1c", "url": "https://api.github.com/repos/tighten/ziggy/zipball/0b3b521d2c55fbdb04b6721532f7f5f49d32f52b",
"reference": "d59dbb61dc0a1d9abb2130451b9e5e0f264bfe1c", "reference": "0b3b521d2c55fbdb04b6721532f7f5f49d32f52b",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -6368,9 +6368,9 @@
], ],
"support": { "support": {
"issues": "https://github.com/tighten/ziggy/issues", "issues": "https://github.com/tighten/ziggy/issues",
"source": "https://github.com/tighten/ziggy/tree/v2.5.2" "source": "https://github.com/tighten/ziggy/tree/v2.5.3"
}, },
"time": "2025-02-27T15:43:52+00:00" "time": "2025-05-17T18:15:19+00:00"
}, },
{ {
"name": "tijsverkoyen/css-to-inline-styles", "name": "tijsverkoyen/css-to-inline-styles",
@@ -7173,16 +7173,16 @@
}, },
{ {
"name": "laravel/pint", "name": "laravel/pint",
"version": "v1.22.0", "version": "v1.22.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/laravel/pint.git", "url": "https://github.com/laravel/pint.git",
"reference": "7ddfaa6523a675fae5c4123ee38fc6bfb8ee4f36" "reference": "941d1927c5ca420c22710e98420287169c7bcaf7"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/laravel/pint/zipball/7ddfaa6523a675fae5c4123ee38fc6bfb8ee4f36", "url": "https://api.github.com/repos/laravel/pint/zipball/941d1927c5ca420c22710e98420287169c7bcaf7",
"reference": "7ddfaa6523a675fae5c4123ee38fc6bfb8ee4f36", "reference": "941d1927c5ca420c22710e98420287169c7bcaf7",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -7194,11 +7194,11 @@
}, },
"require-dev": { "require-dev": {
"friendsofphp/php-cs-fixer": "^3.75.0", "friendsofphp/php-cs-fixer": "^3.75.0",
"illuminate/view": "^11.44.2", "illuminate/view": "^11.44.7",
"larastan/larastan": "^3.3.1", "larastan/larastan": "^3.4.0",
"laravel-zero/framework": "^11.36.1", "laravel-zero/framework": "^11.36.1",
"mockery/mockery": "^1.6.12", "mockery/mockery": "^1.6.12",
"nunomaduro/termwind": "^2.3", "nunomaduro/termwind": "^2.3.1",
"pestphp/pest": "^2.36.0" "pestphp/pest": "^2.36.0"
}, },
"bin": [ "bin": [
@@ -7235,20 +7235,20 @@
"issues": "https://github.com/laravel/pint/issues", "issues": "https://github.com/laravel/pint/issues",
"source": "https://github.com/laravel/pint" "source": "https://github.com/laravel/pint"
}, },
"time": "2025-04-08T22:11:45+00:00" "time": "2025-05-08T08:38:12+00:00"
}, },
{ {
"name": "laravel/sail", "name": "laravel/sail",
"version": "v1.42.0", "version": "v1.43.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/laravel/sail.git", "url": "https://github.com/laravel/sail.git",
"reference": "2edaaf77f3c07a4099965bb3d7dfee16e801c0f6" "reference": "3e7d899232a8c5e3ea4fc6dee7525ad583887e72"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/laravel/sail/zipball/2edaaf77f3c07a4099965bb3d7dfee16e801c0f6", "url": "https://api.github.com/repos/laravel/sail/zipball/3e7d899232a8c5e3ea4fc6dee7525ad583887e72",
"reference": "2edaaf77f3c07a4099965bb3d7dfee16e801c0f6", "reference": "3e7d899232a8c5e3ea4fc6dee7525ad583887e72",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -7298,7 +7298,7 @@
"issues": "https://github.com/laravel/sail/issues", "issues": "https://github.com/laravel/sail/issues",
"source": "https://github.com/laravel/sail" "source": "https://github.com/laravel/sail"
}, },
"time": "2025-04-29T14:26:46+00:00" "time": "2025-05-19T13:19:21+00:00"
}, },
{ {
"name": "mockery/mockery", "name": "mockery/mockery",
@@ -9081,23 +9081,23 @@
}, },
{ {
"name": "sebastian/environment", "name": "sebastian/environment",
"version": "7.2.0", "version": "7.2.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/sebastianbergmann/environment.git", "url": "https://github.com/sebastianbergmann/environment.git",
"reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5" "reference": "a5c75038693ad2e8d4b6c15ba2403532647830c4"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5", "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/a5c75038693ad2e8d4b6c15ba2403532647830c4",
"reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5", "reference": "a5c75038693ad2e8d4b6c15ba2403532647830c4",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": ">=8.2" "php": ">=8.2"
}, },
"require-dev": { "require-dev": {
"phpunit/phpunit": "^11.0" "phpunit/phpunit": "^11.3"
}, },
"suggest": { "suggest": {
"ext-posix": "*" "ext-posix": "*"
@@ -9133,15 +9133,27 @@
"support": { "support": {
"issues": "https://github.com/sebastianbergmann/environment/issues", "issues": "https://github.com/sebastianbergmann/environment/issues",
"security": "https://github.com/sebastianbergmann/environment/security/policy", "security": "https://github.com/sebastianbergmann/environment/security/policy",
"source": "https://github.com/sebastianbergmann/environment/tree/7.2.0" "source": "https://github.com/sebastianbergmann/environment/tree/7.2.1"
}, },
"funding": [ "funding": [
{ {
"url": "https://github.com/sebastianbergmann", "url": "https://github.com/sebastianbergmann",
"type": "github" "type": "github"
},
{
"url": "https://liberapay.com/sebastianbergmann",
"type": "liberapay"
},
{
"url": "https://thanks.dev/u/gh/sebastianbergmann",
"type": "thanks_dev"
},
{
"url": "https://tidelift.com/funding/github/packagist/sebastian/environment",
"type": "tidelift"
} }
], ],
"time": "2024-07-03T04:54:44+00:00" "time": "2025-05-21T11:55:47+00:00"
}, },
{ {
"name": "sebastian/exporter", "name": "sebastian/exporter",

4651
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -6,10 +6,10 @@
"dev": "vite" "dev": "vite"
}, },
"devDependencies": { "devDependencies": {
"@headlessui/react": "^2.2.2", "@headlessui/react": "^2.2.4",
"@inertiajs/react": "^2.0.8", "@inertiajs/react": "^2.0.11",
"@tailwindcss/forms": "^0.5.10", "@tailwindcss/forms": "^0.5.10",
"@vitejs/plugin-react": "^4.4.1", "@vitejs/plugin-react": "^4.5.0",
"autoprefixer": "^10.4.21", "autoprefixer": "^10.4.21",
"axios": "^1.9.0", "axios": "^1.9.0",
"concurrently": "^9.1.2", "concurrently": "^9.1.2",
@@ -18,23 +18,23 @@
"react": "^18.3.1", "react": "^18.3.1",
"react-dom": "^18.3.1", "react-dom": "^18.3.1",
"tailwindcss": "^3.4.17", "tailwindcss": "^3.4.17",
"vite": "^6.3.4" "vite": "^6.3.5"
}, },
"dependencies": { "dependencies": {
"@hookform/resolvers": "^3.10.0", "@hookform/resolvers": "^3.10.0",
"@radix-ui/react-avatar": "^1.1.7", "@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-checkbox": "^1.2.3", "@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-collapsible": "^1.1.8", "@radix-ui/react-collapsible": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.11", "@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.12", "@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.4", "@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-select": "^2.2.2", "@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.4", "@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.0", "@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.2", "@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-tabs": "^1.1.9", "@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-toast": "^1.2.11", "@radix-ui/react-toast": "^1.2.14",
"@radix-ui/react-tooltip": "^1.2.4", "@radix-ui/react-tooltip": "^1.2.7",
"@sentry/react": "^8.55.0", "@sentry/react": "^8.55.0",
"@sentry/vite-plugin": "^2.23.0", "@sentry/vite-plugin": "^2.23.0",
"@tanstack/react-table": "^8.21.3", "@tanstack/react-table": "^8.21.3",
@@ -43,11 +43,11 @@
"lodash": "^4.17.21", "lodash": "^4.17.21",
"lucide-react": "^0.468.0", "lucide-react": "^0.468.0",
"luxon": "^3.6.1", "luxon": "^3.6.1",
"react-hook-form": "^7.56.1", "react-hook-form": "^7.56.4",
"tailwind-merge": "^2.6.0", "tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7", "tailwindcss-animate": "^1.0.7",
"use-double-tap": "^1.3.7", "use-double-tap": "^1.3.7",
"use-long-press": "^3.3.0", "use-long-press": "^3.3.0",
"zod": "^3.24.3" "zod": "^3.25.32"
} }
} }