PHP code example of decodelabs / genesis
1. Go to this page and download the library: Download decodelabs/genesis library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
decodelabs / genesis example snippets
namespace DecodeLabs\Genesis;
use DecodeLabs\Genesis\Environment\Config as EnvConfig;
use DecodeLabs\Genesis\Build\Manifest as BuildManifest;
use DecodeLabs\Kingdom;
interface Hub
{
public ?BuildManifest $buildManifest { get; }
public function initializeLoaders(): void;
public function loadBuild(): Build;
public function loadEnvironmentConfig(): EnvConfig;
public function initializePlatform(): void;
public function loadKingdom(): Kingdom;
}