cleanup
This commit is contained in:
@@ -11,26 +11,6 @@
|
|||||||
"@codemirror/lang-markdown": "^6.2.5",
|
"@codemirror/lang-markdown": "^6.2.5",
|
||||||
"@codemirror/state": "^6.4.1",
|
"@codemirror/state": "^6.4.1",
|
||||||
"@sveltejs/vite-plugin-svelte": "^3.1.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",
|
"axios": "^1.7.4",
|
||||||
"codemirror": "^6.0.1",
|
"codemirror": "^6.0.1",
|
||||||
"date-fns": "^3.6.0",
|
"date-fns": "^3.6.0",
|
||||||
|
|||||||
@@ -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,
|
|
||||||
],
|
|
||||||
];
|
|
||||||
}
|
|
||||||
@@ -12,7 +12,6 @@ use Lucent\Commands\CompileSchemas;
|
|||||||
use Lucent\Commands\LiveLink;
|
use Lucent\Commands\LiveLink;
|
||||||
use Lucent\Commands\RebuildThumbnails;
|
use Lucent\Commands\RebuildThumbnails;
|
||||||
use Lucent\Commands\RemoveOrphanEdges;
|
use Lucent\Commands\RemoveOrphanEdges;
|
||||||
use Lucent\Event\Dispatcher;
|
|
||||||
use Lucent\File\FileService;
|
use Lucent\File\FileService;
|
||||||
use Lucent\File\ImageService;
|
use Lucent\File\ImageService;
|
||||||
use Lucent\Query\DatabaseGraph\DatabaseGraph;
|
use Lucent\Query\DatabaseGraph\DatabaseGraph;
|
||||||
@@ -30,10 +29,6 @@ class LucentServiceProvider extends ServiceProvider
|
|||||||
return ChannelService::fromConfig();
|
return ChannelService::fromConfig();
|
||||||
});
|
});
|
||||||
|
|
||||||
$this->app->singleton(Dispatcher::class, function () {
|
|
||||||
return new Dispatcher();
|
|
||||||
});
|
|
||||||
|
|
||||||
$this->app->bind(ImageManager::class, function () {
|
$this->app->bind(ImageManager::class, function () {
|
||||||
return new ImageManager(['driver' => 'imagick']);
|
return new ImageManager(['driver' => 'imagick']);
|
||||||
});
|
});
|
||||||
@@ -45,7 +40,6 @@ class LucentServiceProvider extends ServiceProvider
|
|||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
$this->app->register(LucentEventServiceProvider::class);
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -64,7 +64,7 @@ final class FilterParser
|
|||||||
|
|
||||||
return new Argument(
|
return new Argument(
|
||||||
field: "id",
|
field: "id",
|
||||||
operator: In::make(),
|
operator: new In(),
|
||||||
value: $sourceIds
|
value: $sourceIds
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
@@ -15,9 +15,6 @@ abstract class Operator
|
|||||||
*/
|
*/
|
||||||
public string $converter;
|
public string $converter;
|
||||||
|
|
||||||
public static function make(): Operator
|
|
||||||
{
|
|
||||||
return new static();
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user