1. Go to this page and download the library: Download italix/documents 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/ */
italix / documents example snippets
$library = new Library($pdo, new LocalStore(
'/data/docs',
Library::suggested_path_strategy(),
Library::suggested_catalog()
));
$library->install();
$tree_id = $library->create_tree('manual', 'Handbook');
$library->save($tree_id, 'en/guide/install.md', "# Install\n\nSteps.\n", ['author_c' => '[email protected]']);
$projection = new Projection($library, '/srv/handbook');
$projection->checkout($tree_id); // now edit /srv/handbook with anything
$projection->import($tree_id, '[email protected]');
$projection->publish($tree_id, '/srv/handbook-site');