Skip to content
Snippets Groups Projects
Unverified Commit 5082b40b authored by David Prévot's avatar David Prévot
Browse files

Force system dependencies loading

parent abd43bf8
No related branches found
No related tags found
No related merge requests found
<?php
// Require
require_once '/usr/share/php/PHPUnit/Autoload.php';
require_once '/usr/share/php/Psr/Http/Message/factory-autoload.php';
// Suggest
// @codingStandardsIgnoreFile
// @codeCoverageIgnoreStart
// this is an autogenerated file - do not edit
spl_autoload_register(
function($class) {
static $classes = null;
if ($classes === null) {
$classes = array(
___CLASSLIST___
);
}
$cn = strtolower($class);
if (isset($classes[$cn])) {
require ___BASEDIR___$classes[$cn];
}
},
___EXCEPTION___,
___PREPEND___
);
// @codeCoverageIgnoreEnd
// Files
......@@ -3,7 +3,6 @@
dh $@
override_dh_auto_build:
phpabtpl composer.json > debian/autoload.php.tpl
phpab \
--output test/autoload.php \
--template debian/autoload.php.tpl \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment