vendorlibs: library/vendor to libary/IcingaVendor
This doesn't make it much better but allows to build a package libicinga-vendor-php placing those files to /usr/share/php/IcingaVendor or similar. refs #4075
This commit is contained in:
parent
8df26bb5f5
commit
c592236258
|
@ -11,7 +11,7 @@ use Icinga\Web\StyleSheet;
|
|||
use Icinga\Web\Url;
|
||||
use Icinga\Exception\ProgrammingError;
|
||||
|
||||
require_once 'vendor/dompdf/dompdf_config.inc.php';
|
||||
require_once 'IcingaVendor/dompdf/dompdf_config.inc.php';
|
||||
|
||||
spl_autoload_register('DOMPDF_autoload');
|
||||
|
||||
|
@ -60,4 +60,4 @@ class Pdf extends DOMPDF
|
|||
)
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -74,7 +74,7 @@ class JavaScript
|
|||
}
|
||||
}
|
||||
if ($minified) {
|
||||
require_once ICINGA_LIBDIR . '/vendor/JShrink/Minifier.php';
|
||||
require_once 'IcingaVendor/JShrink/Minifier.php';
|
||||
$out .= Minifier::minify($js, array('flaggedComments' => false));
|
||||
} else {
|
||||
$out .= $js;
|
||||
|
|
|
@ -67,7 +67,7 @@ class LessCompiler
|
|||
*/
|
||||
public function __construct()
|
||||
{
|
||||
require_once 'vendor/lessphp/lessc.inc.php';
|
||||
require_once 'IcingaVendor/lessphp/lessc.inc.php';
|
||||
$this->lessc = new lessc();
|
||||
|
||||
$this->lessc->setVariables(
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue