This commit is contained in:
2024-08-24 19:57:17 +03:00
parent 0e5ac08641
commit 7b10bfca1d
5 changed files with 2 additions and 46 deletions
-20
View File
@@ -11,26 +11,6 @@
"@codemirror/lang-markdown": "^6.2.5",
"@codemirror/state": "^6.4.1",
"@sveltejs/vite-plugin-svelte": "^3.1.1",
"@tiptap/core": "^2.6.4",
"@tiptap/extension-blockquote": "^2.6.4",
"@tiptap/extension-bold": "^2.6.4",
"@tiptap/extension-bullet-list": "^2.6.4",
"@tiptap/extension-code": "^2.6.4",
"@tiptap/extension-document": "^2.6.4",
"@tiptap/extension-heading": "^2.6.4",
"@tiptap/extension-history": "^2.6.4",
"@tiptap/extension-italic": "^2.6.4",
"@tiptap/extension-list-item": "^2.6.4",
"@tiptap/extension-ordered-list": "^2.6.4",
"@tiptap/extension-paragraph": "^2.6.4",
"@tiptap/extension-strike": "^2.6.4",
"@tiptap/extension-table": "^2.6.4",
"@tiptap/extension-table-cell": "^2.6.4",
"@tiptap/extension-table-header": "^2.6.4",
"@tiptap/extension-table-row": "^2.6.4",
"@tiptap/extension-text": "^2.6.4",
"@tiptap/extension-underline": "^2.6.4",
"@tiptap/pm": "^2.6.4",
"axios": "^1.7.4",
"codemirror": "^6.0.1",
"date-fns": "^3.6.0",
-15
View File
@@ -1,15 +0,0 @@
<?php
namespace Lucent;
use Illuminate\Support\ServiceProvider;
use Lucent\Edge\Event\EdgesUpdated;
class LucentEventServiceProvider extends ServiceProvider
{
protected $listen = [
EdgesUpdated::class => [
SendEmailVerificationNotification::class,
],
];
}
-6
View File
@@ -12,7 +12,6 @@ use Lucent\Commands\CompileSchemas;
use Lucent\Commands\LiveLink;
use Lucent\Commands\RebuildThumbnails;
use Lucent\Commands\RemoveOrphanEdges;
use Lucent\Event\Dispatcher;
use Lucent\File\FileService;
use Lucent\File\ImageService;
use Lucent\Query\DatabaseGraph\DatabaseGraph;
@@ -30,10 +29,6 @@ class LucentServiceProvider extends ServiceProvider
return ChannelService::fromConfig();
});
$this->app->singleton(Dispatcher::class, function () {
return new Dispatcher();
});
$this->app->bind(ImageManager::class, function () {
return new ImageManager(['driver' => 'imagick']);
});
@@ -45,7 +40,6 @@ class LucentServiceProvider extends ServiceProvider
};
});
$this->app->register(LucentEventServiceProvider::class);
}
+1 -1
View File
@@ -64,7 +64,7 @@ final class FilterParser
return new Argument(
field: "id",
operator: In::make(),
operator: new In(),
value: $sourceIds
);
+1 -4
View File
@@ -15,9 +15,6 @@ abstract class Operator
*/
public string $converter;
public static function make(): Operator
{
return new static();
}
}