mirror of
https://github.com/v2board/v2board.git
synced 2024-11-13 11:09:11 +08:00
21 lines
441 B
PHP
21 lines
441 B
PHP
|
<?php
|
||
|
namespace App\Utils;
|
||
|
|
||
|
use App\Models\User;
|
||
|
|
||
|
class Shadowsocks
|
||
|
{
|
||
|
public static function SIP008($server, User $user)
|
||
|
{
|
||
|
$config = [
|
||
|
"id" => $server['id'],
|
||
|
"remarks" => $server['name'],
|
||
|
"server" => $server['host'],
|
||
|
"server_port" => $server['port'],
|
||
|
"password" => $user['uuid'],
|
||
|
"method" => $server['cipher']
|
||
|
];
|
||
|
return $config;
|
||
|
}
|
||
|
}
|