diff --git a/app/Conversions/Svg.php b/app/Conversions/Svg.php
index 76d5b3c3..fa208204 100644
--- a/app/Conversions/Svg.php
+++ b/app/Conversions/Svg.php
@@ -13,7 +13,7 @@ class Svg extends ImageGenerator
/**
* Converts SVG to PNG, preserving transparency
*/
- public function convert(string $file, Conversion $conversion = null): string
+ public function convert(string $file, ?Conversion $conversion = null): string
{
$imageFile = pathinfo($file, PATHINFO_DIRNAME) . '/' . pathinfo($file, PATHINFO_FILENAME) . '.png';
@@ -29,7 +29,7 @@ public function convert(string $file, Conversion $conversion = null): string
public function requirementsAreInstalled(): bool
{
- return class_exists(\Imagick::class);
+ return class_exists(Imagick::class);
}
public function supportedExtensions(): Collection
diff --git a/app/Helpers/LdapHelper.php b/app/Helpers/LdapHelper.php
index 827780d3..6fa2756b 100644
--- a/app/Helpers/LdapHelper.php
+++ b/app/Helpers/LdapHelper.php
@@ -113,7 +113,6 @@ protected function flattenUserAttributes($users, $fields)
/**
* Look up and return a local user instance by checking LDAP for that user.
*
- * @param string $display_name The user's display name
* @param string $name The user's name/uid
*
* @return User|boolean
diff --git a/app/Http/Controllers/AppController.php b/app/Http/Controllers/AppController.php
index 3c2bc51d..3d2ff1d7 100644
--- a/app/Http/Controllers/AppController.php
+++ b/app/Http/Controllers/AppController.php
@@ -2,16 +2,15 @@
namespace App\Http\Controllers;
-use Illuminate\Http\Request;
-use Illuminate\Contracts\View\View as ViewContract;
-use Illuminate\View\View;
+use Illuminate\Contracts\View\Factory as ViewFactory;
+use Illuminate\Contracts\View\View;
class AppController extends Controller
{
/**
* Display the App Homepage.
*/
- public function index(): View|ViewContract
+ public function index(): View|ViewFactory
{
return view('home');
}
@@ -19,7 +18,7 @@ public function index(): View|ViewContract
/**
* Display the FAQ page.
*/
- public function faq(): View|ViewContract
+ public function faq(): View|ViewFactory
{
return view('faq');
}
diff --git a/app/Http/Controllers/Auth/LoginController.php b/app/Http/Controllers/Auth/LoginController.php
index bc5ca9c4..3e1da715 100644
--- a/app/Http/Controllers/Auth/LoginController.php
+++ b/app/Http/Controllers/Auth/LoginController.php
@@ -4,8 +4,8 @@
use App\Http\Controllers\Controller;
use Illuminate\Foundation\Auth\AuthenticatesUsers;
-use Illuminate\Contracts\View\View as ViewContract;
-use Illuminate\View\View;
+use Illuminate\Contracts\View\View;
+use Illuminate\Contracts\View\Factory as ViewFactory;
class LoginController extends Controller
{
@@ -52,7 +52,7 @@ public function username()
/**
* Show the login form.
*/
- public function showLoginForm(): View|ViewContract
+ public function showLoginForm(): View|ViewFactory
{
if (!session()->has('url.intended')) {
session(['url.intended' => url()->previous()]);
diff --git a/app/Http/Controllers/LogsController.php b/app/Http/Controllers/LogsController.php
index b3fcbbff..91f39a9a 100644
--- a/app/Http/Controllers/LogsController.php
+++ b/app/Http/Controllers/LogsController.php
@@ -4,8 +4,8 @@
use App\LogEntry;
use Illuminate\Http\Request;
-use Illuminate\Contracts\View\View as ViewContract;
-use Illuminate\View\View;
+use Illuminate\Contracts\View\Factory as ViewFactory;
+use Illuminate\Contracts\View\View;
class LogsController extends Controller
{
@@ -22,7 +22,7 @@ public function __construct()
/**
* Display a listing of the resource.
*/
- public function index(Request $request): View|ViewContract
+ public function index(Request $request): View|ViewFactory
{
return view('logs.index', [
'logs' => LogEntry::with('user')
diff --git a/app/Http/Controllers/ProfileStudentsController.php b/app/Http/Controllers/ProfileStudentsController.php
index 7feba4af..27d471dd 100644
--- a/app/Http/Controllers/ProfileStudentsController.php
+++ b/app/Http/Controllers/ProfileStudentsController.php
@@ -3,9 +3,8 @@
namespace App\Http\Controllers;
use App\Profile;
-use Illuminate\Contracts\View\View as ViewContract;
-use Illuminate\Http\Request;
-use Illuminate\View\View;
+use Illuminate\Contracts\View\Factory as ViewFactory;
+use Illuminate\Contracts\View\View;
class ProfileStudentsController extends Controller
{
@@ -22,7 +21,7 @@ public function __construct()
/**
* Show student applications associated with a profile.
*/
- public function show(Profile $profile): View|ViewContract
+ public function show(Profile $profile): View|ViewFactory
{
return view('students.profile-students', [
'profile' => $profile,
diff --git a/app/Http/Controllers/ProfilesController.php b/app/Http/Controllers/ProfilesController.php
index 64fdd2ba..5e267d00 100644
--- a/app/Http/Controllers/ProfilesController.php
+++ b/app/Http/Controllers/ProfilesController.php
@@ -14,14 +14,14 @@
use App\Http\Requests\ProfileSearchRequest;
use App\Http\Requests\ProfileUpdateRequest;
use App\School;
-use Illuminate\Contracts\View\View as ViewContract;
+use Illuminate\Contracts\View\Factory as ViewFactory;
+use Illuminate\Contracts\View\View;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Collection as EloquentCollection;
use Illuminate\Http\RedirectResponse;
use Illuminate\Http\Response;
use Illuminate\Support\Facades\Cache;
use Illuminate\Support\Facades\DB;
-use Illuminate\View\View;
use Spatie\Browsershot\Browsershot;
class ProfilesController extends Controller
@@ -68,7 +68,7 @@ public function __construct()
/**
* Display a listing of profiles.
*/
- public function index(ProfileSearchRequest $request): View|ViewContract|RedirectResponse
+ public function index(ProfileSearchRequest $request): View|ViewFactory|RedirectResponse
{
$input_search = $request->input('search');
@@ -102,7 +102,7 @@ public function index(ProfileSearchRequest $request): View|ViewContract|Redirect
/**
* Display the home page
*/
- public function home(): View|ViewContract
+ public function home(): View|ViewFactory
{
$random_profile = Cache::tags(['home', 'profiles'])->remember('home-random-profiles', 86400, function() {
return Profile::public()->excludingUnlisted()->inRandomOrder()->limit(2)->get();
@@ -132,7 +132,7 @@ public function home(): View|ViewContract
/**
* Display an admin table of profiles.
*/
- public function table(): View|ViewContract
+ public function table(): View|ViewFactory
{
return view('profiles.table');
}
@@ -140,7 +140,7 @@ public function table(): View|ViewContract
/**
* Show the specified profile.
*/
- public function show(Request $request, Profile $profile): View|ViewContract
+ public function show(Request $request, Profile $profile): View|ViewFactory
{
/** @var User the logged-in user */
$user = Auth::user();
@@ -172,7 +172,7 @@ public function redirectById(int $id): RedirectResponse
/**
* Create a Profile
*/
- public function create(Request $request, User $user, LdapHelperContract $ldap): View|ViewContract|RedirectResponse
+ public function create(Request $request, User $user, LdapHelperContract $ldap): View|ViewFactory|RedirectResponse
{
$existing_profile = $user->profiles()->withTrashed()->first();
@@ -233,7 +233,7 @@ public function create(Request $request, User $user, LdapHelperContract $ldap):
/**
* Show the view for editing a profile section
*/
- public function edit(Profile $profile, string $section): View|ViewContract|RedirectResponse
+ public function edit(Profile $profile, string $section): View|ViewFactory|RedirectResponse
{
//dont manage auto-managed publications
if ($section == 'publications' && $profile->hasOrcidManagedPublications()) {
@@ -294,7 +294,7 @@ public function updateBanner(Profile $profile, ProfileBannerImageRequest $reques
/**
* Confirm deletion of a profile
*/
- public function confirmDelete(Profile $profile): View|ViewContract
+ public function confirmDelete(Profile $profile): View|ViewFactory
{
return view('profiles.delete', ['profile' => $profile]);
}
@@ -302,7 +302,7 @@ public function confirmDelete(Profile $profile): View|ViewContract
/**
* Confirm restoration of a soft-deleted profile
*/
- public function confirmRestore(Request $request, Profile $profile): View|ViewContract|RedirectResponse
+ public function confirmRestore(Request $request, Profile $profile): View|ViewFactory|RedirectResponse
{
// this message is in case someone tries to create an already archived profile
if ($request->user()->cannot('restore', $profile)) {
diff --git a/app/Http/Controllers/SchoolsController.php b/app/Http/Controllers/SchoolsController.php
index 0847d8e2..8fb5a321 100644
--- a/app/Http/Controllers/SchoolsController.php
+++ b/app/Http/Controllers/SchoolsController.php
@@ -4,10 +4,10 @@
use App\Profile;
use App\School;
-use Illuminate\Contracts\View\View as ViewContract;
+use Illuminate\Contracts\View\Factory as ViewFactory;
+use Illuminate\Contracts\View\View;
use Illuminate\Http\RedirectResponse;
use Illuminate\Http\Request;
-use Illuminate\View\View;
class SchoolsController extends Controller
{
@@ -35,7 +35,7 @@ public function __construct()
/**
* Display a list of schools.
*/
- public function index(): View|ViewContract
+ public function index(): View|ViewFactory
{
$schools = School::get();
@@ -45,7 +45,7 @@ public function index(): View|ViewContract
/**
* Show the form for creating a new school.
*/
- public function create(): View|ViewContract
+ public function create(): View|ViewFactory
{
return view('schools.create');
}
@@ -65,7 +65,7 @@ public function store(Request $request): RedirectResponse
/**
* Display all profiles from the specified school.
*/
- public function show(School $school): View|ViewContract
+ public function show(School $school): View|ViewFactory
{
$profiles = Profile::fromSchoolId($school->id)->public()->excludingUnlisted()->paginate(24);
@@ -75,7 +75,7 @@ public function show(School $school): View|ViewContract
/**
* Show the form for editing the specified school.
*/
- public function edit(School $school): View|ViewContract
+ public function edit(School $school): View|ViewFactory
{
return view('schools.edit', compact('school'));
}
diff --git a/app/Http/Controllers/SettingsController.php b/app/Http/Controllers/SettingsController.php
index a6842ca8..e7eed991 100644
--- a/app/Http/Controllers/SettingsController.php
+++ b/app/Http/Controllers/SettingsController.php
@@ -3,10 +3,10 @@
namespace App\Http\Controllers;
use App\Setting;
-use Illuminate\Contracts\View\View as ViewContract;
+use Illuminate\Contracts\View\Factory as ViewFactory;
+use Illuminate\Contracts\View\View;
use Illuminate\Http\RedirectResponse;
use Illuminate\Http\Request;
-use Illuminate\View\View;
use Illuminate\Support\Facades\Cache;
class SettingsController extends Controller
@@ -23,7 +23,7 @@ public function __construct()
/**
* Show the settings for editing.
*/
- public function edit(): View|ViewContract
+ public function edit(): View|ViewFactory
{
return view('settings', [
'settings' => Setting::pluck('value', 'name')->toArray(),
diff --git a/app/Http/Controllers/StudentsController.php b/app/Http/Controllers/StudentsController.php
index 264945e2..a5e188c0 100644
--- a/app/Http/Controllers/StudentsController.php
+++ b/app/Http/Controllers/StudentsController.php
@@ -7,12 +7,11 @@
use App\Student;
use App\StudentData;
use App\User;
-use Illuminate\Contracts\View\View as ViewContract;
+use Illuminate\Contracts\View\Factory as ViewFactory;
+use Illuminate\Contracts\View\View;
use Illuminate\Http\RedirectResponse;
use Illuminate\Http\Request;
-use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Auth;
-use Illuminate\View\View;
class StudentsController extends Controller
{
@@ -35,7 +34,7 @@ public function about()
/**
* Display the list of student research applications.
*/
- public function index(): View|ViewContract
+ public function index(): View|ViewFactory
{
/** @var User */
$user = Auth::user();
@@ -94,7 +93,7 @@ public function store(Request $request): Student|false
/**
* Display the specified student research application.
*/
- public function show(Request $request, Student $student): View|ViewContract
+ public function show(Request $request, Student $student): View|ViewFactory
{
if ($request->user() && $request->user()->userOrDelegatorhasRole('faculty')) {
StudentViewed::dispatch($student);
@@ -114,7 +113,7 @@ public function show(Request $request, Student $student): View|ViewContract
/**
* Show the form for editing the specified student research application.
*/
- public function edit(Student $student): View|ViewContract
+ public function edit(Student $student): View|ViewFactory
{
return view('students.edit', [
'student' => $student,
diff --git a/app/Http/Controllers/TagsController.php b/app/Http/Controllers/TagsController.php
index 24292f41..821819dd 100644
--- a/app/Http/Controllers/TagsController.php
+++ b/app/Http/Controllers/TagsController.php
@@ -2,11 +2,11 @@
namespace App\Http\Controllers;
-use Illuminate\Contracts\View\View as ViewContract;
+use Illuminate\Contracts\View\Factory as ViewFactory;
+use Illuminate\Contracts\View\View;
use Illuminate\Http\RedirectResponse;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Cache;
-use Illuminate\View\View;
use Spatie\Tags\Tag;
use App\Http\Requests\TagsUpdateRequest;
use App\Http\Requests\TagUpdateRequest;
@@ -39,7 +39,7 @@ public function __construct()
/**
* Show the index of all associated tags.
*/
- public function index(): View|ViewContract
+ public function index(): View|ViewFactory
{
$tags = Tag::whereExists(function($query) {
$query->select(\DB::raw(1))->from('taggables')->whereRaw('tags.id = taggables.tag_id');
@@ -57,7 +57,7 @@ public function index(): View|ViewContract
/**
* Show the index table of all associated tags.
*/
- public function table(): View|ViewContract
+ public function table(): View|ViewFactory
{
return view('tags.table');
}
@@ -65,7 +65,7 @@ public function table(): View|ViewContract
/**
* Show the index table of all associated tags.
*/
- public function create(): View|ViewContract
+ public function create(): View|ViewFactory
{
return view('tags.create');
}
diff --git a/app/Http/Controllers/Testing/TestingController.php b/app/Http/Controllers/Testing/TestingController.php
index 967f193e..eef1639a 100644
--- a/app/Http/Controllers/Testing/TestingController.php
+++ b/app/Http/Controllers/Testing/TestingController.php
@@ -8,11 +8,13 @@
use App\Http\Controllers\Controller;
use App\Profile;
use Exception;
-use Illuminate\Contracts\View\View as ViewContract;
+use Illuminate\Contracts\Routing\ResponseFactory;
+use Illuminate\Contracts\View\Factory as ViewFactory;
+use Illuminate\Contracts\View\View;
use Illuminate\Http\RedirectResponse;
use Illuminate\Http\Request;
use Illuminate\Http\Response;
-use Illuminate\View\View;
+use Illuminate\Support\Facades\Auth;
class TestingController extends Controller
{
@@ -49,7 +51,7 @@ public function detachRole(Request $request, string $name): RedirectResponse
/**
* Show a list of possible users to login as
*/
- public function showLoginAsList(): Response
+ public function showLoginAsList(): Response|ResponseFactory
{
$output = "
Log in as a Different User
\n";
$output .= "\n";
@@ -67,7 +69,7 @@ public function showLoginAsList(): Response
*/
public function loginAs(int $id): RedirectResponse
{
- auth()->loginUsingId($id);
+ Auth::loginUsingId($id);
return redirect()->route('profiles.home');
}
@@ -75,7 +77,7 @@ public function loginAs(int $id): RedirectResponse
/**
* Preview an email template
*/
- public function previewEmail(Request $request, string $view): View|ViewContract
+ public function previewEmail(Request $request, string $view): View|ViewFactory
{
$default_params = [];
diff --git a/app/Http/Controllers/UserDelegationsController.php b/app/Http/Controllers/UserDelegationsController.php
index f238678b..5384fd08 100644
--- a/app/Http/Controllers/UserDelegationsController.php
+++ b/app/Http/Controllers/UserDelegationsController.php
@@ -3,9 +3,9 @@
namespace App\Http\Controllers;
use App\User;
-use Illuminate\Contracts\View\View as ViewContract;
+use Illuminate\Contracts\View\Factory as ViewFactory;
+use Illuminate\Contracts\View\View;
use Illuminate\Http\Request;
-use Illuminate\View\View;
class UserDelegationsController extends Controller
{
@@ -24,7 +24,7 @@ public function __construct()
/**
* Display a listing of all delegations.
*/
- public function index(): View|ViewContract
+ public function index(): View|ViewFactory
{
return view('users.delegations.index');
}
@@ -32,7 +32,7 @@ public function index(): View|ViewContract
/**
* Display the specified user's delegations.
*/
- public function show(User $user): View|ViewContract
+ public function show(User $user): View|ViewFactory
{
return view('users.delegations.show', [
'user' => $user,
diff --git a/app/Http/Controllers/UsersController.php b/app/Http/Controllers/UsersController.php
index ef81e8e3..9c2add3c 100644
--- a/app/Http/Controllers/UsersController.php
+++ b/app/Http/Controllers/UsersController.php
@@ -9,12 +9,12 @@
use App\School;
use App\Student;
use App\User;
-use Illuminate\Contracts\View\View as ViewContract;
+use Illuminate\Contracts\View\Factory as ViewFactory;
+use Illuminate\Contracts\View\View;
use Illuminate\Http\RedirectResponse;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Cache;
-use Illuminate\View\View;
class UsersController extends Controller
{
@@ -58,7 +58,7 @@ public function __construct()
/**
* Display a listing of Users.
*/
- public function index(): View|ViewContract
+ public function index(): View|ViewFactory
{
return view('users.index');
}
@@ -66,7 +66,7 @@ public function index(): View|ViewContract
/**
* Show the specified User's info.
*/
- public function show(User $user): View|ViewContract
+ public function show(User $user): View|ViewFactory
{
return view('users.show', [
'user' => $user,
@@ -79,7 +79,7 @@ public function show(User $user): View|ViewContract
/**
* Show the specified User's bookmarks.
*/
- public function showBookmarks(User $user): View|ViewContract
+ public function showBookmarks(User $user): View|ViewFactory
{
return view('users.bookmarks', [
'user' => $user,
@@ -91,7 +91,7 @@ public function showBookmarks(User $user): View|ViewContract
/**
* Show the view to add a new user
*/
- public function create(): View|ViewContract
+ public function create(): View|ViewFactory
{
return view('users.create');
}
@@ -118,7 +118,7 @@ public function store(UserStoreRequest $request, LdapHelperContract $ldap): Redi
/**
* Show the view to edit the specified User
*/
- public function edit(User $user): View|ViewContract
+ public function edit(User $user): View|ViewFactory
{
$roles = Role::all();
$school_editor_role = $roles->firstWhere('name', 'school_profiles_editor');
@@ -160,7 +160,7 @@ public function update(User $user, Request $request): RedirectResponse
/**
* Confirm deletion of the specified user
*/
- public function confirmDelete(User $user): View|ViewContract|RedirectResponse
+ public function confirmDelete(User $user): View|ViewFactory|RedirectResponse
{
/** @var User */
$logged_in_user = Auth::user();
diff --git a/app/Http/Livewire/UserDelegations.php b/app/Http/Livewire/UserDelegations.php
index 657b97b5..052c5019 100644
--- a/app/Http/Livewire/UserDelegations.php
+++ b/app/Http/Livewire/UserDelegations.php
@@ -6,9 +6,9 @@
use App\Http\Livewire\Concerns\ConvertEmptyStringsToNull;
use App\User;
use App\UserDelegation;
-use Illuminate\Contracts\View\View as ViewContract;
+use Illuminate\Contracts\View\Factory as ViewFactory;
+use Illuminate\Contracts\View\View;
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
-use Illuminate\View\View;
use Livewire\Component;
class UserDelegations extends Component
@@ -89,7 +89,7 @@ public function destroy(UserDelegation $delegation): void
$this->emit('alert', "Removed delegation", 'success');
}
- public function render(): View|ViewContract
+ public function render(): View|ViewFactory
{
return view('livewire.user-delegations', [
'delegations' => $this->user->delegations()->with('delegate')->get(),
diff --git a/app/Ldap/Handlers/LdapAttributeHandler.php b/app/Ldap/Handlers/LdapAttributeHandler.php
index c0f2e504..b8e554dc 100644
--- a/app/Ldap/Handlers/LdapAttributeHandler.php
+++ b/app/Ldap/Handlers/LdapAttributeHandler.php
@@ -12,7 +12,7 @@ class LdapAttributeHandler
/**
* Sync things from an Ldap User to a local User.
*
- * @param LdapUser $ldapUser
+ * @param LdapUser $ldap_user
* @param User $user
*/
public function handle(LdapUser $ldap_user, User $user)
diff --git a/app/Policies/SettingPolicy.php b/app/Policies/SettingPolicy.php
index 012d4026..64e76721 100644
--- a/app/Policies/SettingPolicy.php
+++ b/app/Policies/SettingPolicy.php
@@ -13,7 +13,7 @@ class SettingPolicy
/**
* Runs before any other authorization checks
*
- * @param \App\User $user
+ * @param User $user
* @param string $ability
* @return void|bool
*/
@@ -27,7 +27,7 @@ public function before($user, $ability)
/**
* Determine whether the user can view the index.
*
- * @param \App\User $user
+ * @param User $user
* @return mixed
*/
public function viewAny(User $user)
@@ -38,11 +38,11 @@ public function viewAny(User $user)
/**
* Determine whether the user can view the setting.
*
- * @param \App\User $user
- * @param \App\Setting $setting
+ * @param User $user
+ * @param Setting|null $setting
* @return mixed
*/
- public function view(User $user)
+ public function view(User $user, ?Setting $setting = null)
{
return false;
}
@@ -50,7 +50,7 @@ public function view(User $user)
/**
* Determine whether the user can create settings.
*
- * @param \App\User $user
+ * @param User $user
* @return mixed
*/
public function create(User $user)
@@ -61,11 +61,11 @@ public function create(User $user)
/**
* Determine whether the user can update the setting.
*
- * @param \App\User $user
- * @param \App\Setting $setting
+ * @param User $user
+ * @param Setting|null $setting
* @return mixed
*/
- public function update(User $user)
+ public function update(User $user, ?Setting $setting = null)
{
return false;
}
@@ -73,11 +73,11 @@ public function update(User $user)
/**
* Determine whether the user can delete the setting.
*
- * @param \App\User $user
- * @param \App\Setting $setting
+ * @param User $user
+ * @param Setting|null $setting
* @return mixed
*/
- public function delete(User $user)
+ public function delete(User $user, ?Setting $setting = null)
{
return false;
}
diff --git a/app/Policies/TagPolicy.php b/app/Policies/TagPolicy.php
index 3f4ea644..a3d784a0 100644
--- a/app/Policies/TagPolicy.php
+++ b/app/Policies/TagPolicy.php
@@ -13,7 +13,7 @@ class TagPolicy
/**
* Runs before any other authorization checks
*
- * @param \App\User $user
+ * @param User $user
* @param string $ability
* @return void|bool
*/
@@ -27,7 +27,7 @@ public function before($user, $ability)
/**
* Determine whether the user can view the model.
*
- * @param \App\User $user
+ * @param User $user
* @return mixed
*/
public function viewAdminIndex(User $user)
@@ -38,7 +38,7 @@ public function viewAdminIndex(User $user)
/**
* Determine whether the user can create tags.
*
- * @param \App\User $user
+ * @param User $user
* @return mixed
*/
public function create(User $user)
@@ -49,11 +49,11 @@ public function create(User $user)
/**
* Determine whether the user can update the tag.
*
- * @param \App\User $user
- * @param \Spatie\Tags\Tag $tag
+ * @param User $user
+ * @param Tag|null $tag
* @return mixed
*/
- public function update(User $user)
+ public function update(User $user, ?Tag $tag = null)
{
return false;
}
@@ -61,11 +61,11 @@ public function update(User $user)
/**
* Determine whether the user can update the tag.
*
- * @param \App\User $user
- * @param \Spatie\Tags\Tag $tag
+ * @param User $user
+ * @param Tag $tag
* @return mixed
*/
- public function updateTag(User $user)
+ public function updateTag(User $user, ?Tag $tag = null)
{
return false;
}
@@ -73,11 +73,11 @@ public function updateTag(User $user)
/**
* Determine whether the user can delete the tag.
*
- * @param \App\User $user
- * @param \Spatie\Tags\Tag $tag
+ * @param User $user
+ * @param Tag $tag
* @return mixed
*/
- public function delete(User $user)
+ public function delete(User $user, ?Tag $tag = null)
{
return false;
}
diff --git a/app/Policies/UserPolicy.php b/app/Policies/UserPolicy.php
index cc479947..3d476744 100644
--- a/app/Policies/UserPolicy.php
+++ b/app/Policies/UserPolicy.php
@@ -62,7 +62,7 @@ public function view(User $user, User $model)
* Determine whether the user can view the delegator's delegations.
*
* @param \App\User $user
- * @param \App\User $model
+ * @param \App\User $delegator
* @return mixed
*/
public function viewDelegations(User $user, User $delegator)
@@ -74,7 +74,7 @@ public function viewDelegations(User $user, User $delegator)
* Determine whether the user can view the owner's bookmarks.
*
* @param \App\User $user
- * @param \App\User $model
+ * @param \App\User $owner
* @return mixed
*/
public function viewBookmarks(User $user, User $owner)
diff --git a/app/Profile.php b/app/Profile.php
index d8f6f0e7..ecb9fdfc 100644
--- a/app/Profile.php
+++ b/app/Profile.php
@@ -10,18 +10,22 @@
use Illuminate\Database\Eloquent\Model;
use OwenIt\Auditing\Auditable as HasAudits;
use OwenIt\Auditing\Contracts\Auditable;
-use Spatie\Image\Manipulations;
+use Spatie\Image\Enums\CropPosition;
use Spatie\MediaLibrary\HasMedia;
use Spatie\MediaLibrary\InteractsWithMedia;
use Spatie\MediaLibrary\MediaCollections\Models\Media;
use Spatie\Tags\HasTags;
use GuzzleHttp\Client;
+use Illuminate\Contracts\Routing\UrlGenerator;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Builder;
+use Illuminate\Database\Query\Builder as QueryBuilder;
use Illuminate\Database\Eloquent\SoftDeletes;
use Illuminate\Support\Facades\Cache;
/**
+ * @mixin Builder
+ * @mixin QueryBuilder
* @method public()
* @method private()
* @method withApiData(array|string|null $sections)
@@ -37,6 +41,7 @@ class Profile extends Model implements HasMedia, Auditable
{
use HasAudits;
use HasFactory;
+ /** @use InteractsWithMedia */
use InteractsWithMedia;
use HasTags;
use SoftDeletes;
@@ -351,23 +356,23 @@ public function loadApiData()
*
* @param Media|null $media
*/
- public function registerMediaConversions(Media $media = null): void
+ public function registerMediaConversions(?Media $media = null): void
{
- $this->registerImageThumbnails($media, 'thumb', 150);
- $this->registerImageThumbnails($media, 'medium', 450);
- $this->registerImageThumbnails($media, 'large', 1800, 1200, '*');
+ $this->registerImageThumbnails('thumb', 150);
+ $this->registerImageThumbnails('medium', 450);
+ $this->registerImageThumbnails('large', 1800, 1200, '*');
}
/**
* Registers image thumbnails.
*
- * @param Media|null $media
* @param string $name Name of the thumbnail
- * @param int $size Max dimension in pixels
+ * @param int $width Max width dimension in pixels
+ * @param int $height Max height dimension in pixels
* @param string $collection Name of the collection for the thumbnails
* @return void
*/
- protected function registerImageThumbnails(Media $media = null, $name, $width, $height = null, $collection = 'images'): void
+ protected function registerImageThumbnails(string $name, int $width, ?int $height = null, $collection = 'images'): void
{
if(!$height) {
$height = $width;
@@ -376,7 +381,7 @@ protected function registerImageThumbnails(Media $media = null, $name, $width, $
$this->addMediaConversion($name)
->width($width)
->height($height)
- ->crop(Manipulations::CROP_TOP, $width, $height)
+ ->crop($width, $height, CropPosition::Top)
->performOnCollections($collection);
}
@@ -625,7 +630,7 @@ public function getNameAttribute()
/**
* Get the full image URL. ($this->full_image_url)
*
- * @return string
+ * @return UrlGenerator|string
*/
public function getFullImageUrlAttribute()
{
@@ -635,7 +640,7 @@ public function getFullImageUrlAttribute()
/**
* Get the full image URL. ($this->large_image_url)
*
- * @return string
+ * @return UrlGenerator|string
*/
public function getLargeImageUrlAttribute()
{
@@ -645,7 +650,7 @@ public function getLargeImageUrlAttribute()
/**
* Get the image URL. ($this->image_url)
*
- * @return string
+ * @return UrlGenerator|string
*/
public function getImageUrlAttribute()
{
@@ -655,7 +660,7 @@ public function getImageUrlAttribute()
/**
* Get the image thumbnail URL. ($this->image_thumb_url)
*
- * @return string
+ * @return UrlGenerator|string
*/
public function getImageThumbUrlAttribute()
{
@@ -665,7 +670,7 @@ public function getImageThumbUrlAttribute()
/**
* Get the banner image thumbnail. ($this->banner_url)
*
- * @return string
+ * @return UrlGenerator|string
*/
public function getBannerUrlAttribute()
{
diff --git a/app/ProfileData.php b/app/ProfileData.php
index 9685d6b7..f5f2ac24 100644
--- a/app/ProfileData.php
+++ b/app/ProfileData.php
@@ -3,6 +3,7 @@
namespace App;
use App\Profile;
+use Illuminate\Contracts\Routing\UrlGenerator;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Arr;
@@ -16,6 +17,7 @@ class ProfileData extends Model implements HasMedia, Auditable
{
use HasFactory;
use HasAudits;
+ /** @use InteractsWithMedia */
use InteractsWithMedia;
/** @var string The database table used by the model */
@@ -55,22 +57,21 @@ public static function apiAttributes()
*
* @param Media|null $media
*/
- public function registerMediaConversions(Media $media = null): void
+ public function registerMediaConversions(?Media $media = null): void
{
- $this->registerImageThumbnails($media, 'thumb', 150);
- $this->registerImageThumbnails($media, 'medium', 350);
+ $this->registerImageThumbnails('thumb', 150);
+ $this->registerImageThumbnails('medium', 350);
}
/**
* Registers image thumbnails.
*
- * @param Media|null $media
* @param string $name Name of the thumbnail
* @param int $size Max dimension in pixels
* @param string $collection Name of the collection for the thumbnails
* @return void
*/
- protected function registerImageThumbnails(Media $media = null, $name, $size, $collection = 'images'): void
+ protected function registerImageThumbnails($name, $size, $collection = 'images'): void
{
$this->addMediaConversion($name)
->width($size)
@@ -184,7 +185,7 @@ public function getImageAttribute()
/**
* Get the image URL. ($this->image_url)
*
- * @return string
+ * @return UrlGenerator|string
*/
public function getImageUrlAttribute()
{
diff --git a/app/Setting.php b/app/Setting.php
index 2f4784f9..c4fc7d56 100644
--- a/app/Setting.php
+++ b/app/Setting.php
@@ -3,13 +3,14 @@
namespace App;
use Illuminate\Database\Eloquent\Model;
-use Spatie\Image\Manipulations;
+use Spatie\Image\Enums\CropPosition;
use Spatie\MediaLibrary\HasMedia;
use Spatie\MediaLibrary\InteractsWithMedia;
use Spatie\MediaLibrary\MediaCollections\Models\Media;
class Setting extends Model implements HasMedia
{
+ /** @use InteractsWithMedia */
use InteractsWithMedia;
/** @var array The attributes that are mass-assignable */
@@ -33,22 +34,22 @@ public function registerMediaCollections(): void
*
* @param Media|null $media
*/
- public function registerMediaConversions(Media $media = null): void
+ public function registerMediaConversions(?Media $media = null): void
{
- $this->registerImageThumbnails($media, 'thumb', 150);
- $this->registerImageThumbnails($media, 'medium', 450);
- $this->registerImageThumbnails($media, 'large', 1800, 1200);
+ $this->registerImageThumbnails('thumb', 150);
+ $this->registerImageThumbnails('medium', 450);
+ $this->registerImageThumbnails('large', 1800, 1200);
}
/**
* Registers image thumbnails.
*
- * @param Media|null $media
* @param string $name Name of the thumbnail
- * @param int $size Max dimension in pixels
+ * @param int $width Max width dimension in pixels
+ * @param int $height Max height dimension in pixels
* @return void
*/
- protected function registerImageThumbnails(Media $media = null, $name, $width, $height = null): void
+ protected function registerImageThumbnails(string $name, int $width, ?int $height = null): void
{
if (!$height) {
$height = $width;
@@ -57,8 +58,8 @@ protected function registerImageThumbnails(Media $media = null, $name, $width, $
$this->addMediaConversion($name)
->width($width)
->height($height)
- ->crop(Manipulations::CROP_TOP, $width, $height)
- ->format(Manipulations::FORMAT_PNG)
+ ->crop($width, $height, CropPosition::Top)
+ ->format('png')
->performOnCollections('logo');
}
diff --git a/app/User.php b/app/User.php
index 311c85d9..58d4b912 100644
--- a/app/User.php
+++ b/app/User.php
@@ -391,7 +391,7 @@ public function delegates()
{
return $this->belongsToMany('App\User', 'user_delegations', 'delegator_user_id', 'delegate_user_id')
->using(UserDelegation::class)
- ->withPivot('starting', 'until', 'gets_reminders')
+ ->withPivot(['starting', 'until', 'gets_reminders'])
->withTimestamps();
}
@@ -440,7 +440,7 @@ public function delegators()
{
return $this->belongsToMany('App\User', 'user_delegations', 'delegate_user_id', 'delegator_user_id')
->using(UserDelegation::class)
- ->withPivot('starting', 'until', 'gets_reminders')
+ ->withPivot(['starting', 'until', 'gets_reminders'])
->withTimestamps();
}
@@ -472,7 +472,7 @@ public function currentReminderDelegators()
/**
* Additional roles currently delegated to the user.
*
- * @return \Illuminate\Database\Query\Builder
+ * @return \Illuminate\Database\Eloquent\Builder
*/
public function currentDelegatedRoles()
{
diff --git a/composer.json b/composer.json
index cbffc480..7db26699 100644
--- a/composer.json
+++ b/composer.json
@@ -20,7 +20,7 @@
"sentry/sentry-laravel": "^4.15.0",
"spatie/browsershot": "^5.1.0",
"spatie/laravel-backup": "^8.1",
- "spatie/laravel-medialibrary": "^10.3.6",
+ "spatie/laravel-medialibrary": "^11.23.1",
"spatie/laravel-tags": "^4.3.2",
"stevebauman/purify": "^5.1.1"
},
diff --git a/composer.lock b/composer.lock
index a690b868..a67ece7b 100644
--- a/composer.lock
+++ b/composer.lock
@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
- "content-hash": "8ff5298aa8683b4eae7f0de259ddc9c2",
+ "content-hash": "9fdbdc552d45f04ff380c62d5a8f0e53",
"packages": [
{
"name": "adldap2/adldap2",
@@ -187,16 +187,16 @@
},
{
"name": "aws/aws-sdk-php",
- "version": "3.360.0",
+ "version": "3.388.0",
"source": {
"type": "git",
"url": "https://github.com/aws/aws-sdk-php.git",
- "reference": "a21055795be59f3d7c5ca6e4d52a80930dcf8c20"
+ "reference": "6dd9a0674641ef7d302a50cc8f275eb443182dc9"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/a21055795be59f3d7c5ca6e4d52a80930dcf8c20",
- "reference": "a21055795be59f3d7c5ca6e4d52a80930dcf8c20",
+ "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/6dd9a0674641ef7d302a50cc8f275eb443182dc9",
+ "reference": "6dd9a0674641ef7d302a50cc8f275eb443182dc9",
"shasum": ""
},
"require": {
@@ -207,26 +207,25 @@
"guzzlehttp/guzzle": "^7.4.5",
"guzzlehttp/promises": "^2.0",
"guzzlehttp/psr7": "^2.4.5",
- "mtdowling/jmespath.php": "^2.8.0",
+ "mtdowling/jmespath.php": "^2.9.1",
"php": ">=8.1",
- "psr/http-message": "^1.0 || ^2.0"
+ "psr/http-message": "^1.0 || ^2.0",
+ "symfony/filesystem": "^v5.4.45 || ^v6.4.3 || ^v7.1.0 || ^v8.0.0"
},
"require-dev": {
"andrewsville/php-token-reflection": "^1.4",
"aws/aws-php-sns-message-validator": "~1.0",
"behat/behat": "~3.0",
"composer/composer": "^2.7.8",
- "dms/phpunit-arraysubset-asserts": "^0.4.0",
+ "dms/phpunit-arraysubset-asserts": "^v0.5.0",
"doctrine/cache": "~1.4",
"ext-dom": "*",
"ext-openssl": "*",
- "ext-pcntl": "*",
"ext-sockets": "*",
- "phpunit/phpunit": "^5.6.3 || ^8.5 || ^9.5",
+ "phpunit/phpunit": "^10.0",
"psr/cache": "^2.0 || ^3.0",
"psr/simple-cache": "^2.0 || ^3.0",
"sebastian/comparator": "^1.2.3 || ^4.0 || ^5.0",
- "symfony/filesystem": "^v6.4.0 || ^v7.1.0",
"yoast/phpunit-polyfills": "^2.0"
},
"suggest": {
@@ -234,6 +233,7 @@
"doctrine/cache": "To use the DoctrineCacheAdapter",
"ext-curl": "To send requests using cURL",
"ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
+ "ext-pcntl": "To use client-side monitoring",
"ext-sockets": "To use client-side monitoring"
},
"type": "library",
@@ -260,11 +260,11 @@
"authors": [
{
"name": "Amazon Web Services",
- "homepage": "http://aws.amazon.com"
+ "homepage": "https://aws.amazon.com"
}
],
"description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
- "homepage": "http://aws.amazon.com/sdkforphp",
+ "homepage": "https://aws.amazon.com/sdk-for-php",
"keywords": [
"amazon",
"aws",
@@ -278,9 +278,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.360.0"
+ "source": "https://github.com/aws/aws-sdk-php/tree/3.388.0"
},
- "time": "2025-11-17T19:46:19+00:00"
+ "time": "2026-07-07T18:11:48+00:00"
},
{
"name": "brick/math",
@@ -411,6 +411,83 @@
],
"time": "2023-12-11T17:09:12+00:00"
},
+ {
+ "name": "composer/semver",
+ "version": "3.4.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/composer/semver.git",
+ "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/composer/semver/zipball/198166618906cb2de69b95d7d47e5fa8aa1b2b95",
+ "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^5.3.2 || ^7.0 || ^8.0"
+ },
+ "require-dev": {
+ "phpstan/phpstan": "^1.11",
+ "symfony/phpunit-bridge": "^3 || ^7"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "3.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Composer\\Semver\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nils Adermann",
+ "email": "naderman@naderman.de",
+ "homepage": "http://www.naderman.de"
+ },
+ {
+ "name": "Jordi Boggiano",
+ "email": "j.boggiano@seld.be",
+ "homepage": "http://seld.be"
+ },
+ {
+ "name": "Rob Bast",
+ "email": "rob.bast@gmail.com",
+ "homepage": "http://robbast.nl"
+ }
+ ],
+ "description": "Semver library that offers utilities, version constraint parsing and validation.",
+ "keywords": [
+ "semantic",
+ "semver",
+ "validation",
+ "versioning"
+ ],
+ "support": {
+ "irc": "ircs://irc.libera.chat:6697/composer",
+ "issues": "https://github.com/composer/semver/issues",
+ "source": "https://github.com/composer/semver/tree/3.4.4"
+ },
+ "funding": [
+ {
+ "url": "https://packagist.com",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/composer",
+ "type": "github"
+ }
+ ],
+ "time": "2025-08-20T19:15:30+00:00"
+ },
{
"name": "dflydev/dot-access-data",
"version": "v3.0.3",
@@ -488,16 +565,16 @@
},
{
"name": "doctrine/dbal",
- "version": "3.10.3",
+ "version": "3.10.5",
"source": {
"type": "git",
"url": "https://github.com/doctrine/dbal.git",
- "reference": "65edaca19a752730f290ec2fb89d593cb40afb43"
+ "reference": "95d84866bf3c04b2ddca1df7c049714660959aef"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/dbal/zipball/65edaca19a752730f290ec2fb89d593cb40afb43",
- "reference": "65edaca19a752730f290ec2fb89d593cb40afb43",
+ "url": "https://api.github.com/repos/doctrine/dbal/zipball/95d84866bf3c04b2ddca1df7c049714660959aef",
+ "reference": "95d84866bf3c04b2ddca1df7c049714660959aef",
"shasum": ""
},
"require": {
@@ -518,11 +595,11 @@
"jetbrains/phpstorm-stubs": "2023.1",
"phpstan/phpstan": "2.1.30",
"phpstan/phpstan-strict-rules": "^2",
- "phpunit/phpunit": "9.6.29",
- "slevomat/coding-standard": "8.24.0",
- "squizlabs/php_codesniffer": "4.0.0",
- "symfony/cache": "^5.4|^6.0|^7.0",
- "symfony/console": "^4.4|^5.4|^6.0|^7.0"
+ "phpunit/phpunit": "9.6.34",
+ "slevomat/coding-standard": "8.27.1",
+ "squizlabs/php_codesniffer": "4.0.1",
+ "symfony/cache": "^5.4|^6.0|^7.0|^8.0",
+ "symfony/console": "^4.4|^5.4|^6.0|^7.0|^8.0"
},
"suggest": {
"symfony/console": "For helpful console commands such as SQL execution and import of files."
@@ -582,7 +659,7 @@
],
"support": {
"issues": "https://github.com/doctrine/dbal/issues",
- "source": "https://github.com/doctrine/dbal/tree/3.10.3"
+ "source": "https://github.com/doctrine/dbal/tree/3.10.5"
},
"funding": [
{
@@ -598,33 +675,33 @@
"type": "tidelift"
}
],
- "time": "2025-10-09T09:05:12+00:00"
+ "time": "2026-02-24T08:03:57+00:00"
},
{
"name": "doctrine/deprecations",
- "version": "1.1.5",
+ "version": "1.1.6",
"source": {
"type": "git",
"url": "https://github.com/doctrine/deprecations.git",
- "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38"
+ "reference": "d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/deprecations/zipball/459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
- "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
+ "url": "https://api.github.com/repos/doctrine/deprecations/zipball/d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca",
+ "reference": "d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca",
"shasum": ""
},
"require": {
"php": "^7.1 || ^8.0"
},
"conflict": {
- "phpunit/phpunit": "<=7.5 || >=13"
+ "phpunit/phpunit": "<=7.5 || >=14"
},
"require-dev": {
- "doctrine/coding-standard": "^9 || ^12 || ^13",
- "phpstan/phpstan": "1.4.10 || 2.1.11",
+ "doctrine/coding-standard": "^9 || ^12 || ^14",
+ "phpstan/phpstan": "1.4.10 || 2.1.30",
"phpstan/phpstan-phpunit": "^1.0 || ^2",
- "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12",
+ "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12.4 || ^13.0",
"psr/log": "^1 || ^2 || ^3"
},
"suggest": {
@@ -644,22 +721,22 @@
"homepage": "https://www.doctrine-project.org/",
"support": {
"issues": "https://github.com/doctrine/deprecations/issues",
- "source": "https://github.com/doctrine/deprecations/tree/1.1.5"
+ "source": "https://github.com/doctrine/deprecations/tree/1.1.6"
},
- "time": "2025-04-07T20:06:18+00:00"
+ "time": "2026-02-07T07:09:04+00:00"
},
{
"name": "doctrine/event-manager",
- "version": "2.0.1",
+ "version": "2.1.1",
"source": {
"type": "git",
"url": "https://github.com/doctrine/event-manager.git",
- "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e"
+ "reference": "dda33921b198841ca8dbad2eaa5d4d34769d18cf"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e",
- "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e",
+ "url": "https://api.github.com/repos/doctrine/event-manager/zipball/dda33921b198841ca8dbad2eaa5d4d34769d18cf",
+ "reference": "dda33921b198841ca8dbad2eaa5d4d34769d18cf",
"shasum": ""
},
"require": {
@@ -669,10 +746,10 @@
"doctrine/common": "<2.9"
},
"require-dev": {
- "doctrine/coding-standard": "^12",
- "phpstan/phpstan": "^1.8.8",
- "phpunit/phpunit": "^10.5",
- "vimeo/psalm": "^5.24"
+ "doctrine/coding-standard": "^14",
+ "phpdocumentor/guides-cli": "^1.4",
+ "phpstan/phpstan": "^2.1.32",
+ "phpunit/phpunit": "^10.5.58"
},
"type": "library",
"autoload": {
@@ -721,7 +798,7 @@
],
"support": {
"issues": "https://github.com/doctrine/event-manager/issues",
- "source": "https://github.com/doctrine/event-manager/tree/2.0.1"
+ "source": "https://github.com/doctrine/event-manager/tree/2.1.1"
},
"funding": [
{
@@ -737,7 +814,7 @@
"type": "tidelift"
}
],
- "time": "2024-05-22T20:47:39+00:00"
+ "time": "2026-01-29T07:11:08+00:00"
},
{
"name": "doctrine/inflector",
@@ -1100,31 +1177,31 @@
},
{
"name": "fruitcake/php-cors",
- "version": "v1.3.0",
+ "version": "v1.4.0",
"source": {
"type": "git",
"url": "https://github.com/fruitcake/php-cors.git",
- "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b"
+ "reference": "38aaa6c3fd4c157ffe2a4d10aa8b9b16ba8de379"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b",
- "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b",
+ "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/38aaa6c3fd4c157ffe2a4d10aa8b9b16ba8de379",
+ "reference": "38aaa6c3fd4c157ffe2a4d10aa8b9b16ba8de379",
"shasum": ""
},
"require": {
- "php": "^7.4|^8.0",
- "symfony/http-foundation": "^4.4|^5.4|^6|^7"
+ "php": "^8.1",
+ "symfony/http-foundation": "^5.4|^6.4|^7.3|^8"
},
"require-dev": {
- "phpstan/phpstan": "^1.4",
+ "phpstan/phpstan": "^2",
"phpunit/phpunit": "^9",
- "squizlabs/php_codesniffer": "^3.5"
+ "squizlabs/php_codesniffer": "^4"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.2-dev"
+ "dev-master": "1.3-dev"
}
},
"autoload": {
@@ -1155,7 +1232,7 @@
],
"support": {
"issues": "https://github.com/fruitcake/php-cors/issues",
- "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0"
+ "source": "https://github.com/fruitcake/php-cors/tree/v1.4.0"
},
"funding": [
{
@@ -1167,28 +1244,28 @@
"type": "github"
}
],
- "time": "2023-10-12T05:21:21+00:00"
+ "time": "2025-12-03T09:33:47+00:00"
},
{
"name": "graham-campbell/result-type",
- "version": "v1.1.3",
+ "version": "v1.1.4",
"source": {
"type": "git",
"url": "https://github.com/GrahamCampbell/Result-Type.git",
- "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
+ "reference": "e01f4a821471308ba86aa202fed6698b6b695e3b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
- "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
+ "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/e01f4a821471308ba86aa202fed6698b6b695e3b",
+ "reference": "e01f4a821471308ba86aa202fed6698b6b695e3b",
"shasum": ""
},
"require": {
"php": "^7.2.5 || ^8.0",
- "phpoption/phpoption": "^1.9.3"
+ "phpoption/phpoption": "^1.9.5"
},
"require-dev": {
- "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
+ "phpunit/phpunit": "^8.5.41 || ^9.6.22 || ^10.5.45 || ^11.5.7"
},
"type": "library",
"autoload": {
@@ -1217,7 +1294,7 @@
],
"support": {
"issues": "https://github.com/GrahamCampbell/Result-Type/issues",
- "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
+ "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.4"
},
"funding": [
{
@@ -1229,29 +1306,30 @@
"type": "tidelift"
}
],
- "time": "2024-07-20T21:45:45+00:00"
+ "time": "2025-12-27T19:43:20+00:00"
},
{
"name": "guzzlehttp/guzzle",
- "version": "7.10.0",
+ "version": "7.13.2",
"source": {
"type": "git",
"url": "https://github.com/guzzle/guzzle.git",
- "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4"
+ "reference": "bcd989ad36c92d42a3715379af91f2defee5b8dd"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
- "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
+ "url": "https://api.github.com/repos/guzzle/guzzle/zipball/bcd989ad36c92d42a3715379af91f2defee5b8dd",
+ "reference": "bcd989ad36c92d42a3715379af91f2defee5b8dd",
"shasum": ""
},
"require": {
"ext-json": "*",
- "guzzlehttp/promises": "^2.3",
- "guzzlehttp/psr7": "^2.8",
+ "guzzlehttp/promises": "^2.5",
+ "guzzlehttp/psr7": "^2.12.3",
"php": "^7.2.5 || ^8.0",
"psr/http-client": "^1.0",
- "symfony/deprecation-contracts": "^2.2 || ^3.0"
+ "symfony/deprecation-contracts": "^2.5 || ^3.0",
+ "symfony/polyfill-php80": "^1.25"
},
"provide": {
"psr/http-client-implementation": "1.0"
@@ -1259,9 +1337,10 @@
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8.2",
"ext-curl": "*",
- "guzzle/client-integration-tests": "3.0.2",
+ "guzzle/client-integration-tests": "3.0.3",
+ "guzzlehttp/test-server": "^0.6",
"php-http/message-factory": "^1.1",
- "phpunit/phpunit": "^8.5.39 || ^9.6.20",
+ "phpunit/phpunit": "^8.5.52 || ^9.6.34",
"psr/log": "^1.1 || ^2.0 || ^3.0"
},
"suggest": {
@@ -1339,7 +1418,7 @@
],
"support": {
"issues": "https://github.com/guzzle/guzzle/issues",
- "source": "https://github.com/guzzle/guzzle/tree/7.10.0"
+ "source": "https://github.com/guzzle/guzzle/tree/7.13.2"
},
"funding": [
{
@@ -1355,28 +1434,29 @@
"type": "tidelift"
}
],
- "time": "2025-08-23T22:36:01+00:00"
+ "time": "2026-07-05T19:00:11+00:00"
},
{
"name": "guzzlehttp/promises",
- "version": "2.3.0",
+ "version": "2.5.0",
"source": {
"type": "git",
"url": "https://github.com/guzzle/promises.git",
- "reference": "481557b130ef3790cf82b713667b43030dc9c957"
+ "reference": "4360e982f87f5f258bf872d094647791db2f4c8e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957",
- "reference": "481557b130ef3790cf82b713667b43030dc9c957",
+ "url": "https://api.github.com/repos/guzzle/promises/zipball/4360e982f87f5f258bf872d094647791db2f4c8e",
+ "reference": "4360e982f87f5f258bf872d094647791db2f4c8e",
"shasum": ""
},
"require": {
- "php": "^7.2.5 || ^8.0"
+ "php": "^7.2.5 || ^8.0",
+ "symfony/deprecation-contracts": "^2.5 || ^3.0"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8.2",
- "phpunit/phpunit": "^8.5.44 || ^9.6.25"
+ "phpunit/phpunit": "^8.5.52 || ^9.6.34"
},
"type": "library",
"extra": {
@@ -1422,7 +1502,7 @@
],
"support": {
"issues": "https://github.com/guzzle/promises/issues",
- "source": "https://github.com/guzzle/promises/tree/2.3.0"
+ "source": "https://github.com/guzzle/promises/tree/2.5.0"
},
"funding": [
{
@@ -1438,27 +1518,29 @@
"type": "tidelift"
}
],
- "time": "2025-08-22T14:34:08+00:00"
+ "time": "2026-06-02T12:23:43+00:00"
},
{
"name": "guzzlehttp/psr7",
- "version": "2.8.0",
+ "version": "2.12.3",
"source": {
"type": "git",
"url": "https://github.com/guzzle/psr7.git",
- "reference": "21dc724a0583619cd1652f673303492272778051"
+ "reference": "7ec62dc3f44aa218487dbed81a9bf9bc647be55d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/guzzle/psr7/zipball/21dc724a0583619cd1652f673303492272778051",
- "reference": "21dc724a0583619cd1652f673303492272778051",
+ "url": "https://api.github.com/repos/guzzle/psr7/zipball/7ec62dc3f44aa218487dbed81a9bf9bc647be55d",
+ "reference": "7ec62dc3f44aa218487dbed81a9bf9bc647be55d",
"shasum": ""
},
"require": {
"php": "^7.2.5 || ^8.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.1 || ^2.0",
- "ralouphie/getallheaders": "^3.0"
+ "ralouphie/getallheaders": "^3.0",
+ "symfony/deprecation-contracts": "^2.5 || ^3.0",
+ "symfony/polyfill-php80": "^1.25"
},
"provide": {
"psr/http-factory-implementation": "1.0",
@@ -1466,8 +1548,9 @@
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8.2",
- "http-interop/http-factory-tests": "0.9.0",
- "phpunit/phpunit": "^8.5.44 || ^9.6.25"
+ "http-interop/http-factory-tests": "1.1.0",
+ "jshttp/mime-db": "1.54.0.1",
+ "phpunit/phpunit": "^8.5.52 || ^9.6.34"
},
"suggest": {
"laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
@@ -1538,7 +1621,7 @@
],
"support": {
"issues": "https://github.com/guzzle/psr7/issues",
- "source": "https://github.com/guzzle/psr7/tree/2.8.0"
+ "source": "https://github.com/guzzle/psr7/tree/2.12.3"
},
"funding": [
{
@@ -1554,29 +1637,29 @@
"type": "tidelift"
}
],
- "time": "2025-08-23T21:21:41+00:00"
+ "time": "2026-06-23T15:21:08+00:00"
},
{
"name": "guzzlehttp/uri-template",
- "version": "v1.0.5",
+ "version": "v1.0.8",
"source": {
"type": "git",
"url": "https://github.com/guzzle/uri-template.git",
- "reference": "4f4bbd4e7172148801e76e3decc1e559bdee34e1"
+ "reference": "9c19128923b05a5d7355e5d2318d7808b7e33bbd"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/guzzle/uri-template/zipball/4f4bbd4e7172148801e76e3decc1e559bdee34e1",
- "reference": "4f4bbd4e7172148801e76e3decc1e559bdee34e1",
+ "url": "https://api.github.com/repos/guzzle/uri-template/zipball/9c19128923b05a5d7355e5d2318d7808b7e33bbd",
+ "reference": "9c19128923b05a5d7355e5d2318d7808b7e33bbd",
"shasum": ""
},
"require": {
"php": "^7.2.5 || ^8.0",
- "symfony/polyfill-php80": "^1.24"
+ "symfony/polyfill-php80": "^1.25"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8.2",
- "phpunit/phpunit": "^8.5.44 || ^9.6.25",
+ "phpunit/phpunit": "^8.5.52 || ^9.6.34",
"uri-template/tests": "1.0.0"
},
"type": "library",
@@ -1624,7 +1707,7 @@
],
"support": {
"issues": "https://github.com/guzzle/uri-template/issues",
- "source": "https://github.com/guzzle/uri-template/tree/v1.0.5"
+ "source": "https://github.com/guzzle/uri-template/tree/v1.0.8"
},
"funding": [
{
@@ -1640,91 +1723,7 @@
"type": "tidelift"
}
],
- "time": "2025-08-22T14:27:06+00:00"
- },
- {
- "name": "intervention/image",
- "version": "2.7.2",
- "source": {
- "type": "git",
- "url": "https://github.com/Intervention/image.git",
- "reference": "04be355f8d6734c826045d02a1079ad658322dad"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/Intervention/image/zipball/04be355f8d6734c826045d02a1079ad658322dad",
- "reference": "04be355f8d6734c826045d02a1079ad658322dad",
- "shasum": ""
- },
- "require": {
- "ext-fileinfo": "*",
- "guzzlehttp/psr7": "~1.1 || ^2.0",
- "php": ">=5.4.0"
- },
- "require-dev": {
- "mockery/mockery": "~0.9.2",
- "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
- },
- "suggest": {
- "ext-gd": "to use GD library based image processing.",
- "ext-imagick": "to use Imagick based image processing.",
- "intervention/imagecache": "Caching extension for the Intervention Image library"
- },
- "type": "library",
- "extra": {
- "laravel": {
- "aliases": {
- "Image": "Intervention\\Image\\Facades\\Image"
- },
- "providers": [
- "Intervention\\Image\\ImageServiceProvider"
- ]
- },
- "branch-alias": {
- "dev-master": "2.4-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Intervention\\Image\\": "src/Intervention/Image"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Oliver Vogel",
- "email": "oliver@intervention.io",
- "homepage": "https://intervention.io/"
- }
- ],
- "description": "Image handling and manipulation library with support for Laravel integration",
- "homepage": "http://image.intervention.io/",
- "keywords": [
- "gd",
- "image",
- "imagick",
- "laravel",
- "thumbnail",
- "watermark"
- ],
- "support": {
- "issues": "https://github.com/Intervention/image/issues",
- "source": "https://github.com/Intervention/image/tree/2.7.2"
- },
- "funding": [
- {
- "url": "https://paypal.me/interventionio",
- "type": "custom"
- },
- {
- "url": "https://github.com/Intervention",
- "type": "github"
- }
- ],
- "time": "2022-05-21T17:30:32+00:00"
+ "time": "2026-06-23T13:02:23+00:00"
},
{
"name": "jean85/pretty-package-versions",
@@ -1788,16 +1787,16 @@
},
{
"name": "laravel/framework",
- "version": "v10.49.1",
+ "version": "10.50.2",
"source": {
"type": "git",
"url": "https://github.com/laravel/framework.git",
- "reference": "f857267b80789327cd3e6b077bcf6df5846cf71b"
+ "reference": "3ff39b7a9b83e633383ec9b019827ed54b6d38bc"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/framework/zipball/f857267b80789327cd3e6b077bcf6df5846cf71b",
- "reference": "f857267b80789327cd3e6b077bcf6df5846cf71b",
+ "url": "https://api.github.com/repos/laravel/framework/zipball/3ff39b7a9b83e633383ec9b019827ed54b6d38bc",
+ "reference": "3ff39b7a9b83e633383ec9b019827ed54b6d38bc",
"shasum": ""
},
"require": {
@@ -1992,7 +1991,7 @@
"issues": "https://github.com/laravel/framework/issues",
"source": "https://github.com/laravel/framework"
},
- "time": "2025-09-30T14:56:54+00:00"
+ "time": "2026-02-15T14:12:07+00:00"
},
{
"name": "laravel/prompts",
@@ -2115,16 +2114,16 @@
},
{
"name": "laravel/tinker",
- "version": "v2.10.1",
+ "version": "v2.11.1",
"source": {
"type": "git",
"url": "https://github.com/laravel/tinker.git",
- "reference": "22177cc71807d38f2810c6204d8f7183d88a57d3"
+ "reference": "c9f80cc835649b5c1842898fb043f8cc098dd741"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/tinker/zipball/22177cc71807d38f2810c6204d8f7183d88a57d3",
- "reference": "22177cc71807d38f2810c6204d8f7183d88a57d3",
+ "url": "https://api.github.com/repos/laravel/tinker/zipball/c9f80cc835649b5c1842898fb043f8cc098dd741",
+ "reference": "c9f80cc835649b5c1842898fb043f8cc098dd741",
"shasum": ""
},
"require": {
@@ -2133,7 +2132,7 @@
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
"php": "^7.2.5|^8.0",
"psy/psysh": "^0.11.1|^0.12.0",
- "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
+ "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0|^8.0"
},
"require-dev": {
"mockery/mockery": "~1.3.3|^1.4.2",
@@ -2175,35 +2174,35 @@
],
"support": {
"issues": "https://github.com/laravel/tinker/issues",
- "source": "https://github.com/laravel/tinker/tree/v2.10.1"
+ "source": "https://github.com/laravel/tinker/tree/v2.11.1"
},
- "time": "2025-01-27T14:24:01+00:00"
+ "time": "2026-02-06T14:12:35+00:00"
},
{
"name": "laravel/ui",
- "version": "v4.6.1",
+ "version": "v4.6.3",
"source": {
"type": "git",
"url": "https://github.com/laravel/ui.git",
- "reference": "7d6ffa38d79f19c9b3e70a751a9af845e8f41d88"
+ "reference": "ff27db15416c1ed8ad9848f5692e47595dd5de27"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/ui/zipball/7d6ffa38d79f19c9b3e70a751a9af845e8f41d88",
- "reference": "7d6ffa38d79f19c9b3e70a751a9af845e8f41d88",
+ "url": "https://api.github.com/repos/laravel/ui/zipball/ff27db15416c1ed8ad9848f5692e47595dd5de27",
+ "reference": "ff27db15416c1ed8ad9848f5692e47595dd5de27",
"shasum": ""
},
"require": {
- "illuminate/console": "^9.21|^10.0|^11.0|^12.0",
- "illuminate/filesystem": "^9.21|^10.0|^11.0|^12.0",
- "illuminate/support": "^9.21|^10.0|^11.0|^12.0",
- "illuminate/validation": "^9.21|^10.0|^11.0|^12.0",
+ "illuminate/console": "^9.21|^10.0|^11.0|^12.0|^13.0",
+ "illuminate/filesystem": "^9.21|^10.0|^11.0|^12.0|^13.0",
+ "illuminate/support": "^9.21|^10.0|^11.0|^12.0|^13.0",
+ "illuminate/validation": "^9.21|^10.0|^11.0|^12.0|^13.0",
"php": "^8.0",
- "symfony/console": "^6.0|^7.0"
+ "symfony/console": "^6.0|^7.0|^8.0"
},
"require-dev": {
- "orchestra/testbench": "^7.35|^8.15|^9.0|^10.0",
- "phpunit/phpunit": "^9.3|^10.4|^11.5"
+ "orchestra/testbench": "^7.35|^8.15|^9.0|^10.0|^11.0",
+ "phpunit/phpunit": "^9.3|^10.4|^11.5|^12.5|^13.0"
},
"type": "library",
"extra": {
@@ -2238,9 +2237,9 @@
"ui"
],
"support": {
- "source": "https://github.com/laravel/ui/tree/v4.6.1"
+ "source": "https://github.com/laravel/ui/tree/v4.6.3"
},
- "time": "2025-01-28T15:15:29+00:00"
+ "time": "2026-03-17T13:41:52+00:00"
},
{
"name": "laravelcollective/html",
@@ -2317,16 +2316,16 @@
},
{
"name": "league/commonmark",
- "version": "2.7.1",
+ "version": "2.8.2",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/commonmark.git",
- "reference": "10732241927d3971d28e7ea7b5712721fa2296ca"
+ "reference": "59fb075d2101740c337c7216e3f32b36c204218b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/10732241927d3971d28e7ea7b5712721fa2296ca",
- "reference": "10732241927d3971d28e7ea7b5712721fa2296ca",
+ "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/59fb075d2101740c337c7216e3f32b36c204218b",
+ "reference": "59fb075d2101740c337c7216e3f32b36c204218b",
"shasum": ""
},
"require": {
@@ -2351,9 +2350,9 @@
"phpstan/phpstan": "^1.8.2",
"phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
"scrutinizer/ocular": "^1.8.1",
- "symfony/finder": "^5.3 | ^6.0 | ^7.0",
- "symfony/process": "^5.4 | ^6.0 | ^7.0",
- "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0",
+ "symfony/finder": "^5.3 | ^6.0 | ^7.0 || ^8.0",
+ "symfony/process": "^5.4 | ^6.0 | ^7.0 || ^8.0",
+ "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0 || ^8.0",
"unleashedtech/php-coding-standard": "^3.1.1",
"vimeo/psalm": "^4.24.0 || ^5.0.0 || ^6.0.0"
},
@@ -2363,7 +2362,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "2.8-dev"
+ "dev-main": "2.9-dev"
}
},
"autoload": {
@@ -2420,7 +2419,7 @@
"type": "tidelift"
}
],
- "time": "2025-07-20T12:47:49+00:00"
+ "time": "2026-03-19T13:16:38+00:00"
},
{
"name": "league/config",
@@ -2506,16 +2505,16 @@
},
{
"name": "league/flysystem",
- "version": "3.30.2",
+ "version": "3.35.2",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/flysystem.git",
- "reference": "5966a8ba23e62bdb518dd9e0e665c2dbd4b5b277"
+ "reference": "b277b5dc3d56650b68904117124e79c851e12376"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/5966a8ba23e62bdb518dd9e0e665c2dbd4b5b277",
- "reference": "5966a8ba23e62bdb518dd9e0e665c2dbd4b5b277",
+ "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/b277b5dc3d56650b68904117124e79c851e12376",
+ "reference": "b277b5dc3d56650b68904117124e79c851e12376",
"shasum": ""
},
"require": {
@@ -2583,26 +2582,26 @@
],
"support": {
"issues": "https://github.com/thephpleague/flysystem/issues",
- "source": "https://github.com/thephpleague/flysystem/tree/3.30.2"
+ "source": "https://github.com/thephpleague/flysystem/tree/3.35.2"
},
- "time": "2025-11-10T17:13:11+00:00"
+ "time": "2026-07-06T14:42:07+00:00"
},
{
"name": "league/flysystem-aws-s3-v3",
- "version": "3.30.1",
+ "version": "3.35.2",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/flysystem-aws-s3-v3.git",
- "reference": "d286e896083bed3190574b8b088b557b59eb66f5"
+ "reference": "8475ef9adfc6498b85469e2abec6fe3118cd08c4"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/d286e896083bed3190574b8b088b557b59eb66f5",
- "reference": "d286e896083bed3190574b8b088b557b59eb66f5",
+ "url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/8475ef9adfc6498b85469e2abec6fe3118cd08c4",
+ "reference": "8475ef9adfc6498b85469e2abec6fe3118cd08c4",
"shasum": ""
},
"require": {
- "aws/aws-sdk-php": "^3.295.10",
+ "aws/aws-sdk-php": "^3.371.5",
"league/flysystem": "^3.10.0",
"league/mime-type-detection": "^1.0.0",
"php": "^8.0.2"
@@ -2638,22 +2637,22 @@
"storage"
],
"support": {
- "source": "https://github.com/thephpleague/flysystem-aws-s3-v3/tree/3.30.1"
+ "source": "https://github.com/thephpleague/flysystem-aws-s3-v3/tree/3.35.2"
},
- "time": "2025-10-20T15:27:33+00:00"
+ "time": "2026-07-01T23:25:49+00:00"
},
{
"name": "league/flysystem-local",
- "version": "3.30.2",
+ "version": "3.31.0",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/flysystem-local.git",
- "reference": "ab4f9d0d672f601b102936aa728801dd1a11968d"
+ "reference": "2f669db18a4c20c755c2bb7d3a7b0b2340488079"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/ab4f9d0d672f601b102936aa728801dd1a11968d",
- "reference": "ab4f9d0d672f601b102936aa728801dd1a11968d",
+ "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/2f669db18a4c20c755c2bb7d3a7b0b2340488079",
+ "reference": "2f669db18a4c20c755c2bb7d3a7b0b2340488079",
"shasum": ""
},
"require": {
@@ -2687,74 +2686,9 @@
"local"
],
"support": {
- "source": "https://github.com/thephpleague/flysystem-local/tree/3.30.2"
+ "source": "https://github.com/thephpleague/flysystem-local/tree/3.31.0"
},
- "time": "2025-11-10T11:23:37+00:00"
- },
- {
- "name": "league/glide",
- "version": "2.3.2",
- "source": {
- "type": "git",
- "url": "https://github.com/thephpleague/glide.git",
- "reference": "b8e946dd87c79a9dce3290707ab90b5b52602813"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/thephpleague/glide/zipball/b8e946dd87c79a9dce3290707ab90b5b52602813",
- "reference": "b8e946dd87c79a9dce3290707ab90b5b52602813",
- "shasum": ""
- },
- "require": {
- "intervention/image": "^2.7",
- "league/flysystem": "^2.0|^3.0",
- "php": "^7.2|^8.0",
- "psr/http-message": "^1.0|^2.0"
- },
- "require-dev": {
- "mockery/mockery": "^1.3.3",
- "phpunit/php-token-stream": "^3.1|^4.0",
- "phpunit/phpunit": "^8.5|^9.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "League\\Glide\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Jonathan Reinink",
- "email": "jonathan@reinink.ca",
- "homepage": "http://reinink.ca"
- },
- {
- "name": "Titouan Galopin",
- "email": "galopintitouan@gmail.com",
- "homepage": "https://titouangalopin.com"
- }
- ],
- "description": "Wonderfully easy on-demand image manipulation library with an HTTP based API.",
- "homepage": "http://glide.thephpleague.com",
- "keywords": [
- "ImageMagick",
- "editing",
- "gd",
- "image",
- "imagick",
- "league",
- "manipulation",
- "processing"
- ],
- "support": {
- "issues": "https://github.com/thephpleague/glide/issues",
- "source": "https://github.com/thephpleague/glide/tree/2.3.2"
- },
- "time": "2025-03-21T13:48:39+00:00"
+ "time": "2026-01-23T15:30:45+00:00"
},
{
"name": "league/mime-type-detection",
@@ -2887,16 +2821,16 @@
},
{
"name": "maennchen/zipstream-php",
- "version": "3.2.0",
+ "version": "3.2.2",
"source": {
"type": "git",
"url": "https://github.com/maennchen/ZipStream-PHP.git",
- "reference": "9712d8fa4cdf9240380b01eb4be55ad8dcf71416"
+ "reference": "77bebeb4c6c340bb3c11c843b2cffd8bbfde4d5e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/9712d8fa4cdf9240380b01eb4be55ad8dcf71416",
- "reference": "9712d8fa4cdf9240380b01eb4be55ad8dcf71416",
+ "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/77bebeb4c6c340bb3c11c843b2cffd8bbfde4d5e",
+ "reference": "77bebeb4c6c340bb3c11c843b2cffd8bbfde4d5e",
"shasum": ""
},
"require": {
@@ -2907,7 +2841,7 @@
"require-dev": {
"brianium/paratest": "^7.7",
"ext-zip": "*",
- "friendsofphp/php-cs-fixer": "^3.16",
+ "friendsofphp/php-cs-fixer": "^3.86",
"guzzlehttp/guzzle": "^7.5",
"mikey179/vfsstream": "^1.6",
"php-coveralls/php-coveralls": "^2.5",
@@ -2953,7 +2887,7 @@
],
"support": {
"issues": "https://github.com/maennchen/ZipStream-PHP/issues",
- "source": "https://github.com/maennchen/ZipStream-PHP/tree/3.2.0"
+ "source": "https://github.com/maennchen/ZipStream-PHP/tree/3.2.2"
},
"funding": [
{
@@ -2961,20 +2895,20 @@
"type": "github"
}
],
- "time": "2025-07-17T11:15:13+00:00"
+ "time": "2026-04-11T18:38:28+00:00"
},
{
"name": "monolog/monolog",
- "version": "3.9.0",
+ "version": "3.10.0",
"source": {
"type": "git",
"url": "https://github.com/Seldaek/monolog.git",
- "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6"
+ "reference": "b321dd6749f0bf7189444158a3ce785cc16d69b0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Seldaek/monolog/zipball/10d85740180ecba7896c87e06a166e0c95a0e3b6",
- "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6",
+ "url": "https://api.github.com/repos/Seldaek/monolog/zipball/b321dd6749f0bf7189444158a3ce785cc16d69b0",
+ "reference": "b321dd6749f0bf7189444158a3ce785cc16d69b0",
"shasum": ""
},
"require": {
@@ -2992,7 +2926,7 @@
"graylog2/gelf-php": "^1.4.2 || ^2.0",
"guzzlehttp/guzzle": "^7.4.5",
"guzzlehttp/psr7": "^2.2",
- "mongodb/mongodb": "^1.8",
+ "mongodb/mongodb": "^1.8 || ^2.0",
"php-amqplib/php-amqplib": "~2.4 || ^3",
"php-console/php-console": "^3.1.8",
"phpstan/phpstan": "^2",
@@ -3052,7 +2986,7 @@
],
"support": {
"issues": "https://github.com/Seldaek/monolog/issues",
- "source": "https://github.com/Seldaek/monolog/tree/3.9.0"
+ "source": "https://github.com/Seldaek/monolog/tree/3.10.0"
},
"funding": [
{
@@ -3064,20 +2998,20 @@
"type": "tidelift"
}
],
- "time": "2025-03-24T10:02:05+00:00"
+ "time": "2026-01-02T08:56:05+00:00"
},
{
"name": "mtdowling/jmespath.php",
- "version": "2.8.0",
+ "version": "2.9.2",
"source": {
"type": "git",
"url": "https://github.com/jmespath/jmespath.php.git",
- "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc"
+ "reference": "2157c5e50e813ec6a96c1eed3be7f64a20fb32a8"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
- "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
+ "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/2157c5e50e813ec6a96c1eed3be7f64a20fb32a8",
+ "reference": "2157c5e50e813ec6a96c1eed3be7f64a20fb32a8",
"shasum": ""
},
"require": {
@@ -3086,7 +3020,7 @@
},
"require-dev": {
"composer/xdebug-handler": "^3.0.3",
- "phpunit/phpunit": "^8.5.33"
+ "phpunit/phpunit": "^8.5.52"
},
"bin": [
"bin/jp.php"
@@ -3094,7 +3028,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.8-dev"
+ "dev-master": "2.9-dev"
}
},
"autoload": {
@@ -3128,9 +3062,9 @@
],
"support": {
"issues": "https://github.com/jmespath/jmespath.php/issues",
- "source": "https://github.com/jmespath/jmespath.php/tree/2.8.0"
+ "source": "https://github.com/jmespath/jmespath.php/tree/2.9.2"
},
- "time": "2024-09-04T18:46:31+00:00"
+ "time": "2026-07-06T18:56:19+00:00"
},
{
"name": "nesbot/carbon",
@@ -3241,16 +3175,16 @@
},
{
"name": "nette/schema",
- "version": "v1.3.3",
+ "version": "v1.3.5",
"source": {
"type": "git",
"url": "https://github.com/nette/schema.git",
- "reference": "2befc2f42d7c715fd9d95efc31b1081e5d765004"
+ "reference": "f0ab1a3cda782dbc5da270d28545236aa80c4002"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nette/schema/zipball/2befc2f42d7c715fd9d95efc31b1081e5d765004",
- "reference": "2befc2f42d7c715fd9d95efc31b1081e5d765004",
+ "url": "https://api.github.com/repos/nette/schema/zipball/f0ab1a3cda782dbc5da270d28545236aa80c4002",
+ "reference": "f0ab1a3cda782dbc5da270d28545236aa80c4002",
"shasum": ""
},
"require": {
@@ -3258,8 +3192,10 @@
"php": "8.1 - 8.5"
},
"require-dev": {
- "nette/tester": "^2.5.2",
- "phpstan/phpstan-nette": "^2.0@stable",
+ "nette/phpstan-rules": "^1.0",
+ "nette/tester": "^2.6",
+ "phpstan/extension-installer": "^1.4@stable",
+ "phpstan/phpstan": "^2.1.39@stable",
"tracy/tracy": "^2.8"
},
"type": "library",
@@ -3300,26 +3236,26 @@
],
"support": {
"issues": "https://github.com/nette/schema/issues",
- "source": "https://github.com/nette/schema/tree/v1.3.3"
+ "source": "https://github.com/nette/schema/tree/v1.3.5"
},
- "time": "2025-10-30T22:57:59+00:00"
+ "time": "2026-02-23T03:47:12+00:00"
},
{
"name": "nette/utils",
- "version": "v4.0.8",
+ "version": "v4.1.4",
"source": {
"type": "git",
"url": "https://github.com/nette/utils.git",
- "reference": "c930ca4e3cf4f17dcfb03037703679d2396d2ede"
+ "reference": "7da6c396d7ebe142bc857c20479d5e70a5e1aac7"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nette/utils/zipball/c930ca4e3cf4f17dcfb03037703679d2396d2ede",
- "reference": "c930ca4e3cf4f17dcfb03037703679d2396d2ede",
+ "url": "https://api.github.com/repos/nette/utils/zipball/7da6c396d7ebe142bc857c20479d5e70a5e1aac7",
+ "reference": "7da6c396d7ebe142bc857c20479d5e70a5e1aac7",
"shasum": ""
},
"require": {
- "php": "8.0 - 8.5"
+ "php": "8.2 - 8.5"
},
"conflict": {
"nette/finder": "<3",
@@ -3327,8 +3263,10 @@
},
"require-dev": {
"jetbrains/phpstorm-attributes": "^1.2",
+ "nette/phpstan-rules": "^1.0",
"nette/tester": "^2.5",
- "phpstan/phpstan-nette": "^2.0@stable",
+ "phpstan/extension-installer": "^1.4@stable",
+ "phpstan/phpstan": "^2.1@stable",
"tracy/tracy": "^2.9"
},
"suggest": {
@@ -3342,7 +3280,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "4.0-dev"
+ "dev-master": "4.1-dev"
}
},
"autoload": {
@@ -3389,22 +3327,22 @@
],
"support": {
"issues": "https://github.com/nette/utils/issues",
- "source": "https://github.com/nette/utils/tree/v4.0.8"
+ "source": "https://github.com/nette/utils/tree/v4.1.4"
},
- "time": "2025-08-06T21:43:34+00:00"
+ "time": "2026-05-11T20:49:54+00:00"
},
{
"name": "nikic/php-parser",
- "version": "v4.19.4",
+ "version": "v4.19.5",
"source": {
"type": "git",
"url": "https://github.com/nikic/PHP-Parser.git",
- "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2"
+ "reference": "51bd93cc741b7fc3d63d20b6bdcd99fdaa359837"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/715f4d25e225bc47b293a8b997fe6ce99bf987d2",
- "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2",
+ "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/51bd93cc741b7fc3d63d20b6bdcd99fdaa359837",
+ "reference": "51bd93cc741b7fc3d63d20b6bdcd99fdaa359837",
"shasum": ""
},
"require": {
@@ -3419,11 +3357,6 @@
"bin/php-parse"
],
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "4.9-dev"
- }
- },
"autoload": {
"psr-4": {
"PhpParser\\": "lib/PhpParser"
@@ -3445,9 +3378,9 @@
],
"support": {
"issues": "https://github.com/nikic/PHP-Parser/issues",
- "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.4"
+ "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.5"
},
- "time": "2024-09-29T15:01:53+00:00"
+ "time": "2025-12-06T11:45:25+00:00"
},
{
"name": "nunomaduro/termwind",
@@ -3614,16 +3547,16 @@
},
{
"name": "owen-it/laravel-auditing",
- "version": "v13.7.2",
+ "version": "v13.7.5",
"source": {
"type": "git",
"url": "https://github.com/owen-it/laravel-auditing.git",
- "reference": "4f72181622683bc667bbdd2e5fa09cd376329af4"
+ "reference": "ea4d9be9323b3db33d464afd09f954e155d1641b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/owen-it/laravel-auditing/zipball/4f72181622683bc667bbdd2e5fa09cd376329af4",
- "reference": "4f72181622683bc667bbdd2e5fa09cd376329af4",
+ "url": "https://api.github.com/repos/owen-it/laravel-auditing/zipball/ea4d9be9323b3db33d464afd09f954e155d1641b",
+ "reference": "ea4d9be9323b3db33d464afd09f954e155d1641b",
"shasum": ""
},
"require": {
@@ -3698,20 +3631,20 @@
"issues": "https://github.com/owen-it/laravel-auditing/issues",
"source": "https://github.com/owen-it/laravel-auditing"
},
- "time": "2025-02-21T14:58:02+00:00"
+ "time": "2026-06-12T14:06:10+00:00"
},
{
"name": "phpoption/phpoption",
- "version": "1.9.4",
+ "version": "1.9.5",
"source": {
"type": "git",
"url": "https://github.com/schmittjoh/php-option.git",
- "reference": "638a154f8d4ee6a5cfa96d6a34dfbe0cffa9566d"
+ "reference": "75365b91986c2405cf5e1e012c5595cd487a98be"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/638a154f8d4ee6a5cfa96d6a34dfbe0cffa9566d",
- "reference": "638a154f8d4ee6a5cfa96d6a34dfbe0cffa9566d",
+ "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/75365b91986c2405cf5e1e012c5595cd487a98be",
+ "reference": "75365b91986c2405cf5e1e012c5595cd487a98be",
"shasum": ""
},
"require": {
@@ -3761,7 +3694,7 @@
],
"support": {
"issues": "https://github.com/schmittjoh/php-option/issues",
- "source": "https://github.com/schmittjoh/php-option/tree/1.9.4"
+ "source": "https://github.com/schmittjoh/php-option/tree/1.9.5"
},
"funding": [
{
@@ -3773,7 +3706,7 @@
"type": "tidelift"
}
],
- "time": "2025-08-21T11:53:16+00:00"
+ "time": "2025-12-27T19:41:33+00:00"
},
{
"name": "predis/predis",
@@ -4304,16 +4237,16 @@
},
{
"name": "psy/psysh",
- "version": "v0.12.14",
+ "version": "v0.12.24",
"source": {
"type": "git",
"url": "https://github.com/bobthecow/psysh.git",
- "reference": "95c29b3756a23855a30566b745d218bee690bef2"
+ "reference": "ca0fdcf8a7617afa3adfdf1b5fef573dffb69ca1"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/bobthecow/psysh/zipball/95c29b3756a23855a30566b745d218bee690bef2",
- "reference": "95c29b3756a23855a30566b745d218bee690bef2",
+ "url": "https://api.github.com/repos/bobthecow/psysh/zipball/ca0fdcf8a7617afa3adfdf1b5fef573dffb69ca1",
+ "reference": "ca0fdcf8a7617afa3adfdf1b5fef573dffb69ca1",
"shasum": ""
},
"require": {
@@ -4321,8 +4254,8 @@
"ext-tokenizer": "*",
"nikic/php-parser": "^5.0 || ^4.0",
"php": "^8.0 || ^7.4",
- "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
- "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
+ "symfony/console": "^8.0 || ^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
+ "symfony/var-dumper": "^8.0 || ^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
},
"conflict": {
"symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
@@ -4377,9 +4310,9 @@
],
"support": {
"issues": "https://github.com/bobthecow/psysh/issues",
- "source": "https://github.com/bobthecow/psysh/tree/v0.12.14"
+ "source": "https://github.com/bobthecow/psysh/tree/v0.12.24"
},
- "time": "2025-10-27T17:15:31+00:00"
+ "time": "2026-06-29T15:41:09+00:00"
},
{
"name": "ralouphie/getallheaders",
@@ -4503,20 +4436,20 @@
},
{
"name": "ramsey/uuid",
- "version": "4.9.1",
+ "version": "4.9.3",
"source": {
"type": "git",
"url": "https://github.com/ramsey/uuid.git",
- "reference": "81f941f6f729b1e3ceea61d9d014f8b6c6800440"
+ "reference": "1df15849d00943a67d677dc9cfd80795f038c9f8"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/ramsey/uuid/zipball/81f941f6f729b1e3ceea61d9d014f8b6c6800440",
- "reference": "81f941f6f729b1e3ceea61d9d014f8b6c6800440",
+ "url": "https://api.github.com/repos/ramsey/uuid/zipball/1df15849d00943a67d677dc9cfd80795f038c9f8",
+ "reference": "1df15849d00943a67d677dc9cfd80795f038c9f8",
"shasum": ""
},
"require": {
- "brick/math": "^0.8.8 || ^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"
},
@@ -4575,22 +4508,22 @@
],
"support": {
"issues": "https://github.com/ramsey/uuid/issues",
- "source": "https://github.com/ramsey/uuid/tree/4.9.1"
+ "source": "https://github.com/ramsey/uuid/tree/4.9.3"
},
- "time": "2025-09-04T20:59:21+00:00"
+ "time": "2026-06-18T03:57:49+00:00"
},
{
"name": "sentry/sentry",
- "version": "4.18.1",
+ "version": "4.29.0",
"source": {
"type": "git",
"url": "https://github.com/getsentry/sentry-php.git",
- "reference": "04dcf20b39742b731b676f8b8d4f02d1db488af8"
+ "reference": "d732a4da195f231cedb2a2a78ae16dd73082afa3"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/getsentry/sentry-php/zipball/04dcf20b39742b731b676f8b8d4f02d1db488af8",
- "reference": "04dcf20b39742b731b676f8b8d4f02d1db488af8",
+ "url": "https://api.github.com/repos/getsentry/sentry-php/zipball/d732a4da195f231cedb2a2a78ae16dd73082afa3",
+ "reference": "d732a4da195f231cedb2a2a78ae16dd73082afa3",
"shasum": ""
},
"require": {
@@ -4607,16 +4540,22 @@
"raven/raven": "*"
},
"require-dev": {
+ "carthage-software/mago": "1.30.0",
"friendsofphp/php-cs-fixer": "^3.4",
"guzzlehttp/promises": "^2.0.3",
- "guzzlehttp/psr7": "^1.8.4|^2.1.1",
"monolog/monolog": "^1.6|^2.0|^3.0",
- "phpbench/phpbench": "^1.0",
+ "nyholm/psr7": "^1.8",
+ "open-telemetry/api": "^1.0",
+ "open-telemetry/exporter-otlp": "^1.0",
+ "open-telemetry/sdk": "^1.0",
+ "open-telemetry/sem-conv": "^1.27",
"phpstan/phpstan": "^1.3",
- "phpunit/phpunit": "^8.5|^9.6",
- "vimeo/psalm": "^4.17"
+ "phpunit/phpunit": "^8.5.52|^9.6.34",
+ "spiral/roadrunner-http": "^3.6",
+ "spiral/roadrunner-worker": "^3.6"
},
"suggest": {
+ "ext-excimer": "Enable Sentry profiling with the Excimer PHP extension.",
"monolog/monolog": "Allow sending log messages to Sentry by using the included Monolog handler."
},
"type": "library",
@@ -4653,7 +4592,7 @@
],
"support": {
"issues": "https://github.com/getsentry/sentry-php/issues",
- "source": "https://github.com/getsentry/sentry-php/tree/4.18.1"
+ "source": "https://github.com/getsentry/sentry-php/tree/4.29.0"
},
"funding": [
{
@@ -4665,40 +4604,41 @@
"type": "custom"
}
],
- "time": "2025-11-11T09:34:53+00:00"
+ "time": "2026-06-29T14:47:44+00:00"
},
{
"name": "sentry/sentry-laravel",
- "version": "4.19.0",
+ "version": "4.26.0",
"source": {
"type": "git",
"url": "https://github.com/getsentry/sentry-laravel.git",
- "reference": "7fdffd57e8fff0a6f9a18d9a83f32e960af63e3f"
+ "reference": "8f2cc669ee99d3cda31a89f0a18197fd2efbd1b6"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/getsentry/sentry-laravel/zipball/7fdffd57e8fff0a6f9a18d9a83f32e960af63e3f",
- "reference": "7fdffd57e8fff0a6f9a18d9a83f32e960af63e3f",
+ "url": "https://api.github.com/repos/getsentry/sentry-laravel/zipball/8f2cc669ee99d3cda31a89f0a18197fd2efbd1b6",
+ "reference": "8f2cc669ee99d3cda31a89f0a18197fd2efbd1b6",
"shasum": ""
},
"require": {
- "illuminate/support": "^6.0 | ^7.0 | ^8.0 | ^9.0 | ^10.0 | ^11.0 | ^12.0",
+ "illuminate/support": "^6.0 | ^7.0 | ^8.0 | ^9.0 | ^10.0 | ^11.0 | ^12.0 | ^13.0",
"nyholm/psr7": "^1.0",
"php": "^7.2 | ^8.0",
- "sentry/sentry": "^4.18.0",
- "symfony/psr-http-message-bridge": "^1.0 | ^2.0 | ^6.0 | ^7.0"
+ "sentry/sentry": "^4.28.0",
+ "symfony/psr-http-message-bridge": "^1.0 | ^2.0 | ^6.0 | ^7.0 | ^8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.11",
"guzzlehttp/guzzle": "^7.2",
"laravel/folio": "^1.1",
- "laravel/framework": "^6.0 | ^7.0 | ^8.0 | ^9.0 | ^10.0 | ^11.0 | ^12.0",
+ "laravel/framework": "^6.0 | ^7.0 | ^8.0 | ^9.0 | ^10.0 | ^11.0 | ^12.0 | ^13.0",
+ "laravel/octane": "^2.15",
"laravel/pennant": "^1.0",
- "livewire/livewire": "^2.0 | ^3.0",
+ "livewire/livewire": "^2.0 | ^3.0 | ^4.0",
"mockery/mockery": "^1.3",
- "orchestra/testbench": "^4.7 | ^5.1 | ^6.0 | ^7.0 | ^8.0 | ^9.0 | ^10.0",
+ "orchestra/testbench": "^4.7 | ^5.1 | ^6.0 | ^7.0 | ^8.0 | ^9.0 | ^10.0 | ^11.0",
"phpstan/phpstan": "^1.10",
- "phpunit/phpunit": "^8.4 | ^9.3 | ^10.4 | ^11.5"
+ "phpunit/phpunit": "^8.5 | ^9.6 | ^10.4 | ^11.5"
},
"type": "library",
"extra": {
@@ -4743,7 +4683,7 @@
],
"support": {
"issues": "https://github.com/getsentry/sentry-laravel/issues",
- "source": "https://github.com/getsentry/sentry-laravel/tree/4.19.0"
+ "source": "https://github.com/getsentry/sentry-laravel/tree/4.26.0"
},
"funding": [
{
@@ -4755,20 +4695,20 @@
"type": "custom"
}
],
- "time": "2025-11-11T09:01:14+00:00"
+ "time": "2026-06-11T13:22:14+00:00"
},
{
"name": "spatie/browsershot",
- "version": "5.1.0",
+ "version": "5.4.0",
"source": {
"type": "git",
"url": "https://github.com/spatie/browsershot.git",
- "reference": "e942e419947c5148f1d0014b334a7de1f6fe5d9a"
+ "reference": "dcf7a65fd1d0fc8fd113739b84982377728d0b2f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/browsershot/zipball/e942e419947c5148f1d0014b334a7de1f6fe5d9a",
- "reference": "e942e419947c5148f1d0014b334a7de1f6fe5d9a",
+ "url": "https://api.github.com/repos/spatie/browsershot/zipball/dcf7a65fd1d0fc8fd113739b84982377728d0b2f",
+ "reference": "dcf7a65fd1d0fc8fd113739b84982377728d0b2f",
"shasum": ""
},
"require": {
@@ -4776,7 +4716,7 @@
"ext-json": "*",
"php": "^8.2",
"spatie/temporary-directory": "^2.0",
- "symfony/process": "^6.0|^7.0"
+ "symfony/process": "^6.0|^7.0|^8.0"
},
"require-dev": {
"pestphp/pest": "^3.0|^4.0",
@@ -4815,7 +4755,7 @@
"webpage"
],
"support": {
- "source": "https://github.com/spatie/browsershot/tree/5.1.0"
+ "source": "https://github.com/spatie/browsershot/tree/5.4.0"
},
"funding": [
{
@@ -4823,25 +4763,25 @@
"type": "github"
}
],
- "time": "2025-11-17T08:47:07+00:00"
+ "time": "2026-05-26T13:13:33+00:00"
},
{
"name": "spatie/db-dumper",
- "version": "3.8.0",
+ "version": "3.8.3",
"source": {
"type": "git",
"url": "https://github.com/spatie/db-dumper.git",
- "reference": "91e1fd4dc000aefc9753cda2da37069fc996baee"
+ "reference": "eac3221fbe27fac51f388600d27b67b1b079406e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/db-dumper/zipball/91e1fd4dc000aefc9753cda2da37069fc996baee",
- "reference": "91e1fd4dc000aefc9753cda2da37069fc996baee",
+ "url": "https://api.github.com/repos/spatie/db-dumper/zipball/eac3221fbe27fac51f388600d27b67b1b079406e",
+ "reference": "eac3221fbe27fac51f388600d27b67b1b079406e",
"shasum": ""
},
"require": {
"php": "^8.0",
- "symfony/process": "^5.0|^6.0|^7.0"
+ "symfony/process": "^5.0|^6.0|^7.0|^8.0"
},
"require-dev": {
"pestphp/pest": "^1.22"
@@ -4874,7 +4814,7 @@
"spatie"
],
"support": {
- "source": "https://github.com/spatie/db-dumper/tree/3.8.0"
+ "source": "https://github.com/spatie/db-dumper/tree/3.8.3"
},
"funding": [
{
@@ -4886,32 +4826,32 @@
"type": "github"
}
],
- "time": "2025-02-14T15:04:22+00:00"
+ "time": "2026-01-05T16:26:03+00:00"
},
{
"name": "spatie/eloquent-sortable",
- "version": "4.5.2",
+ "version": "5.0.1",
"source": {
"type": "git",
"url": "https://github.com/spatie/eloquent-sortable.git",
- "reference": "c1c4f3a66cd41eb7458783c8a4c8e5d7924a9f20"
+ "reference": "caf2596e5df0260d0e2863e89b750611eef2fc59"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/eloquent-sortable/zipball/c1c4f3a66cd41eb7458783c8a4c8e5d7924a9f20",
- "reference": "c1c4f3a66cd41eb7458783c8a4c8e5d7924a9f20",
+ "url": "https://api.github.com/repos/spatie/eloquent-sortable/zipball/caf2596e5df0260d0e2863e89b750611eef2fc59",
+ "reference": "caf2596e5df0260d0e2863e89b750611eef2fc59",
"shasum": ""
},
"require": {
- "illuminate/database": "^9.31|^10.0|^11.0|^12.0",
- "illuminate/support": "^9.31|^10.0|^11.0|^12.0",
+ "illuminate/database": "^10.0|^11.0|^12.0|^13.0",
+ "illuminate/support": "^10.0|^11.0|^12.0|^13.0",
"nesbot/carbon": "^2.63|^3.0",
- "php": "^8.1",
+ "php": "^8.2",
"spatie/laravel-package-tools": "^1.9"
},
"require-dev": {
- "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
- "phpunit/phpunit": "^9.5|^10.0|^11.5.3"
+ "orchestra/testbench": "^8.0|^9.6|^10.0|^11.0",
+ "phpunit/phpunit": "^10.0|^11.5.3|^12.0"
},
"type": "library",
"extra": {
@@ -4948,7 +4888,7 @@
],
"support": {
"issues": "https://github.com/spatie/eloquent-sortable/issues",
- "source": "https://github.com/spatie/eloquent-sortable/tree/4.5.2"
+ "source": "https://github.com/spatie/eloquent-sortable/tree/5.0.1"
},
"funding": [
{
@@ -4960,37 +4900,43 @@
"type": "github"
}
],
- "time": "2025-08-25T11:46:57+00:00"
+ "time": "2026-02-21T21:26:43+00:00"
},
{
"name": "spatie/image",
- "version": "2.2.7",
+ "version": "3.9.5",
"source": {
"type": "git",
"url": "https://github.com/spatie/image.git",
- "reference": "2f802853aab017aa615224daae1588054b5ab20e"
+ "reference": "7ac0b9dab1100ddfc0c98afd12720f5b9fc0cd65"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/image/zipball/2f802853aab017aa615224daae1588054b5ab20e",
- "reference": "2f802853aab017aa615224daae1588054b5ab20e",
+ "url": "https://api.github.com/repos/spatie/image/zipball/7ac0b9dab1100ddfc0c98afd12720f5b9fc0cd65",
+ "reference": "7ac0b9dab1100ddfc0c98afd12720f5b9fc0cd65",
"shasum": ""
},
"require": {
"ext-exif": "*",
"ext-json": "*",
"ext-mbstring": "*",
- "league/glide": "^2.2.2",
- "php": "^8.0",
- "spatie/image-optimizer": "^1.7",
- "spatie/temporary-directory": "^1.0|^2.0",
- "symfony/process": "^3.0|^4.0|^5.0|^6.0"
+ "php": "^8.2",
+ "spatie/image-optimizer": "^1.7.5",
+ "spatie/temporary-directory": "^2.2",
+ "symfony/process": "^6.4|^7.0|^8.0"
},
"require-dev": {
- "pestphp/pest": "^1.22",
- "phpunit/phpunit": "^9.5",
- "symfony/var-dumper": "^4.0|^5.0|^6.0",
- "vimeo/psalm": "^4.6"
+ "ext-ffi": "*",
+ "ext-gd": "*",
+ "ext-imagick": "*",
+ "jcupitt/vips": "^2.4",
+ "laravel/sail": "^1.34",
+ "pestphp/pest": "^3.0|^4.0",
+ "phpstan/phpstan": "^1.10.50",
+ "spatie/pest-plugin-snapshots": "^2.1",
+ "spatie/pixelmatch-php": "^1.0",
+ "spatie/ray": "^1.40.1",
+ "symfony/var-dumper": "^6.4|^7.0|^8.0"
},
"type": "library",
"autoload": {
@@ -5017,7 +4963,7 @@
"spatie"
],
"support": {
- "source": "https://github.com/spatie/image/tree/2.2.7"
+ "source": "https://github.com/spatie/image/tree/3.9.5"
},
"funding": [
{
@@ -5029,32 +4975,32 @@
"type": "github"
}
],
- "time": "2023-07-24T13:54:13+00:00"
+ "time": "2026-06-19T07:40:17+00:00"
},
{
"name": "spatie/image-optimizer",
- "version": "1.8.0",
+ "version": "1.10.0",
"source": {
"type": "git",
"url": "https://github.com/spatie/image-optimizer.git",
- "reference": "4fd22035e81d98fffced65a8c20d9ec4daa9671c"
+ "reference": "333c03952289dc2df0a91874636a0dffeb5b6aec"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/image-optimizer/zipball/4fd22035e81d98fffced65a8c20d9ec4daa9671c",
- "reference": "4fd22035e81d98fffced65a8c20d9ec4daa9671c",
+ "url": "https://api.github.com/repos/spatie/image-optimizer/zipball/333c03952289dc2df0a91874636a0dffeb5b6aec",
+ "reference": "333c03952289dc2df0a91874636a0dffeb5b6aec",
"shasum": ""
},
"require": {
"ext-fileinfo": "*",
- "php": "^7.3|^8.0",
+ "php": "^7.4|^8.0",
"psr/log": "^1.0 | ^2.0 | ^3.0",
- "symfony/process": "^4.2|^5.0|^6.0|^7.0"
+ "symfony/process": "^4.2|^5.0|^6.0|^7.0|^8.0"
},
"require-dev": {
- "pestphp/pest": "^1.21",
- "phpunit/phpunit": "^8.5.21|^9.4.4",
- "symfony/var-dumper": "^4.2|^5.0|^6.0|^7.0"
+ "pestphp/pest": "^1.21|^2.0|^3.0|^4.0",
+ "phpunit/phpunit": "^8.5.21|^9.4.4|^10.0|^11.0|^12.0",
+ "symfony/var-dumper": "^4.2|^5.0|^6.0|^7.0|^8.0"
},
"type": "library",
"autoload": {
@@ -5082,9 +5028,9 @@
],
"support": {
"issues": "https://github.com/spatie/image-optimizer/issues",
- "source": "https://github.com/spatie/image-optimizer/tree/1.8.0"
+ "source": "https://github.com/spatie/image-optimizer/tree/1.10.0"
},
- "time": "2024-11-04T08:24:54+00:00"
+ "time": "2026-06-29T08:28:30+00:00"
},
{
"name": "spatie/laravel-backup",
@@ -5187,53 +5133,55 @@
},
{
"name": "spatie/laravel-medialibrary",
- "version": "10.15.0",
+ "version": "11.23.1",
"source": {
"type": "git",
"url": "https://github.com/spatie/laravel-medialibrary.git",
- "reference": "f464c82357500c5c68ea350edff35ed9831fd48e"
+ "reference": "143106b61b945f1ca815e6a71598c03881469228"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/laravel-medialibrary/zipball/f464c82357500c5c68ea350edff35ed9831fd48e",
- "reference": "f464c82357500c5c68ea350edff35ed9831fd48e",
+ "url": "https://api.github.com/repos/spatie/laravel-medialibrary/zipball/143106b61b945f1ca815e6a71598c03881469228",
+ "reference": "143106b61b945f1ca815e6a71598c03881469228",
"shasum": ""
},
"require": {
+ "composer/semver": "^3.4",
"ext-exif": "*",
"ext-fileinfo": "*",
"ext-json": "*",
- "illuminate/bus": "^9.18|^10.0",
- "illuminate/conditionable": "^9.18|^10.0",
- "illuminate/console": "^9.18|^10.0",
- "illuminate/database": "^9.18|^10.0",
- "illuminate/pipeline": "^9.18|^10.0",
- "illuminate/support": "^9.18|^10.0",
- "maennchen/zipstream-php": "^2.0|^3.0",
- "php": "^8.0",
- "spatie/image": "^2.2.7",
- "spatie/temporary-directory": "^2.0",
- "symfony/console": "^6.0"
+ "illuminate/bus": "^10.2|^11.0|^12.0|^13.0",
+ "illuminate/conditionable": "^10.2|^11.0|^12.0|^13.0",
+ "illuminate/console": "^10.2|^11.0|^12.0|^13.0",
+ "illuminate/database": "^10.2|^11.0|^12.0|^13.0",
+ "illuminate/pipeline": "^10.2|^11.0|^12.0|^13.0",
+ "illuminate/support": "^10.2|^11.0|^12.0|^13.0",
+ "maennchen/zipstream-php": "^3.1",
+ "php": "^8.2",
+ "spatie/image": "^3.3.2",
+ "spatie/laravel-package-tools": "^1.16.1",
+ "spatie/temporary-directory": "^2.2",
+ "symfony/console": "^6.4.1|^7.0|^8.0"
},
"conflict": {
"php-ffmpeg/php-ffmpeg": "<0.6.1"
},
"require-dev": {
- "aws/aws-sdk-php": "^3.133.11",
- "doctrine/dbal": "^2.13",
+ "aws/aws-sdk-php": "^3.293.10",
"ext-imagick": "*",
"ext-pdo_sqlite": "*",
"ext-zip": "*",
- "guzzlehttp/guzzle": "^7.4",
- "league/flysystem-aws-s3-v3": "^3.0",
- "mockery/mockery": "^1.4",
- "nunomaduro/larastan": "^2.0",
- "orchestra/testbench": "^7.0|^8.0",
- "pestphp/pest": "^1.21",
- "phpstan/extension-installer": "^1.1",
- "spatie/laravel-ray": "^1.28",
- "spatie/pdf-to-image": "^2.1",
- "spatie/phpunit-snapshot-assertions": "^4.2"
+ "guzzlehttp/guzzle": "^7.8.1",
+ "larastan/larastan": "^2.7|^3.0",
+ "league/flysystem-aws-s3-v3": "^3.22",
+ "mockery/mockery": "^1.6.7",
+ "orchestra/testbench": "^8.36|^9.15|^10.8|^11.0",
+ "pestphp/pest": "^2.36|^3.0|^4.0",
+ "phpstan/extension-installer": "^1.3.1",
+ "spatie/laravel-ray": "^1.33",
+ "spatie/pdf-to-image": "^2.2|^3.0",
+ "spatie/pest-expectations": "^1.13",
+ "spatie/pest-plugin-snapshots": "^2.1"
},
"suggest": {
"league/flysystem-aws-s3-v3": "Required to use AWS S3 file storage",
@@ -5279,7 +5227,7 @@
],
"support": {
"issues": "https://github.com/spatie/laravel-medialibrary/issues",
- "source": "https://github.com/spatie/laravel-medialibrary/tree/10.15.0"
+ "source": "https://github.com/spatie/laravel-medialibrary/tree/11.23.1"
},
"funding": [
{
@@ -5291,33 +5239,33 @@
"type": "github"
}
],
- "time": "2023-11-03T13:09:19+00:00"
+ "time": "2026-06-24T08:31:39+00:00"
},
{
"name": "spatie/laravel-package-tools",
- "version": "1.92.7",
+ "version": "1.93.1",
"source": {
"type": "git",
"url": "https://github.com/spatie/laravel-package-tools.git",
- "reference": "f09a799850b1ed765103a4f0b4355006360c49a5"
+ "reference": "d5552849801f2642aea710557463234b59ef65eb"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/f09a799850b1ed765103a4f0b4355006360c49a5",
- "reference": "f09a799850b1ed765103a4f0b4355006360c49a5",
+ "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/d5552849801f2642aea710557463234b59ef65eb",
+ "reference": "d5552849801f2642aea710557463234b59ef65eb",
"shasum": ""
},
"require": {
- "illuminate/contracts": "^9.28|^10.0|^11.0|^12.0",
- "php": "^8.0"
+ "illuminate/contracts": "^10.0|^11.0|^12.0|^13.0",
+ "php": "^8.1"
},
"require-dev": {
"mockery/mockery": "^1.5",
- "orchestra/testbench": "^7.7|^8.0|^9.0|^10.0",
- "pestphp/pest": "^1.23|^2.1|^3.1",
- "phpunit/php-code-coverage": "^9.0|^10.0|^11.0",
- "phpunit/phpunit": "^9.5.24|^10.5|^11.5",
- "spatie/pest-plugin-test-time": "^1.1|^2.2"
+ "orchestra/testbench": "^8.0|^9.2|^10.0|^11.0",
+ "pestphp/pest": "^2.1|^3.1|^4.0",
+ "phpunit/php-code-coverage": "^10.0|^11.0|^12.0",
+ "phpunit/phpunit": "^10.5|^11.5|^12.5",
+ "spatie/pest-plugin-test-time": "^2.2|^3.0"
},
"type": "library",
"autoload": {
@@ -5344,7 +5292,7 @@
],
"support": {
"issues": "https://github.com/spatie/laravel-package-tools/issues",
- "source": "https://github.com/spatie/laravel-package-tools/tree/1.92.7"
+ "source": "https://github.com/spatie/laravel-package-tools/tree/1.93.1"
},
"funding": [
{
@@ -5352,7 +5300,7 @@
"type": "github"
}
],
- "time": "2025-07-17T15:46:43+00:00"
+ "time": "2026-05-19T14:06:37+00:00"
},
{
"name": "spatie/laravel-signal-aware-command",
@@ -5430,30 +5378,30 @@
},
{
"name": "spatie/laravel-tags",
- "version": "4.10.1",
+ "version": "4.12.0",
"source": {
"type": "git",
"url": "https://github.com/spatie/laravel-tags.git",
- "reference": "26fe2ad5490e65e2a3475c3fe8a4d9609934aa40"
+ "reference": "5c5fc6bd32d1efbe41bc2520d8a2b4fc38087fb6"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/laravel-tags/zipball/26fe2ad5490e65e2a3475c3fe8a4d9609934aa40",
- "reference": "26fe2ad5490e65e2a3475c3fe8a4d9609934aa40",
+ "url": "https://api.github.com/repos/spatie/laravel-tags/zipball/5c5fc6bd32d1efbe41bc2520d8a2b4fc38087fb6",
+ "reference": "5c5fc6bd32d1efbe41bc2520d8a2b4fc38087fb6",
"shasum": ""
},
"require": {
- "laravel/framework": "^10.0|^11.0|^12.0",
+ "laravel/framework": "^10.0|^11.0|^12.0|^13.0",
"nesbot/carbon": "^2.63|^3.0",
"php": "^8.1",
- "spatie/eloquent-sortable": "^4.0",
+ "spatie/eloquent-sortable": "^4.0|^5.0",
"spatie/laravel-package-tools": "^1.4",
"spatie/laravel-translatable": "^6.0"
},
"require-dev": {
- "orchestra/testbench": "^8.0|^9.0|^10.0",
- "pestphp/pest": "^1.22|^2.0",
- "phpunit/phpunit": "^9.5.2"
+ "orchestra/testbench": "^8.0|^9.0|^10.0|^11.0",
+ "pestphp/pest": "^1.22|^2.0|^4.0",
+ "phpunit/phpunit": "^9.5.2|^12.5.12"
},
"type": "library",
"extra": {
@@ -5488,7 +5436,7 @@
],
"support": {
"issues": "https://github.com/spatie/laravel-tags/issues",
- "source": "https://github.com/spatie/laravel-tags/tree/4.10.1"
+ "source": "https://github.com/spatie/laravel-tags/tree/4.12.0"
},
"funding": [
{
@@ -5496,7 +5444,7 @@
"type": "github"
}
],
- "time": "2025-10-13T14:16:14+00:00"
+ "time": "2026-06-20T14:00:15+00:00"
},
{
"name": "spatie/laravel-translatable",
@@ -5583,16 +5531,16 @@
},
{
"name": "spatie/temporary-directory",
- "version": "2.3.0",
+ "version": "2.4.0",
"source": {
"type": "git",
"url": "https://github.com/spatie/temporary-directory.git",
- "reference": "580eddfe9a0a41a902cac6eeb8f066b42e65a32b"
+ "reference": "32cbb9645b28839cf4f476708e99a2c70e6802c9"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/temporary-directory/zipball/580eddfe9a0a41a902cac6eeb8f066b42e65a32b",
- "reference": "580eddfe9a0a41a902cac6eeb8f066b42e65a32b",
+ "url": "https://api.github.com/repos/spatie/temporary-directory/zipball/32cbb9645b28839cf4f476708e99a2c70e6802c9",
+ "reference": "32cbb9645b28839cf4f476708e99a2c70e6802c9",
"shasum": ""
},
"require": {
@@ -5628,7 +5576,7 @@
],
"support": {
"issues": "https://github.com/spatie/temporary-directory/issues",
- "source": "https://github.com/spatie/temporary-directory/tree/2.3.0"
+ "source": "https://github.com/spatie/temporary-directory/tree/2.4.0"
},
"funding": [
{
@@ -5640,7 +5588,7 @@
"type": "github"
}
],
- "time": "2025-01-13T13:04:43+00:00"
+ "time": "2026-06-22T07:55:44+00:00"
},
{
"name": "stevebauman/purify",
@@ -5710,16 +5658,16 @@
},
{
"name": "symfony/console",
- "version": "v6.4.27",
+ "version": "v6.4.42",
"source": {
"type": "git",
"url": "https://github.com/symfony/console.git",
- "reference": "13d3176cf8ad8ced24202844e9f95af11e2959fc"
+ "reference": "9ef84af84a7b66396da483634227650506428639"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/console/zipball/13d3176cf8ad8ced24202844e9f95af11e2959fc",
- "reference": "13d3176cf8ad8ced24202844e9f95af11e2959fc",
+ "url": "https://api.github.com/repos/symfony/console/zipball/9ef84af84a7b66396da483634227650506428639",
+ "reference": "9ef84af84a7b66396da483634227650506428639",
"shasum": ""
},
"require": {
@@ -5784,7 +5732,7 @@
"terminal"
],
"support": {
- "source": "https://github.com/symfony/console/tree/v6.4.27"
+ "source": "https://github.com/symfony/console/tree/v6.4.42"
},
"funding": [
{
@@ -5804,20 +5752,20 @@
"type": "tidelift"
}
],
- "time": "2025-10-06T10:25:16+00:00"
+ "time": "2026-06-15T05:35:29+00:00"
},
{
"name": "symfony/css-selector",
- "version": "v7.3.6",
+ "version": "v7.4.9",
"source": {
"type": "git",
"url": "https://github.com/symfony/css-selector.git",
- "reference": "84321188c4754e64273b46b406081ad9b18e8614"
+ "reference": "b75663ed96cf4756e28e3105476f220f92886cc4"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/css-selector/zipball/84321188c4754e64273b46b406081ad9b18e8614",
- "reference": "84321188c4754e64273b46b406081ad9b18e8614",
+ "url": "https://api.github.com/repos/symfony/css-selector/zipball/b75663ed96cf4756e28e3105476f220f92886cc4",
+ "reference": "b75663ed96cf4756e28e3105476f220f92886cc4",
"shasum": ""
},
"require": {
@@ -5853,7 +5801,7 @@
"description": "Converts CSS selectors to XPath expressions",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/css-selector/tree/v7.3.6"
+ "source": "https://github.com/symfony/css-selector/tree/v7.4.9"
},
"funding": [
{
@@ -5873,20 +5821,20 @@
"type": "tidelift"
}
],
- "time": "2025-10-29T17:24:25+00:00"
+ "time": "2026-04-18T13:18:21+00:00"
},
{
"name": "symfony/deprecation-contracts",
- "version": "v3.6.0",
+ "version": "v3.7.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/deprecation-contracts.git",
- "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
+ "reference": "f3202fa1b5097b0af062dc978b32ecf63404e31d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
- "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
+ "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/f3202fa1b5097b0af062dc978b32ecf63404e31d",
+ "reference": "f3202fa1b5097b0af062dc978b32ecf63404e31d",
"shasum": ""
},
"require": {
@@ -5899,7 +5847,7 @@
"name": "symfony/contracts"
},
"branch-alias": {
- "dev-main": "3.6-dev"
+ "dev-main": "3.7-dev"
}
},
"autoload": {
@@ -5924,7 +5872,7 @@
"description": "A generic function and convention to trigger deprecation notices",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
+ "source": "https://github.com/symfony/deprecation-contracts/tree/v3.7.1"
},
"funding": [
{
@@ -5935,25 +5883,29 @@
"url": "https://github.com/fabpot",
"type": "github"
},
+ {
+ "url": "https://github.com/nicolas-grekas",
+ "type": "github"
+ },
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
- "time": "2024-09-25T14:21:43+00:00"
+ "time": "2026-06-05T06:23:12+00:00"
},
{
"name": "symfony/error-handler",
- "version": "v6.4.26",
+ "version": "v6.4.36",
"source": {
"type": "git",
"url": "https://github.com/symfony/error-handler.git",
- "reference": "41bedcaec5b72640b0ec2096547b75fda72ead6c"
+ "reference": "2ea68f0e1835ad6a126f93bbc14cd236c10ab361"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/error-handler/zipball/41bedcaec5b72640b0ec2096547b75fda72ead6c",
- "reference": "41bedcaec5b72640b0ec2096547b75fda72ead6c",
+ "url": "https://api.github.com/repos/symfony/error-handler/zipball/2ea68f0e1835ad6a126f93bbc14cd236c10ab361",
+ "reference": "2ea68f0e1835ad6a126f93bbc14cd236c10ab361",
"shasum": ""
},
"require": {
@@ -5999,7 +5951,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/v6.4.26"
+ "source": "https://github.com/symfony/error-handler/tree/v6.4.36"
},
"funding": [
{
@@ -6019,20 +5971,20 @@
"type": "tidelift"
}
],
- "time": "2025-09-11T09:57:09+00:00"
+ "time": "2026-03-10T15:56:14+00:00"
},
{
"name": "symfony/event-dispatcher",
- "version": "v7.3.3",
+ "version": "v7.4.14",
"source": {
"type": "git",
"url": "https://github.com/symfony/event-dispatcher.git",
- "reference": "b7dc69e71de420ac04bc9ab830cf3ffebba48191"
+ "reference": "51fe3d170227be8d1772214b82ae506e15ed78ff"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/b7dc69e71de420ac04bc9ab830cf3ffebba48191",
- "reference": "b7dc69e71de420ac04bc9ab830cf3ffebba48191",
+ "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/51fe3d170227be8d1772214b82ae506e15ed78ff",
+ "reference": "51fe3d170227be8d1772214b82ae506e15ed78ff",
"shasum": ""
},
"require": {
@@ -6049,13 +6001,14 @@
},
"require-dev": {
"psr/log": "^1|^2|^3",
- "symfony/config": "^6.4|^7.0",
- "symfony/dependency-injection": "^6.4|^7.0",
- "symfony/error-handler": "^6.4|^7.0",
- "symfony/expression-language": "^6.4|^7.0",
- "symfony/http-foundation": "^6.4|^7.0",
+ "symfony/config": "^6.4|^7.0|^8.0",
+ "symfony/dependency-injection": "^6.4|^7.0|^8.0",
+ "symfony/error-handler": "^6.4|^7.0|^8.0",
+ "symfony/expression-language": "^6.4|^7.0|^8.0",
+ "symfony/framework-bundle": "^6.4|^7.0|^8.0",
+ "symfony/http-foundation": "^6.4|^7.0|^8.0",
"symfony/service-contracts": "^2.5|^3",
- "symfony/stopwatch": "^6.4|^7.0"
+ "symfony/stopwatch": "^6.4|^7.0|^8.0"
},
"type": "library",
"autoload": {
@@ -6083,7 +6036,7 @@
"description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/event-dispatcher/tree/v7.3.3"
+ "source": "https://github.com/symfony/event-dispatcher/tree/v7.4.14"
},
"funding": [
{
@@ -6103,20 +6056,20 @@
"type": "tidelift"
}
],
- "time": "2025-08-13T11:49:31+00:00"
+ "time": "2026-06-06T11:10:32+00:00"
},
{
"name": "symfony/event-dispatcher-contracts",
- "version": "v3.6.0",
+ "version": "v3.7.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/event-dispatcher-contracts.git",
- "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
+ "reference": "c7de7a00ffb67842132da02ea92988a39ccd9f4e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
- "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
+ "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/c7de7a00ffb67842132da02ea92988a39ccd9f4e",
+ "reference": "c7de7a00ffb67842132da02ea92988a39ccd9f4e",
"shasum": ""
},
"require": {
@@ -6130,7 +6083,7 @@
"name": "symfony/contracts"
},
"branch-alias": {
- "dev-main": "3.6-dev"
+ "dev-main": "3.7-dev"
}
},
"autoload": {
@@ -6163,7 +6116,77 @@
"standards"
],
"support": {
- "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
+ "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.7.1"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/nicolas-grekas",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2026-06-05T06:23:12+00:00"
+ },
+ {
+ "name": "symfony/filesystem",
+ "version": "v7.4.11",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/filesystem.git",
+ "reference": "d721ea61b4a5fba8c5b6e7c1feda19efea144b50"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/filesystem/zipball/d721ea61b4a5fba8c5b6e7c1feda19efea144b50",
+ "reference": "d721ea61b4a5fba8c5b6e7c1feda19efea144b50",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2",
+ "symfony/polyfill-ctype": "~1.8",
+ "symfony/polyfill-mbstring": "~1.8"
+ },
+ "require-dev": {
+ "symfony/process": "^6.4|^7.0|^8.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Filesystem\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Provides basic utilities for the filesystem",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/filesystem/tree/v7.4.11"
},
"funding": [
{
@@ -6174,25 +6197,29 @@
"url": "https://github.com/fabpot",
"type": "github"
},
+ {
+ "url": "https://github.com/nicolas-grekas",
+ "type": "github"
+ },
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
- "time": "2024-09-25T14:21:43+00:00"
+ "time": "2026-05-11T16:38:44+00:00"
},
{
"name": "symfony/finder",
- "version": "v6.4.27",
+ "version": "v6.4.42",
"source": {
"type": "git",
"url": "https://github.com/symfony/finder.git",
- "reference": "a1b6aa435d2fba50793b994a839c32b6064f063b"
+ "reference": "0b73dac42493acbadbba644207a715b254e9b029"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/finder/zipball/a1b6aa435d2fba50793b994a839c32b6064f063b",
- "reference": "a1b6aa435d2fba50793b994a839c32b6064f063b",
+ "url": "https://api.github.com/repos/symfony/finder/zipball/0b73dac42493acbadbba644207a715b254e9b029",
+ "reference": "0b73dac42493acbadbba644207a715b254e9b029",
"shasum": ""
},
"require": {
@@ -6227,7 +6254,7 @@
"description": "Finds files and directories via an intuitive fluent interface",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/finder/tree/v6.4.27"
+ "source": "https://github.com/symfony/finder/tree/v6.4.42"
},
"funding": [
{
@@ -6247,20 +6274,20 @@
"type": "tidelift"
}
],
- "time": "2025-10-15T18:32:00+00:00"
+ "time": "2026-06-26T15:18:24+00:00"
},
{
"name": "symfony/http-foundation",
- "version": "v6.4.29",
+ "version": "v6.4.42",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-foundation.git",
- "reference": "b03d11e015552a315714c127d8d1e0f9e970ec88"
+ "reference": "23dcf8e0f59cbbfa9d2894f58fd8be6833794372"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-foundation/zipball/b03d11e015552a315714c127d8d1e0f9e970ec88",
- "reference": "b03d11e015552a315714c127d8d1e0f9e970ec88",
+ "url": "https://api.github.com/repos/symfony/http-foundation/zipball/23dcf8e0f59cbbfa9d2894f58fd8be6833794372",
+ "reference": "23dcf8e0f59cbbfa9d2894f58fd8be6833794372",
"shasum": ""
},
"require": {
@@ -6308,7 +6335,7 @@
"description": "Defines an object-oriented layer for the HTTP specification",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/http-foundation/tree/v6.4.29"
+ "source": "https://github.com/symfony/http-foundation/tree/v6.4.42"
},
"funding": [
{
@@ -6328,20 +6355,20 @@
"type": "tidelift"
}
],
- "time": "2025-11-08T16:40:12+00:00"
+ "time": "2026-06-16T10:12:24+00:00"
},
{
"name": "symfony/http-kernel",
- "version": "v6.4.29",
+ "version": "v6.4.42",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-kernel.git",
- "reference": "18818b48f54c1d2bd92b41d82d8345af50b15658"
+ "reference": "51fd5bb7d4f221ceeac927e14ade63962e27a47c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-kernel/zipball/18818b48f54c1d2bd92b41d82d8345af50b15658",
- "reference": "18818b48f54c1d2bd92b41d82d8345af50b15658",
+ "url": "https://api.github.com/repos/symfony/http-kernel/zipball/51fd5bb7d4f221ceeac927e14ade63962e27a47c",
+ "reference": "51fd5bb7d4f221ceeac927e14ade63962e27a47c",
"shasum": ""
},
"require": {
@@ -6382,7 +6409,7 @@
"symfony/config": "^6.1|^7.0",
"symfony/console": "^5.4|^6.0|^7.0",
"symfony/css-selector": "^5.4|^6.0|^7.0",
- "symfony/dependency-injection": "^6.4|^7.0",
+ "symfony/dependency-injection": "^6.4.1|^7.0.1",
"symfony/dom-crawler": "^5.4|^6.0|^7.0",
"symfony/expression-language": "^5.4|^6.0|^7.0",
"symfony/finder": "^5.4|^6.0|^7.0",
@@ -6426,7 +6453,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/v6.4.29"
+ "source": "https://github.com/symfony/http-kernel/tree/v6.4.42"
},
"funding": [
{
@@ -6446,20 +6473,20 @@
"type": "tidelift"
}
],
- "time": "2025-11-12T11:22:59+00:00"
+ "time": "2026-06-27T09:10:20+00:00"
},
{
"name": "symfony/mailer",
- "version": "v6.4.27",
+ "version": "v6.4.40",
"source": {
"type": "git",
"url": "https://github.com/symfony/mailer.git",
- "reference": "2f096718ed718996551f66e3a24e12b2ed027f95"
+ "reference": "94fd44f3052e02340b0dd4447a7d7a5856e32da2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/mailer/zipball/2f096718ed718996551f66e3a24e12b2ed027f95",
- "reference": "2f096718ed718996551f66e3a24e12b2ed027f95",
+ "url": "https://api.github.com/repos/symfony/mailer/zipball/94fd44f3052e02340b0dd4447a7d7a5856e32da2",
+ "reference": "94fd44f3052e02340b0dd4447a7d7a5856e32da2",
"shasum": ""
},
"require": {
@@ -6510,7 +6537,7 @@
"description": "Helps sending emails",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/mailer/tree/v6.4.27"
+ "source": "https://github.com/symfony/mailer/tree/v6.4.40"
},
"funding": [
{
@@ -6530,20 +6557,20 @@
"type": "tidelift"
}
],
- "time": "2025-10-24T13:29:09+00:00"
+ "time": "2026-05-19T20:33:22+00:00"
},
{
"name": "symfony/mime",
- "version": "v6.4.26",
+ "version": "v6.4.41",
"source": {
"type": "git",
"url": "https://github.com/symfony/mime.git",
- "reference": "61ab9681cdfe315071eb4fa79b6ad6ab030a9235"
+ "reference": "5575d37f8841e4e31d5df79ab3db078ae557ff8e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/mime/zipball/61ab9681cdfe315071eb4fa79b6ad6ab030a9235",
- "reference": "61ab9681cdfe315071eb4fa79b6ad6ab030a9235",
+ "url": "https://api.github.com/repos/symfony/mime/zipball/5575d37f8841e4e31d5df79ab3db078ae557ff8e",
+ "reference": "5575d37f8841e4e31d5df79ab3db078ae557ff8e",
"shasum": ""
},
"require": {
@@ -6599,7 +6626,7 @@
"mime-type"
],
"support": {
- "source": "https://github.com/symfony/mime/tree/v6.4.26"
+ "source": "https://github.com/symfony/mime/tree/v6.4.41"
},
"funding": [
{
@@ -6619,20 +6646,20 @@
"type": "tidelift"
}
],
- "time": "2025-09-16T08:22:30+00:00"
+ "time": "2026-05-23T14:40:34+00:00"
},
{
"name": "symfony/options-resolver",
- "version": "v7.3.3",
+ "version": "v7.4.8",
"source": {
"type": "git",
"url": "https://github.com/symfony/options-resolver.git",
- "reference": "0ff2f5c3df08a395232bbc3c2eb7e84912df911d"
+ "reference": "2888fcdc4dc2fd5f7c7397be78631e8af12e02b4"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/options-resolver/zipball/0ff2f5c3df08a395232bbc3c2eb7e84912df911d",
- "reference": "0ff2f5c3df08a395232bbc3c2eb7e84912df911d",
+ "url": "https://api.github.com/repos/symfony/options-resolver/zipball/2888fcdc4dc2fd5f7c7397be78631e8af12e02b4",
+ "reference": "2888fcdc4dc2fd5f7c7397be78631e8af12e02b4",
"shasum": ""
},
"require": {
@@ -6670,7 +6697,7 @@
"options"
],
"support": {
- "source": "https://github.com/symfony/options-resolver/tree/v7.3.3"
+ "source": "https://github.com/symfony/options-resolver/tree/v7.4.8"
},
"funding": [
{
@@ -6690,20 +6717,20 @@
"type": "tidelift"
}
],
- "time": "2025-08-05T10:16:07+00:00"
+ "time": "2026-03-24T13:12:05+00:00"
},
{
"name": "symfony/polyfill-ctype",
- "version": "v1.33.0",
+ "version": "v1.37.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-ctype.git",
- "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
+ "reference": "141046a8f9477948ff284fa65be2095baafb94f2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
- "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
+ "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/141046a8f9477948ff284fa65be2095baafb94f2",
+ "reference": "141046a8f9477948ff284fa65be2095baafb94f2",
"shasum": ""
},
"require": {
@@ -6753,7 +6780,7 @@
"portable"
],
"support": {
- "source": "https://github.com/symfony/polyfill-ctype/tree/v1.33.0"
+ "source": "https://github.com/symfony/polyfill-ctype/tree/v1.37.0"
},
"funding": [
{
@@ -6773,20 +6800,20 @@
"type": "tidelift"
}
],
- "time": "2024-09-09T11:45:10+00:00"
+ "time": "2026-04-10T16:19:22+00:00"
},
{
"name": "symfony/polyfill-intl-grapheme",
- "version": "v1.33.0",
+ "version": "v1.38.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-intl-grapheme.git",
- "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70"
+ "reference": "e9247d281d694a5120554d9afaf54e070e88a603"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70",
- "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/e9247d281d694a5120554d9afaf54e070e88a603",
+ "reference": "e9247d281d694a5120554d9afaf54e070e88a603",
"shasum": ""
},
"require": {
@@ -6835,7 +6862,7 @@
"shim"
],
"support": {
- "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0"
+ "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.38.1"
},
"funding": [
{
@@ -6855,20 +6882,20 @@
"type": "tidelift"
}
],
- "time": "2025-06-27T09:58:17+00:00"
+ "time": "2026-05-26T05:58:03+00:00"
},
{
"name": "symfony/polyfill-intl-idn",
- "version": "v1.33.0",
+ "version": "v1.38.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-intl-idn.git",
- "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
+ "reference": "dc21118016c039a66235cf93d96b435ffb282412"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
- "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/dc21118016c039a66235cf93d96b435ffb282412",
+ "reference": "dc21118016c039a66235cf93d96b435ffb282412",
"shasum": ""
},
"require": {
@@ -6922,7 +6949,7 @@
"shim"
],
"support": {
- "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.33.0"
+ "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.38.1"
},
"funding": [
{
@@ -6942,20 +6969,20 @@
"type": "tidelift"
}
],
- "time": "2024-09-10T14:38:51+00:00"
+ "time": "2026-05-25T15:22:23+00:00"
},
{
"name": "symfony/polyfill-intl-normalizer",
- "version": "v1.33.0",
+ "version": "v1.38.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-intl-normalizer.git",
- "reference": "3833d7255cc303546435cb650316bff708a1c75c"
+ "reference": "2d446c214bdbe5b71bde5011b060a05fece3ae6b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
- "reference": "3833d7255cc303546435cb650316bff708a1c75c",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/2d446c214bdbe5b71bde5011b060a05fece3ae6b",
+ "reference": "2d446c214bdbe5b71bde5011b060a05fece3ae6b",
"shasum": ""
},
"require": {
@@ -7007,7 +7034,7 @@
"shim"
],
"support": {
- "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.33.0"
+ "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.38.0"
},
"funding": [
{
@@ -7027,20 +7054,20 @@
"type": "tidelift"
}
],
- "time": "2024-09-09T11:45:10+00:00"
+ "time": "2026-05-25T13:48:31+00:00"
},
{
"name": "symfony/polyfill-mbstring",
- "version": "v1.33.0",
+ "version": "v1.38.2",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-mbstring.git",
- "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
+ "reference": "d3d318bad5e7a1bfbd026009c8bfb8d8f99ae6b6"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
- "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
+ "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/d3d318bad5e7a1bfbd026009c8bfb8d8f99ae6b6",
+ "reference": "d3d318bad5e7a1bfbd026009c8bfb8d8f99ae6b6",
"shasum": ""
},
"require": {
@@ -7092,7 +7119,7 @@
"shim"
],
"support": {
- "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0"
+ "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.38.2"
},
"funding": [
{
@@ -7112,20 +7139,20 @@
"type": "tidelift"
}
],
- "time": "2024-12-23T08:48:59+00:00"
+ "time": "2026-05-27T06:59:30+00:00"
},
{
"name": "symfony/polyfill-php80",
- "version": "v1.33.0",
+ "version": "v1.37.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-php80.git",
- "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
+ "reference": "dfb55726c3a76ea3b6459fcfda1ec2d80a682411"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
- "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
+ "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dfb55726c3a76ea3b6459fcfda1ec2d80a682411",
+ "reference": "dfb55726c3a76ea3b6459fcfda1ec2d80a682411",
"shasum": ""
},
"require": {
@@ -7176,7 +7203,7 @@
"shim"
],
"support": {
- "source": "https://github.com/symfony/polyfill-php80/tree/v1.33.0"
+ "source": "https://github.com/symfony/polyfill-php80/tree/v1.37.0"
},
"funding": [
{
@@ -7196,20 +7223,20 @@
"type": "tidelift"
}
],
- "time": "2025-01-02T08:10:11+00:00"
+ "time": "2026-04-10T16:19:22+00:00"
},
{
"name": "symfony/polyfill-php83",
- "version": "v1.33.0",
+ "version": "v1.38.2",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-php83.git",
- "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5"
+ "reference": "796a26abb75ce49f3a84433cd81bf1009d73d5f8"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/17f6f9a6b1735c0f163024d959f700cfbc5155e5",
- "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5",
+ "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/796a26abb75ce49f3a84433cd81bf1009d73d5f8",
+ "reference": "796a26abb75ce49f3a84433cd81bf1009d73d5f8",
"shasum": ""
},
"require": {
@@ -7256,7 +7283,7 @@
"shim"
],
"support": {
- "source": "https://github.com/symfony/polyfill-php83/tree/v1.33.0"
+ "source": "https://github.com/symfony/polyfill-php83/tree/v1.38.2"
},
"funding": [
{
@@ -7276,20 +7303,20 @@
"type": "tidelift"
}
],
- "time": "2025-07-08T02:45:35+00:00"
+ "time": "2026-05-27T06:51:48+00:00"
},
{
"name": "symfony/polyfill-uuid",
- "version": "v1.33.0",
+ "version": "v1.37.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-uuid.git",
- "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2"
+ "reference": "26dfec253c4cf3e51b541b52ddf7e42cb0908e94"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
- "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
+ "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/26dfec253c4cf3e51b541b52ddf7e42cb0908e94",
+ "reference": "26dfec253c4cf3e51b541b52ddf7e42cb0908e94",
"shasum": ""
},
"require": {
@@ -7339,7 +7366,7 @@
"uuid"
],
"support": {
- "source": "https://github.com/symfony/polyfill-uuid/tree/v1.33.0"
+ "source": "https://github.com/symfony/polyfill-uuid/tree/v1.37.0"
},
"funding": [
{
@@ -7359,20 +7386,20 @@
"type": "tidelift"
}
],
- "time": "2024-09-09T11:45:10+00:00"
+ "time": "2026-04-10T16:19:22+00:00"
},
{
"name": "symfony/process",
- "version": "v6.4.26",
+ "version": "v6.4.41",
"source": {
"type": "git",
"url": "https://github.com/symfony/process.git",
- "reference": "48bad913268c8cafabbf7034b39c8bb24fbc5ab8"
+ "reference": "c8fc09bdfe9fde9aaa89b415a4477feaccec16a7"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/process/zipball/48bad913268c8cafabbf7034b39c8bb24fbc5ab8",
- "reference": "48bad913268c8cafabbf7034b39c8bb24fbc5ab8",
+ "url": "https://api.github.com/repos/symfony/process/zipball/c8fc09bdfe9fde9aaa89b415a4477feaccec16a7",
+ "reference": "c8fc09bdfe9fde9aaa89b415a4477feaccec16a7",
"shasum": ""
},
"require": {
@@ -7404,7 +7431,7 @@
"description": "Executes commands in sub-processes",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/process/tree/v6.4.26"
+ "source": "https://github.com/symfony/process/tree/v6.4.41"
},
"funding": [
{
@@ -7424,26 +7451,26 @@
"type": "tidelift"
}
],
- "time": "2025-09-11T09:57:09+00:00"
+ "time": "2026-05-23T13:47:21+00:00"
},
{
"name": "symfony/psr-http-message-bridge",
- "version": "v7.3.0",
+ "version": "v7.4.8",
"source": {
"type": "git",
"url": "https://github.com/symfony/psr-http-message-bridge.git",
- "reference": "03f2f72319e7acaf2a9f6fcbe30ef17eec51594f"
+ "reference": "76f1a57719a4a04c0ea18678a6c9305b5dcb9da8"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/03f2f72319e7acaf2a9f6fcbe30ef17eec51594f",
- "reference": "03f2f72319e7acaf2a9f6fcbe30ef17eec51594f",
+ "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/76f1a57719a4a04c0ea18678a6c9305b5dcb9da8",
+ "reference": "76f1a57719a4a04c0ea18678a6c9305b5dcb9da8",
"shasum": ""
},
"require": {
"php": ">=8.2",
"psr/http-message": "^1.0|^2.0",
- "symfony/http-foundation": "^6.4|^7.0"
+ "symfony/http-foundation": "^6.4|^7.0|^8.0"
},
"conflict": {
"php-http/discovery": "<1.15",
@@ -7453,11 +7480,12 @@
"nyholm/psr7": "^1.1",
"php-http/discovery": "^1.15",
"psr/log": "^1.1.4|^2|^3",
- "symfony/browser-kit": "^6.4|^7.0",
- "symfony/config": "^6.4|^7.0",
- "symfony/event-dispatcher": "^6.4|^7.0",
- "symfony/framework-bundle": "^6.4|^7.0",
- "symfony/http-kernel": "^6.4|^7.0"
+ "symfony/browser-kit": "^6.4|^7.0|^8.0",
+ "symfony/config": "^6.4|^7.0|^8.0",
+ "symfony/event-dispatcher": "^6.4|^7.0|^8.0",
+ "symfony/framework-bundle": "^6.4.13|^7.1.6|^8.0",
+ "symfony/http-kernel": "^6.4.13|^7.1.6|^8.0",
+ "symfony/runtime": "^6.4.13|^7.1.6|^8.0"
},
"type": "symfony-bridge",
"autoload": {
@@ -7491,7 +7519,7 @@
"psr-7"
],
"support": {
- "source": "https://github.com/symfony/psr-http-message-bridge/tree/v7.3.0"
+ "source": "https://github.com/symfony/psr-http-message-bridge/tree/v7.4.8"
},
"funding": [
{
@@ -7502,25 +7530,29 @@
"url": "https://github.com/fabpot",
"type": "github"
},
+ {
+ "url": "https://github.com/nicolas-grekas",
+ "type": "github"
+ },
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
- "time": "2024-09-26T08:57:56+00:00"
+ "time": "2026-03-24T13:12:05+00:00"
},
{
"name": "symfony/routing",
- "version": "v6.4.28",
+ "version": "v6.4.41",
"source": {
"type": "git",
"url": "https://github.com/symfony/routing.git",
- "reference": "ae064a6d9cf39507f9797658465a2ca702965fa8"
+ "reference": "af04c79671fd8df0805a44c83fa2b0ba56c8329e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/routing/zipball/ae064a6d9cf39507f9797658465a2ca702965fa8",
- "reference": "ae064a6d9cf39507f9797658465a2ca702965fa8",
+ "url": "https://api.github.com/repos/symfony/routing/zipball/af04c79671fd8df0805a44c83fa2b0ba56c8329e",
+ "reference": "af04c79671fd8df0805a44c83fa2b0ba56c8329e",
"shasum": ""
},
"require": {
@@ -7574,7 +7606,7 @@
"url"
],
"support": {
- "source": "https://github.com/symfony/routing/tree/v6.4.28"
+ "source": "https://github.com/symfony/routing/tree/v6.4.41"
},
"funding": [
{
@@ -7594,20 +7626,20 @@
"type": "tidelift"
}
],
- "time": "2025-10-31T16:43:05+00:00"
+ "time": "2026-05-24T11:18:16+00:00"
},
{
"name": "symfony/service-contracts",
- "version": "v3.6.1",
+ "version": "v3.7.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/service-contracts.git",
- "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43"
+ "reference": "c0a284bab1ed8aa0417e3d69250ab437739563a0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/service-contracts/zipball/45112560a3ba2d715666a509a0bc9521d10b6c43",
- "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43",
+ "url": "https://api.github.com/repos/symfony/service-contracts/zipball/c0a284bab1ed8aa0417e3d69250ab437739563a0",
+ "reference": "c0a284bab1ed8aa0417e3d69250ab437739563a0",
"shasum": ""
},
"require": {
@@ -7625,7 +7657,7 @@
"name": "symfony/contracts"
},
"branch-alias": {
- "dev-main": "3.6-dev"
+ "dev-main": "3.7-dev"
}
},
"autoload": {
@@ -7661,7 +7693,7 @@
"standards"
],
"support": {
- "source": "https://github.com/symfony/service-contracts/tree/v3.6.1"
+ "source": "https://github.com/symfony/service-contracts/tree/v3.7.1"
},
"funding": [
{
@@ -7681,26 +7713,27 @@
"type": "tidelift"
}
],
- "time": "2025-07-15T11:30:57+00:00"
+ "time": "2026-06-16T09:55:08+00:00"
},
{
"name": "symfony/string",
- "version": "v7.3.4",
+ "version": "v7.4.13",
"source": {
"type": "git",
"url": "https://github.com/symfony/string.git",
- "reference": "f96476035142921000338bad71e5247fbc138872"
+ "reference": "961683010db3b27ec6ebcd7308e6e1ee8fa7ffde"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/string/zipball/f96476035142921000338bad71e5247fbc138872",
- "reference": "f96476035142921000338bad71e5247fbc138872",
+ "url": "https://api.github.com/repos/symfony/string/zipball/961683010db3b27ec6ebcd7308e6e1ee8fa7ffde",
+ "reference": "961683010db3b27ec6ebcd7308e6e1ee8fa7ffde",
"shasum": ""
},
"require": {
"php": ">=8.2",
+ "symfony/deprecation-contracts": "^2.5|^3.0",
"symfony/polyfill-ctype": "~1.8",
- "symfony/polyfill-intl-grapheme": "~1.0",
+ "symfony/polyfill-intl-grapheme": "~1.33",
"symfony/polyfill-intl-normalizer": "~1.0",
"symfony/polyfill-mbstring": "~1.0"
},
@@ -7708,11 +7741,11 @@
"symfony/translation-contracts": "<2.5"
},
"require-dev": {
- "symfony/emoji": "^7.1",
- "symfony/http-client": "^6.4|^7.0",
- "symfony/intl": "^6.4|^7.0",
+ "symfony/emoji": "^7.1|^8.0",
+ "symfony/http-client": "^6.4|^7.0|^8.0",
+ "symfony/intl": "^6.4|^7.0|^8.0",
"symfony/translation-contracts": "^2.5|^3.0",
- "symfony/var-exporter": "^6.4|^7.0"
+ "symfony/var-exporter": "^6.4|^7.0|^8.0"
},
"type": "library",
"autoload": {
@@ -7751,7 +7784,7 @@
"utf8"
],
"support": {
- "source": "https://github.com/symfony/string/tree/v7.3.4"
+ "source": "https://github.com/symfony/string/tree/v7.4.13"
},
"funding": [
{
@@ -7771,20 +7804,20 @@
"type": "tidelift"
}
],
- "time": "2025-09-11T14:36:48+00:00"
+ "time": "2026-05-23T15:23:29+00:00"
},
{
"name": "symfony/translation",
- "version": "v6.4.26",
+ "version": "v6.4.42",
"source": {
"type": "git",
"url": "https://github.com/symfony/translation.git",
- "reference": "c8559fe25c7ee7aa9d28f228903a46db008156a4"
+ "reference": "fef99cef37890b350976f5f492854faefadd4e15"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/translation/zipball/c8559fe25c7ee7aa9d28f228903a46db008156a4",
- "reference": "c8559fe25c7ee7aa9d28f228903a46db008156a4",
+ "url": "https://api.github.com/repos/symfony/translation/zipball/fef99cef37890b350976f5f492854faefadd4e15",
+ "reference": "fef99cef37890b350976f5f492854faefadd4e15",
"shasum": ""
},
"require": {
@@ -7850,7 +7883,7 @@
"description": "Provides tools to internationalize your application",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/translation/tree/v6.4.26"
+ "source": "https://github.com/symfony/translation/tree/v6.4.42"
},
"funding": [
{
@@ -7870,20 +7903,20 @@
"type": "tidelift"
}
],
- "time": "2025-09-05T18:17:25+00:00"
+ "time": "2026-06-05T16:46:18+00:00"
},
{
"name": "symfony/translation-contracts",
- "version": "v3.6.1",
+ "version": "v3.7.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/translation-contracts.git",
- "reference": "65a8bc82080447fae78373aa10f8d13b38338977"
+ "reference": "ccb206b98faccc511ebae8e5fad50f2dc0b30621"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/65a8bc82080447fae78373aa10f8d13b38338977",
- "reference": "65a8bc82080447fae78373aa10f8d13b38338977",
+ "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/ccb206b98faccc511ebae8e5fad50f2dc0b30621",
+ "reference": "ccb206b98faccc511ebae8e5fad50f2dc0b30621",
"shasum": ""
},
"require": {
@@ -7896,7 +7929,7 @@
"name": "symfony/contracts"
},
"branch-alias": {
- "dev-main": "3.6-dev"
+ "dev-main": "3.7-dev"
}
},
"autoload": {
@@ -7932,7 +7965,7 @@
"standards"
],
"support": {
- "source": "https://github.com/symfony/translation-contracts/tree/v3.6.1"
+ "source": "https://github.com/symfony/translation-contracts/tree/v3.7.1"
},
"funding": [
{
@@ -7952,20 +7985,20 @@
"type": "tidelift"
}
],
- "time": "2025-07-15T13:41:35+00:00"
+ "time": "2026-06-05T06:23:12+00:00"
},
{
"name": "symfony/uid",
- "version": "v6.4.24",
+ "version": "v6.4.32",
"source": {
"type": "git",
"url": "https://github.com/symfony/uid.git",
- "reference": "17da16a750541a42cf2183935e0f6008316c23f7"
+ "reference": "6b973c385f00341b246f697d82dc01a09107acdd"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/uid/zipball/17da16a750541a42cf2183935e0f6008316c23f7",
- "reference": "17da16a750541a42cf2183935e0f6008316c23f7",
+ "url": "https://api.github.com/repos/symfony/uid/zipball/6b973c385f00341b246f697d82dc01a09107acdd",
+ "reference": "6b973c385f00341b246f697d82dc01a09107acdd",
"shasum": ""
},
"require": {
@@ -8010,7 +8043,7 @@
"uuid"
],
"support": {
- "source": "https://github.com/symfony/uid/tree/v6.4.24"
+ "source": "https://github.com/symfony/uid/tree/v6.4.32"
},
"funding": [
{
@@ -8030,20 +8063,20 @@
"type": "tidelift"
}
],
- "time": "2025-07-10T08:14:14+00:00"
+ "time": "2025-12-23T15:07:59+00:00"
},
{
"name": "symfony/var-dumper",
- "version": "v6.4.26",
+ "version": "v6.4.42",
"source": {
"type": "git",
"url": "https://github.com/symfony/var-dumper.git",
- "reference": "cfae1497a2f1eaad78dbc0590311c599c7178d4a"
+ "reference": "29adc5e34255f42ca9b8ae61c22b4d9e3f611317"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/var-dumper/zipball/cfae1497a2f1eaad78dbc0590311c599c7178d4a",
- "reference": "cfae1497a2f1eaad78dbc0590311c599c7178d4a",
+ "url": "https://api.github.com/repos/symfony/var-dumper/zipball/29adc5e34255f42ca9b8ae61c22b4d9e3f611317",
+ "reference": "29adc5e34255f42ca9b8ae61c22b4d9e3f611317",
"shasum": ""
},
"require": {
@@ -8098,7 +8131,7 @@
"dump"
],
"support": {
- "source": "https://github.com/symfony/var-dumper/tree/v6.4.26"
+ "source": "https://github.com/symfony/var-dumper/tree/v6.4.42"
},
"funding": [
{
@@ -8118,7 +8151,7 @@
"type": "tidelift"
}
],
- "time": "2025-09-25T15:37:27+00:00"
+ "time": "2026-06-08T07:06:12+00:00"
},
{
"name": "tightenco/collect",
@@ -8177,23 +8210,23 @@
},
{
"name": "tijsverkoyen/css-to-inline-styles",
- "version": "v2.3.0",
+ "version": "v2.4.0",
"source": {
"type": "git",
"url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
- "reference": "0d72ac1c00084279c1816675284073c5a337c20d"
+ "reference": "f0292ccf0ec75843d65027214426b6b163b48b41"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0d72ac1c00084279c1816675284073c5a337c20d",
- "reference": "0d72ac1c00084279c1816675284073c5a337c20d",
+ "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/f0292ccf0ec75843d65027214426b6b163b48b41",
+ "reference": "f0292ccf0ec75843d65027214426b6b163b48b41",
"shasum": ""
},
"require": {
"ext-dom": "*",
"ext-libxml": "*",
"php": "^7.4 || ^8.0",
- "symfony/css-selector": "^5.4 || ^6.0 || ^7.0"
+ "symfony/css-selector": "^5.4 || ^6.0 || ^7.0 || ^8.0"
},
"require-dev": {
"phpstan/phpstan": "^2.0",
@@ -8226,32 +8259,32 @@
"homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
"support": {
"issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
- "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.3.0"
+ "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.4.0"
},
- "time": "2024-12-21T16:25:41+00:00"
+ "time": "2025-12-02T11:56:42+00:00"
},
{
"name": "vlucas/phpdotenv",
- "version": "v5.6.2",
+ "version": "v5.6.4",
"source": {
"type": "git",
"url": "https://github.com/vlucas/phpdotenv.git",
- "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af"
+ "reference": "416df702837983f8d5ff48c9c3fee4f5f57b980b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/24ac4c74f91ee2c193fa1aaa5c249cb0822809af",
- "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af",
+ "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/416df702837983f8d5ff48c9c3fee4f5f57b980b",
+ "reference": "416df702837983f8d5ff48c9c3fee4f5f57b980b",
"shasum": ""
},
"require": {
"ext-pcre": "*",
- "graham-campbell/result-type": "^1.1.3",
+ "graham-campbell/result-type": "^1.1.4",
"php": "^7.2.5 || ^8.0",
- "phpoption/phpoption": "^1.9.3",
- "symfony/polyfill-ctype": "^1.24",
- "symfony/polyfill-mbstring": "^1.24",
- "symfony/polyfill-php80": "^1.24"
+ "phpoption/phpoption": "^1.9.5",
+ "symfony/polyfill-ctype": "^1.26",
+ "symfony/polyfill-mbstring": "^1.26",
+ "symfony/polyfill-php80": "^1.26"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8.2",
@@ -8300,7 +8333,7 @@
],
"support": {
"issues": "https://github.com/vlucas/phpdotenv/issues",
- "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.2"
+ "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.4"
},
"funding": [
{
@@ -8312,27 +8345,27 @@
"type": "tidelift"
}
],
- "time": "2025-04-30T23:37:27+00:00"
+ "time": "2026-07-06T19:11:50+00:00"
},
{
"name": "voku/portable-ascii",
- "version": "2.0.3",
+ "version": "2.1.1",
"source": {
"type": "git",
"url": "https://github.com/voku/portable-ascii.git",
- "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d"
+ "reference": "8e1051fe39379367aecf014f41744ce7539a856f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
- "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
+ "url": "https://api.github.com/repos/voku/portable-ascii/zipball/8e1051fe39379367aecf014f41744ce7539a856f",
+ "reference": "8e1051fe39379367aecf014f41744ce7539a856f",
"shasum": ""
},
"require": {
- "php": ">=7.0.0"
+ "php": ">=7.1.0"
},
"require-dev": {
- "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
+ "phpunit/phpunit": "~8.5 || ~9.6 || ~10.5 || ~11.5"
},
"suggest": {
"ext-intl": "Use Intl for transliterator_transliterate() support"
@@ -8362,7 +8395,7 @@
],
"support": {
"issues": "https://github.com/voku/portable-ascii/issues",
- "source": "https://github.com/voku/portable-ascii/tree/2.0.3"
+ "source": "https://github.com/voku/portable-ascii/tree/2.1.1"
},
"funding": [
{
@@ -8386,7 +8419,7 @@
"type": "tidelift"
}
],
- "time": "2024-11-21T01:49:47+00:00"
+ "time": "2026-04-26T05:33:54+00:00"
}
],
"packages-dev": [
@@ -8641,16 +8674,16 @@
},
{
"name": "barryvdh/reflection-docblock",
- "version": "v2.4.0",
+ "version": "v2.4.1",
"source": {
"type": "git",
"url": "https://github.com/barryvdh/ReflectionDocBlock.git",
- "reference": "d103774cbe7e94ddee7e4870f97f727b43fe7201"
+ "reference": "4f5ba70c30c81f2ce03a16a9965832cfcc31ed3b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/d103774cbe7e94ddee7e4870f97f727b43fe7201",
- "reference": "d103774cbe7e94ddee7e4870f97f727b43fe7201",
+ "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/4f5ba70c30c81f2ce03a16a9965832cfcc31ed3b",
+ "reference": "4f5ba70c30c81f2ce03a16a9965832cfcc31ed3b",
"shasum": ""
},
"require": {
@@ -8687,9 +8720,9 @@
}
],
"support": {
- "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.4.0"
+ "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.4.1"
},
- "time": "2025-07-17T06:07:30+00:00"
+ "time": "2026-03-05T20:09:01+00:00"
},
{
"name": "beyondcode/laravel-dump-server",
@@ -8758,22 +8791,22 @@
},
{
"name": "composer/class-map-generator",
- "version": "1.6.2",
+ "version": "1.7.3",
"source": {
"type": "git",
"url": "https://github.com/composer/class-map-generator.git",
- "reference": "ba9f089655d4cdd64e762a6044f411ccdaec0076"
+ "reference": "86d8208fc3c649a3a999daf1a63c25201be2990f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/composer/class-map-generator/zipball/ba9f089655d4cdd64e762a6044f411ccdaec0076",
- "reference": "ba9f089655d4cdd64e762a6044f411ccdaec0076",
+ "url": "https://api.github.com/repos/composer/class-map-generator/zipball/86d8208fc3c649a3a999daf1a63c25201be2990f",
+ "reference": "86d8208fc3c649a3a999daf1a63c25201be2990f",
"shasum": ""
},
"require": {
"composer/pcre": "^2.1 || ^3.1",
"php": "^7.2 || ^8.0",
- "symfony/finder": "^4.4 || ^5.3 || ^6 || ^7"
+ "symfony/finder": "^4.4 || ^5.3 || ^6 || ^7 || ^8"
},
"require-dev": {
"phpstan/phpstan": "^1.12 || ^2",
@@ -8781,7 +8814,7 @@
"phpstan/phpstan-phpunit": "^1 || ^2",
"phpstan/phpstan-strict-rules": "^1.1 || ^2",
"phpunit/phpunit": "^8",
- "symfony/filesystem": "^5.4 || ^6"
+ "symfony/filesystem": "^5.4 || ^6 || ^7 || ^8"
},
"type": "library",
"extra": {
@@ -8811,7 +8844,7 @@
],
"support": {
"issues": "https://github.com/composer/class-map-generator/issues",
- "source": "https://github.com/composer/class-map-generator/tree/1.6.2"
+ "source": "https://github.com/composer/class-map-generator/tree/1.7.3"
},
"funding": [
{
@@ -8823,32 +8856,33 @@
"type": "github"
}
],
- "time": "2025-08-20T18:52:43+00:00"
+ "time": "2026-05-05T09:17:07+00:00"
},
{
"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": {
@@ -8886,7 +8920,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": [
{
@@ -8896,90 +8930,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"
- },
- {
- "name": "composer/semver",
- "version": "3.4.4",
- "source": {
- "type": "git",
- "url": "https://github.com/composer/semver.git",
- "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/composer/semver/zipball/198166618906cb2de69b95d7d47e5fa8aa1b2b95",
- "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95",
- "shasum": ""
- },
- "require": {
- "php": "^5.3.2 || ^7.0 || ^8.0"
- },
- "require-dev": {
- "phpstan/phpstan": "^1.11",
- "symfony/phpunit-bridge": "^3 || ^7"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "3.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Composer\\Semver\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Nils Adermann",
- "email": "naderman@naderman.de",
- "homepage": "http://www.naderman.de"
- },
- {
- "name": "Jordi Boggiano",
- "email": "j.boggiano@seld.be",
- "homepage": "http://seld.be"
- },
- {
- "name": "Rob Bast",
- "email": "rob.bast@gmail.com",
- "homepage": "http://robbast.nl"
- }
- ],
- "description": "Semver library that offers utilities, version constraint parsing and validation.",
- "keywords": [
- "semantic",
- "semver",
- "validation",
- "versioning"
- ],
- "support": {
- "irc": "ircs://irc.libera.chat:6697/composer",
- "issues": "https://github.com/composer/semver/issues",
- "source": "https://github.com/composer/semver/tree/3.4.4"
- },
- "funding": [
- {
- "url": "https://packagist.com",
- "type": "custom"
- },
- {
- "url": "https://github.com/composer",
- "type": "github"
- }
- ],
- "time": "2025-08-20T19:15:30+00:00"
+ "time": "2026-06-07T11:47:49+00:00"
},
{
"name": "composer/xdebug-handler",
@@ -9794,20 +9747,21 @@
},
{
"name": "orchestra/sidekick",
- "version": "v1.2.17",
+ "version": "v1.2.20",
"source": {
"type": "git",
"url": "https://github.com/orchestral/sidekick.git",
- "reference": "371ce2882ee3f5bf826b36e75d461e51c9cd76c2"
+ "reference": "267a71b56cb2fe1a634d69fc99889c671b77ff43"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/orchestral/sidekick/zipball/371ce2882ee3f5bf826b36e75d461e51c9cd76c2",
- "reference": "371ce2882ee3f5bf826b36e75d461e51c9cd76c2",
+ "url": "https://api.github.com/repos/orchestral/sidekick/zipball/267a71b56cb2fe1a634d69fc99889c671b77ff43",
+ "reference": "267a71b56cb2fe1a634d69fc99889c671b77ff43",
"shasum": ""
},
"require": {
"composer-runtime-api": "^2.2",
+ "composer/semver": "^3.0",
"php": "^8.1",
"symfony/polyfill-php83": "^1.32"
},
@@ -9825,6 +9779,7 @@
"autoload": {
"files": [
"src/Eloquent/functions.php",
+ "src/Filesystem/functions.php",
"src/Http/functions.php",
"src/functions.php"
],
@@ -9845,47 +9800,48 @@
"description": "Packages Toolkit Utilities and Helpers for Laravel",
"support": {
"issues": "https://github.com/orchestral/sidekick/issues",
- "source": "https://github.com/orchestral/sidekick/tree/v1.2.17"
+ "source": "https://github.com/orchestral/sidekick/tree/v1.2.20"
},
- "time": "2025-10-02T11:02:26+00:00"
+ "time": "2026-01-12T11:09:33+00:00"
},
{
"name": "orchestra/testbench-core",
- "version": "v8.39.0",
+ "version": "v8.43.1",
"source": {
"type": "git",
"url": "https://github.com/orchestral/testbench-core.git",
- "reference": "d685c450be94ced6bfdbbfa410be8b5ff4e9b7ba"
+ "reference": "0952b15ea1dd9c7b7cf9a91b9dd043f3347bc73e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/orchestral/testbench-core/zipball/d685c450be94ced6bfdbbfa410be8b5ff4e9b7ba",
- "reference": "d685c450be94ced6bfdbbfa410be8b5ff4e9b7ba",
+ "url": "https://api.github.com/repos/orchestral/testbench-core/zipball/0952b15ea1dd9c7b7cf9a91b9dd043f3347bc73e",
+ "reference": "0952b15ea1dd9c7b7cf9a91b9dd043f3347bc73e",
"shasum": ""
},
"require": {
"composer-runtime-api": "^2.2",
- "orchestra/sidekick": "~1.1.20|~1.2.17",
+ "orchestra/sidekick": "~1.1.23|~1.2.20",
"php": "^8.1",
"symfony/deprecation-contracts": "^2.5|^3.0",
- "symfony/polyfill-php83": "^1.32"
+ "symfony/polyfill-php83": "^1.33"
},
"conflict": {
"brianium/paratest": "<6.4.0|>=7.0.0 <7.1.4|>=8.0.0",
- "laravel/framework": "<10.48.29|>=11.0.0",
+ "laravel/framework": "<10.50.0|>=11.0.0",
"laravel/serializable-closure": "<1.3.0|>=3.0.0",
"nunomaduro/collision": "<6.4.0|>=7.0.0 <7.4.0|>=8.0.0",
"orchestra/testbench-dusk": "<8.32.0|>=9.0.0",
"orchestra/workbench": "<1.0.0",
+ "pestphp/pest": "<2.0.0",
"phpunit/phpunit": "<9.6.0|>=10.3.0 <10.3.3|>=10.6.0"
},
"require-dev": {
"fakerphp/faker": "^1.21",
- "laravel/framework": "^10.48.29",
+ "laravel/framework": "^10.50.0",
"laravel/pint": "^1.20",
"laravel/serializable-closure": "^1.3|^2.0",
"mockery/mockery": "^1.5.1",
- "phpstan/phpstan": "^2.1.14",
+ "phpstan/phpstan": "^2.1.33",
"phpunit/phpunit": "^10.1",
"spatie/laravel-ray": "^1.40.2",
"symfony/process": "^6.2",
@@ -9943,7 +9899,7 @@
"issues": "https://github.com/orchestral/testbench/issues",
"source": "https://github.com/orchestral/testbench-core"
},
- "time": "2025-10-14T11:36:58+00:00"
+ "time": "2026-04-24T08:19:22+00:00"
},
{
"name": "phar-io/manifest",
@@ -10118,16 +10074,16 @@
},
{
"name": "phpdocumentor/reflection-docblock",
- "version": "5.6.3",
+ "version": "5.6.7",
"source": {
"type": "git",
"url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
- "reference": "94f8051919d1b0369a6bcc7931d679a511c03fe9"
+ "reference": "31a105931bc8ffa3a123383829772e832fd8d903"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94f8051919d1b0369a6bcc7931d679a511c03fe9",
- "reference": "94f8051919d1b0369a6bcc7931d679a511c03fe9",
+ "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/31a105931bc8ffa3a123383829772e832fd8d903",
+ "reference": "31a105931bc8ffa3a123383829772e832fd8d903",
"shasum": ""
},
"require": {
@@ -10137,7 +10093,7 @@
"phpdocumentor/reflection-common": "^2.2",
"phpdocumentor/type-resolver": "^1.7",
"phpstan/phpdoc-parser": "^1.7|^2.0",
- "webmozart/assert": "^1.9.1"
+ "webmozart/assert": "^1.9.1 || ^2"
},
"require-dev": {
"mockery/mockery": "~1.3.5 || ~1.6.0",
@@ -10176,22 +10132,22 @@
"description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
"support": {
"issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
- "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.3"
+ "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.7"
},
- "time": "2025-08-01T19:43:32+00:00"
+ "time": "2026-03-18T20:47:46+00:00"
},
{
"name": "phpdocumentor/type-resolver",
- "version": "1.10.0",
+ "version": "1.12.0",
"source": {
"type": "git",
"url": "https://github.com/phpDocumentor/TypeResolver.git",
- "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a"
+ "reference": "92a98ada2b93d9b201a613cb5a33584dde25f195"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/679e3ce485b99e84c775d28e2e96fade9a7fb50a",
- "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a",
+ "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/92a98ada2b93d9b201a613cb5a33584dde25f195",
+ "reference": "92a98ada2b93d9b201a613cb5a33584dde25f195",
"shasum": ""
},
"require": {
@@ -10234,22 +10190,22 @@
"description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
"support": {
"issues": "https://github.com/phpDocumentor/TypeResolver/issues",
- "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.10.0"
+ "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.12.0"
},
- "time": "2024-11-09T15:12:26+00:00"
+ "time": "2025-11-21T15:09:14+00:00"
},
{
"name": "phpstan/phpdoc-parser",
- "version": "2.3.0",
+ "version": "2.3.2",
"source": {
"type": "git",
"url": "https://github.com/phpstan/phpdoc-parser.git",
- "reference": "1e0cd5370df5dd2e556a36b9c62f62e555870495"
+ "reference": "a004701b11273a26cd7955a61d67a7f1e525a45a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/1e0cd5370df5dd2e556a36b9c62f62e555870495",
- "reference": "1e0cd5370df5dd2e556a36b9c62f62e555870495",
+ "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/a004701b11273a26cd7955a61d67a7f1e525a45a",
+ "reference": "a004701b11273a26cd7955a61d67a7f1e525a45a",
"shasum": ""
},
"require": {
@@ -10281,9 +10237,9 @@
"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.3.0"
+ "source": "https://github.com/phpstan/phpdoc-parser/tree/2.3.2"
},
- "time": "2025-08-30T15:50:23+00:00"
+ "time": "2026-01-25T14:56:51+00:00"
},
{
"name": "phpunit/php-code-coverage",
@@ -10608,24 +10564,24 @@
},
{
"name": "phpunit/phpunit",
- "version": "10.5.58",
+ "version": "10.5.64",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/phpunit.git",
- "reference": "e24fb46da450d8e6a5788670513c1af1424f16ca"
+ "reference": "0e8c1d19cea35ad97d4887f363d07c78e30fbf06"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/e24fb46da450d8e6a5788670513c1af1424f16ca",
- "reference": "e24fb46da450d8e6a5788670513c1af1424f16ca",
+ "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/0e8c1d19cea35ad97d4887f363d07c78e30fbf06",
+ "reference": "0e8c1d19cea35ad97d4887f363d07c78e30fbf06",
"shasum": ""
},
"require": {
"ext-dom": "*",
+ "ext-filter": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
- "ext-xml": "*",
"ext-xmlwriter": "*",
"myclabs/deep-copy": "^1.13.4",
"phar-io/manifest": "^2.0.4",
@@ -10638,7 +10594,7 @@
"phpunit/php-timer": "^6.0.0",
"sebastian/cli-parser": "^2.0.1",
"sebastian/code-unit": "^2.0.0",
- "sebastian/comparator": "^5.0.4",
+ "sebastian/comparator": "^5.0.5",
"sebastian/diff": "^5.1.1",
"sebastian/environment": "^6.1.0",
"sebastian/exporter": "^5.1.4",
@@ -10689,48 +10645,32 @@
"support": {
"issues": "https://github.com/sebastianbergmann/phpunit/issues",
"security": "https://github.com/sebastianbergmann/phpunit/security/policy",
- "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.58"
+ "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.64"
},
"funding": [
{
- "url": "https://phpunit.de/sponsors.html",
- "type": "custom"
- },
- {
- "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/phpunit",
- "type": "tidelift"
+ "url": "https://phpunit.de/sponsoring.html",
+ "type": "other"
}
],
- "time": "2025-09-28T12:04:46+00:00"
+ "time": "2026-07-06T14:50:35+00:00"
},
{
"name": "psalm/plugin-laravel",
- "version": "v2.12.1",
+ "version": "v2.12.3",
"source": {
"type": "git",
"url": "https://github.com/psalm/psalm-plugin-laravel.git",
- "reference": "c7910a1e199fe26812df2381ede086aaa256d222"
+ "reference": "f1c56d04b162abede17907da75bc468d2bc093ec"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/psalm/psalm-plugin-laravel/zipball/c7910a1e199fe26812df2381ede086aaa256d222",
- "reference": "c7910a1e199fe26812df2381ede086aaa256d222",
+ "url": "https://api.github.com/repos/psalm/psalm-plugin-laravel/zipball/f1c56d04b162abede17907da75bc468d2bc093ec",
+ "reference": "f1c56d04b162abede17907da75bc468d2bc093ec",
"shasum": ""
},
"require": {
- "barryvdh/laravel-ide-helper": "^2.13 || ^3.0",
+ "barryvdh/laravel-ide-helper": "^2.15 || >=3.4.0 <3.6",
"ext-simplexml": "*",
"illuminate/config": "^10.48 || ^11.0",
"illuminate/container": "^10.48 || ^11.0",
@@ -10746,7 +10686,7 @@
"php": "^8.1",
"symfony/console": "^6.0 || ^7.0",
"symfony/finder": "^6.0 || ^7.0",
- "vimeo/psalm": "^5.20|^6"
+ "vimeo/psalm": "^5.20 || ^6"
},
"require-dev": {
"laravel/framework": "^10.48 || ^11.0",
@@ -10781,11 +10721,23 @@
],
"description": "Psalm plugin for Laravel",
"homepage": "https://github.com/psalm/psalm-plugin-laravel",
+ "keywords": [
+ "dev",
+ "laravel",
+ "psalm",
+ "psalm-plugin"
+ ],
"support": {
"issues": "https://github.com/psalm/psalm-plugin-laravel/issues",
- "source": "https://github.com/psalm/psalm-plugin-laravel/tree/v2.12.1"
+ "source": "https://github.com/psalm/psalm-plugin-laravel/tree/v2.12.3"
},
- "time": "2025-02-16T19:03:28+00:00"
+ "funding": [
+ {
+ "url": "https://github.com/alies-dev",
+ "type": "github"
+ }
+ ],
+ "time": "2026-05-23T17:37:45+00:00"
},
{
"name": "sebastian/cli-parser",
@@ -10957,16 +10909,16 @@
},
{
"name": "sebastian/comparator",
- "version": "5.0.4",
+ "version": "5.0.5",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/comparator.git",
- "reference": "e8e53097718d2b53cfb2aa859b06a41abf58c62e"
+ "reference": "55dfef806eb7dfeb6e7a6935601fef866f8ca48d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/e8e53097718d2b53cfb2aa859b06a41abf58c62e",
- "reference": "e8e53097718d2b53cfb2aa859b06a41abf58c62e",
+ "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55dfef806eb7dfeb6e7a6935601fef866f8ca48d",
+ "reference": "55dfef806eb7dfeb6e7a6935601fef866f8ca48d",
"shasum": ""
},
"require": {
@@ -11022,7 +10974,7 @@
"support": {
"issues": "https://github.com/sebastianbergmann/comparator/issues",
"security": "https://github.com/sebastianbergmann/comparator/security/policy",
- "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.4"
+ "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.5"
},
"funding": [
{
@@ -11042,7 +10994,7 @@
"type": "tidelift"
}
],
- "time": "2025-09-07T05:25:07+00:00"
+ "time": "2026-01-24T09:25:16+00:00"
},
{
"name": "sebastian/complexity",
@@ -11742,16 +11694,16 @@
},
{
"name": "spatie/array-to-xml",
- "version": "3.4.1",
+ "version": "3.4.4",
"source": {
"type": "git",
"url": "https://github.com/spatie/array-to-xml.git",
- "reference": "6a740f39415aee8886aea10333403adc77d50791"
+ "reference": "88b2f3852a922dd73177a68938f8eb2ec70c7224"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/array-to-xml/zipball/6a740f39415aee8886aea10333403adc77d50791",
- "reference": "6a740f39415aee8886aea10333403adc77d50791",
+ "url": "https://api.github.com/repos/spatie/array-to-xml/zipball/88b2f3852a922dd73177a68938f8eb2ec70c7224",
+ "reference": "88b2f3852a922dd73177a68938f8eb2ec70c7224",
"shasum": ""
},
"require": {
@@ -11794,7 +11746,7 @@
"xml"
],
"support": {
- "source": "https://github.com/spatie/array-to-xml/tree/3.4.1"
+ "source": "https://github.com/spatie/array-to-xml/tree/3.4.4"
},
"funding": [
{
@@ -11806,20 +11758,20 @@
"type": "github"
}
],
- "time": "2025-11-12T10:32:50+00:00"
+ "time": "2025-12-15T09:00:41+00:00"
},
{
"name": "spatie/backtrace",
- "version": "1.8.1",
+ "version": "1.8.2",
"source": {
"type": "git",
"url": "https://github.com/spatie/backtrace.git",
- "reference": "8c0f16a59ae35ec8c62d85c3c17585158f430110"
+ "reference": "8ffe78be5ed355b5009e3dd989d183433e9a5adc"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/backtrace/zipball/8c0f16a59ae35ec8c62d85c3c17585158f430110",
- "reference": "8c0f16a59ae35ec8c62d85c3c17585158f430110",
+ "url": "https://api.github.com/repos/spatie/backtrace/zipball/8ffe78be5ed355b5009e3dd989d183433e9a5adc",
+ "reference": "8ffe78be5ed355b5009e3dd989d183433e9a5adc",
"shasum": ""
},
"require": {
@@ -11830,7 +11782,7 @@
"laravel/serializable-closure": "^1.3 || ^2.0",
"phpunit/phpunit": "^9.3 || ^11.4.3",
"spatie/phpunit-snapshot-assertions": "^4.2 || ^5.1.6",
- "symfony/var-dumper": "^5.1 || ^6.0 || ^7.0"
+ "symfony/var-dumper": "^5.1|^6.0|^7.0|^8.0"
},
"type": "library",
"autoload": {
@@ -11858,7 +11810,7 @@
],
"support": {
"issues": "https://github.com/spatie/backtrace/issues",
- "source": "https://github.com/spatie/backtrace/tree/1.8.1"
+ "source": "https://github.com/spatie/backtrace/tree/1.8.2"
},
"funding": [
{
@@ -11870,7 +11822,7 @@
"type": "other"
}
],
- "time": "2025-08-26T08:22:30+00:00"
+ "time": "2026-03-11T13:48:28+00:00"
},
{
"name": "spatie/error-solutions",
@@ -11948,26 +11900,26 @@
},
{
"name": "spatie/flare-client-php",
- "version": "1.10.1",
+ "version": "1.11.1",
"source": {
"type": "git",
"url": "https://github.com/spatie/flare-client-php.git",
- "reference": "bf1716eb98bd689451b071548ae9e70738dce62f"
+ "reference": "53f41b08a27cc039e1a8ed2be9a202e924f31bad"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/bf1716eb98bd689451b071548ae9e70738dce62f",
- "reference": "bf1716eb98bd689451b071548ae9e70738dce62f",
+ "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/53f41b08a27cc039e1a8ed2be9a202e924f31bad",
+ "reference": "53f41b08a27cc039e1a8ed2be9a202e924f31bad",
"shasum": ""
},
"require": {
- "illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0|^12.0",
+ "illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0|^12.0|^13.0",
"php": "^8.0",
"spatie/backtrace": "^1.6.1",
- "symfony/http-foundation": "^5.2|^6.0|^7.0",
- "symfony/mime": "^5.2|^6.0|^7.0",
- "symfony/process": "^5.2|^6.0|^7.0",
- "symfony/var-dumper": "^5.2|^6.0|^7.0"
+ "symfony/http-foundation": "^5.2|^6.0|^7.0|^8.0",
+ "symfony/mime": "^5.2|^6.0|^7.0|^8.0",
+ "symfony/process": "^5.2|^6.0|^7.0|^8.0",
+ "symfony/var-dumper": "^5.2|^6.0|^7.0|^8.0"
},
"require-dev": {
"dms/phpunit-arraysubset-asserts": "^0.5.0",
@@ -12005,7 +11957,7 @@
],
"support": {
"issues": "https://github.com/spatie/flare-client-php/issues",
- "source": "https://github.com/spatie/flare-client-php/tree/1.10.1"
+ "source": "https://github.com/spatie/flare-client-php/tree/1.11.1"
},
"funding": [
{
@@ -12013,41 +11965,44 @@
"type": "github"
}
],
- "time": "2025-02-14T13:42:06+00:00"
+ "time": "2026-05-15T09:31:32+00:00"
},
{
"name": "spatie/ignition",
- "version": "1.15.1",
+ "version": "1.16.0",
"source": {
"type": "git",
"url": "https://github.com/spatie/ignition.git",
- "reference": "31f314153020aee5af3537e507fef892ffbf8c85"
+ "reference": "b59385bb7aa24dae81bcc15850ebecfda7b40838"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/ignition/zipball/31f314153020aee5af3537e507fef892ffbf8c85",
- "reference": "31f314153020aee5af3537e507fef892ffbf8c85",
+ "url": "https://api.github.com/repos/spatie/ignition/zipball/b59385bb7aa24dae81bcc15850ebecfda7b40838",
+ "reference": "b59385bb7aa24dae81bcc15850ebecfda7b40838",
"shasum": ""
},
"require": {
"ext-json": "*",
"ext-mbstring": "*",
"php": "^8.0",
- "spatie/error-solutions": "^1.0",
- "spatie/flare-client-php": "^1.7",
- "symfony/console": "^5.4|^6.0|^7.0",
- "symfony/var-dumper": "^5.4|^6.0|^7.0"
+ "spatie/backtrace": "^1.7.1",
+ "spatie/error-solutions": "^1.1.2",
+ "spatie/flare-client-php": "^1.9",
+ "symfony/console": "^5.4.42|^6.0|^7.0|^8.0",
+ "symfony/http-foundation": "^5.4.42|^6.0|^7.0|^8.0",
+ "symfony/mime": "^5.4.42|^6.0|^7.0|^8.0",
+ "symfony/var-dumper": "^5.4.42|^6.0|^7.0|^8.0"
},
"require-dev": {
- "illuminate/cache": "^9.52|^10.0|^11.0|^12.0",
+ "illuminate/cache": "^9.52|^10.0|^11.0|^12.0|^13.0",
"mockery/mockery": "^1.4",
- "pestphp/pest": "^1.20|^2.0",
+ "pestphp/pest": "^1.20|^2.0|^3.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"psr/simple-cache-implementation": "*",
- "symfony/cache": "^5.4|^6.0|^7.0",
- "symfony/process": "^5.4|^6.0|^7.0",
+ "symfony/cache": "^5.4.38|^6.0|^7.0|^8.0",
+ "symfony/process": "^5.4.35|^6.0|^7.0|^8.0",
"vlucas/phpdotenv": "^5.5"
},
"suggest": {
@@ -12096,7 +12051,7 @@
"type": "github"
}
],
- "time": "2025-02-21T14:31:39+00:00"
+ "time": "2026-03-17T10:51:08+00:00"
},
{
"name": "spatie/laravel-ignition",
@@ -12236,76 +12191,6 @@
},
"time": "2016-05-20T11:21:15+00:00"
},
- {
- "name": "symfony/filesystem",
- "version": "v7.3.6",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/filesystem.git",
- "reference": "e9bcfd7837928ab656276fe00464092cc9e1826a"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/filesystem/zipball/e9bcfd7837928ab656276fe00464092cc9e1826a",
- "reference": "e9bcfd7837928ab656276fe00464092cc9e1826a",
- "shasum": ""
- },
- "require": {
- "php": ">=8.2",
- "symfony/polyfill-ctype": "~1.8",
- "symfony/polyfill-mbstring": "~1.8"
- },
- "require-dev": {
- "symfony/process": "^6.4|^7.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\Filesystem\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Provides basic utilities for the filesystem",
- "homepage": "https://symfony.com",
- "support": {
- "source": "https://github.com/symfony/filesystem/tree/v7.3.6"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://github.com/nicolas-grekas",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "time": "2025-11-05T09:52:27+00:00"
- },
{
"name": "theseer/tokenizer",
"version": "1.3.1",
@@ -12468,23 +12353,23 @@
},
{
"name": "webmozart/assert",
- "version": "1.12.1",
+ "version": "2.4.1",
"source": {
"type": "git",
"url": "https://github.com/webmozarts/assert.git",
- "reference": "9be6926d8b485f55b9229203f962b51ed377ba68"
+ "reference": "2ccb7c2e821038c03a3e6e1700c570c158c55f70"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/webmozarts/assert/zipball/9be6926d8b485f55b9229203f962b51ed377ba68",
- "reference": "9be6926d8b485f55b9229203f962b51ed377ba68",
+ "url": "https://api.github.com/repos/webmozarts/assert/zipball/2ccb7c2e821038c03a3e6e1700c570c158c55f70",
+ "reference": "2ccb7c2e821038c03a3e6e1700c570c158c55f70",
"shasum": ""
},
"require": {
"ext-ctype": "*",
"ext-date": "*",
"ext-filter": "*",
- "php": "^7.2 || ^8.0"
+ "php": "^8.2"
},
"suggest": {
"ext-intl": "",
@@ -12493,8 +12378,12 @@
},
"type": "library",
"extra": {
+ "psalm": {
+ "pluginClass": "Webmozart\\Assert\\PsalmPlugin"
+ },
"branch-alias": {
- "dev-master": "1.10-dev"
+ "dev-master": "2.0-dev",
+ "dev-feature/2-0": "2.0-dev"
}
},
"autoload": {
@@ -12510,6 +12399,10 @@
{
"name": "Bernhard Schussek",
"email": "bschussek@gmail.com"
+ },
+ {
+ "name": "Woody Gilk",
+ "email": "woody.gilk@gmail.com"
}
],
"description": "Assertions to validate method input/output with nice error messages.",
@@ -12520,19 +12413,19 @@
],
"support": {
"issues": "https://github.com/webmozarts/assert/issues",
- "source": "https://github.com/webmozarts/assert/tree/1.12.1"
+ "source": "https://github.com/webmozarts/assert/tree/2.4.1"
},
- "time": "2025-10-29T15:56:20+00:00"
+ "time": "2026-06-15T15:31:57+00:00"
}
],
"aliases": [],
"minimum-stability": "stable",
- "stability-flags": [],
+ "stability-flags": {},
"prefer-stable": true,
"prefer-lowest": false,
"platform": {
"php": "^8.3.0"
},
- "platform-dev": [],
- "plugin-api-version": "2.6.0"
+ "platform-dev": {},
+ "plugin-api-version": "2.9.0"
}
diff --git a/config/media-library.php b/config/media-library.php
index 8238ef04..495fed7a 100644
--- a/config/media-library.php
+++ b/config/media-library.php
@@ -1,12 +1,51 @@
env('MEDIA_DISK', 'public_media'),
+
+ /*
+ * The disk on which to store conversions (thumbnails, etc.) and responsive images
+ * when no disk is specified explicitly on the media collection or via
+ * `storingConversionsOnDisk()`. When left null, conversions are stored on the
+ * same disk as the original media — preserving previous behavior.
+ *
+ * This is useful when the originals live on a remote disk (e.g. S3) but the
+ * generated derivatives should stay local for faster access and lower egress.
*/
- 'disk_name' => 'public_media',
+ 'conversions_disk_name' => env('MEDIA_CONVERSIONS_DISK', null),
/*
* The maximum file size of an item in bytes. Adding a file
@@ -14,11 +53,39 @@
*/
'max_file_size' => 1024 * 1024 * ((int) env('IMAGE_MAX_MB', 16)),
+ /*
+ * Uploads whose file name contains any of these extensions will be rejected.
+ * The check looks at every extension in the file name, so a file named
+ * `malicious.php.jpg` is blocked as well. Matching is case-insensitive
+ * and a leading dot is optional.
+ *
+ * The default list lives on the `FileAdder` class so the shipped config
+ * and the in-code fallback (used when the config is cached without the
+ * key) cannot drift. Override here to extend or shrink it.
+ */
+ 'disallowed_extensions' => FileAdder::$defaultDisallowedExtensions,
+
+ /*
+ * When this is set to an array of extensions, only uploads whose final
+ * extension is in the list will be accepted. Matching is case-insensitive
+ * and a leading dot is optional. The `disallowed_extensions` list above
+ * is still enforced, so an interior dangerous segment (such as the `php`
+ * in `shell.php.jpg`) is rejected even if the final extension is allowed.
+ * Leave `null` to disable allowlisting.
+ */
+ 'allowed_extensions' => null,
+
+ /*
+ * This queue connection will be used to generate derived and responsive images.
+ * Leave empty to use the default queue connection.
+ */
+ 'queue_connection_name' => env('QUEUE_CONNECTION', 'sync'),
+
/*
* This queue will be used to generate derived images.
* Leave empty to use the default queue.
*/
- 'queue_name' => '',
+ 'queue_name' => env('MEDIA_QUEUE', ''),
/*
* By default all conversions will be performed on a queue.
@@ -26,16 +93,29 @@
'queue_conversions_by_default' => env('QUEUE_CONVERSIONS_BY_DEFAULT', true),
/*
- * The class name of the media model to be used.
+ * The fully qualified class name of the media model.
*/
- 'media_model' => Spatie\MediaLibrary\MediaCollections\Models\Media::class,
+ 'media_model' => Media::class,
+
+ /*
+ * The fully qualified class name of the media observer.
+ */
+ 'media_observer' => MediaObserver::class,
+
+ /*
+ * When enabled, media collections will be serialised using the default
+ * laravel model serialization behaviour.
+ *
+ * Keep this option disabled if using Media Library Pro components (https://medialibrary.pro)
+ */
+ 'use_default_collection_serialization' => false,
/*
* The fully qualified class name of the model used for temporary uploads.
*
* This model is only used in Media Library Pro (https://medialibrary.pro)
*/
- 'temporary_upload_model' => Spatie\MediaLibraryPro\Models\TemporaryUpload::class,
+ // 'temporary_upload_model' => TemporaryUpload::class,
/*
* When enabled, Media Library Pro will only process temporary uploads that were uploaded
@@ -52,25 +132,32 @@
/*
* This is the class that is responsible for naming generated files.
*/
- 'file_namer' => Spatie\MediaLibrary\Support\FileNamer\DefaultFileNamer::class,
+ 'file_namer' => DefaultFileNamer::class,
/*
* The class that contains the strategy for determining a media file's path.
*/
- 'path_generator' => Spatie\MediaLibrary\Support\PathGenerator\DefaultPathGenerator::class,
+ 'path_generator' => DefaultPathGenerator::class,
+
+ /*
+ * The class that contains the strategy for determining how to remove files.
+ */
+ 'file_remover_class' => DefaultFileRemover::class,
/*
* Here you can specify which path generator should be used for the given class.
*/
'custom_path_generators' => [
// Model::class => PathGenerator::class
+ // or
+ // 'model_morph_alias' => PathGenerator::class
],
/*
* When urls to files get generated, this class will be called. Use the default
* if your files are stored locally above the site root or on s3.
*/
- 'url_generator' => Spatie\MediaLibrary\Support\UrlGenerator\DefaultUrlGenerator::class,
+ 'url_generator' => DefaultUrlGenerator::class,
/*
* Moves media on updating to keep path consistent. Enable it only with a custom
@@ -90,28 +177,28 @@
* the optimizers that will be used by default.
*/
'image_optimizers' => [
- Spatie\ImageOptimizer\Optimizers\Jpegoptim::class => [
+ Jpegoptim::class => [
'-m85', // set maximum quality to 85%
'--force', // ensure that progressive generation is always done also if a little bigger
'--strip-all', // this strips out all text information such as comments and EXIF data
'--all-progressive', // this will make sure the resulting image is a progressive one
],
- Spatie\ImageOptimizer\Optimizers\Pngquant::class => [
+ Pngquant::class => [
'--force', // required parameter for this package
],
- Spatie\ImageOptimizer\Optimizers\Optipng::class => [
+ Optipng::class => [
'-i0', // this will result in a non-interlaced, progressive scanned image
'-o2', // this set the optimization level to two (multiple IDAT compression trials)
'-quiet', // required parameter for this package
],
- Spatie\ImageOptimizer\Optimizers\Svgo::class => [
+ Svgo::class => [
'--disable=cleanupIDs', // disabling because it is known to cause troubles
],
- Spatie\ImageOptimizer\Optimizers\Gifsicle::class => [
+ Gifsicle::class => [
'-b', // required parameter for this package
'-O3', // this produces the slowest but best results
],
- Spatie\ImageOptimizer\Optimizers\Cwebp::class => [
+ Cwebp::class => [
'-m 6', // for the slowest compression method in order to get the best compression.
'-pass 10', // for maximizing the amount of analysis pass.
'-mt', // multithreading for some speed improvements.
@@ -123,10 +210,10 @@
* These generators will be used to create an image of media files.
*/
'image_generators' => [
- Spatie\MediaLibrary\Conversions\ImageGenerators\Image::class,
- Spatie\MediaLibrary\Conversions\ImageGenerators\Webp::class,
- Spatie\MediaLibrary\Conversions\ImageGenerators\Pdf::class,
- Spatie\MediaLibrary\Conversions\ImageGenerators\Video::class,
+ Image::class,
+ Webp::class,
+ Pdf::class,
+ Video::class,
App\Conversions\Svg::class,
],
@@ -138,7 +225,7 @@
/*
* The engine that will perform the image conversions.
- * Should be either `gd` or `imagick`
+ * Should be either `gd` or `imagick` or `vips`.
*/
'image_driver' => env('IMAGE_DRIVER', 'gd'),
@@ -150,14 +237,25 @@
'ffmpeg_path' => env('FFMPEG_PATH', '/usr/bin/ffmpeg'),
'ffprobe_path' => env('FFPROBE_PATH', '/usr/bin/ffprobe'),
+ /*
+ * The timeout (in seconds) that will be used when generating video
+ * thumbnails via FFMPEG.
+ */
+ 'ffmpeg_timeout' => env('FFMPEG_TIMEOUT', 900),
+
+ /*
+ * The number of threads that FFMPEG should use. 0 means that FFMPEG
+ * may decide itself.
+ */
+ 'ffmpeg_threads' => env('FFMPEG_THREADS', 0),
/*
* Here you can override the class names of the jobs used by this package. Make sure
* your custom jobs extend the ones provided by the package.
*/
'jobs' => [
- 'perform_conversions' => Spatie\MediaLibrary\Conversions\Jobs\PerformConversionsJob::class,
- 'generate_responsive_images' => Spatie\MediaLibrary\ResponsiveImages\Jobs\GenerateResponsiveImagesJob::class,
+ 'perform_conversions' => PerformConversionsJob::class,
+ 'generate_responsive_images' => GenerateResponsiveImagesJob::class,
],
/*
@@ -165,7 +263,20 @@
* This is particularly useful when the url of the image is behind a firewall and
* need to add additional flags, possibly using curl.
*/
- 'media_downloader' => Spatie\MediaLibrary\Downloaders\DefaultDownloader::class,
+ 'media_downloader' => DefaultDownloader::class,
+
+ /*
+ * When using the addMediaFromUrl method the SSL is verified by default.
+ * This is option disables SSL verification when downloading remote media.
+ * Please note that this is a security risk and should only be false in a local environment.
+ */
+ 'media_downloader_ssl' => env('MEDIA_DOWNLOADER_SSL', true),
+
+ /*
+ * The default lifetime in minutes for temporary urls.
+ * This is used when you call the `getLastTemporaryUrl` or `getLastTemporaryUrl` method on a media item.
+ */
+ 'temporary_url_default_lifetime' => env('MEDIA_TEMPORARY_URL_DEFAULT_LIFETIME', 5),
'remote' => [
/*
@@ -189,7 +300,7 @@
*
* https://docs.spatie.be/laravel-medialibrary/v9/advanced-usage/generating-responsive-images
*/
- 'width_calculator' => Spatie\MediaLibrary\ResponsiveImages\WidthCalculator\FileSizeOptimizedWidthCalculator::class,
+ 'width_calculator' => FileSizeOptimizedWidthCalculator::class,
/*
* By default rendering media to a responsive image will add some javascript and a tiny placeholder.
@@ -201,7 +312,7 @@
* This class will generate the tiny placeholder used for progressive image loading. By default
* the media library will use a tiny blurred jpg image.
*/
- 'tiny_placeholder_generator' => Spatie\MediaLibrary\ResponsiveImages\TinyPlaceholderGenerator\Blurred::class,
+ 'tiny_placeholder_generator' => Blurred::class,
],
/*
@@ -227,4 +338,10 @@
* If you set this to `/my-subdir`, all your media will be stored in a `/my-subdir` directory.
*/
'prefix' => env('MEDIA_PREFIX', ''),
+
+ /*
+ * When forcing lazy loading, media will be loaded even if you don't eager load media and you have
+ * disabled lazy loading globally in the service provider.
+ */
+ 'force_lazy_loading' => env('FORCE_MEDIA_LIBRARY_LAZY_LOADING', true),
];
diff --git a/psalm-ignore.xml b/psalm-ignore.xml
index 2e5873ed..262f9afc 100644
--- a/psalm-ignore.xml
+++ b/psalm-ignore.xml
@@ -1,106 +1,44 @@
-
+
-
- shell_exec('git rev-parse --verify HEAD')
+
+
-
- public function render($request, Throwable $e)
+
+
-
-
- $user
-
-
- User
-
-
-
- $existing_profile
- $existing_profile
-
-
- inRandomOrder
-
-
-
-
- $this->students
-
-
-
-
- auth()->user()->id
+
+
+
+
+
+
+
+
+
-
- authenticate
- user
+
+
+
-
-
- exists
-
-
-
-
- $this->hasMany(StudentFeedback::class)->where('type', 'feedback')
- $this->hasOne(StudentData::class)->where('type', 'research_profile')
- $this->hasOne(StudentData::class)->where('type', 'stats')
-
-
- \Illuminate\Database\Eloquent\Relations\HasMany
- \Illuminate\Database\Eloquent\Relations\HasOne
- \Illuminate\Database\Eloquent\Relations\HasOne
-
-
-
-
- $this->currentDelegates()->where('gets_reminders', '=', true)
- $this->currentDelegators()->where('gets_reminders', '=', true)
-
-
- \Illuminate\Database\Eloquent\Relations\BelongsToMany
- \Illuminate\Database\Eloquent\Relations\BelongsToMany
- \Illuminate\Database\Eloquent\Relations\BelongsToMany
- \Illuminate\Database\Eloquent\Relations\BelongsToMany
- \Illuminate\Database\Query\Builder
-
-
-
-
- Profile::containing($search)
- Profile::taggedWith($search)
- Profile::public()
- Profile::public()
-
-
- $existing_profile
- $existing_profile
-
-
-
- Profile::fromSchoolId($school->id)
+
+ id)]]>
-
- Profile::StudentsPendingReviewWithSemester($semester)
+
+
-
- Profile::EagerStudentsPendingReviewWithSemester($semester)
+
+
-
-
- Profile::select(Profile::apiAttributes())
-
-
diff --git a/psalm.xml b/psalm.xml
index 8486ce7b..eeec4cc4 100644
--- a/psalm.xml
+++ b/psalm.xml
@@ -2,6 +2,8 @@
+