for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/* Copyright (C) 2016 Michael Giesler
*
* This file is part of Dembelo.
* Dembelo is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* Dembelo is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License 3 for more details.
* You should have received a copy of the GNU Affero General Public License 3
* along with Dembelo. If not, see <http://www.gnu.org/licenses/>.
*/
namespace DembeloMain\Composer;
use Symfony\Component\Filesystem\Filesystem;
/**
* Class ScriptHandler
class ScriptHandler
{
* @return void
public static function buildSymLinks(): void
$fs = new Filesystem();
// topic images
$originDir = '../../uploads/topicimage/';
$targetDir = 'web/images/topics';
$fs->symlink($originDir, $targetDir);
// webix
$originDir = '../../../vendor/typearea/webix/lib/codebase/';
$targetDir = './web/js/libs/webix';
}