Deps: Update composer dependencies to latest versions

- Upgraded `brick/math` to v0.17.2, `guzzlehttp/guzzle` to v7.12.0, `nesbot/carbon` to v3.12.3, and several others for improved performance and bug fixes.
- Updated middleware in `bootstrap/app.php` to render JSON for API exception routes.
This commit is contained in:
= 2026-06-18 04:54:29 +00:00
parent a04bb5d7d1
commit 05c4e5eab7
2 changed files with 120 additions and 123 deletions

View File

@ -16,9 +16,10 @@
$middleware->web(append: [
App\Http\Middleware\CaptureOidcNonce::class,
]);
$middleware->validateCsrfTokens(except: [
'keka/callback',
]);
})
->withExceptions(function (Exceptions $exceptions): void {})->create();
->withExceptions(function (Exceptions $exceptions): void {
$exceptions->shouldRenderJsonWhen(
fn (Request $request) => $request->is('api/*'),
);
})->create();

232
composer.lock generated
View File

@ -277,23 +277,22 @@
},
{
"name": "brick/math",
"version": "0.14.8",
"version": "0.17.2",
"source": {
"type": "git",
"url": "https://github.com/brick/math.git",
"reference": "63422359a44b7f06cae63c3b429b59e8efcc0629"
"reference": "8189e751995f9e15729c1aa2f89fa8f166ffe818"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/brick/math/zipball/63422359a44b7f06cae63c3b429b59e8efcc0629",
"reference": "63422359a44b7f06cae63c3b429b59e8efcc0629",
"url": "https://api.github.com/repos/brick/math/zipball/8189e751995f9e15729c1aa2f89fa8f166ffe818",
"reference": "8189e751995f9e15729c1aa2f89fa8f166ffe818",
"shasum": ""
},
"require": {
"php": "^8.2"
},
"require-dev": {
"php-coveralls/php-coveralls": "^2.2",
"phpstan/phpstan": "2.1.22",
"phpunit/phpunit": "^11.5"
},
@ -325,7 +324,7 @@
],
"support": {
"issues": "https://github.com/brick/math/issues",
"source": "https://github.com/brick/math/tree/0.14.8"
"source": "https://github.com/brick/math/tree/0.17.2"
},
"funding": [
{
@ -333,7 +332,7 @@
"type": "github"
}
],
"time": "2026-02-10T14:33:43+00:00"
"time": "2026-05-25T20:34:43+00:00"
},
{
"name": "carbonphp/carbon-doctrine-types",
@ -1284,22 +1283,22 @@
},
{
"name": "guzzlehttp/guzzle",
"version": "7.11.1",
"version": "7.12.0",
"source": {
"type": "git",
"url": "https://github.com/guzzle/guzzle.git",
"reference": "5af96f374e0ab4ebd747b8310888c99d3adb0a8c"
"reference": "eaa81598031cf57a9e36258c8546defffc994cba"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/guzzle/guzzle/zipball/5af96f374e0ab4ebd747b8310888c99d3adb0a8c",
"reference": "5af96f374e0ab4ebd747b8310888c99d3adb0a8c",
"url": "https://api.github.com/repos/guzzle/guzzle/zipball/eaa81598031cf57a9e36258c8546defffc994cba",
"reference": "eaa81598031cf57a9e36258c8546defffc994cba",
"shasum": ""
},
"require": {
"ext-json": "*",
"guzzlehttp/promises": "^2.5",
"guzzlehttp/psr7": "^2.11",
"guzzlehttp/psr7": "^2.12",
"php": "^7.2.5 || ^8.0",
"psr/http-client": "^1.0",
"symfony/deprecation-contracts": "^2.5 || ^3.0",
@ -1392,7 +1391,7 @@
],
"support": {
"issues": "https://github.com/guzzle/guzzle/issues",
"source": "https://github.com/guzzle/guzzle/tree/7.11.1"
"source": "https://github.com/guzzle/guzzle/tree/7.12.0"
},
"funding": [
{
@ -1408,7 +1407,7 @@
"type": "tidelift"
}
],
"time": "2026-06-07T22:54:06+00:00"
"time": "2026-06-16T22:11:48+00:00"
},
{
"name": "guzzlehttp/promises",
@ -1496,16 +1495,16 @@
},
{
"name": "guzzlehttp/psr7",
"version": "2.11.0",
"version": "2.12.0",
"source": {
"type": "git",
"url": "https://github.com/guzzle/psr7.git",
"reference": "bbb5e61349fa5cb822b3e87842b951088b76b81f"
"reference": "9b38012e7b54f594707e6db52c684dc0a74b3a43"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/guzzle/psr7/zipball/bbb5e61349fa5cb822b3e87842b951088b76b81f",
"reference": "bbb5e61349fa5cb822b3e87842b951088b76b81f",
"url": "https://api.github.com/repos/guzzle/psr7/zipball/9b38012e7b54f594707e6db52c684dc0a74b3a43",
"reference": "9b38012e7b54f594707e6db52c684dc0a74b3a43",
"shasum": ""
},
"require": {
@ -1595,7 +1594,7 @@
],
"support": {
"issues": "https://github.com/guzzle/psr7/issues",
"source": "https://github.com/guzzle/psr7/tree/2.11.0"
"source": "https://github.com/guzzle/psr7/tree/2.12.0"
},
"funding": [
{
@ -1611,20 +1610,20 @@
"type": "tidelift"
}
],
"time": "2026-06-02T12:30:48+00:00"
"time": "2026-06-16T21:50:11+00:00"
},
{
"name": "guzzlehttp/uri-template",
"version": "v1.0.6",
"version": "v1.0.7",
"source": {
"type": "git",
"url": "https://github.com/guzzle/uri-template.git",
"reference": "eef7f87bab6f204eba3c39224d8075c70c637946"
"reference": "7fe811c23a9e3cd712b4389eaeb50b5456d8c529"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/guzzle/uri-template/zipball/eef7f87bab6f204eba3c39224d8075c70c637946",
"reference": "eef7f87bab6f204eba3c39224d8075c70c637946",
"url": "https://api.github.com/repos/guzzle/uri-template/zipball/7fe811c23a9e3cd712b4389eaeb50b5456d8c529",
"reference": "7fe811c23a9e3cd712b4389eaeb50b5456d8c529",
"shasum": ""
},
"require": {
@ -1681,7 +1680,7 @@
],
"support": {
"issues": "https://github.com/guzzle/uri-template/issues",
"source": "https://github.com/guzzle/uri-template/tree/v1.0.6"
"source": "https://github.com/guzzle/uri-template/tree/v1.0.7"
},
"funding": [
{
@ -1697,7 +1696,7 @@
"type": "tidelift"
}
],
"time": "2026-05-23T22:00:21+00:00"
"time": "2026-06-12T21:33:43+00:00"
},
{
"name": "jfcherng/php-color-output",
@ -2002,16 +2001,16 @@
},
{
"name": "laravel/framework",
"version": "v13.15.0",
"version": "v13.16.1",
"source": {
"type": "git",
"url": "https://github.com/laravel/framework.git",
"reference": "7e23b2aa4e1133a43835c93a810b4bedc40e425b"
"reference": "6135650d69bd9442e470bb1b343422081b076f1e"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/laravel/framework/zipball/7e23b2aa4e1133a43835c93a810b4bedc40e425b",
"reference": "7e23b2aa4e1133a43835c93a810b4bedc40e425b",
"url": "https://api.github.com/repos/laravel/framework/zipball/6135650d69bd9442e470bb1b343422081b076f1e",
"reference": "6135650d69bd9442e470bb1b343422081b076f1e",
"shasum": ""
},
"require": {
@ -2222,7 +2221,7 @@
"issues": "https://github.com/laravel/framework/issues",
"source": "https://github.com/laravel/framework"
},
"time": "2026-06-09T13:45:51+00:00"
"time": "2026-06-16T16:07:50+00:00"
},
{
"name": "laravel/passkeys",
@ -3552,16 +3551,16 @@
},
{
"name": "mallardduck/blade-lucide-icons",
"version": "1.26.21",
"version": "1.26.24",
"source": {
"type": "git",
"url": "https://github.com/mallardduck/blade-lucide-icons.git",
"reference": "495df35fc2678415a2b22b44cc6e1eea75dd99fb"
"reference": "25ed71dd92f43e25f524deb06bd482261629293b"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/mallardduck/blade-lucide-icons/zipball/495df35fc2678415a2b22b44cc6e1eea75dd99fb",
"reference": "495df35fc2678415a2b22b44cc6e1eea75dd99fb",
"url": "https://api.github.com/repos/mallardduck/blade-lucide-icons/zipball/25ed71dd92f43e25f524deb06bd482261629293b",
"reference": "25ed71dd92f43e25f524deb06bd482261629293b",
"shasum": ""
},
"require": {
@ -3606,9 +3605,9 @@
],
"support": {
"issues": "https://github.com/mallardduck/blade-lucide-icons/issues",
"source": "https://github.com/mallardduck/blade-lucide-icons/tree/1.26.21"
"source": "https://github.com/mallardduck/blade-lucide-icons/tree/1.26.24"
},
"time": "2026-05-29T00:45:59+00:00"
"time": "2026-06-17T00:50:15+00:00"
},
{
"name": "monolog/monolog",
@ -3715,16 +3714,16 @@
},
{
"name": "nesbot/carbon",
"version": "3.11.4",
"version": "3.12.3",
"source": {
"type": "git",
"url": "https://github.com/CarbonPHP/carbon.git",
"reference": "e890471a3494740f7d9326d72ce6a8c559ffee60"
"reference": "6e7853a668c3107294aff38d42bf760ec02126b6"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/e890471a3494740f7d9326d72ce6a8c559ffee60",
"reference": "e890471a3494740f7d9326d72ce6a8c559ffee60",
"url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/6e7853a668c3107294aff38d42bf760ec02126b6",
"reference": "6e7853a668c3107294aff38d42bf760ec02126b6",
"shasum": ""
},
"require": {
@ -3816,7 +3815,7 @@
"type": "tidelift"
}
],
"time": "2026-04-07T09:57:54+00:00"
"time": "2026-06-14T20:41:42+00:00"
},
{
"name": "nette/schema",
@ -5505,20 +5504,20 @@
},
{
"name": "ramsey/uuid",
"version": "4.9.2",
"version": "4.9.3",
"source": {
"type": "git",
"url": "https://github.com/ramsey/uuid.git",
"reference": "8429c78ca35a09f27565311b98101e2826affde0"
"reference": "1df15849d00943a67d677dc9cfd80795f038c9f8"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/ramsey/uuid/zipball/8429c78ca35a09f27565311b98101e2826affde0",
"reference": "8429c78ca35a09f27565311b98101e2826affde0",
"url": "https://api.github.com/repos/ramsey/uuid/zipball/1df15849d00943a67d677dc9cfd80795f038c9f8",
"reference": "1df15849d00943a67d677dc9cfd80795f038c9f8",
"shasum": ""
},
"require": {
"brick/math": "^0.8.16 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13 || ^0.14",
"brick/math": ">=0.8.16 <=0.18",
"php": "^8.0",
"ramsey/collection": "^1.2 || ^2.0"
},
@ -5577,9 +5576,9 @@
],
"support": {
"issues": "https://github.com/ramsey/uuid/issues",
"source": "https://github.com/ramsey/uuid/tree/4.9.2"
"source": "https://github.com/ramsey/uuid/tree/4.9.3"
},
"time": "2025-12-14T04:43:48+00:00"
"time": "2026-06-18T03:57:49+00:00"
},
{
"name": "robrichards/xmlseclibs",
@ -6036,16 +6035,16 @@
},
{
"name": "spatie/php-structure-discoverer",
"version": "2.4.2",
"version": "2.4.4",
"source": {
"type": "git",
"url": "https://github.com/spatie/php-structure-discoverer.git",
"reference": "10cd4e0018450d23e2bd8f8472569ad0c445c0fc"
"reference": "fa2b7dae8e8a22c0306154c4b052420e054f7e2b"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/spatie/php-structure-discoverer/zipball/10cd4e0018450d23e2bd8f8472569ad0c445c0fc",
"reference": "10cd4e0018450d23e2bd8f8472569ad0c445c0fc",
"url": "https://api.github.com/repos/spatie/php-structure-discoverer/zipball/fa2b7dae8e8a22c0306154c4b052420e054f7e2b",
"reference": "fa2b7dae8e8a22c0306154c4b052420e054f7e2b",
"shasum": ""
},
"require": {
@ -6103,7 +6102,7 @@
],
"support": {
"issues": "https://github.com/spatie/php-structure-discoverer/issues",
"source": "https://github.com/spatie/php-structure-discoverer/tree/2.4.2"
"source": "https://github.com/spatie/php-structure-discoverer/tree/2.4.4"
},
"funding": [
{
@ -6111,7 +6110,7 @@
"type": "github"
}
],
"time": "2026-04-28T06:26:02+00:00"
"time": "2026-06-15T07:14:32+00:00"
},
{
"name": "spomky-labs/cbor-php",
@ -9580,16 +9579,16 @@
},
{
"name": "webmozart/assert",
"version": "2.4.0",
"version": "2.4.1",
"source": {
"type": "git",
"url": "https://github.com/webmozarts/assert.git",
"reference": "9007ea6f45ecf352a9422b36644e4bfc039b9155"
"reference": "2ccb7c2e821038c03a3e6e1700c570c158c55f70"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/webmozarts/assert/zipball/9007ea6f45ecf352a9422b36644e4bfc039b9155",
"reference": "9007ea6f45ecf352a9422b36644e4bfc039b9155",
"url": "https://api.github.com/repos/webmozarts/assert/zipball/2ccb7c2e821038c03a3e6e1700c570c158c55f70",
"reference": "2ccb7c2e821038c03a3e6e1700c570c158c55f70",
"shasum": ""
},
"require": {
@ -9640,9 +9639,9 @@
],
"support": {
"issues": "https://github.com/webmozarts/assert/issues",
"source": "https://github.com/webmozarts/assert/tree/2.4.0"
"source": "https://github.com/webmozarts/assert/tree/2.4.1"
},
"time": "2026-05-20T13:07:01+00:00"
"time": "2026-06-15T15:31:57+00:00"
}
],
"packages-dev": [
@ -9881,28 +9880,29 @@
},
{
"name": "composer/pcre",
"version": "3.3.2",
"version": "3.4.0",
"source": {
"type": "git",
"url": "https://github.com/composer/pcre.git",
"reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
"reference": "d5a341b3fb61f3001970940afb1d332968a183ed"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
"reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
"url": "https://api.github.com/repos/composer/pcre/zipball/d5a341b3fb61f3001970940afb1d332968a183ed",
"reference": "d5a341b3fb61f3001970940afb1d332968a183ed",
"shasum": ""
},
"require": {
"php": "^7.4 || ^8.0"
},
"conflict": {
"phpstan/phpstan": "<1.11.10"
"phpstan/phpstan": "<2.2.2"
},
"require-dev": {
"phpstan/phpstan": "^1.12 || ^2",
"phpstan/phpstan-strict-rules": "^1 || ^2",
"phpunit/phpunit": "^8 || ^9"
"phpstan/phpstan": "^2",
"phpstan/phpstan-deprecation-rules": "^2",
"phpstan/phpstan-strict-rules": "^2",
"phpunit/phpunit": "^9"
},
"type": "library",
"extra": {
@ -9940,7 +9940,7 @@
],
"support": {
"issues": "https://github.com/composer/pcre/issues",
"source": "https://github.com/composer/pcre/tree/3.3.2"
"source": "https://github.com/composer/pcre/tree/3.4.0"
},
"funding": [
{
@ -9950,13 +9950,9 @@
{
"url": "https://github.com/composer",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/composer/composer",
"type": "tidelift"
}
],
"time": "2024-11-12T16:29:46+00:00"
"time": "2026-06-07T11:47:49+00:00"
},
{
"name": "composer/xdebug-handler",
@ -10443,16 +10439,16 @@
},
{
"name": "laradumps/laradumps-core",
"version": "v4.0.6",
"version": "v4.1.0",
"source": {
"type": "git",
"url": "https://github.com/laradumps/laradumps-core.git",
"reference": "41acc4a0dba81232287bed4d98de112b1c466244"
"reference": "ffd0811bee6c2dc6e230705b6a0751fbcbf3921f"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/laradumps/laradumps-core/zipball/41acc4a0dba81232287bed4d98de112b1c466244",
"reference": "41acc4a0dba81232287bed4d98de112b1c466244",
"url": "https://api.github.com/repos/laradumps/laradumps-core/zipball/ffd0811bee6c2dc6e230705b6a0751fbcbf3921f",
"reference": "ffd0811bee6c2dc6e230705b6a0751fbcbf3921f",
"shasum": ""
},
"require": {
@ -10502,7 +10498,7 @@
"homepage": "https://github.com/laradumps/laradumps-core",
"support": {
"issues": "https://github.com/laradumps/laradumps-core/issues",
"source": "https://github.com/laradumps/laradumps-core/tree/v4.0.6"
"source": "https://github.com/laradumps/laradumps-core/tree/v4.1.0"
},
"funding": [
{
@ -10510,7 +10506,7 @@
"type": "github"
}
],
"time": "2026-03-19T15:05:22+00:00"
"time": "2026-06-17T00:41:51+00:00"
},
{
"name": "larastan/larastan",
@ -10732,16 +10728,16 @@
},
{
"name": "laravel/mcp",
"version": "v0.8.0",
"version": "v0.8.1",
"source": {
"type": "git",
"url": "https://github.com/laravel/mcp.git",
"reference": "18221a07093d84153883bc956e5e213999549a4b"
"reference": "fdc39c9e21048801508765cb4d72bd9e8501b51f"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/laravel/mcp/zipball/18221a07093d84153883bc956e5e213999549a4b",
"reference": "18221a07093d84153883bc956e5e213999549a4b",
"url": "https://api.github.com/repos/laravel/mcp/zipball/fdc39c9e21048801508765cb4d72bd9e8501b51f",
"reference": "fdc39c9e21048801508765cb4d72bd9e8501b51f",
"shasum": ""
},
"require": {
@ -10802,7 +10798,7 @@
"issues": "https://github.com/laravel/mcp/issues",
"source": "https://github.com/laravel/mcp"
},
"time": "2026-06-08T13:48:51+00:00"
"time": "2026-06-11T13:59:49+00:00"
},
{
"name": "laravel/pail",
@ -10886,16 +10882,16 @@
},
{
"name": "laravel/pao",
"version": "v1.1.0",
"version": "v1.1.1",
"source": {
"type": "git",
"url": "https://github.com/laravel/pao.git",
"reference": "519eecdefb9d5da362876376b52207c8f11b477c"
"reference": "8f6c8094d701a03041c85ba583ca233398c792ec"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/laravel/pao/zipball/519eecdefb9d5da362876376b52207c8f11b477c",
"reference": "519eecdefb9d5da362876376b52207c8f11b477c",
"url": "https://api.github.com/repos/laravel/pao/zipball/8f6c8094d701a03041c85ba583ca233398c792ec",
"reference": "8f6c8094d701a03041c85ba583ca233398c792ec",
"shasum": ""
},
"require": {
@ -10914,7 +10910,7 @@
"orchestra/testbench": "^10.11.0 || ^11.1.0",
"pestphp/pest": "^4.7.2 || ^5.0.0",
"pestphp/pest-plugin-type-coverage": "^4.0.4 || ^5.0.0",
"phpstan/phpstan": "^2.2.1",
"phpstan/phpstan": "^2.2.2",
"rector/rector": "^2.4.5",
"symfony/process": "^7.4.8 || ^8.1.0",
"symfony/var-dumper": "^7.4.8 || ^8.1.0"
@ -10967,20 +10963,20 @@
"issues": "https://github.com/laravel/pao/issues",
"source": "https://github.com/laravel/pao"
},
"time": "2026-06-01T07:26:51+00:00"
"time": "2026-06-12T08:00:22+00:00"
},
{
"name": "laravel/pint",
"version": "v1.29.1",
"version": "v1.29.3",
"source": {
"type": "git",
"url": "https://github.com/laravel/pint.git",
"reference": "0770e9b7fafd50d4586881d456d6eb41c9247a80"
"reference": "da1d1111a6aa2e082d2a388b194afe1ba0a05d14"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/laravel/pint/zipball/0770e9b7fafd50d4586881d456d6eb41c9247a80",
"reference": "0770e9b7fafd50d4586881d456d6eb41c9247a80",
"url": "https://api.github.com/repos/laravel/pint/zipball/da1d1111a6aa2e082d2a388b194afe1ba0a05d14",
"reference": "da1d1111a6aa2e082d2a388b194afe1ba0a05d14",
"shasum": ""
},
"require": {
@ -10991,14 +10987,14 @@
"php": "^8.2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.95.1",
"illuminate/view": "^12.56.0",
"larastan/larastan": "^3.9.6",
"friendsofphp/php-cs-fixer": "^3.95.8",
"illuminate/view": "^12.62.0",
"larastan/larastan": "^3.10.0",
"laravel-zero/framework": "^12.1.0",
"laravel/agent-detector": "^2.0.2",
"mockery/mockery": "^1.6.12",
"nunomaduro/termwind": "^2.4.0",
"pestphp/pest": "^3.8.6",
"shipfastlabs/agent-detector": "^1.1.3"
"pestphp/pest": "^3.8.6"
},
"bin": [
"builds/pint"
@ -11035,7 +11031,7 @@
"issues": "https://github.com/laravel/pint/issues",
"source": "https://github.com/laravel/pint"
},
"time": "2026-04-20T15:26:14+00:00"
"time": "2026-06-16T15:34:04+00:00"
},
{
"name": "laravel/roster",
@ -11402,16 +11398,16 @@
},
{
"name": "pestphp/pest",
"version": "v4.7.2",
"version": "v4.7.3",
"source": {
"type": "git",
"url": "https://github.com/pestphp/pest.git",
"reference": "40b88b62ef8a7c6fcae5fc28f1fa747f601c131b"
"reference": "87882a8561bf3ddf230b9a6b764f367f687d5b2f"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/pestphp/pest/zipball/40b88b62ef8a7c6fcae5fc28f1fa747f601c131b",
"reference": "40b88b62ef8a7c6fcae5fc28f1fa747f601c131b",
"url": "https://api.github.com/repos/pestphp/pest/zipball/87882a8561bf3ddf230b9a6b764f367f687d5b2f",
"reference": "87882a8561bf3ddf230b9a6b764f367f687d5b2f",
"shasum": ""
},
"require": {
@ -11424,12 +11420,12 @@
"pestphp/pest-plugin-mutate": "^4.0.1",
"pestphp/pest-plugin-profanity": "^4.2.1",
"php": "^8.3.0",
"phpunit/phpunit": "^12.5.28",
"phpunit/phpunit": "^12.5.29",
"symfony/process": "^7.4.13|^8.1.0"
},
"conflict": {
"filp/whoops": "<2.18.3",
"phpunit/phpunit": ">12.5.28",
"phpunit/phpunit": ">12.5.29",
"sebastian/exporter": "<7.0.0",
"webmozart/assert": "<1.11.0"
},
@ -11505,7 +11501,7 @@
],
"support": {
"issues": "https://github.com/pestphp/pest/issues",
"source": "https://github.com/pestphp/pest/tree/v4.7.2"
"source": "https://github.com/pestphp/pest/tree/v4.7.3"
},
"funding": [
{
@ -11517,7 +11513,7 @@
"type": "github"
}
],
"time": "2026-06-01T06:08:59+00:00"
"time": "2026-06-12T05:57:27+00:00"
},
{
"name": "pestphp/pest-plugin",
@ -12394,16 +12390,16 @@
},
{
"name": "phpunit/phpunit",
"version": "12.5.28",
"version": "12.5.29",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/phpunit.git",
"reference": "5895d05f5bf421ed230fbd76e1277e4b8955def4"
"reference": "9aa66a47db3ea70f1a468e66dd969f67e594945a"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/5895d05f5bf421ed230fbd76e1277e4b8955def4",
"reference": "5895d05f5bf421ed230fbd76e1277e4b8955def4",
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/9aa66a47db3ea70f1a468e66dd969f67e594945a",
"reference": "9aa66a47db3ea70f1a468e66dd969f67e594945a",
"shasum": ""
},
"require": {
@ -12417,7 +12413,7 @@
"phar-io/manifest": "^2.0.4",
"phar-io/version": "^3.2.1",
"php": ">=8.3",
"phpunit/php-code-coverage": "^12.5.6",
"phpunit/php-code-coverage": "^12.5.7",
"phpunit/php-file-iterator": "^6.0.1",
"phpunit/php-invoker": "^6.0.0",
"phpunit/php-text-template": "^5.0.0",
@ -12427,7 +12423,7 @@
"sebastian/diff": "^7.0.0",
"sebastian/environment": "^8.1.2",
"sebastian/exporter": "^7.0.3",
"sebastian/global-state": "^8.0.2",
"sebastian/global-state": "^8.0.3",
"sebastian/object-enumerator": "^7.0.0",
"sebastian/recursion-context": "^7.0.1",
"sebastian/type": "^6.0.4",
@ -12472,7 +12468,7 @@
"support": {
"issues": "https://github.com/sebastianbergmann/phpunit/issues",
"security": "https://github.com/sebastianbergmann/phpunit/security/policy",
"source": "https://github.com/sebastianbergmann/phpunit/tree/12.5.28"
"source": "https://github.com/sebastianbergmann/phpunit/tree/12.5.29"
},
"funding": [
{
@ -12480,7 +12476,7 @@
"type": "other"
}
],
"time": "2026-05-27T14:01:10+00:00"
"time": "2026-06-04T06:14:42+00:00"
},
{
"name": "sebastian/cli-parser",