mirror of
https://github.com/YunoHost-Apps/hubzilla_ynh.git
synced 2024-09-03 19:26:21 +02:00
9 lines
198 B
PHP
9 lines
198 B
PHP
<?php
|
|
set_error_handler(function () {
|
|
echo file_get_contents(dirname(__DIR__).'/INSTALL');
|
|
exit(1);
|
|
}, E_ALL);
|
|
|
|
require_once dirname(__DIR__) . '/vendor/autoload.php';
|
|
|
|
restore_error_handler();
|