Utility for running PHP code inside the browser (Laravel package)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
php-sandbox/src/config/php-sandbox.php

15 lines
176 B

<?php
return [
'enable' => env('ENABLE_PHP_SANDBOX', false),
'route' => 'sandbox',
'route_middleware' => ['web'],
'default_code' => <<<CODE
<?php
CODE
];