From 17c3456ebf6a62907bda95a52117eb1d4ef35bab Mon Sep 17 00:00:00 2001
From: Joergi <1439809+joergi@users.noreply.github.com>
Date: Thu, 3 Jul 2025 23:52:09 +0200
Subject: [PATCH 2/8] Update resources/assets/components/partials/navbar.vue
Co-authored-by: Felipe Mateus
---
resources/assets/components/partials/navbar.vue | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/resources/assets/components/partials/navbar.vue b/resources/assets/components/partials/navbar.vue
index 7ceef2b1c..a7d3e4c02 100644
--- a/resources/assets/components/partials/navbar.vue
+++ b/resources/assets/components/partials/navbar.vue
@@ -275,7 +275,7 @@
hide-footer
centered
body-class="p-0 ui-menu"
- title="{{ $t('navmenu.appearance') }}">
+ :title="$t('navmenu.appearance')">
From b651f36ac337cfc8db1f21425d01407221714e70 Mon Sep 17 00:00:00 2001
From: "(dan)iel (sup)ernault"
Date: Wed, 16 Jul 2025 07:12:16 -0600
Subject: [PATCH 3/8] New translations web.php (Danish) [ci skip]
---
resources/lang/da/web.php | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/resources/lang/da/web.php b/resources/lang/da/web.php
index 35b61ae4c..4f68eff65 100644
--- a/resources/lang/da/web.php
+++ b/resources/lang/da/web.php
@@ -3,7 +3,7 @@
return [
'common' => [
- 'comment' => 'Comment',
+ 'comment' => 'Kommentér',
'commented' => 'Kommenterede',
'comments' => 'Kommentarer',
'like' => 'Synes om',
@@ -13,7 +13,7 @@ return [
'shared' => 'Delt',
'shares' => 'Delinger',
'unshare' => 'Fjern deling',
- 'bookmark' => 'Bookmark',
+ 'bookmark' => 'Bogmærk',
'cancel' => 'Annuller',
'copyLink' => 'Kopier link',
@@ -133,11 +133,11 @@ return [
'viewProfile' => 'Se profil',
'moderationTools' => 'Moderatorværktøjer',
'report' => 'Report',
- 'archive' => 'Archive',
- 'unarchive' => 'Unarchive',
- 'embed' => 'Embed',
+ 'archive' => 'Arkivér',
+ 'unarchive' => 'Anuller arkivering',
+ 'embed' => 'Indlejr',
- 'selectOneOption' => 'Select one of the following options',
+ 'selectOneOption' => 'Vælg en af følgende muligheder',
'unlistFromTimelines' => 'Skjul fra tidslinje',
'addCW' => 'Tilføj indholdsadvarsel',
'removeCW' => 'Fjern indholdsadvarsel',
From 062ec552077c1bb032221f36ada753c98001654c Mon Sep 17 00:00:00 2001
From: Daniel Supernault
Date: Wed, 16 Jul 2025 18:02:36 -0600
Subject: [PATCH 4/8] Update DangerZone middleware to skip sudo mode for OIDC
configurations. Fixes #6057
---
app/Http/Middleware/DangerZone.php | 28 +++++++++++++++++++---------
1 file changed, 19 insertions(+), 9 deletions(-)
diff --git a/app/Http/Middleware/DangerZone.php b/app/Http/Middleware/DangerZone.php
index c74c90eeb..fb55225a7 100644
--- a/app/Http/Middleware/DangerZone.php
+++ b/app/Http/Middleware/DangerZone.php
@@ -2,8 +2,9 @@
namespace App\Http\Middleware;
-use App, Auth, Closure;
+use Auth;
use Carbon\Carbon;
+use Closure;
class DangerZone
{
@@ -16,25 +17,34 @@ class DangerZone
*/
public function handle($request, Closure $next)
{
- if( $request->session()->get('sudoModeAttempts') > 3) {
+ if (config('remote-auth.oidc.enabled')) {
+ // Skip for OIDC/LDAP
+ return $next($request);
+ }
+
+ if ($request->session()->get('sudoModeAttempts') > 3) {
$request->session()->pull('redirectNext');
$request->session()->pull('sudoModeAttempts');
Auth::logout();
+
return redirect(route('login'));
- }
- if(!Auth::check()) {
+ }
+ if (! Auth::check()) {
return redirect(route('login'));
}
- if(!$request->is('i/auth/sudo') && $request->session()->get('sudoTrustDevice') != 1) {
- if( !$request->session()->has('sudoMode') ) {
+ if (! $request->is('i/auth/sudo') && $request->session()->get('sudoTrustDevice') != 1) {
+ if (! $request->session()->has('sudoMode')) {
$request->session()->put('redirectNext', $request->url());
+
return redirect('/i/auth/sudo');
- }
- if( $request->session()->get('sudoMode') < Carbon::now()->subMinutes(30)->timestamp ) {
+ }
+ if ($request->session()->get('sudoMode') < Carbon::now()->subMinutes(30)->timestamp) {
$request->session()->put('redirectNext', $request->url());
+
return redirect('/i/auth/sudo');
- }
+ }
}
+
return $next($request);
}
}
From c95a65cd415978e42d4ff7e4eeb9109f31033d32 Mon Sep 17 00:00:00 2001
From: Shlee
Date: Fri, 18 Jul 2025 21:42:37 +0930
Subject: [PATCH 5/8] Update disabled-panel.blade.php
---
.../settings/security/2fa/partial/disabled-panel.blade.php | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/resources/views/settings/security/2fa/partial/disabled-panel.blade.php b/resources/views/settings/security/2fa/partial/disabled-panel.blade.php
index 9c1f1be14..2704b6d35 100644
--- a/resources/views/settings/security/2fa/partial/disabled-panel.blade.php
+++ b/resources/views/settings/security/2fa/partial/disabled-panel.blade.php
@@ -8,11 +8,11 @@
Two factor authentication is not enabled yet.
- Two-factor authentication adds an additional layer of security to your account by requiring more than just a password to log in. Learn more.
+ Two-factor authentication adds an additional layer of security to your account by requiring more than just a password to log in.
Enable two-factor authentication
-
\ No newline at end of file
+
From ab7a97116357b8a555cc6c69103ee63a4229c891 Mon Sep 17 00:00:00 2001
From: Shlee
Date: Sat, 19 Jul 2025 14:25:49 +0930
Subject: [PATCH 6/8] Update README.md
---
README.md | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 9ba226c35..5a21b2f85 100644
--- a/README.md
+++ b/README.md
@@ -10,10 +10,13 @@
+
-
+
+
+
## Introduction
From ab378b8fcb60fa62c3981ca64abb33747ad00095 Mon Sep 17 00:00:00 2001
From: Daniel Supernault
Date: Wed, 23 Jul 2025 02:30:01 -0600
Subject: [PATCH 7/8] Update curated onboarding username max length
---
.../views/auth/curated-register/partials/step-2.blade.php | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/resources/views/auth/curated-register/partials/step-2.blade.php b/resources/views/auth/curated-register/partials/step-2.blade.php
index 1d508a4c3..aa521a6d2 100644
--- a/resources/views/auth/curated-register/partials/step-2.blade.php
+++ b/resources/views/auth/curated-register/partials/step-2.blade.php
@@ -12,7 +12,7 @@
placeholder="username"
aria-label="Your username"
aria-describedby="username-addon"
- maxlength="15"
+ maxlength="30"
required
name="username"
value="{{ request()->session()->get('cur-reg.form-username') }}">
@@ -20,7 +20,7 @@
@{{ config('pixelfed.domain.app') }}
- You can use letters, numbers, and underscores with a max length of 15 chars.
+ You can use letters, numbers, and underscores with a max length of 30 chars.
From 94367189ea7de0e3a5a0b383ef66502f0420eb59 Mon Sep 17 00:00:00 2001
From: Daniel Supernault
Date: Wed, 23 Jul 2025 02:31:21 -0600
Subject: [PATCH 8/8] Update composer
---
composer.lock | 595 ++++++++++++++++++++++----------------------------
1 file changed, 259 insertions(+), 336 deletions(-)
diff --git a/composer.lock b/composer.lock
index e11434eb7..58d196696 100644
--- a/composer.lock
+++ b/composer.lock
@@ -62,16 +62,16 @@
},
{
"name": "aws/aws-sdk-php",
- "version": "3.344.0",
+ "version": "3.351.4",
"source": {
"type": "git",
"url": "https://github.com/aws/aws-sdk-php.git",
- "reference": "787a8ec6301657d9cbdb389db4fa92243c68666a"
+ "reference": "19dfd2db0f6ce35e1947e8bff4d956614b4aaaaf"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/787a8ec6301657d9cbdb389db4fa92243c68666a",
- "reference": "787a8ec6301657d9cbdb389db4fa92243c68666a",
+ "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/19dfd2db0f6ce35e1947e8bff4d956614b4aaaaf",
+ "reference": "19dfd2db0f6ce35e1947e8bff4d956614b4aaaaf",
"shasum": ""
},
"require": {
@@ -153,9 +153,9 @@
"support": {
"forum": "https://github.com/aws/aws-sdk-php/discussions",
"issues": "https://github.com/aws/aws-sdk-php/issues",
- "source": "https://github.com/aws/aws-sdk-php/tree/3.344.0"
+ "source": "https://github.com/aws/aws-sdk-php/tree/3.351.4"
},
- "time": "2025-06-04T18:36:41+00:00"
+ "time": "2025-07-22T18:12:04+00:00"
},
{
"name": "bacon/bacon-qr-code",
@@ -587,131 +587,41 @@
},
"time": "2024-07-08T12:26:09+00:00"
},
- {
- "name": "doctrine/cache",
- "version": "2.2.0",
- "source": {
- "type": "git",
- "url": "https://github.com/doctrine/cache.git",
- "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
- "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
- "shasum": ""
- },
- "require": {
- "php": "~7.1 || ^8.0"
- },
- "conflict": {
- "doctrine/common": ">2.2,<2.4"
- },
- "require-dev": {
- "cache/integration-tests": "dev-master",
- "doctrine/coding-standard": "^9",
- "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
- "psr/cache": "^1.0 || ^2.0 || ^3.0",
- "symfony/cache": "^4.4 || ^5.4 || ^6",
- "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
- }
- },
- "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 Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
- "homepage": "https://www.doctrine-project.org/projects/cache.html",
- "keywords": [
- "abstraction",
- "apcu",
- "cache",
- "caching",
- "couchdb",
- "memcached",
- "php",
- "redis",
- "xcache"
- ],
- "support": {
- "issues": "https://github.com/doctrine/cache/issues",
- "source": "https://github.com/doctrine/cache/tree/2.2.0"
- },
- "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%2Fcache",
- "type": "tidelift"
- }
- ],
- "time": "2022-05-20T20:07:39+00:00"
- },
{
"name": "doctrine/dbal",
- "version": "3.9.4",
+ "version": "3.10.0",
"source": {
"type": "git",
"url": "https://github.com/doctrine/dbal.git",
- "reference": "ec16c82f20be1a7224e65ac67144a29199f87959"
+ "reference": "1cf840d696373ea0d58ad0a8875c0fadcfc67214"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/dbal/zipball/ec16c82f20be1a7224e65ac67144a29199f87959",
- "reference": "ec16c82f20be1a7224e65ac67144a29199f87959",
+ "url": "https://api.github.com/repos/doctrine/dbal/zipball/1cf840d696373ea0d58ad0a8875c0fadcfc67214",
+ "reference": "1cf840d696373ea0d58ad0a8875c0fadcfc67214",
"shasum": ""
},
"require": {
"composer-runtime-api": "^2",
- "doctrine/cache": "^1.11|^2.0",
"doctrine/deprecations": "^0.5.3|^1",
"doctrine/event-manager": "^1|^2",
"php": "^7.4 || ^8.0",
"psr/cache": "^1|^2|^3",
"psr/log": "^1|^2|^3"
},
+ "conflict": {
+ "doctrine/cache": "< 1.11"
+ },
"require-dev": {
- "doctrine/coding-standard": "12.0.0",
+ "doctrine/cache": "^1.11|^2.0",
+ "doctrine/coding-standard": "13.0.0",
"fig/log-test": "^1",
"jetbrains/phpstorm-stubs": "2023.1",
- "phpstan/phpstan": "2.1.1",
+ "phpstan/phpstan": "2.1.17",
"phpstan/phpstan-strict-rules": "^2",
- "phpunit/phpunit": "9.6.22",
- "slevomat/coding-standard": "8.13.1",
- "squizlabs/php_codesniffer": "3.10.2",
+ "phpunit/phpunit": "9.6.23",
+ "slevomat/coding-standard": "8.16.2",
+ "squizlabs/php_codesniffer": "3.13.1",
"symfony/cache": "^5.4|^6.0|^7.0",
"symfony/console": "^4.4|^5.4|^6.0|^7.0"
},
@@ -773,7 +683,7 @@
],
"support": {
"issues": "https://github.com/doctrine/dbal/issues",
- "source": "https://github.com/doctrine/dbal/tree/3.9.4"
+ "source": "https://github.com/doctrine/dbal/tree/3.10.0"
},
"funding": [
{
@@ -789,7 +699,7 @@
"type": "tidelift"
}
],
- "time": "2025-01-16T08:28:55+00:00"
+ "time": "2025-07-10T21:11:04+00:00"
},
{
"name": "doctrine/deprecations",
@@ -1287,16 +1197,16 @@
},
{
"name": "endroid/qr-code",
- "version": "6.0.8",
+ "version": "6.0.9",
"source": {
"type": "git",
"url": "https://github.com/endroid/qr-code.git",
- "reference": "8102273afbcd5e3d95f1faaab2c5aa31e3637f61"
+ "reference": "21e888e8597440b2205e2e5c484b6c8e556bcd1a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/endroid/qr-code/zipball/8102273afbcd5e3d95f1faaab2c5aa31e3637f61",
- "reference": "8102273afbcd5e3d95f1faaab2c5aa31e3637f61",
+ "url": "https://api.github.com/repos/endroid/qr-code/zipball/21e888e8597440b2205e2e5c484b6c8e556bcd1a",
+ "reference": "21e888e8597440b2205e2e5c484b6c8e556bcd1a",
"shasum": ""
},
"require": {
@@ -1347,7 +1257,7 @@
],
"support": {
"issues": "https://github.com/endroid/qr-code/issues",
- "source": "https://github.com/endroid/qr-code/tree/6.0.8"
+ "source": "https://github.com/endroid/qr-code/tree/6.0.9"
},
"funding": [
{
@@ -1355,7 +1265,7 @@
"type": "github"
}
],
- "time": "2025-05-10T14:28:45+00:00"
+ "time": "2025-07-13T19:59:45+00:00"
},
{
"name": "evenement/evenement",
@@ -2218,16 +2128,16 @@
},
{
"name": "jaybizzle/crawler-detect",
- "version": "v1.3.4",
+ "version": "v1.3.5",
"source": {
"type": "git",
"url": "https://github.com/JayBizzle/Crawler-Detect.git",
- "reference": "d3b7ff28994e1b0de764ab7412fa269a79634ff3"
+ "reference": "fbf1a3e81d61b088e7af723fb3c7a4ee92ac7e34"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/d3b7ff28994e1b0de764ab7412fa269a79634ff3",
- "reference": "d3b7ff28994e1b0de764ab7412fa269a79634ff3",
+ "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/fbf1a3e81d61b088e7af723fb3c7a4ee92ac7e34",
+ "reference": "fbf1a3e81d61b088e7af723fb3c7a4ee92ac7e34",
"shasum": ""
},
"require": {
@@ -2264,9 +2174,9 @@
],
"support": {
"issues": "https://github.com/JayBizzle/Crawler-Detect/issues",
- "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.3.4"
+ "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.3.5"
},
- "time": "2025-03-05T23:12:10+00:00"
+ "time": "2025-06-11T17:58:05+00:00"
},
{
"name": "jenssegers/agent",
@@ -2483,16 +2393,16 @@
},
{
"name": "laravel/framework",
- "version": "v12.17.0",
+ "version": "v12.21.0",
"source": {
"type": "git",
"url": "https://github.com/laravel/framework.git",
- "reference": "8729d084510480fdeec9b6ad198180147d4a7f06"
+ "reference": "ac8c4e73bf1b5387b709f7736d41427e6af1c93b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/framework/zipball/8729d084510480fdeec9b6ad198180147d4a7f06",
- "reference": "8729d084510480fdeec9b6ad198180147d4a7f06",
+ "url": "https://api.github.com/repos/laravel/framework/zipball/ac8c4e73bf1b5387b709f7736d41427e6af1c93b",
+ "reference": "ac8c4e73bf1b5387b709f7736d41427e6af1c93b",
"shasum": ""
},
"require": {
@@ -2694,7 +2604,7 @@
"issues": "https://github.com/laravel/framework/issues",
"source": "https://github.com/laravel/framework"
},
- "time": "2025-06-03T14:04:18+00:00"
+ "time": "2025-07-22T15:41:55+00:00"
},
{
"name": "laravel/helpers",
@@ -2755,16 +2665,16 @@
},
{
"name": "laravel/horizon",
- "version": "v5.32.1",
+ "version": "v5.33.1",
"source": {
"type": "git",
"url": "https://github.com/laravel/horizon.git",
- "reference": "e78d9689d85b3d4769dc64def5eb6d94e5776beb"
+ "reference": "50057bca1f1dcc9fbd5ff6d65143833babd784b3"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/horizon/zipball/e78d9689d85b3d4769dc64def5eb6d94e5776beb",
- "reference": "e78d9689d85b3d4769dc64def5eb6d94e5776beb",
+ "url": "https://api.github.com/repos/laravel/horizon/zipball/50057bca1f1dcc9fbd5ff6d65143833babd784b3",
+ "reference": "50057bca1f1dcc9fbd5ff6d65143833babd784b3",
"shasum": ""
},
"require": {
@@ -2829,9 +2739,9 @@
],
"support": {
"issues": "https://github.com/laravel/horizon/issues",
- "source": "https://github.com/laravel/horizon/tree/v5.32.1"
+ "source": "https://github.com/laravel/horizon/tree/v5.33.1"
},
- "time": "2025-05-19T13:13:30+00:00"
+ "time": "2025-06-16T13:48:30+00:00"
},
{
"name": "laravel/passport",
@@ -2911,16 +2821,16 @@
},
{
"name": "laravel/prompts",
- "version": "v0.3.5",
+ "version": "v0.3.6",
"source": {
"type": "git",
"url": "https://github.com/laravel/prompts.git",
- "reference": "57b8f7efe40333cdb925700891c7d7465325d3b1"
+ "reference": "86a8b692e8661d0fb308cec64f3d176821323077"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/prompts/zipball/57b8f7efe40333cdb925700891c7d7465325d3b1",
- "reference": "57b8f7efe40333cdb925700891c7d7465325d3b1",
+ "url": "https://api.github.com/repos/laravel/prompts/zipball/86a8b692e8661d0fb308cec64f3d176821323077",
+ "reference": "86a8b692e8661d0fb308cec64f3d176821323077",
"shasum": ""
},
"require": {
@@ -2964,22 +2874,22 @@
"description": "Add beautiful and user-friendly forms to your command-line applications.",
"support": {
"issues": "https://github.com/laravel/prompts/issues",
- "source": "https://github.com/laravel/prompts/tree/v0.3.5"
+ "source": "https://github.com/laravel/prompts/tree/v0.3.6"
},
- "time": "2025-02-11T13:34:40+00:00"
+ "time": "2025-07-07T14:17:42+00:00"
},
{
"name": "laravel/pulse",
- "version": "v1.4.2",
+ "version": "v1.4.3",
"source": {
"type": "git",
"url": "https://github.com/laravel/pulse.git",
- "reference": "73c349777e09893a68d747bb6ae87e54eb5e5aec"
+ "reference": "8c57f30aa6e094c138cd191314fe060d60773c14"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/pulse/zipball/73c349777e09893a68d747bb6ae87e54eb5e5aec",
- "reference": "73c349777e09893a68d747bb6ae87e54eb5e5aec",
+ "url": "https://api.github.com/repos/laravel/pulse/zipball/8c57f30aa6e094c138cd191314fe060d60773c14",
+ "reference": "8c57f30aa6e094c138cd191314fe060d60773c14",
"shasum": ""
},
"require": {
@@ -2998,7 +2908,7 @@
"illuminate/routing": "^10.48.4|^11.0.8|^12.0",
"illuminate/support": "^10.48.4|^11.0.8|^12.0",
"illuminate/view": "^10.48.4|^11.0.8|^12.0",
- "livewire/livewire": "^3.4.9",
+ "livewire/livewire": "^3.6.4",
"nesbot/carbon": "^2.67|^3.0",
"php": "^8.1",
"symfony/console": "^6.0|^7.0"
@@ -3053,7 +2963,7 @@
"issues": "https://github.com/laravel/pulse/issues",
"source": "https://github.com/laravel/pulse"
},
- "time": "2025-05-19T13:12:28+00:00"
+ "time": "2025-07-18T15:54:11+00:00"
},
{
"name": "laravel/serializable-closure",
@@ -3384,16 +3294,16 @@
},
{
"name": "league/commonmark",
- "version": "2.7.0",
+ "version": "2.7.1",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/commonmark.git",
- "reference": "6fbb36d44824ed4091adbcf4c7d4a3923cdb3405"
+ "reference": "10732241927d3971d28e7ea7b5712721fa2296ca"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/6fbb36d44824ed4091adbcf4c7d4a3923cdb3405",
- "reference": "6fbb36d44824ed4091adbcf4c7d4a3923cdb3405",
+ "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/10732241927d3971d28e7ea7b5712721fa2296ca",
+ "reference": "10732241927d3971d28e7ea7b5712721fa2296ca",
"shasum": ""
},
"require": {
@@ -3422,7 +3332,7 @@
"symfony/process": "^5.4 | ^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"
+ "vimeo/psalm": "^4.24.0 || ^5.0.0 || ^6.0.0"
},
"suggest": {
"symfony/yaml": "v2.3+ required if using the Front Matter extension"
@@ -3487,7 +3397,7 @@
"type": "tidelift"
}
],
- "time": "2025-05-05T12:20:28+00:00"
+ "time": "2025-07-20T12:47:49+00:00"
},
{
"name": "league/config",
@@ -3627,16 +3537,16 @@
},
{
"name": "league/flysystem",
- "version": "3.29.1",
+ "version": "3.30.0",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/flysystem.git",
- "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319"
+ "reference": "2203e3151755d874bb2943649dae1eb8533ac93e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/edc1bb7c86fab0776c3287dbd19b5fa278347319",
- "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319",
+ "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/2203e3151755d874bb2943649dae1eb8533ac93e",
+ "reference": "2203e3151755d874bb2943649dae1eb8533ac93e",
"shasum": ""
},
"require": {
@@ -3660,13 +3570,13 @@
"composer/semver": "^3.0",
"ext-fileinfo": "*",
"ext-ftp": "*",
- "ext-mongodb": "^1.3",
+ "ext-mongodb": "^1.3|^2",
"ext-zip": "*",
"friendsofphp/php-cs-fixer": "^3.5",
"google/cloud-storage": "^1.23",
"guzzlehttp/psr7": "^2.6",
"microsoft/azure-storage-blob": "^1.1",
- "mongodb/mongodb": "^1.2",
+ "mongodb/mongodb": "^1.2|^2",
"phpseclib/phpseclib": "^3.0.36",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.5.11|^10.0",
@@ -3704,9 +3614,9 @@
],
"support": {
"issues": "https://github.com/thephpleague/flysystem/issues",
- "source": "https://github.com/thephpleague/flysystem/tree/3.29.1"
+ "source": "https://github.com/thephpleague/flysystem/tree/3.30.0"
},
- "time": "2024-10-08T08:58:34+00:00"
+ "time": "2025-06-25T13:29:59+00:00"
},
{
"name": "league/flysystem-aws-s3-v3",
@@ -3765,16 +3675,16 @@
},
{
"name": "league/flysystem-local",
- "version": "3.29.0",
+ "version": "3.30.0",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/flysystem-local.git",
- "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27"
+ "reference": "6691915f77c7fb69adfb87dcd550052dc184ee10"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/e0e8d52ce4b2ed154148453d321e97c8e931bd27",
- "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27",
+ "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/6691915f77c7fb69adfb87dcd550052dc184ee10",
+ "reference": "6691915f77c7fb69adfb87dcd550052dc184ee10",
"shasum": ""
},
"require": {
@@ -3808,22 +3718,22 @@
"local"
],
"support": {
- "source": "https://github.com/thephpleague/flysystem-local/tree/3.29.0"
+ "source": "https://github.com/thephpleague/flysystem-local/tree/3.30.0"
},
- "time": "2024-08-09T21:24:39+00:00"
+ "time": "2025-05-21T10:34:19+00:00"
},
{
"name": "league/iso3166",
- "version": "4.3.2",
+ "version": "4.3.3",
"source": {
"type": "git",
"url": "https://github.com/alcohol/iso3166.git",
- "reference": "5133fed7d54728222f4058702487dccedda20472"
+ "reference": "3f692113a1c07859ec69303a0127b43da8a66768"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/alcohol/iso3166/zipball/5133fed7d54728222f4058702487dccedda20472",
- "reference": "5133fed7d54728222f4058702487dccedda20472",
+ "url": "https://api.github.com/repos/alcohol/iso3166/zipball/3f692113a1c07859ec69303a0127b43da8a66768",
+ "reference": "3f692113a1c07859ec69303a0127b43da8a66768",
"shasum": ""
},
"require": {
@@ -3877,7 +3787,7 @@
"type": "github"
}
],
- "time": "2024-10-10T07:39:24+00:00"
+ "time": "2025-06-05T08:06:30+00:00"
},
{
"name": "league/mime-type-detection",
@@ -4264,16 +4174,16 @@
},
{
"name": "livewire/livewire",
- "version": "v3.6.3",
+ "version": "v3.6.4",
"source": {
"type": "git",
"url": "https://github.com/livewire/livewire.git",
- "reference": "56aa1bb63a46e06181c56fa64717a7287e19115e"
+ "reference": "ef04be759da41b14d2d129e670533180a44987dc"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/livewire/livewire/zipball/56aa1bb63a46e06181c56fa64717a7287e19115e",
- "reference": "56aa1bb63a46e06181c56fa64717a7287e19115e",
+ "url": "https://api.github.com/repos/livewire/livewire/zipball/ef04be759da41b14d2d129e670533180a44987dc",
+ "reference": "ef04be759da41b14d2d129e670533180a44987dc",
"shasum": ""
},
"require": {
@@ -4328,7 +4238,7 @@
"description": "A front-end framework for Laravel.",
"support": {
"issues": "https://github.com/livewire/livewire/issues",
- "source": "https://github.com/livewire/livewire/tree/v3.6.3"
+ "source": "https://github.com/livewire/livewire/tree/v3.6.4"
},
"funding": [
{
@@ -4336,7 +4246,7 @@
"type": "github"
}
],
- "time": "2025-04-12T22:26:52+00:00"
+ "time": "2025-07-17T05:12:15+00:00"
},
{
"name": "minishlink/web-push",
@@ -4636,16 +4546,16 @@
},
{
"name": "nesbot/carbon",
- "version": "3.9.1",
+ "version": "3.10.1",
"source": {
"type": "git",
"url": "https://github.com/CarbonPHP/carbon.git",
- "reference": "ced71f79398ece168e24f7f7710462f462310d4d"
+ "reference": "1fd1935b2d90aef2f093c5e35f7ae1257c448d00"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/ced71f79398ece168e24f7f7710462f462310d4d",
- "reference": "ced71f79398ece168e24f7f7710462f462310d4d",
+ "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/1fd1935b2d90aef2f093c5e35f7ae1257c448d00",
+ "reference": "1fd1935b2d90aef2f093c5e35f7ae1257c448d00",
"shasum": ""
},
"require": {
@@ -4653,9 +4563,9 @@
"ext-json": "*",
"php": "^8.1",
"psr/clock": "^1.0",
- "symfony/clock": "^6.3 || ^7.0",
+ "symfony/clock": "^6.3.12 || ^7.0",
"symfony/polyfill-mbstring": "^1.0",
- "symfony/translation": "^4.4.18 || ^5.2.1|| ^6.0 || ^7.0"
+ "symfony/translation": "^4.4.18 || ^5.2.1 || ^6.0 || ^7.0"
},
"provide": {
"psr/clock-implementation": "1.0"
@@ -4663,14 +4573,13 @@
"require-dev": {
"doctrine/dbal": "^3.6.3 || ^4.0",
"doctrine/orm": "^2.15.2 || ^3.0",
- "friendsofphp/php-cs-fixer": "^3.57.2",
+ "friendsofphp/php-cs-fixer": "^3.75.0",
"kylekatarnls/multi-tester": "^2.5.3",
- "ondrejmirtes/better-reflection": "^6.25.0.4",
"phpmd/phpmd": "^2.15.0",
- "phpstan/extension-installer": "^1.3.1",
- "phpstan/phpstan": "^1.11.2",
- "phpunit/phpunit": "^10.5.20",
- "squizlabs/php_codesniffer": "^3.9.0"
+ "phpstan/extension-installer": "^1.4.3",
+ "phpstan/phpstan": "^2.1.17",
+ "phpunit/phpunit": "^10.5.46",
+ "squizlabs/php_codesniffer": "^3.13.0"
},
"bin": [
"bin/carbon"
@@ -4738,7 +4647,7 @@
"type": "tidelift"
}
],
- "time": "2025-05-01T19:51:51+00:00"
+ "time": "2025-06-21T15:19:35+00:00"
},
{
"name": "nette/schema",
@@ -6375,16 +6284,16 @@
},
{
"name": "psy/psysh",
- "version": "v0.12.8",
+ "version": "v0.12.9",
"source": {
"type": "git",
"url": "https://github.com/bobthecow/psysh.git",
- "reference": "85057ceedee50c49d4f6ecaff73ee96adb3b3625"
+ "reference": "1b801844becfe648985372cb4b12ad6840245ace"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/bobthecow/psysh/zipball/85057ceedee50c49d4f6ecaff73ee96adb3b3625",
- "reference": "85057ceedee50c49d4f6ecaff73ee96adb3b3625",
+ "url": "https://api.github.com/repos/bobthecow/psysh/zipball/1b801844becfe648985372cb4b12ad6840245ace",
+ "reference": "1b801844becfe648985372cb4b12ad6840245ace",
"shasum": ""
},
"require": {
@@ -6448,9 +6357,9 @@
],
"support": {
"issues": "https://github.com/bobthecow/psysh/issues",
- "source": "https://github.com/bobthecow/psysh/tree/v0.12.8"
+ "source": "https://github.com/bobthecow/psysh/tree/v0.12.9"
},
- "time": "2025-03-16T03:05:19+00:00"
+ "time": "2025-06-23T02:35:06+00:00"
},
{
"name": "pusher/pusher-php-server",
@@ -6635,21 +6544,20 @@
},
{
"name": "ramsey/uuid",
- "version": "4.8.1",
+ "version": "4.9.0",
"source": {
"type": "git",
"url": "https://github.com/ramsey/uuid.git",
- "reference": "fdf4dd4e2ff1813111bd0ad58d7a1ddbb5b56c28"
+ "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/ramsey/uuid/zipball/fdf4dd4e2ff1813111bd0ad58d7a1ddbb5b56c28",
- "reference": "fdf4dd4e2ff1813111bd0ad58d7a1ddbb5b56c28",
+ "url": "https://api.github.com/repos/ramsey/uuid/zipball/4e0e23cc785f0724a0e838279a9eb03f28b092a0",
+ "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0",
"shasum": ""
},
"require": {
"brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13",
- "ext-json": "*",
"php": "^8.0",
"ramsey/collection": "^1.2 || ^2.0"
},
@@ -6708,9 +6616,9 @@
],
"support": {
"issues": "https://github.com/ramsey/uuid/issues",
- "source": "https://github.com/ramsey/uuid/tree/4.8.1"
+ "source": "https://github.com/ramsey/uuid/tree/4.9.0"
},
- "time": "2025-06-01T06:28:46+00:00"
+ "time": "2025-06-25T14:20:11+00:00"
},
{
"name": "resend/resend-php",
@@ -7057,16 +6965,16 @@
},
{
"name": "spatie/laravel-package-tools",
- "version": "1.92.4",
+ "version": "1.92.7",
"source": {
"type": "git",
"url": "https://github.com/spatie/laravel-package-tools.git",
- "reference": "d20b1969f836d210459b78683d85c9cd5c5f508c"
+ "reference": "f09a799850b1ed765103a4f0b4355006360c49a5"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/d20b1969f836d210459b78683d85c9cd5c5f508c",
- "reference": "d20b1969f836d210459b78683d85c9cd5c5f508c",
+ "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/f09a799850b1ed765103a4f0b4355006360c49a5",
+ "reference": "f09a799850b1ed765103a4f0b4355006360c49a5",
"shasum": ""
},
"require": {
@@ -7106,7 +7014,7 @@
],
"support": {
"issues": "https://github.com/spatie/laravel-package-tools/issues",
- "source": "https://github.com/spatie/laravel-package-tools/tree/1.92.4"
+ "source": "https://github.com/spatie/laravel-package-tools/tree/1.92.7"
},
"funding": [
{
@@ -7114,7 +7022,7 @@
"type": "github"
}
],
- "time": "2025-04-11T15:27:14+00:00"
+ "time": "2025-07-17T15:46:43+00:00"
},
{
"name": "spatie/laravel-signal-aware-command",
@@ -7319,16 +7227,16 @@
},
{
"name": "spomky-labs/pki-framework",
- "version": "1.2.3",
+ "version": "1.3.0",
"source": {
"type": "git",
"url": "https://github.com/Spomky-Labs/pki-framework.git",
- "reference": "5ff1dcc21e961b60149a80e77f744fc047800b31"
+ "reference": "eced5b5ce70518b983ff2be486e902bbd15135ae"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Spomky-Labs/pki-framework/zipball/5ff1dcc21e961b60149a80e77f744fc047800b31",
- "reference": "5ff1dcc21e961b60149a80e77f744fc047800b31",
+ "url": "https://api.github.com/repos/Spomky-Labs/pki-framework/zipball/eced5b5ce70518b983ff2be486e902bbd15135ae",
+ "reference": "eced5b5ce70518b983ff2be486e902bbd15135ae",
"shasum": ""
},
"require": {
@@ -7412,7 +7320,7 @@
],
"support": {
"issues": "https://github.com/Spomky-Labs/pki-framework/issues",
- "source": "https://github.com/Spomky-Labs/pki-framework/tree/1.2.3"
+ "source": "https://github.com/Spomky-Labs/pki-framework/tree/1.3.0"
},
"funding": [
{
@@ -7424,7 +7332,7 @@
"type": "patreon"
}
],
- "time": "2025-04-25T15:57:13+00:00"
+ "time": "2025-06-13T08:35:04+00:00"
},
{
"name": "stevebauman/purify",
@@ -7494,16 +7402,16 @@
},
{
"name": "symfony/cache",
- "version": "v7.3.0",
+ "version": "v7.3.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/cache.git",
- "reference": "c4b217b578c11ec764867aa0c73e602c602965de"
+ "reference": "a7c6caa9d6113cebfb3020b427bcb021ebfdfc9e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/cache/zipball/c4b217b578c11ec764867aa0c73e602c602965de",
- "reference": "c4b217b578c11ec764867aa0c73e602c602965de",
+ "url": "https://api.github.com/repos/symfony/cache/zipball/a7c6caa9d6113cebfb3020b427bcb021ebfdfc9e",
+ "reference": "a7c6caa9d6113cebfb3020b427bcb021ebfdfc9e",
"shasum": ""
},
"require": {
@@ -7572,7 +7480,7 @@
"psr6"
],
"support": {
- "source": "https://github.com/symfony/cache/tree/v7.3.0"
+ "source": "https://github.com/symfony/cache/tree/v7.3.1"
},
"funding": [
{
@@ -7588,7 +7496,7 @@
"type": "tidelift"
}
],
- "time": "2025-05-06T19:00:13+00:00"
+ "time": "2025-06-27T19:55:54+00:00"
},
{
"name": "symfony/cache-contracts",
@@ -7742,16 +7650,16 @@
},
{
"name": "symfony/console",
- "version": "v7.3.0",
+ "version": "v7.3.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/console.git",
- "reference": "66c1440edf6f339fd82ed6c7caa76cb006211b44"
+ "reference": "9e27aecde8f506ba0fd1d9989620c04a87697101"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/console/zipball/66c1440edf6f339fd82ed6c7caa76cb006211b44",
- "reference": "66c1440edf6f339fd82ed6c7caa76cb006211b44",
+ "url": "https://api.github.com/repos/symfony/console/zipball/9e27aecde8f506ba0fd1d9989620c04a87697101",
+ "reference": "9e27aecde8f506ba0fd1d9989620c04a87697101",
"shasum": ""
},
"require": {
@@ -7816,7 +7724,7 @@
"terminal"
],
"support": {
- "source": "https://github.com/symfony/console/tree/v7.3.0"
+ "source": "https://github.com/symfony/console/tree/v7.3.1"
},
"funding": [
{
@@ -7832,7 +7740,7 @@
"type": "tidelift"
}
],
- "time": "2025-05-24T10:34:04+00:00"
+ "time": "2025-06-27T19:55:54+00:00"
},
{
"name": "symfony/css-selector",
@@ -7968,16 +7876,16 @@
},
{
"name": "symfony/error-handler",
- "version": "v7.3.0",
+ "version": "v7.3.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/error-handler.git",
- "reference": "cf68d225bc43629de4ff54778029aee6dc191b83"
+ "reference": "35b55b166f6752d6aaf21aa042fc5ed280fce235"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/error-handler/zipball/cf68d225bc43629de4ff54778029aee6dc191b83",
- "reference": "cf68d225bc43629de4ff54778029aee6dc191b83",
+ "url": "https://api.github.com/repos/symfony/error-handler/zipball/35b55b166f6752d6aaf21aa042fc5ed280fce235",
+ "reference": "35b55b166f6752d6aaf21aa042fc5ed280fce235",
"shasum": ""
},
"require": {
@@ -8025,7 +7933,7 @@
"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.3.0"
+ "source": "https://github.com/symfony/error-handler/tree/v7.3.1"
},
"funding": [
{
@@ -8041,7 +7949,7 @@
"type": "tidelift"
}
],
- "time": "2025-05-29T07:19:49+00:00"
+ "time": "2025-06-13T07:48:40+00:00"
},
{
"name": "symfony/event-dispatcher",
@@ -8265,16 +8173,16 @@
},
{
"name": "symfony/http-client",
- "version": "v6.4.19",
+ "version": "v6.4.23",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-client.git",
- "reference": "3294a433fc9d12ae58128174896b5b1822c28dad"
+ "reference": "19f11e742b94dcfd968a54f5381bb9082a88cb57"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-client/zipball/3294a433fc9d12ae58128174896b5b1822c28dad",
- "reference": "3294a433fc9d12ae58128174896b5b1822c28dad",
+ "url": "https://api.github.com/repos/symfony/http-client/zipball/19f11e742b94dcfd968a54f5381bb9082a88cb57",
+ "reference": "19f11e742b94dcfd968a54f5381bb9082a88cb57",
"shasum": ""
},
"require": {
@@ -8338,7 +8246,7 @@
"http"
],
"support": {
- "source": "https://github.com/symfony/http-client/tree/v6.4.19"
+ "source": "https://github.com/symfony/http-client/tree/v6.4.23"
},
"funding": [
{
@@ -8354,7 +8262,7 @@
"type": "tidelift"
}
],
- "time": "2025-02-13T09:55:13+00:00"
+ "time": "2025-06-27T20:02:31+00:00"
},
{
"name": "symfony/http-client-contracts",
@@ -8436,16 +8344,16 @@
},
{
"name": "symfony/http-foundation",
- "version": "v7.3.0",
+ "version": "v7.3.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-foundation.git",
- "reference": "4236baf01609667d53b20371486228231eb135fd"
+ "reference": "23dd60256610c86a3414575b70c596e5deff6ed9"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-foundation/zipball/4236baf01609667d53b20371486228231eb135fd",
- "reference": "4236baf01609667d53b20371486228231eb135fd",
+ "url": "https://api.github.com/repos/symfony/http-foundation/zipball/23dd60256610c86a3414575b70c596e5deff6ed9",
+ "reference": "23dd60256610c86a3414575b70c596e5deff6ed9",
"shasum": ""
},
"require": {
@@ -8495,7 +8403,7 @@
"description": "Defines an object-oriented layer for the HTTP specification",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/http-foundation/tree/v7.3.0"
+ "source": "https://github.com/symfony/http-foundation/tree/v7.3.1"
},
"funding": [
{
@@ -8511,20 +8419,20 @@
"type": "tidelift"
}
],
- "time": "2025-05-12T14:48:23+00:00"
+ "time": "2025-06-23T15:07:14+00:00"
},
{
"name": "symfony/http-kernel",
- "version": "v7.3.0",
+ "version": "v7.3.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-kernel.git",
- "reference": "ac7b8e163e8c83dce3abcc055a502d4486051a9f"
+ "reference": "1644879a66e4aa29c36fe33dfa6c54b450ce1831"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-kernel/zipball/ac7b8e163e8c83dce3abcc055a502d4486051a9f",
- "reference": "ac7b8e163e8c83dce3abcc055a502d4486051a9f",
+ "url": "https://api.github.com/repos/symfony/http-kernel/zipball/1644879a66e4aa29c36fe33dfa6c54b450ce1831",
+ "reference": "1644879a66e4aa29c36fe33dfa6c54b450ce1831",
"shasum": ""
},
"require": {
@@ -8609,7 +8517,7 @@
"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.3.0"
+ "source": "https://github.com/symfony/http-kernel/tree/v7.3.1"
},
"funding": [
{
@@ -8625,20 +8533,20 @@
"type": "tidelift"
}
],
- "time": "2025-05-29T07:47:32+00:00"
+ "time": "2025-06-28T08:24:55+00:00"
},
{
"name": "symfony/mailer",
- "version": "v7.3.0",
+ "version": "v7.3.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/mailer.git",
- "reference": "0f375bbbde96ae8c78e4aa3e63aabd486e33364c"
+ "reference": "b5db5105b290bdbea5ab27b89c69effcf1cb3368"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/mailer/zipball/0f375bbbde96ae8c78e4aa3e63aabd486e33364c",
- "reference": "0f375bbbde96ae8c78e4aa3e63aabd486e33364c",
+ "url": "https://api.github.com/repos/symfony/mailer/zipball/b5db5105b290bdbea5ab27b89c69effcf1cb3368",
+ "reference": "b5db5105b290bdbea5ab27b89c69effcf1cb3368",
"shasum": ""
},
"require": {
@@ -8689,7 +8597,7 @@
"description": "Helps sending emails",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/mailer/tree/v7.3.0"
+ "source": "https://github.com/symfony/mailer/tree/v7.3.1"
},
"funding": [
{
@@ -8705,20 +8613,20 @@
"type": "tidelift"
}
],
- "time": "2025-04-04T09:51:09+00:00"
+ "time": "2025-06-27T19:55:54+00:00"
},
{
"name": "symfony/mailgun-mailer",
- "version": "v6.4.13",
+ "version": "v6.4.23",
"source": {
"type": "git",
"url": "https://github.com/symfony/mailgun-mailer.git",
- "reference": "ad4e79798a5eb80af99004a4871b4fe5effe33a3"
+ "reference": "f4dd2d18b83059f64deb59aef3ab8fdd416d38c2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/mailgun-mailer/zipball/ad4e79798a5eb80af99004a4871b4fe5effe33a3",
- "reference": "ad4e79798a5eb80af99004a4871b4fe5effe33a3",
+ "url": "https://api.github.com/repos/symfony/mailgun-mailer/zipball/f4dd2d18b83059f64deb59aef3ab8fdd416d38c2",
+ "reference": "f4dd2d18b83059f64deb59aef3ab8fdd416d38c2",
"shasum": ""
},
"require": {
@@ -8758,7 +8666,7 @@
"description": "Symfony Mailgun Mailer Bridge",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/mailgun-mailer/tree/v6.4.13"
+ "source": "https://github.com/symfony/mailgun-mailer/tree/v6.4.23"
},
"funding": [
{
@@ -8774,7 +8682,7 @@
"type": "tidelift"
}
],
- "time": "2024-09-25T14:18:03+00:00"
+ "time": "2025-06-20T12:48:30+00:00"
},
{
"name": "symfony/mime",
@@ -9894,16 +9802,16 @@
},
{
"name": "symfony/translation",
- "version": "v7.3.0",
+ "version": "v7.3.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/translation.git",
- "reference": "4aba29076a29a3aa667e09b791e5f868973a8667"
+ "reference": "241d5ac4910d256660238a7ecf250deba4c73063"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/translation/zipball/4aba29076a29a3aa667e09b791e5f868973a8667",
- "reference": "4aba29076a29a3aa667e09b791e5f868973a8667",
+ "url": "https://api.github.com/repos/symfony/translation/zipball/241d5ac4910d256660238a7ecf250deba4c73063",
+ "reference": "241d5ac4910d256660238a7ecf250deba4c73063",
"shasum": ""
},
"require": {
@@ -9970,7 +9878,7 @@
"description": "Provides tools to internationalize your application",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/translation/tree/v7.3.0"
+ "source": "https://github.com/symfony/translation/tree/v7.3.1"
},
"funding": [
{
@@ -9986,7 +9894,7 @@
"type": "tidelift"
}
],
- "time": "2025-05-29T07:19:49+00:00"
+ "time": "2025-06-27T19:55:54+00:00"
},
{
"name": "symfony/translation-contracts",
@@ -10068,16 +9976,16 @@
},
{
"name": "symfony/uid",
- "version": "v7.3.0",
+ "version": "v7.3.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/uid.git",
- "reference": "7beeb2b885cd584cd01e126c5777206ae4c3c6a3"
+ "reference": "a69f69f3159b852651a6bf45a9fdd149520525bb"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/uid/zipball/7beeb2b885cd584cd01e126c5777206ae4c3c6a3",
- "reference": "7beeb2b885cd584cd01e126c5777206ae4c3c6a3",
+ "url": "https://api.github.com/repos/symfony/uid/zipball/a69f69f3159b852651a6bf45a9fdd149520525bb",
+ "reference": "a69f69f3159b852651a6bf45a9fdd149520525bb",
"shasum": ""
},
"require": {
@@ -10122,7 +10030,7 @@
"uuid"
],
"support": {
- "source": "https://github.com/symfony/uid/tree/v7.3.0"
+ "source": "https://github.com/symfony/uid/tree/v7.3.1"
},
"funding": [
{
@@ -10138,20 +10046,20 @@
"type": "tidelift"
}
],
- "time": "2025-05-24T14:28:13+00:00"
+ "time": "2025-06-27T19:55:54+00:00"
},
{
"name": "symfony/var-dumper",
- "version": "v7.3.0",
+ "version": "v7.3.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/var-dumper.git",
- "reference": "548f6760c54197b1084e1e5c71f6d9d523f2f78e"
+ "reference": "6e209fbe5f5a7b6043baba46fe5735a4b85d0d42"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/var-dumper/zipball/548f6760c54197b1084e1e5c71f6d9d523f2f78e",
- "reference": "548f6760c54197b1084e1e5c71f6d9d523f2f78e",
+ "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6e209fbe5f5a7b6043baba46fe5735a4b85d0d42",
+ "reference": "6e209fbe5f5a7b6043baba46fe5735a4b85d0d42",
"shasum": ""
},
"require": {
@@ -10206,7 +10114,7 @@
"dump"
],
"support": {
- "source": "https://github.com/symfony/var-dumper/tree/v7.3.0"
+ "source": "https://github.com/symfony/var-dumper/tree/v7.3.1"
},
"funding": [
{
@@ -10222,7 +10130,7 @@
"type": "tidelift"
}
],
- "time": "2025-04-27T18:39:23+00:00"
+ "time": "2025-06-27T19:55:54+00:00"
},
{
"name": "symfony/var-exporter",
@@ -10891,16 +10799,16 @@
},
{
"name": "filp/whoops",
- "version": "2.18.1",
+ "version": "2.18.3",
"source": {
"type": "git",
"url": "https://github.com/filp/whoops.git",
- "reference": "8fcc6a862f2e7b94eb4221fd0819ddba3d30ab26"
+ "reference": "59a123a3d459c5a23055802237cb317f609867e5"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/filp/whoops/zipball/8fcc6a862f2e7b94eb4221fd0819ddba3d30ab26",
- "reference": "8fcc6a862f2e7b94eb4221fd0819ddba3d30ab26",
+ "url": "https://api.github.com/repos/filp/whoops/zipball/59a123a3d459c5a23055802237cb317f609867e5",
+ "reference": "59a123a3d459c5a23055802237cb317f609867e5",
"shasum": ""
},
"require": {
@@ -10950,7 +10858,7 @@
],
"support": {
"issues": "https://github.com/filp/whoops/issues",
- "source": "https://github.com/filp/whoops/tree/2.18.1"
+ "source": "https://github.com/filp/whoops/tree/2.18.3"
},
"funding": [
{
@@ -10958,7 +10866,7 @@
"type": "github"
}
],
- "time": "2025-06-03T18:56:14+00:00"
+ "time": "2025-06-16T00:02:10+00:00"
},
{
"name": "hamcrest/hamcrest-php",
@@ -11073,16 +10981,16 @@
},
{
"name": "laravel/pint",
- "version": "v1.22.1",
+ "version": "v1.24.0",
"source": {
"type": "git",
"url": "https://github.com/laravel/pint.git",
- "reference": "941d1927c5ca420c22710e98420287169c7bcaf7"
+ "reference": "0345f3b05f136801af8c339f9d16ef29e6b4df8a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/pint/zipball/941d1927c5ca420c22710e98420287169c7bcaf7",
- "reference": "941d1927c5ca420c22710e98420287169c7bcaf7",
+ "url": "https://api.github.com/repos/laravel/pint/zipball/0345f3b05f136801af8c339f9d16ef29e6b4df8a",
+ "reference": "0345f3b05f136801af8c339f9d16ef29e6b4df8a",
"shasum": ""
},
"require": {
@@ -11093,10 +11001,10 @@
"php": "^8.2.0"
},
"require-dev": {
- "friendsofphp/php-cs-fixer": "^3.75.0",
- "illuminate/view": "^11.44.7",
- "larastan/larastan": "^3.4.0",
- "laravel-zero/framework": "^11.36.1",
+ "friendsofphp/php-cs-fixer": "^3.82.2",
+ "illuminate/view": "^11.45.1",
+ "larastan/larastan": "^3.5.0",
+ "laravel-zero/framework": "^11.45.0",
"mockery/mockery": "^1.6.12",
"nunomaduro/termwind": "^2.3.1",
"pestphp/pest": "^2.36.0"
@@ -11106,6 +11014,9 @@
],
"type": "project",
"autoload": {
+ "files": [
+ "overrides/Runner/Parallel/ProcessFactory.php"
+ ],
"psr-4": {
"App\\": "app/",
"Database\\Seeders\\": "database/seeders/",
@@ -11135,20 +11046,20 @@
"issues": "https://github.com/laravel/pint/issues",
"source": "https://github.com/laravel/pint"
},
- "time": "2025-05-08T08:38:12+00:00"
+ "time": "2025-07-10T18:09:32+00:00"
},
{
"name": "laravel/telescope",
- "version": "v5.9.0",
+ "version": "v5.10.1",
"source": {
"type": "git",
"url": "https://github.com/laravel/telescope.git",
- "reference": "f729607079c20fc0f82b9e3e7d533248d18dc554"
+ "reference": "22955730e5b283b94486ea844736b01ead2da629"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/telescope/zipball/f729607079c20fc0f82b9e3e7d533248d18dc554",
- "reference": "f729607079c20fc0f82b9e3e7d533248d18dc554",
+ "url": "https://api.github.com/repos/laravel/telescope/zipball/22955730e5b283b94486ea844736b01ead2da629",
+ "reference": "22955730e5b283b94486ea844736b01ead2da629",
"shasum": ""
},
"require": {
@@ -11202,9 +11113,9 @@
],
"support": {
"issues": "https://github.com/laravel/telescope/issues",
- "source": "https://github.com/laravel/telescope/tree/v5.9.0"
+ "source": "https://github.com/laravel/telescope/tree/v5.10.1"
},
- "time": "2025-06-03T13:58:03+00:00"
+ "time": "2025-07-22T13:56:09+00:00"
},
{
"name": "mockery/mockery",
@@ -11291,16 +11202,16 @@
},
{
"name": "myclabs/deep-copy",
- "version": "1.13.1",
+ "version": "1.13.3",
"source": {
"type": "git",
"url": "https://github.com/myclabs/DeepCopy.git",
- "reference": "1720ddd719e16cf0db4eb1c6eca108031636d46c"
+ "reference": "faed855a7b5f4d4637717c2b3863e277116beb36"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/1720ddd719e16cf0db4eb1c6eca108031636d46c",
- "reference": "1720ddd719e16cf0db4eb1c6eca108031636d46c",
+ "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/faed855a7b5f4d4637717c2b3863e277116beb36",
+ "reference": "faed855a7b5f4d4637717c2b3863e277116beb36",
"shasum": ""
},
"require": {
@@ -11339,7 +11250,7 @@
],
"support": {
"issues": "https://github.com/myclabs/DeepCopy/issues",
- "source": "https://github.com/myclabs/DeepCopy/tree/1.13.1"
+ "source": "https://github.com/myclabs/DeepCopy/tree/1.13.3"
},
"funding": [
{
@@ -11347,27 +11258,27 @@
"type": "tidelift"
}
],
- "time": "2025-04-29T12:36:36+00:00"
+ "time": "2025-07-05T12:25:42+00:00"
},
{
"name": "nunomaduro/collision",
- "version": "v8.8.0",
+ "version": "v8.8.2",
"source": {
"type": "git",
"url": "https://github.com/nunomaduro/collision.git",
- "reference": "4cf9f3b47afff38b139fb79ce54fc71799022ce8"
+ "reference": "60207965f9b7b7a4ce15a0f75d57f9dadb105bdb"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nunomaduro/collision/zipball/4cf9f3b47afff38b139fb79ce54fc71799022ce8",
- "reference": "4cf9f3b47afff38b139fb79ce54fc71799022ce8",
+ "url": "https://api.github.com/repos/nunomaduro/collision/zipball/60207965f9b7b7a4ce15a0f75d57f9dadb105bdb",
+ "reference": "60207965f9b7b7a4ce15a0f75d57f9dadb105bdb",
"shasum": ""
},
"require": {
- "filp/whoops": "^2.18.0",
- "nunomaduro/termwind": "^2.3.0",
+ "filp/whoops": "^2.18.1",
+ "nunomaduro/termwind": "^2.3.1",
"php": "^8.2.0",
- "symfony/console": "^7.2.5"
+ "symfony/console": "^7.3.0"
},
"conflict": {
"laravel/framework": "<11.44.2 || >=13.0.0",
@@ -11375,15 +11286,15 @@
},
"require-dev": {
"brianium/paratest": "^7.8.3",
- "larastan/larastan": "^3.2",
- "laravel/framework": "^11.44.2 || ^12.6",
- "laravel/pint": "^1.21.2",
- "laravel/sail": "^1.41.0",
- "laravel/sanctum": "^4.0.8",
+ "larastan/larastan": "^3.4.2",
+ "laravel/framework": "^11.44.2 || ^12.18",
+ "laravel/pint": "^1.22.1",
+ "laravel/sail": "^1.43.1",
+ "laravel/sanctum": "^4.1.1",
"laravel/tinker": "^2.10.1",
- "orchestra/testbench-core": "^9.12.0 || ^10.1",
- "pestphp/pest": "^3.8.0",
- "sebastian/environment": "^7.2.0 || ^8.0"
+ "orchestra/testbench-core": "^9.12.0 || ^10.4",
+ "pestphp/pest": "^3.8.2",
+ "sebastian/environment": "^7.2.1 || ^8.0"
},
"type": "library",
"extra": {
@@ -11446,7 +11357,7 @@
"type": "patreon"
}
],
- "time": "2025-04-03T14:33:09+00:00"
+ "time": "2025-06-25T02:12:12+00:00"
},
{
"name": "pestphp/pest",
@@ -12067,16 +11978,16 @@
},
{
"name": "phpstan/phpdoc-parser",
- "version": "2.1.0",
+ "version": "2.2.0",
"source": {
"type": "git",
"url": "https://github.com/phpstan/phpdoc-parser.git",
- "reference": "9b30d6fd026b2c132b3985ce6b23bec09ab3aa68"
+ "reference": "b9e61a61e39e02dd90944e9115241c7f7e76bfd8"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/9b30d6fd026b2c132b3985ce6b23bec09ab3aa68",
- "reference": "9b30d6fd026b2c132b3985ce6b23bec09ab3aa68",
+ "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/b9e61a61e39e02dd90944e9115241c7f7e76bfd8",
+ "reference": "b9e61a61e39e02dd90944e9115241c7f7e76bfd8",
"shasum": ""
},
"require": {
@@ -12108,22 +12019,22 @@
"description": "PHPDoc parser with support for nullable, intersection and generic types",
"support": {
"issues": "https://github.com/phpstan/phpdoc-parser/issues",
- "source": "https://github.com/phpstan/phpdoc-parser/tree/2.1.0"
+ "source": "https://github.com/phpstan/phpdoc-parser/tree/2.2.0"
},
- "time": "2025-02-19T13:28:12+00:00"
+ "time": "2025-07-13T07:04:09+00:00"
},
{
"name": "phpunit/php-code-coverage",
- "version": "11.0.9",
+ "version": "11.0.10",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/php-code-coverage.git",
- "reference": "14d63fbcca18457e49c6f8bebaa91a87e8e188d7"
+ "reference": "1a800a7446add2d79cc6b3c01c45381810367d76"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/14d63fbcca18457e49c6f8bebaa91a87e8e188d7",
- "reference": "14d63fbcca18457e49c6f8bebaa91a87e8e188d7",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/1a800a7446add2d79cc6b3c01c45381810367d76",
+ "reference": "1a800a7446add2d79cc6b3c01c45381810367d76",
"shasum": ""
},
"require": {
@@ -12180,15 +12091,27 @@
"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.9"
+ "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/show"
},
"funding": [
{
"url": "https://github.com/sebastianbergmann",
"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/phpunit/php-code-coverage",
+ "type": "tidelift"
}
],
- "time": "2025-02-25T13:26:39+00:00"
+ "time": "2025-06-18T08:56:18+00:00"
},
{
"name": "phpunit/php-file-iterator",