-
-
Notifications
You must be signed in to change notification settings - Fork 188
/
link
executable file
·61 lines (49 loc) · 1.97 KB
/
link
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env php
<?php
require __DIR__.'/vendor/autoload.php';
use Symfony\Component\Filesystem\Filesystem;
use Symfony\Component\Finder\Finder;
/**
* Links dependencies to components to a local clone of the main Kunstmaan/KunstmaanBundlesCMS GitHub repository.
* This is heavily based upon the link script used by Symfony itself. Credits to Kévin Dunglas for providing such an
* awesome script
*
* @author Ruud Denivel <[email protected]>
*/
if (2 !== $argc) {
echo 'Link dependencies to components to a local clone of the main symfony/symfony GitHub repository.'.PHP_EOL.PHP_EOL;
echo "Usage: $argv[0] /path/to/the/project".PHP_EOL;
exit(1);
}
if (!is_dir("$argv[1]/vendor/kunstmaan")) {
echo "The directory \"$argv[1]\" does not exist or the dependencies are not installed, did you forget to run \"composer install\" in your project?".PHP_EOL;
exit(1);
}
$filesystem = new Filesystem();
$directories = Finder::create()
->directories()
->depth(0)
->in(__DIR__ . '/src/Kunstmaan/');
/** @var \Symfony\Component\Finder\SplFileInfo $dir */
foreach ($directories as $dir) {
if ($filesystem->exists($composer = $dir->getPathname() . "/composer.json")) {
$sfPackages[json_decode(file_get_contents($composer))->name] = $dir->getPathname();
}
}
foreach (glob("$argv[1]/vendor/kunstmaan/*", GLOB_ONLYDIR | GLOB_NOSORT) as $dir) {
$package = 'kunstmaan/'.basename($dir);
if (is_link($dir)) {
echo "\"$package\" is already a symlink, skipping.".PHP_EOL;
continue;
}
if (!isset($sfPackages[$package])) {
continue;
}
$sfDir = '\\' === DIRECTORY_SEPARATOR ? $sfPackages[$package] : $filesystem->makePathRelative($sfPackages[$package], dirname(realpath($dir)));
$filesystem->remove($dir);
$filesystem->symlink($sfDir, $dir);
echo "\"$package\" has been linked to \"$sfPackages[$package]\".".PHP_EOL;
}
foreach (glob("$argv[1]/var/cache/*") as $cacheDir) {
$filesystem->remove($cacheDir);
}