Update bootstrapping and create Yenc service and facade

This commit is contained in:
DariusIII
2025-12-29 13:53:22 +01:00
parent c8b0c4b744
commit 3f81661278
59 changed files with 1272 additions and 2722 deletions
@@ -1,3 +1,4 @@
#!/usr/bin/env php
<?php
/**
@@ -10,10 +11,8 @@
* New location: app/Services/Tmux/Scripts/postprocess_pre.php
*/
require_once __DIR__.'/../../../../bootstrap/autoload.php';
$limit = isset($argv[1]) && is_numeric($argv[1]) ? $argv[1] : '';
$artisan = base_path('artisan');
$artisan = dirname(__DIR__, 4).'/artisan';
$command = "php {$artisan} predb:check".($limit ? " {$limit}" : '');