chore: bump dependencies & lint (#981)

This commit is contained in:
Kyrch
2025-10-26 03:09:42 -03:00
committed by GitHub
parent da93812c12
commit efef58eb24
27 changed files with 196 additions and 194 deletions
@@ -42,7 +42,7 @@ class StoreExternalProfileUnclaimedAction
->first();
if ($findProfile instanceof ExternalProfile) {
throw_if($findProfile->isClaimed(), new Exception("The external profile '{$findProfile->getName()}' is already claimed."));
throw_if($findProfile->isClaimed(), Exception::class, "The external profile '{$findProfile->getName()}' is already claimed.");
DB::rollBack();
@@ -42,7 +42,7 @@ class AnilistExternalTokenAction extends BaseExternalTokenAction
$token = Arr::get($response, 'access_token');
throw_if($token === null, new Error('Failed to get token'));
throw_if($token === null, Error::class, 'Failed to get token');
return ExternalToken::query()->create([
ExternalToken::ATTRIBUTE_ACCESS_TOKEN => Crypt::encrypt($token),
@@ -47,7 +47,7 @@ class MalExternalTokenAction extends BaseExternalTokenAction
$token = Arr::get($response, 'access_token');
$refreshToken = Arr::get($response, 'refresh_token');
throw_if($token === null, new Error('Failed to get token'));
throw_if($token === null, Error::class, 'Failed to get token');
} catch (Exception $e) {
Log::error($e->getMessage());
@@ -138,7 +138,7 @@ class ManageSongPerformances
$soloPerformances->each(fn (Performance $performance) => $performance->forceDelete());
Performance::withoutEvents(function () use ($performancesToCreate) {
Performance::withoutEvents(function () use ($performancesToCreate): void {
foreach ($performancesToCreate as $index => $performanceToSort) {
Performance::query()
->where(Performance::ATTRIBUTE_SONG, $this->song)
@@ -190,7 +190,7 @@ class ManageSongPerformances
];
}
ArtistSong::withoutEvents(function () use ($song, $songArtists) {
ArtistSong::withoutEvents(function () use ($song, $songArtists): void {
$song->artists()->sync($songArtists);
});
}
@@ -110,7 +110,7 @@ abstract class DumpAction
*/
protected function prepareSqliteDumper(Connection $connection): Sqlite
{
throw_if(version_compare($connection->getPdo()->getAttribute(PDO::ATTR_SERVER_VERSION), '3.32.0', '<'), new RuntimeException('DB connection does not support includeTables option'));
throw_if(version_compare($connection->getPdo()->getAttribute(PDO::ATTR_SERVER_VERSION), '3.32.0', '<'), RuntimeException::class, 'DB connection does not support includeTables option');
$dumper = Sqlite::create();
@@ -18,7 +18,7 @@ trait PaginatesModels
$page = Arr::get($args, 'page');
$maxCount = Config::get('graphql.pagination_values.max_count');
throw_if($maxCount !== null && $first > $maxCount, new ClientValidationException("Maximum first value is {$maxCount}. Got {$first}. Fetch in smaller chuncks."));
throw_if($maxCount !== null && $first > $maxCount, ClientValidationException::class, "Maximum first value is {$maxCount}. Got {$first}. Fetch in smaller chuncks.");
return $builder->paginate($first, page: $page);
}
+3 -3
View File
@@ -60,7 +60,7 @@ trait SortsModels
$relation = Arr::get($resolver, SortableColumns::RESOLVER_RELATION);
if ($sortType === SortType::AGGREGATE) {
throw_if($relation === null, new InvalidArgumentException("The 'relation' argument is required for the {$column} column with aggregate sort type."));
throw_if($relation === null, InvalidArgumentException::class, "The 'relation' argument is required for the {$column} column with aggregate sort type.");
$builder->withAggregate([
"$relation as {$relation}_value" => function ($query) use ($direction): void {
@@ -72,7 +72,7 @@ trait SortsModels
}
if ($sortType === SortType::RELATION) {
throw_if($relation === null, new InvalidArgumentException("The 'relation' argument is required for the {$column} column with aggregate sort type."));
throw_if($relation === null, InvalidArgumentException::class, "The 'relation' argument is required for the {$column} column with aggregate sort type.");
$builder->withAggregate([
"$relation as {$relation}_$column" => function ($query) use ($column, $direction): void {
@@ -84,7 +84,7 @@ trait SortsModels
}
if ($sortType === SortType::COUNT_RELATION) {
throw_if($relation === null, new InvalidArgumentException("The 'relation' argument is required for the {$column} column with relation sort type."));
throw_if($relation === null, InvalidArgumentException::class, "The 'relation' argument is required for the {$column} column with relation sort type.");
$builder->withCount($relation)->orderBy("{$relation}_count", $direction);
}
@@ -32,7 +32,7 @@ trait ConstrainsEagerLoads
foreach ($includeCriteria->getPaths() as $allowedIncludePath) {
$relationSchema = $schema->relation($allowedIncludePath);
throw_if(! $relationSchema instanceof Schema, new RuntimeException("Unknown relation '$allowedIncludePath' for type '{$schema->type()}'."));
throw_if(! $relationSchema instanceof Schema, RuntimeException::class, "Unknown relation '$allowedIncludePath' for type '{$schema->type()}'.");
$scope = ScopeParser::parse($allowedIncludePath);
$constrainedEagerLoads[$allowedIncludePath] = function (Relation $relation) use ($query, $scope, $relationSchema): void {
@@ -23,9 +23,9 @@ class BelongsToColumn extends TextColumn
*/
public static function make(?string $relation = null, ?string $resource = null, ?bool $shouldUseModelName = false): static
{
throw_unless(is_string($resource), new InvalidArgumentException('The resource must be specified.'));
throw_unless(is_string($resource), InvalidArgumentException::class, 'The resource must be specified.');
throw_unless(($resource = new $resource) instanceof BaseResource, new InvalidArgumentException('The resource must instanceof a BaseResource.'));
throw_unless(($resource = new $resource) instanceof BaseResource, InvalidArgumentException::class, 'The resource must instanceof a BaseResource.');
$static = app(static::class, ['name' => $relation]);
$static->resource = $resource;
@@ -23,9 +23,9 @@ class BelongsToEntry extends TextEntry
*/
public static function make(?string $relation = null, ?string $resource = null, ?bool $shouldUseModelName = false): static
{
throw_unless(is_string($resource), new InvalidArgumentException('The resource must be specified.'));
throw_unless(is_string($resource), InvalidArgumentException::class, 'The resource must be specified.');
throw_unless(($resource = new $resource) instanceof BaseResource, new InvalidArgumentException('The resource must instanceof a BaseResource.'));
throw_unless(($resource = new $resource) instanceof BaseResource, InvalidArgumentException::class, 'The resource must instanceof a BaseResource.');
$static = app(static::class, ['name' => $relation]);
$static->resource = $resource;
@@ -21,7 +21,6 @@ use App\Filament\Resources\List\Playlist\Track\Pages\ListTracks;
use App\Filament\Resources\List\Playlist\Track\Pages\ViewTrack;
use App\Filament\Resources\Wiki\Anime\Theme\Entry;
use App\Filament\Resources\Wiki\Video as VideoResource;
use App\Models\List\Playlist\PlaylistTrack;
use App\Models\List\Playlist\PlaylistTrack as TrackModel;
use App\Models\Wiki\Anime\Theme\AnimeThemeEntry;
use App\Models\Wiki\Video as VideoModel;
@@ -82,8 +81,8 @@ class Track extends BaseResource
// Necessary to prevent lazy loading when loading related resources
return $query->with([
PlaylistTrack::RELATION_PLAYLIST,
PlaylistTrack::RELATION_VIDEO,
TrackModel::RELATION_PLAYLIST,
TrackModel::RELATION_VIDEO,
'animethemeentry.anime',
'animethemeentry.animetheme.group',
]);
@@ -20,7 +20,6 @@ use App\Filament\Resources\Wiki\Anime as AnimeResource;
use App\Filament\Resources\Wiki\Anime\RelationManagers\SynonymAnimeRelationManager;
use App\Filament\Resources\Wiki\Anime\Synonym\Pages\ListSynonyms;
use App\Filament\Resources\Wiki\Anime\Synonym\Pages\ViewSynonym;
use App\Models\Wiki\Anime\AnimeSynonym;
use App\Models\Wiki\Anime\AnimeSynonym as SynonymModel;
use Filament\Resources\RelationManagers\RelationGroup;
use Filament\Schemas\Components\Section;
@@ -75,7 +74,7 @@ class Synonym extends BaseResource
$query = parent::getEloquentQuery();
// Necessary to prevent lazy loading when loading related resources
return $query->with([AnimeSynonym::RELATION_ANIME]);
return $query->with([SynonymModel::RELATION_ANIME]);
}
public static function form(Schema $schema): Schema
+6 -7
View File
@@ -29,7 +29,6 @@ use App\Filament\Resources\Wiki\Group as GroupResource;
use App\Filament\Resources\Wiki\Song as SongResource;
use App\Filament\Resources\Wiki\Song\Performance\Schemas\PerformanceForm;
use App\Filament\Resources\Wiki\Song\RelationManagers\ThemeSongRelationManager;
use App\Models\Wiki\Anime\AnimeTheme;
use App\Models\Wiki\Anime\AnimeTheme as ThemeModel;
use App\Models\Wiki\Artist;
use App\Models\Wiki\Group;
@@ -107,13 +106,13 @@ class Theme extends BaseResource
// Necessary to prevent lazy loading when loading related resources
/** @phpstan-ignore-next-line */
return $query->with([
AnimeTheme::RELATION_ANIME,
AnimeTheme::RELATION_GROUP,
AnimeTheme::RELATION_ENTRIES,
AnimeTheme::RELATION_PERFORMANCES,
AnimeTheme::RELATION_SONG,
ThemeModel::RELATION_ANIME,
ThemeModel::RELATION_GROUP,
ThemeModel::RELATION_ENTRIES,
ThemeModel::RELATION_PERFORMANCES,
ThemeModel::RELATION_SONG,
'song.animethemes',
AnimeTheme::RELATION_PERFORMANCES_ARTISTS => function (MorphTo $morphTo): void {
ThemeModel::RELATION_PERFORMANCES_ARTISTS => function (MorphTo $morphTo): void {
$morphTo->morphWith([
Artist::class => [],
Membership::class => [Membership::RELATION_GROUP, Membership::RELATION_MEMBER],
@@ -30,7 +30,6 @@ use App\Filament\Resources\Wiki\Anime\Theme\Entry\RelationManagers\VideoEntryRel
use App\Filament\Resources\Wiki\Anime\Theme\RelationManagers\EntryThemeRelationManager;
use App\Filament\Resources\Wiki\Song as SongResource;
use App\Models\Wiki\Anime\AnimeTheme as ThemeModel;
use App\Models\Wiki\Anime\Theme\AnimeThemeEntry;
use App\Models\Wiki\Anime\Theme\AnimeThemeEntry as EntryModel;
use App\Models\Wiki\Song;
use App\Rules\Wiki\Resource\AnimeThemeEntryResourceLinkFormatRule;
@@ -105,9 +104,9 @@ class Entry extends BaseResource
// Necessary to prevent lazy loading when loading related resources
return $query->with([
AnimeThemeEntry::RELATION_ANIME_SHALLOW,
AnimeThemeEntry::RELATION_SONG_SHALLOW,
AnimeThemeEntry::RELATION_THEME,
EntryModel::RELATION_ANIME_SHALLOW,
EntryModel::RELATION_SONG_SHALLOW,
EntryModel::RELATION_THEME,
]);
}
@@ -297,7 +296,7 @@ class Entry extends BaseResource
Filter::make(ThemeType::IN->localize())
->label(__('filament.filters.anime_theme.without_in'))
->query(fn (Builder $query) => $query->whereDoesntHaveRelation(AnimeThemeEntry::RELATION_THEME, ThemeModel::ATTRIBUTE_TYPE, ThemeType::IN->value))
->query(fn (Builder $query) => $query->whereDoesntHaveRelation(EntryModel::RELATION_THEME, ThemeModel::ATTRIBUTE_TYPE, ThemeType::IN->value))
->default(true),
...parent::getFilters(),
@@ -14,7 +14,6 @@ use App\Models\Wiki\Song\Performance;
use Filament\Actions\Action;
use Filament\Tables\Table;
use Illuminate\Support\Arr;
use Illuminate\Support\Str;
class PerformanceSongRelationManager extends PerformanceRelationManager
{
@@ -21,7 +21,7 @@ class SyncExternalProfileController extends BaseController
/** @var ExternalProfile $profile */
$profile = Arr::pull($args, self::MODEL);
throw_unless($profile->canBeSynced(), new ClientForbiddenException('This external profile cannot be synced at the moment.'));
throw_unless($profile->canBeSynced(), ClientForbiddenException::class, 'This external profile cannot be synced at the moment.');
$profile->dispatchSyncJob();
@@ -36,7 +36,7 @@ class AnimeYearsController extends BaseController
// Restrict 'animes' field to a unique year.
throw_if(($year === null || count($year) > 1)
&& (Arr::get($fieldSelection, 'season.anime') || Arr::get($fieldSelection, 'seasons.anime')), new ClientValidationException("Please provide a unique 'year' argument to query the animes field."));
&& (Arr::get($fieldSelection, 'season.anime') || Arr::get($fieldSelection, 'seasons.anime')), ClientValidationException::class, "Please provide a unique 'year' argument to query the animes field.");
return Anime::query()
->distinct([Anime::ATTRIBUTE_YEAR, Anime::ATTRIBUTE_SEASON])
@@ -65,7 +65,7 @@ abstract class EloquentPaginationQuery extends EloquentQuery
{
$baseType = $this->baseType();
throw_unless($baseType instanceof BaseType, new RuntimeException("baseType not defined for query {$this->getName()}"));
throw_unless($baseType instanceof BaseType, RuntimeException::class, "baseType not defined for query {$this->getName()}");
return Type::nonNull(GraphQL::paginate($this->baseType()->getName()));
}
@@ -56,7 +56,7 @@ abstract class EloquentSingularQuery extends EloquentQuery
{
$baseType = $this->baseType();
throw_unless($baseType instanceof BaseType, new RuntimeException("baseType not defined for query {$this->getName()}"));
throw_unless($baseType instanceof BaseType, RuntimeException::class, "baseType not defined for query {$this->getName()}");
return Type::nonNull(GraphQL::type($this->baseType()->getName()));
}
@@ -77,9 +77,9 @@ class FindAnimeByExternalSiteQuery extends BaseQuery
$externalId = Arr::get($args, self::ATTRIBUTE_ID);
$link = Arr::get($args, self::ATTRIBUTE_LINK);
throw_if(is_null($externalId) && is_null($link), new ClientValidationException('At least "id" or "link" is required.'));
throw_if(is_null($externalId) && is_null($link), ClientValidationException::class, 'At least "id" or "link" is required.');
throw_if(count($externalId) > 100, new ClientValidationException('The "Id" parameter cannot contain more than 100 integer values.'));
throw_if(count($externalId) > 100, ClientValidationException::class, 'The "Id" parameter cannot contain more than 100 integer values.');
$builder->whereRelation(Anime::RELATION_RESOURCES, function (Builder $query) use ($site, $externalId, $link): void {
$query->where(ExternalResource::ATTRIBUTE_SITE, $site);
+1 -1
View File
@@ -38,7 +38,7 @@ abstract class BaseRequest extends FormRequest
$controller = $this->route()->getController();
throw_unless($controller instanceof InteractsWithSchema, new RuntimeException("Cannot resolve schema for controller '{$this->route()->getControllerClass()}'"));
throw_unless($controller instanceof InteractsWithSchema, RuntimeException::class, "Cannot resolve schema for controller '{$this->route()->getControllerClass()}'");
$this->schema = $controller->schema();
}
@@ -96,7 +96,7 @@ abstract class ElasticQuery
->append('Query')
->__toString();
throw_unless(class_exists($query), new RuntimeException("Please add the 'getElasticQuery' method to the model ".$model::class));
throw_unless(class_exists($query), RuntimeException::class, "Please add the 'getElasticQuery' method to the model ".$model::class);
return new ReflectionClass($query)->newInstance();
}
+2 -1
View File
@@ -6,6 +6,7 @@ use App\Exceptions\Handler;
use Illuminate\Contracts\Debug\ExceptionHandler;
use Illuminate\Contracts\Http\Kernel;
use Illuminate\Foundation\Application;
use Illuminate\Support\Env;
/*
|--------------------------------------------------------------------------
@@ -19,7 +20,7 @@ use Illuminate\Foundation\Application;
*/
$app = new Application(
$_ENV['APP_BASE_PATH'] ?? dirname(__DIR__)
Env::get('APP_BASE_PATH', dirname(__DIR__))
);
/*
+10 -10
View File
@@ -24,29 +24,29 @@
"ext-gd": "*",
"ext-intl": "*",
"ext-pdo": "*",
"awcodes/recently": "2.0.0",
"awcodes/recently": "^2.0.0",
"babenkoivan/elastic-migrations": "^3.4.1",
"babenkoivan/elastic-scout-driver-plus": "^4.8",
"bepsvpt/secure-headers": "^7.5",
"fakerphp/faker": "^1.24.1",
"filament/filament": "^4.1.9",
"filament/filament": "^4.1.10",
"flowframe/laravel-trend": ">=0.4",
"guzzlehttp/guzzle": "^7.10.0",
"larastan/larastan": "^3.7.2",
"laravel-notification-channels/discord": "^1.7",
"laravel/fortify": "^1.31.1",
"laravel/framework": "^12.34.0",
"laravel/horizon": "^5.36.0",
"laravel/fortify": "^1.31.2",
"laravel/framework": "^12.35.1",
"laravel/horizon": "^5.37.0",
"laravel/pennant": "^1.18.3",
"laravel/pulse": "^1.4.3",
"laravel/sanctum": "^4.2.0",
"laravel/scout": "^10.20.0",
"laravel/tinker": "^2.10.1",
"league/flysystem-aws-s3-v3": "^3.29",
"leandrocfe/filament-apex-charts": "^4.0-beta1",
"league/flysystem-aws-s3-v3": "^3.30.1",
"leandrocfe/filament-apex-charts": "^4.0.0",
"mll-lab/graphql-php-scalars": "^6.4.1",
"mll-lab/laravel-graphiql": "^3.3.4",
"owen-it/laravel-auditing": "^14.0",
"owen-it/laravel-auditing": "^14.0.0",
"propaganistas/laravel-disposable-email": "^2.4.19",
"rebing/graphql-laravel": "^9.11",
"spatie/db-dumper": "^3.8.0",
@@ -60,14 +60,14 @@
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.16.0",
"driftingly/rector-laravel": "^2.1",
"driftingly/rector-laravel": "^2.1.1",
"laravel/pint": "^1.25.1",
"laravel/sail": "^1.46.0",
"mockery/mockery": "^1.6.12",
"pestphp/pest": "^4.1.2",
"pestphp/pest-plugin-laravel": "^4.0",
"predis/predis": "^2.4.0",
"rector/rector": "^2.2.3"
"rector/rector": "^2.2.5"
},
"config": {
"optimize-autoloader": true,
Generated
+141 -141
View File
@@ -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": "90e154c6aab379799e41e79579d6516a",
"content-hash": "00b368324704b9623ee626ff86a4e0e5",
"packages": [
{
"name": "anourvalar/eloquent-serialize",
@@ -205,16 +205,16 @@
},
{
"name": "aws/aws-sdk-php",
"version": "3.356.42",
"version": "3.357.2",
"source": {
"type": "git",
"url": "https://github.com/aws/aws-sdk-php.git",
"reference": "c886d60206d2f100c2d132052875f53ce3f999f7"
"reference": "7020346835259ad07ce320b04bea912055d4a5bc"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/c886d60206d2f100c2d132052875f53ce3f999f7",
"reference": "c886d60206d2f100c2d132052875f53ce3f999f7",
"url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/7020346835259ad07ce320b04bea912055d4a5bc",
"reference": "7020346835259ad07ce320b04bea912055d4a5bc",
"shasum": ""
},
"require": {
@@ -296,9 +296,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.356.42"
"source": "https://github.com/aws/aws-sdk-php/tree/3.357.2"
},
"time": "2025-10-17T18:17:41+00:00"
"time": "2025-10-24T19:16:19+00:00"
},
{
"name": "babenkoivan/elastic-adapter",
@@ -1996,16 +1996,16 @@
},
{
"name": "filament/actions",
"version": "v4.1.9",
"version": "v4.1.10",
"source": {
"type": "git",
"url": "https://github.com/filamentphp/actions.git",
"reference": "cd17a34e7bacebf74064a6e43fab6ff87c21630a"
"reference": "9f774e58957650a21095075c423c526b8e2e4bc4"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/filamentphp/actions/zipball/cd17a34e7bacebf74064a6e43fab6ff87c21630a",
"reference": "cd17a34e7bacebf74064a6e43fab6ff87c21630a",
"url": "https://api.github.com/repos/filamentphp/actions/zipball/9f774e58957650a21095075c423c526b8e2e4bc4",
"reference": "9f774e58957650a21095075c423c526b8e2e4bc4",
"shasum": ""
},
"require": {
@@ -2041,20 +2041,20 @@
"issues": "https://github.com/filamentphp/filament/issues",
"source": "https://github.com/filamentphp/filament"
},
"time": "2025-10-14T15:20:45+00:00"
"time": "2025-10-21T10:01:43+00:00"
},
{
"name": "filament/filament",
"version": "v4.1.9",
"version": "v4.1.10",
"source": {
"type": "git",
"url": "https://github.com/filamentphp/panels.git",
"reference": "010728faccca684f5b1ee0c64d640c843cc1ade4"
"reference": "6b04c1e0cfe20c4b06d97d8ce97c3e3b95a85668"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/filamentphp/panels/zipball/010728faccca684f5b1ee0c64d640c843cc1ade4",
"reference": "010728faccca684f5b1ee0c64d640c843cc1ade4",
"url": "https://api.github.com/repos/filamentphp/panels/zipball/6b04c1e0cfe20c4b06d97d8ce97c3e3b95a85668",
"reference": "6b04c1e0cfe20c4b06d97d8ce97c3e3b95a85668",
"shasum": ""
},
"require": {
@@ -2098,20 +2098,20 @@
"issues": "https://github.com/filamentphp/filament/issues",
"source": "https://github.com/filamentphp/filament"
},
"time": "2025-10-15T14:31:27+00:00"
"time": "2025-10-21T10:01:17+00:00"
},
{
"name": "filament/forms",
"version": "v4.1.9",
"version": "v4.1.10",
"source": {
"type": "git",
"url": "https://github.com/filamentphp/forms.git",
"reference": "1993328e69d58088c3ac533a2e9464b09212df78"
"reference": "4abc8c0376e8801e58d28bab619eff3068bb1b57"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/filamentphp/forms/zipball/1993328e69d58088c3ac533a2e9464b09212df78",
"reference": "1993328e69d58088c3ac533a2e9464b09212df78",
"url": "https://api.github.com/repos/filamentphp/forms/zipball/4abc8c0376e8801e58d28bab619eff3068bb1b57",
"reference": "4abc8c0376e8801e58d28bab619eff3068bb1b57",
"shasum": ""
},
"require": {
@@ -2148,20 +2148,20 @@
"issues": "https://github.com/filamentphp/filament/issues",
"source": "https://github.com/filamentphp/filament"
},
"time": "2025-10-15T14:31:46+00:00"
"time": "2025-10-21T10:01:30+00:00"
},
{
"name": "filament/infolists",
"version": "v4.1.9",
"version": "v4.1.10",
"source": {
"type": "git",
"url": "https://github.com/filamentphp/infolists.git",
"reference": "c6572b83fd6b97105c9f915797c6b2c10fae424d"
"reference": "024a9e74dd21436d11c65bb4c4f283be09951794"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/filamentphp/infolists/zipball/c6572b83fd6b97105c9f915797c6b2c10fae424d",
"reference": "c6572b83fd6b97105c9f915797c6b2c10fae424d",
"url": "https://api.github.com/repos/filamentphp/infolists/zipball/024a9e74dd21436d11c65bb4c4f283be09951794",
"reference": "024a9e74dd21436d11c65bb4c4f283be09951794",
"shasum": ""
},
"require": {
@@ -2193,11 +2193,11 @@
"issues": "https://github.com/filamentphp/filament/issues",
"source": "https://github.com/filamentphp/filament"
},
"time": "2025-10-12T16:21:24+00:00"
"time": "2025-10-21T10:01:54+00:00"
},
{
"name": "filament/notifications",
"version": "v4.1.9",
"version": "v4.1.10",
"source": {
"type": "git",
"url": "https://github.com/filamentphp/notifications.git",
@@ -2244,16 +2244,16 @@
},
{
"name": "filament/schemas",
"version": "v4.1.9",
"version": "v4.1.10",
"source": {
"type": "git",
"url": "https://github.com/filamentphp/schemas.git",
"reference": "9b58c386499862e751752ab1e61787a84c6912a6"
"reference": "6c1a5d817981fd2f72c4746d3d89e4da6aa2519d"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/filamentphp/schemas/zipball/9b58c386499862e751752ab1e61787a84c6912a6",
"reference": "9b58c386499862e751752ab1e61787a84c6912a6",
"url": "https://api.github.com/repos/filamentphp/schemas/zipball/6c1a5d817981fd2f72c4746d3d89e4da6aa2519d",
"reference": "6c1a5d817981fd2f72c4746d3d89e4da6aa2519d",
"shasum": ""
},
"require": {
@@ -2285,20 +2285,20 @@
"issues": "https://github.com/filamentphp/filament/issues",
"source": "https://github.com/filamentphp/filament"
},
"time": "2025-10-15T14:31:34+00:00"
"time": "2025-10-21T10:02:16+00:00"
},
{
"name": "filament/support",
"version": "v4.1.9",
"version": "v4.1.10",
"source": {
"type": "git",
"url": "https://github.com/filamentphp/support.git",
"reference": "9f1140bf16a9dd7b4720bd2784e8730f440183c4"
"reference": "acafe9386c9c3ce662c46f9ed9d5410b5b04edf1"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/filamentphp/support/zipball/9f1140bf16a9dd7b4720bd2784e8730f440183c4",
"reference": "9f1140bf16a9dd7b4720bd2784e8730f440183c4",
"url": "https://api.github.com/repos/filamentphp/support/zipball/acafe9386c9c3ce662c46f9ed9d5410b5b04edf1",
"reference": "acafe9386c9c3ce662c46f9ed9d5410b5b04edf1",
"shasum": ""
},
"require": {
@@ -2343,20 +2343,20 @@
"issues": "https://github.com/filamentphp/filament/issues",
"source": "https://github.com/filamentphp/filament"
},
"time": "2025-10-14T15:22:28+00:00"
"time": "2025-10-21T10:01:59+00:00"
},
{
"name": "filament/tables",
"version": "v4.1.9",
"version": "v4.1.10",
"source": {
"type": "git",
"url": "https://github.com/filamentphp/tables.git",
"reference": "0e9b47129e42a7429c020ace617a54cbda4852ce"
"reference": "7d06cedca92948533173d2a62593c8c28dae055c"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/filamentphp/tables/zipball/0e9b47129e42a7429c020ace617a54cbda4852ce",
"reference": "0e9b47129e42a7429c020ace617a54cbda4852ce",
"url": "https://api.github.com/repos/filamentphp/tables/zipball/7d06cedca92948533173d2a62593c8c28dae055c",
"reference": "7d06cedca92948533173d2a62593c8c28dae055c",
"shasum": ""
},
"require": {
@@ -2388,20 +2388,20 @@
"issues": "https://github.com/filamentphp/filament/issues",
"source": "https://github.com/filamentphp/filament"
},
"time": "2025-10-15T14:31:42+00:00"
"time": "2025-10-21T10:02:11+00:00"
},
{
"name": "filament/widgets",
"version": "v4.1.9",
"version": "v4.1.10",
"source": {
"type": "git",
"url": "https://github.com/filamentphp/widgets.git",
"reference": "8e3077612a5842aba4cd8d712c729e1042e197aa"
"reference": "9ad4b80ae890768f38bc5e773fde7fc980375f22"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/filamentphp/widgets/zipball/8e3077612a5842aba4cd8d712c729e1042e197aa",
"reference": "8e3077612a5842aba4cd8d712c729e1042e197aa",
"url": "https://api.github.com/repos/filamentphp/widgets/zipball/9ad4b80ae890768f38bc5e773fde7fc980375f22",
"reference": "9ad4b80ae890768f38bc5e773fde7fc980375f22",
"shasum": ""
},
"require": {
@@ -2432,7 +2432,7 @@
"issues": "https://github.com/filamentphp/filament/issues",
"source": "https://github.com/filamentphp/filament"
},
"time": "2025-10-14T15:22:46+00:00"
"time": "2025-10-21T10:01:25+00:00"
},
{
"name": "flowframe/laravel-trend",
@@ -3234,16 +3234,16 @@
},
{
"name": "kirschbaum-development/eloquent-power-joins",
"version": "4.2.8",
"version": "4.2.9",
"source": {
"type": "git",
"url": "https://github.com/kirschbaum-development/eloquent-power-joins.git",
"reference": "d67c7e2efa886d2ef8bb29e86c3ddb9438ac6390"
"reference": "32ec75ffee5f8f66e2c95e4030fa0b2454e51048"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/kirschbaum-development/eloquent-power-joins/zipball/d67c7e2efa886d2ef8bb29e86c3ddb9438ac6390",
"reference": "d67c7e2efa886d2ef8bb29e86c3ddb9438ac6390",
"url": "https://api.github.com/repos/kirschbaum-development/eloquent-power-joins/zipball/32ec75ffee5f8f66e2c95e4030fa0b2454e51048",
"reference": "32ec75ffee5f8f66e2c95e4030fa0b2454e51048",
"shasum": ""
},
"require": {
@@ -3291,9 +3291,9 @@
],
"support": {
"issues": "https://github.com/kirschbaum-development/eloquent-power-joins/issues",
"source": "https://github.com/kirschbaum-development/eloquent-power-joins/tree/4.2.8"
"source": "https://github.com/kirschbaum-development/eloquent-power-joins/tree/4.2.9"
},
"time": "2025-08-14T18:43:05+00:00"
"time": "2025-10-25T11:39:00+00:00"
},
{
"name": "laragraph/utils",
@@ -3512,16 +3512,16 @@
},
{
"name": "laravel/fortify",
"version": "v1.31.1",
"version": "v1.31.2",
"source": {
"type": "git",
"url": "https://github.com/laravel/fortify.git",
"reference": "e39a49592e1440508337a765cdc913ff5bcba66f"
"reference": "a046d52ee087ee52c9852b840cf4bbad19f10934"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/laravel/fortify/zipball/e39a49592e1440508337a765cdc913ff5bcba66f",
"reference": "e39a49592e1440508337a765cdc913ff5bcba66f",
"url": "https://api.github.com/repos/laravel/fortify/zipball/a046d52ee087ee52c9852b840cf4bbad19f10934",
"reference": "a046d52ee087ee52c9852b840cf4bbad19f10934",
"shasum": ""
},
"require": {
@@ -3573,20 +3573,20 @@
"issues": "https://github.com/laravel/fortify/issues",
"source": "https://github.com/laravel/fortify"
},
"time": "2025-10-03T09:10:57+00:00"
"time": "2025-10-21T14:47:38+00:00"
},
{
"name": "laravel/framework",
"version": "v12.34.0",
"version": "v12.35.1",
"source": {
"type": "git",
"url": "https://github.com/laravel/framework.git",
"reference": "f9ec5a5d88bc8c468f17b59f88e05c8ac3c8d687"
"reference": "d6d6e3cb68238e2fb25b440f222442adef5a8a15"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/laravel/framework/zipball/f9ec5a5d88bc8c468f17b59f88e05c8ac3c8d687",
"reference": "f9ec5a5d88bc8c468f17b59f88e05c8ac3c8d687",
"url": "https://api.github.com/repos/laravel/framework/zipball/d6d6e3cb68238e2fb25b440f222442adef5a8a15",
"reference": "d6d6e3cb68238e2fb25b440f222442adef5a8a15",
"shasum": ""
},
"require": {
@@ -3792,20 +3792,20 @@
"issues": "https://github.com/laravel/framework/issues",
"source": "https://github.com/laravel/framework"
},
"time": "2025-10-14T13:58:31+00:00"
"time": "2025-10-23T15:25:03+00:00"
},
{
"name": "laravel/horizon",
"version": "v5.36.0",
"version": "v5.37.0",
"source": {
"type": "git",
"url": "https://github.com/laravel/horizon.git",
"reference": "eccc804c9da78064c97a8f506bb148f05c816409"
"reference": "3a970f934e95e396faa0aab53b3a996c6bf47e95"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/laravel/horizon/zipball/eccc804c9da78064c97a8f506bb148f05c816409",
"reference": "eccc804c9da78064c97a8f506bb148f05c816409",
"url": "https://api.github.com/repos/laravel/horizon/zipball/3a970f934e95e396faa0aab53b3a996c6bf47e95",
"reference": "3a970f934e95e396faa0aab53b3a996c6bf47e95",
"shasum": ""
},
"require": {
@@ -3870,9 +3870,9 @@
],
"support": {
"issues": "https://github.com/laravel/horizon/issues",
"source": "https://github.com/laravel/horizon/tree/v5.36.0"
"source": "https://github.com/laravel/horizon/tree/v5.37.0"
},
"time": "2025-10-10T13:44:39+00:00"
"time": "2025-10-21T14:32:49+00:00"
},
{
"name": "laravel/pennant",
@@ -4560,16 +4560,16 @@
},
{
"name": "league/csv",
"version": "9.27.0",
"version": "9.27.1",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/csv.git",
"reference": "cb491b1ba3c42ff2bcd0113814f4256b42bae845"
"reference": "26de738b8fccf785397d05ee2fc07b6cd8749797"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/thephpleague/csv/zipball/cb491b1ba3c42ff2bcd0113814f4256b42bae845",
"reference": "cb491b1ba3c42ff2bcd0113814f4256b42bae845",
"url": "https://api.github.com/repos/thephpleague/csv/zipball/26de738b8fccf785397d05ee2fc07b6cd8749797",
"reference": "26de738b8fccf785397d05ee2fc07b6cd8749797",
"shasum": ""
},
"require": {
@@ -4647,20 +4647,20 @@
"type": "github"
}
],
"time": "2025-10-16T08:22:09+00:00"
"time": "2025-10-25T08:35:20+00:00"
},
{
"name": "league/flysystem",
"version": "3.30.0",
"version": "3.30.1",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/flysystem.git",
"reference": "2203e3151755d874bb2943649dae1eb8533ac93e"
"reference": "c139fd65c1f796b926f4aec0df37f6caa959a8da"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/thephpleague/flysystem/zipball/2203e3151755d874bb2943649dae1eb8533ac93e",
"reference": "2203e3151755d874bb2943649dae1eb8533ac93e",
"url": "https://api.github.com/repos/thephpleague/flysystem/zipball/c139fd65c1f796b926f4aec0df37f6caa959a8da",
"reference": "c139fd65c1f796b926f4aec0df37f6caa959a8da",
"shasum": ""
},
"require": {
@@ -4728,22 +4728,22 @@
],
"support": {
"issues": "https://github.com/thephpleague/flysystem/issues",
"source": "https://github.com/thephpleague/flysystem/tree/3.30.0"
"source": "https://github.com/thephpleague/flysystem/tree/3.30.1"
},
"time": "2025-06-25T13:29:59+00:00"
"time": "2025-10-20T15:35:26+00:00"
},
{
"name": "league/flysystem-aws-s3-v3",
"version": "3.29.0",
"version": "3.30.1",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/flysystem-aws-s3-v3.git",
"reference": "c6ff6d4606e48249b63f269eba7fabdb584e76a9"
"reference": "d286e896083bed3190574b8b088b557b59eb66f5"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/c6ff6d4606e48249b63f269eba7fabdb584e76a9",
"reference": "c6ff6d4606e48249b63f269eba7fabdb584e76a9",
"url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/d286e896083bed3190574b8b088b557b59eb66f5",
"reference": "d286e896083bed3190574b8b088b557b59eb66f5",
"shasum": ""
},
"require": {
@@ -4783,9 +4783,9 @@
"storage"
],
"support": {
"source": "https://github.com/thephpleague/flysystem-aws-s3-v3/tree/3.29.0"
"source": "https://github.com/thephpleague/flysystem-aws-s3-v3/tree/3.30.1"
},
"time": "2024-08-17T13:10:48+00:00"
"time": "2025-10-20T15:27:33+00:00"
},
{
"name": "league/flysystem-local",
@@ -5988,16 +5988,16 @@
},
{
"name": "nikic/php-parser",
"version": "v5.6.1",
"version": "v5.6.2",
"source": {
"type": "git",
"url": "https://github.com/nikic/PHP-Parser.git",
"reference": "f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2"
"reference": "3a454ca033b9e06b63282ce19562e892747449bb"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2",
"reference": "f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2",
"url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/3a454ca033b9e06b63282ce19562e892747449bb",
"reference": "3a454ca033b9e06b63282ce19562e892747449bb",
"shasum": ""
},
"require": {
@@ -6040,9 +6040,9 @@
],
"support": {
"issues": "https://github.com/nikic/PHP-Parser/issues",
"source": "https://github.com/nikic/PHP-Parser/tree/v5.6.1"
"source": "https://github.com/nikic/PHP-Parser/tree/v5.6.2"
},
"time": "2025-08-13T20:13:15+00:00"
"time": "2025-10-21T19:32:17+00:00"
},
{
"name": "nunomaduro/termwind",
@@ -7431,16 +7431,16 @@
},
{
"name": "psy/psysh",
"version": "v0.12.12",
"version": "v0.12.13",
"source": {
"type": "git",
"url": "https://github.com/bobthecow/psysh.git",
"reference": "cd23863404a40ccfaf733e3af4db2b459837f7e7"
"reference": "d86c2f750e72017a5cdb1b9f1cef468a5cbacd1e"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/bobthecow/psysh/zipball/cd23863404a40ccfaf733e3af4db2b459837f7e7",
"reference": "cd23863404a40ccfaf733e3af4db2b459837f7e7",
"url": "https://api.github.com/repos/bobthecow/psysh/zipball/d86c2f750e72017a5cdb1b9f1cef468a5cbacd1e",
"reference": "d86c2f750e72017a5cdb1b9f1cef468a5cbacd1e",
"shasum": ""
},
"require": {
@@ -7455,9 +7455,11 @@
"symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.2"
"bamarni/composer-bin-plugin": "^1.2",
"composer/class-map-generator": "^1.6"
},
"suggest": {
"composer/class-map-generator": "Improved tab completion performance with better class discovery.",
"ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
"ext-pdo-sqlite": "The doc command requires SQLite to work.",
"ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
@@ -7503,9 +7505,9 @@
],
"support": {
"issues": "https://github.com/bobthecow/psysh/issues",
"source": "https://github.com/bobthecow/psysh/tree/v0.12.12"
"source": "https://github.com/bobthecow/psysh/tree/v0.12.13"
},
"time": "2025-09-20T13:46:31+00:00"
"time": "2025-10-20T22:48:29+00:00"
},
{
"name": "ralouphie/getallheaders",
@@ -8611,16 +8613,16 @@
},
{
"name": "staudenmeir/laravel-cte",
"version": "v1.12.3",
"version": "v1.12.4",
"source": {
"type": "git",
"url": "https://github.com/staudenmeir/laravel-cte.git",
"reference": "b95dc4038e5a53a27dfd4c4905e3d296d4eb27d5"
"reference": "48cdb4d22bbf3dc1bce3314650659f17fd0e223f"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/staudenmeir/laravel-cte/zipball/b95dc4038e5a53a27dfd4c4905e3d296d4eb27d5",
"reference": "b95dc4038e5a53a27dfd4c4905e3d296d4eb27d5",
"url": "https://api.github.com/repos/staudenmeir/laravel-cte/zipball/48cdb4d22bbf3dc1bce3314650659f17fd0e223f",
"reference": "48cdb4d22bbf3dc1bce3314650659f17fd0e223f",
"shasum": ""
},
"require": {
@@ -8661,7 +8663,7 @@
"description": "Laravel queries with common table expressions",
"support": {
"issues": "https://github.com/staudenmeir/laravel-cte/issues",
"source": "https://github.com/staudenmeir/laravel-cte/tree/v1.12.3"
"source": "https://github.com/staudenmeir/laravel-cte/tree/v1.12.4"
},
"funding": [
{
@@ -8669,7 +8671,7 @@
"type": "custom"
}
],
"time": "2025-09-13T08:40:23+00:00"
"time": "2025-10-21T07:12:06+00:00"
},
{
"name": "symfony/clock",
@@ -12089,28 +12091,28 @@
},
{
"name": "webmozart/assert",
"version": "1.11.0",
"version": "1.12.0",
"source": {
"type": "git",
"url": "https://github.com/webmozarts/assert.git",
"reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
"reference": "541057574806f942c94662b817a50f63f7345360"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
"reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
"url": "https://api.github.com/repos/webmozarts/assert/zipball/541057574806f942c94662b817a50f63f7345360",
"reference": "541057574806f942c94662b817a50f63f7345360",
"shasum": ""
},
"require": {
"ext-ctype": "*",
"ext-date": "*",
"ext-filter": "*",
"php": "^7.2 || ^8.0"
},
"conflict": {
"phpstan/phpstan": "<0.12.20",
"vimeo/psalm": "<4.6.1 || 4.6.2"
},
"require-dev": {
"phpunit/phpunit": "^8.5.13"
"suggest": {
"ext-intl": "",
"ext-simplexml": "",
"ext-spl": ""
},
"type": "library",
"extra": {
@@ -12141,22 +12143,22 @@
],
"support": {
"issues": "https://github.com/webmozarts/assert/issues",
"source": "https://github.com/webmozarts/assert/tree/1.11.0"
"source": "https://github.com/webmozarts/assert/tree/1.12.0"
},
"time": "2022-06-03T18:03:27+00:00"
"time": "2025-10-20T12:43:39+00:00"
},
{
"name": "webonyx/graphql-php",
"version": "v15.25.1",
"version": "v15.25.2",
"source": {
"type": "git",
"url": "https://github.com/webonyx/graphql-php.git",
"reference": "60ef919138a171bdca5fc22c1e9aea8bbc59e5b7"
"reference": "da3891cb35fa694ad5a796a6c4acfa6bf987740a"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/webonyx/graphql-php/zipball/60ef919138a171bdca5fc22c1e9aea8bbc59e5b7",
"reference": "60ef919138a171bdca5fc22c1e9aea8bbc59e5b7",
"url": "https://api.github.com/repos/webonyx/graphql-php/zipball/da3891cb35fa694ad5a796a6c4acfa6bf987740a",
"reference": "da3891cb35fa694ad5a796a6c4acfa6bf987740a",
"shasum": ""
},
"require": {
@@ -12169,12 +12171,12 @@
"amphp/http-server": "^2.1",
"dms/phpunit-arraysubset-asserts": "dev-master",
"ergebnis/composer-normalize": "^2.28",
"friendsofphp/php-cs-fixer": "3.88.2",
"friendsofphp/php-cs-fixer": "3.89.1",
"mll-lab/php-cs-fixer-config": "5.11.0",
"nyholm/psr7": "^1.5",
"phpbench/phpbench": "^1.2",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "2.1.30",
"phpstan/phpstan": "2.1.31",
"phpstan/phpstan-phpunit": "2.0.7",
"phpstan/phpstan-strict-rules": "2.0.7",
"phpunit/phpunit": "^9.5 || ^10.5.21 || ^11",
@@ -12210,7 +12212,7 @@
],
"support": {
"issues": "https://github.com/webonyx/graphql-php/issues",
"source": "https://github.com/webonyx/graphql-php/tree/v15.25.1"
"source": "https://github.com/webonyx/graphql-php/tree/v15.25.2"
},
"funding": [
{
@@ -12218,7 +12220,7 @@
"type": "open_collective"
}
],
"time": "2025-10-08T10:29:48+00:00"
"time": "2025-10-25T09:33:47+00:00"
}
],
"packages-dev": [
@@ -12450,16 +12452,16 @@
},
{
"name": "driftingly/rector-laravel",
"version": "2.1.0",
"version": "2.1.1",
"source": {
"type": "git",
"url": "https://github.com/driftingly/rector-laravel.git",
"reference": "efb636a08dfddfa2a3f4527b1dd970a898a075a4"
"reference": "abc336cbf06f53d90ab74cecfd319379fc55d408"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/driftingly/rector-laravel/zipball/efb636a08dfddfa2a3f4527b1dd970a898a075a4",
"reference": "efb636a08dfddfa2a3f4527b1dd970a898a075a4",
"url": "https://api.github.com/repos/driftingly/rector-laravel/zipball/abc336cbf06f53d90ab74cecfd319379fc55d408",
"reference": "abc336cbf06f53d90ab74cecfd319379fc55d408",
"shasum": ""
},
"require": {
@@ -12479,9 +12481,9 @@
"description": "Rector upgrades rules for Laravel Framework",
"support": {
"issues": "https://github.com/driftingly/rector-laravel/issues",
"source": "https://github.com/driftingly/rector-laravel/tree/2.1.0"
"source": "https://github.com/driftingly/rector-laravel/tree/2.1.1"
},
"time": "2025-10-12T21:51:39+00:00"
"time": "2025-10-23T13:53:44+00:00"
},
{
"name": "fidry/cpu-core-counter",
@@ -14475,16 +14477,16 @@
},
{
"name": "rector/rector",
"version": "2.2.3",
"version": "2.2.5",
"source": {
"type": "git",
"url": "https://github.com/rectorphp/rector.git",
"reference": "d27f976a332a87b5d03553c2e6f04adbe5da034f"
"reference": "fb9418af7777dfb1c87a536dc58398b5b07c74b9"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/rectorphp/rector/zipball/d27f976a332a87b5d03553c2e6f04adbe5da034f",
"reference": "d27f976a332a87b5d03553c2e6f04adbe5da034f",
"url": "https://api.github.com/repos/rectorphp/rector/zipball/fb9418af7777dfb1c87a536dc58398b5b07c74b9",
"reference": "fb9418af7777dfb1c87a536dc58398b5b07c74b9",
"shasum": ""
},
"require": {
@@ -14523,7 +14525,7 @@
],
"support": {
"issues": "https://github.com/rectorphp/rector/issues",
"source": "https://github.com/rectorphp/rector/tree/2.2.3"
"source": "https://github.com/rectorphp/rector/tree/2.2.5"
},
"funding": [
{
@@ -14531,7 +14533,7 @@
"type": "github"
}
],
"time": "2025-10-11T21:50:23+00:00"
"time": "2025-10-23T11:22:37+00:00"
},
{
"name": "sebastian/cli-parser",
@@ -15670,9 +15672,7 @@
],
"aliases": [],
"minimum-stability": "stable",
"stability-flags": {
"leandrocfe/filament-apex-charts": 10
},
"stability-flags": {},
"prefer-stable": true,
"prefer-lowest": false,
"platform": {
File diff suppressed because one or more lines are too long
+6
View File
@@ -3,12 +3,15 @@
declare(strict_types=1);
use Rector\Caching\ValueObject\Storage\FileCacheStorage;
use Rector\CodingStyle\Rector\FunctionLike\FunctionLikeToFirstClassCallableRector;
use Rector\Config\RectorConfig;
use Rector\Php83\Rector\ClassMethod\AddOverrideAttributeToOverriddenMethodsRector;
use Rector\Strict\Rector\Empty_\DisallowedEmptyRuleFixerRector;
use RectorLaravel\Rector\Empty_\EmptyToBlankAndFilledFuncRector;
use RectorLaravel\Rector\FuncCall\RemoveDumpDataDeadCodeRector;
use RectorLaravel\Rector\MethodCall\ConvertEnumerableToArrayToAllRector;
use RectorLaravel\Rector\MethodCall\ResponseHelperCallToJsonResponseRector;
use RectorLaravel\Rector\StaticCall\DispatchToHelperFunctionsRector;
use RectorLaravel\Set\LaravelSetList;
use RectorLaravel\Set\LaravelSetProvider;
@@ -48,6 +51,9 @@ return RectorConfig::configure()
__DIR__.'/database/migrations',
AddOverrideAttributeToOverriddenMethodsRector::class,
DisallowedEmptyRuleFixerRector::class,
DispatchToHelperFunctionsRector::class,
ConvertEnumerableToArrayToAllRector::class,
FunctionLikeToFirstClassCallableRector::class,
])
->withPreparedSets(
deadCode: true,