Skip to content

Commit 5bc8c97

Browse files
committed
Usage database tools from package
1 parent 601200b commit 5bc8c97

File tree

6 files changed

+78
-269
lines changed

6 files changed

+78
-269
lines changed

app/Console/Commands/SqliteOptimize.php

-74
This file was deleted.

app/Console/Commands/SqliteVacuum.php

-74
This file was deleted.

app/Console/Commands/SqliteWalEnable.php

-94
This file was deleted.

app/Providers/AppServiceProvider.php

-7
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,6 @@ public function register(): void
2828
*/
2929
public function boot(): void
3030
{
31-
// Don't kill the app if the database hasn't been created.
32-
try {
33-
DB::connection('sqlite')->statement('PRAGMA synchronous = normal;');
34-
} catch (\Throwable $throwable) {
35-
return;
36-
}
37-
3831
Paginator::useBootstrapFive();
3932

4033
Blade::component('github', Github::class);

composer.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@
4040
"symfony/dom-crawler": "^6.3",
4141
"symfony/yaml": "^6.3",
4242
"twbs/bootstrap-icons": "^1.11",
43-
"watson/active": "^7.0"
43+
"watson/active": "^7.0",
44+
"esplora/spire": "0.0.1"
4445
},
4546
"require-dev": {
4647
"deployer/deployer": "^7.3",

0 commit comments

Comments
 (0)