mirror of
https://github.com/LibreSign/libresign.git
synced 2025-12-18 05:20:45 +01:00
6 lines
245 B
PHP
6 lines
245 B
PHP
<?php
|
|
|
|
if (false === (@include_once __DIR__.'/../vendor/autoload.php')) {
|
|
throw new Exception('Cannot include autoload. Did you run install dependencies using composer?');
|
|
}
|
|
$app = \OC::$server->query(OCA\Signer\AppInfo\Application::class);
|