Your ROOT_URL in app.ini is https://git.ondrovo.com/ but you are visiting http://159.69.29.240:49153/packages/php-sandbox/src/commit/d54eb0ee2849f6caa830d116c02ed861435b4362/composer.json You should set ROOT_URL correctly, otherwise the web may not work correctly.
Utility for running PHP code inside the browser (Laravel package)
 
 
 
 
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"
]
}
}
}