first commit

This commit is contained in:
2025-07-18 16:20:14 +07:00
commit 98af45c018
16382 changed files with 3148096 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
#!/usr/bin/env php
<?php
declare(strict_types=1);
use SimpleSAML\Console\Application;
use SimpleSAML\Kernel;
use Symfony\Component\Console\Input\ArgvInput;
umask(000);
set_time_limit(0);
require __DIR__.'/../vendor/autoload.php';
$input = new ArgvInput();
$module = $input->getParameterOption(['--module', '-m'], 'core');
$kernel = new Kernel($module);
$application = new Application($kernel);
$application->run($input);