refactor: susun semula struktur folder — Laravel source ke src/

This commit is contained in:
Saufi
2026-05-19 15:58:35 +08:00
parent f052251b94
commit bf53c71b45
10806 changed files with 1385379 additions and 121 deletions

119
vendor/sebastian/version/src/Version.php vendored Normal file
View File

@@ -0,0 +1,119 @@
<?php declare(strict_types=1);
/*
* This file is part of sebastian/version.
*
* (c) Sebastian Bergmann <sebastian@phpunit.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace SebastianBergmann;
use const DIRECTORY_SEPARATOR;
use function assert;
use function end;
use function explode;
use function fclose;
use function is_array;
use function is_dir;
use function is_resource;
use function proc_close;
use function proc_open;
use function stream_get_contents;
use function substr_count;
use function trim;
final readonly class Version
{
/**
* @var non-empty-string
*/
private string $version;
/**
* @param non-empty-string $release
* @param non-empty-string $path
*/
public function __construct(string $release, string $path)
{
$this->version = $this->generate($release, $path);
}
/**
* @return non-empty-string
*/
public function asString(): string
{
return $this->version;
}
/**
* @param non-empty-string $release
* @param non-empty-string $path
*
* @return non-empty-string
*/
private function generate(string $release, string $path): string
{
if (substr_count($release, '.') + 1 === 3) {
$version = $release;
} else {
$version = $release . '-dev';
}
$git = $this->getGitInformation($path);
if (!$git) {
return $version;
}
if (substr_count($release, '.') + 1 === 3) {
return $git;
}
$git = explode('-', $git);
return $release . '-' . end($git);
}
/**
* @param non-empty-string $path
*/
private function getGitInformation(string $path): false|string
{
if (!is_dir($path . DIRECTORY_SEPARATOR . '.git')) {
return false;
}
$process = @proc_open(
['git', 'describe', '--tags'],
[
1 => ['pipe', 'w'],
2 => ['pipe', 'w'],
],
$pipes,
$path,
);
if (!is_resource($process)) {
return false;
}
assert(is_array($pipes));
assert(isset($pipes[1]) && is_resource($pipes[1]));
assert(isset($pipes[2]) && is_resource($pipes[2]));
$result = trim((string) stream_get_contents($pipes[1]));
fclose($pipes[1]);
fclose($pipes[2]);
$returnCode = proc_close($process);
if ($returnCode !== 0) {
return false;
}
return $result;
}
}