1. Go to this page and download the library: Download back-2-95/fields 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/ */
back-2-95 / fields example snippets
$api = new \BackTo95\Fields\Api();
$storage = new \BackTo95\Fields\Storage\FileStorage('data/entities');
$api->setStorage($storage);
$track_configuration = new \BackTo95\Fields\Entity\EntityConfiguration([
'name' => 'track',
'description' => 'Track represents musical track made with tracker software',
'fields' => [
'title' => [...],
'description' => [...],
],
]);