* wip

* fix plugin uninstall

* marketplace
This commit is contained in:
Saeed Vaziry
2025-06-19 14:07:15 +02:00
committed by GitHub
parent 131b828807
commit 342a3aa4c6
35 changed files with 1973 additions and 934 deletions

20
app/Facades/Plugins.php Normal file
View File

@ -0,0 +1,20 @@
<?php
namespace App\Facades;
use Illuminate\Support\Facades\Facade;
/**
* @method static mixed all()
* @method static string install(string $url, ?string $branch = null, ?string $tag = null)
* @method static string load()
* @method static string uninstall(string $name)
* @method static void cleanup()
*/
class Plugins extends Facade
{
protected static function getFacadeAccessor(): string
{
return 'plugins';
}
}