1. Go to this page and download the library: Download stellarwp/schema 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/ */
stellarwp / schema example snippets
use Boom\Shakalaka\StellarWP\Schema\Config;
// You'll need a Dependency Injection Container that is compatible with https://github.com/lucatume/di52.
use Boom\Shakalaka\lucatume\DI52\Container;
// You'll need to use the StellarWP\DB library for database operations.
use Boom\Shakalaka\StellarWP\DB\DB;
$container = new Boom\Shakalaka\lucatume\DI52\Container();
Config::set_container( $container );
Config::set_db( DB::class );