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/composer.json

28 lines
643 B

{
"name": "mightypork/php-sandbox",
"description": "Web interface for testing PHP code (Laravel package)",
"type": "library",
"require": {
"php": ">=5.6.0",
"laravel/framework": "~5.5"
},
"license": "BSD-3-Clause",
"authors": [
{
"name": "Ondřej Hruška",
"email": "ondra@ondrovo.com"
}
],
"autoload": {
"psr-4": {
"MightyPork\\PhpSandbox\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"MightyPork\\PhpSandbox\\PhpSandboxServiceProvider"
]
}
}
}