1. Go to this page and download the library: Download smytsyk-dev/freque 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/ */
smytsyk-dev / freque example snippets
use Freque\FileChangesHistoryLoader;
use Freque\JsonFormatter;
use Freque\Processor;
use Freque\Reporter;
use Freque\Runner;
use Freque\Utils\GitFileHistoryLoader;
use Freque\Utils\ScandirFileScanner;
use Freque\Utils\ShellExec;
$runner = new Runner(new Processor(new ScandirFileScanner()),
new FileChangesHistoryLoader(new GitFileHistoryLoader(new ShellExec())),
new Reporter(new JsonFormatter())
);
$targetGitRepositoryDir = ''
echo $runner->run($targetGitRepositoryDir) . PHP_EOL;