Using PHP 7 new secure random functions in PHP 5 with paragonie/random_compat

Code
<?php

// PHP 7 native functions
// functions implemented for PHP 5 in paragonie/random_compat

try {
    
$int random_int(0128);
} catch (
Error $e) {
    echo 
$e->getMessage();
} catch (
Exception $e) {
    echo 
$e->getMessage();
}

dump($int);


try {
    
$string random_bytes(32);
} catch (
Error $e) {
    echo 
$e->getMessage();
} catch (
Exception $e) {
    echo 
$e->getMessage();
}

dump(bin2hex($string));
Result
^ 94

^ "6fa8a7ab032f6907c630a32213c0c3e390dff64d72ebc50ccf3d242b7970cac0"
Used Versions
PHP 8.2, Laminas MVC 3.2, Symfony 5.2, Laravel 8.28, PHPUnit 9.5, Doctrine ORM 2.8