1. Go to this page and download the library: Download sensorario/biberon 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/ */
sensorario / biberon example snippets
use Sensorario\Biberon\Biberon;
use Sensorario\Biberon\Detector;
use Sensorario\Biberon\Stat;
$show = new Sensorario\Biberon\Show(
new Sensorario\Biberon\Detector(),
(new Sensorario\Biberon\Stat())->init([
'count' => 100,
'columnsize' => 33,
])
);
while ($show->mustGoOn()) {
$show->next(function() {
return rand(11111, 99999);
});
}