mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
chore: bump scout 11.x (#1152)
This commit is contained in:
@@ -44,4 +44,18 @@ abstract class BaseModel extends Model implements HasSubtitle, Nameable
|
||||
$this->setConnection(Config::get($connectionKey));
|
||||
}
|
||||
}
|
||||
|
||||
// Temporary fix for Laravel 13.
|
||||
public function newCollection(array $models = [])
|
||||
{
|
||||
$collectionClass = static::$collectionClass;
|
||||
|
||||
$collection = new $collectionClass($models);
|
||||
|
||||
if (Model::isAutomaticallyEagerLoadingRelationships()) {
|
||||
$collection->withRelationshipAutoloading();
|
||||
}
|
||||
|
||||
return $collection;
|
||||
}
|
||||
}
|
||||
|
||||
+10
-10
@@ -32,25 +32,25 @@
|
||||
"bepsvpt/secure-headers": "^7.5",
|
||||
"elemind/filament-echarts": "^1.1",
|
||||
"fakerphp/faker": "^1.24.1",
|
||||
"filament/filament": "^5.4.3",
|
||||
"filament/filament": "^5.4.4",
|
||||
"flowframe/laravel-trend": "^0.5.0",
|
||||
"guzzlehttp/guzzle": "^7.10.0",
|
||||
"kyrch/laravel-prohibitions": "^1.2.0",
|
||||
"larastan/larastan": "^3.9.3",
|
||||
"laravel-notification-channels/discord": "^1.8",
|
||||
"laravel/fortify": "^1.36.2",
|
||||
"laravel/framework": "^13.2.0",
|
||||
"laravel/horizon": "^5.45.4",
|
||||
"laravel/pennant": "^1.22.0",
|
||||
"laravel/framework": "^13.3.0",
|
||||
"laravel/horizon": "^5.45.5",
|
||||
"laravel/pennant": "^1.23.0",
|
||||
"laravel/pulse": "^1.7.2",
|
||||
"laravel/sanctum": "^4.3.1",
|
||||
"laravel/scout": "^10.25.0",
|
||||
"laravel/scout": "^11.1",
|
||||
"laravel/tinker": "^3.0",
|
||||
"league/flysystem-aws-s3-v3": "^3.32.0",
|
||||
"mll-lab/graphql-php-scalars": "^6.4.1",
|
||||
"mll-lab/laravel-graphiql": "^4.1",
|
||||
"owen-it/laravel-auditing": "^14.0.3",
|
||||
"propaganistas/laravel-disposable-email": "^2.4.25",
|
||||
"propaganistas/laravel-disposable-email": "^2.4.26",
|
||||
"rebing/graphql-laravel": "^9.17",
|
||||
"spatie/db-dumper": "^3.8.3",
|
||||
"spatie/eloquent-sortable": "^5.0.1",
|
||||
@@ -58,19 +58,19 @@
|
||||
"staudenmeir/belongs-to-through": "^2.18",
|
||||
"staudenmeir/eloquent-has-many-deep": "^1.22.1",
|
||||
"staudenmeir/laravel-adjacency-list": "^1.26.0",
|
||||
"symfony/http-client": "^6.4.34",
|
||||
"symfony/http-client": "^6.4.36",
|
||||
"symfony/mailgun-mailer": "^6.4.24",
|
||||
"typesense/typesense-php": "^6.0",
|
||||
"vinkla/hashids": "^14.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"driftingly/rector-laravel": "^2.2.0",
|
||||
"fruitcake/laravel-debugbar": "^4.2.1",
|
||||
"fruitcake/laravel-debugbar": "^4.2.3",
|
||||
"laravel/pint": "^1.29.0",
|
||||
"laravel/sail": "^1.55.0",
|
||||
"laravel/sail": "^1.56.0",
|
||||
"mockery/mockery": "^1.6.12",
|
||||
"mrpunyapal/rector-pest": "^0.2.5",
|
||||
"pestphp/pest": "^4.4.3",
|
||||
"pestphp/pest": "^4.4.5",
|
||||
"pestphp/pest-plugin-laravel": "^4.1",
|
||||
"predis/predis": "^2.4.1",
|
||||
"rector/rector": "^2.3.9"
|
||||
|
||||
Generated
+354
-290
File diff suppressed because it is too large
Load Diff
@@ -1,36 +0,0 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
if (! Schema::hasTable('filament_exceptions_table')) {
|
||||
Schema::create('filament_exceptions_table', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('type', 255);
|
||||
$table->string('code');
|
||||
$table->longText('message');
|
||||
$table->string('file', 255);
|
||||
$table->integer('line');
|
||||
$table->text('trace');
|
||||
$table->string('method');
|
||||
$table->string('path', 255);
|
||||
$table->text('query');
|
||||
$table->text('body');
|
||||
$table->text('cookies');
|
||||
$table->text('headers');
|
||||
$table->string('ip');
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user