Sandbox library

Installs: 3

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/krzysztofzylka/sandbox

1.0.0 2023-12-09 09:49 UTC

This package is auto-updated.

Last update: 2025-09-07 00:16:06 UTC


README

composer require krzysztofzylka/sandbox

Create sandbox instance

$sandbox = new \Krzysztofzylka\Sandbox\Sandbox(null, '<?php echo "a" ?>');
$sandbox->setTimeLimit(6);
$sandbox->setMemoryLimit(64);
echo $sandbox->run();