]> _ Git - cubist_cms-back.git/commitdiff
wip #2941 @3
authorVincent Vanwaelscappel <vincent@cubedesigners.com>
Fri, 16 Aug 2019 15:19:53 +0000 (17:19 +0200)
committerVincent Vanwaelscappel <vincent@cubedesigners.com>
Fri, 16 Aug 2019 15:19:53 +0000 (17:19 +0200)
composer.json
src/app/Console/Commands/SearchIndex.php [new file with mode: 0644]

index 1a859a2ce94ef7711ddbc0a4c73540be15d73e08..cb21e4915c630f3d2db6da7609f479ca067383ec 100644 (file)
@@ -39,7 +39,7 @@
         "graham-campbell/markdown": "^11.0",
         "barryvdh/laravel-debugbar": "^3.2",
         "league/commonmark-ext-autolink": "^1.0",
-        "elasticquent/elasticquent": "^1.0"
+        "cviebrock/laravel-elasticsearch": "^3.6"
     },
     "require-dev": {
         "filp/whoops": "^2.3",
diff --git a/src/app/Console/Commands/SearchIndex.php b/src/app/Console/Commands/SearchIndex.php
new file mode 100644 (file)
index 0000000..c76f5a2
--- /dev/null
@@ -0,0 +1,18 @@
+<?php
+
+
+namespace Cubist\Backpack\app\Console\Commands;
+
+use Illuminate\Console\Command;
+
+
+class SearchIndex extends Command
+{
+    protected $signature = 'cubist:search:index';
+    protected $description = 'Index data for search engine';
+
+    public function handle()
+    {
+
+    }
+}