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
+3 -5
View File
@@ -1,3 +1,4 @@
#!/usr/bin/env php
<?php
/**
@@ -10,10 +11,7 @@
* New location: app/Services/Tmux/Scripts/update_groups.php
*/
require_once __DIR__.'/../../../../bootstrap/autoload.php';
$artisan = dirname(__DIR__, 4).'/artisan';
$artisan = base_path('artisan');
$command = "php {$artisan} groups:update";
passthru($command, $exitCode);
passthru("php {$artisan} groups:update", $exitCode);
exit($exitCode);