Initial Commit
Some checks are pending
CI / release (push) Waiting to run
CI / debug (push) Waiting to run
CI / check-phpunit (push) Waiting to run
CI / check-phpdoc (push) Waiting to run
CI / generate-phpdoc (push) Blocked by required conditions
CI / test (push) Blocked by required conditions
CI / release-documentation (push) Blocked by required conditions
CI / release-artifacts (push) Blocked by required conditions

This commit is contained in:
netkas 2025-05-29 14:18:23 -04:00
commit 441d1f3636
Signed by: netkas
GPG key ID: 4D8629441B76E4CC
15 changed files with 1045 additions and 0 deletions

View file

@ -0,0 +1,8 @@
<?php
namespace FederationServer;
class FederationServer
{
}

View file

@ -0,0 +1,18 @@
<?php
namespace FederationServer;
class Program
{
/**
* FederationServer main entry point
*
* @param string[] $args Command-line arguments
* @return int Exit code
*/
public static function main(array $args): int
{
print("Hello World from net.nosial.federation!" . PHP_EOL);
return 0;
}
}