We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88fcac1 commit 86921b3Copy full SHA for 86921b3
scripts/phar-generator-script.php
@@ -226,6 +226,15 @@ public static function getExcludedFolders(): array
226
$phar->setStub($shebang . PHP_EOL . $stub);
227
$phar->setSignatureAlgorithm(Phar::SHA256);
228
$phar->buildFromIterator($pharFilesList, $srcRoot);
229
+$phar->setMetadata([
230
+ 'vcs.git' => 'https://github.com/code-lts/doctum.git',
231
+ 'vcs.browser' => 'https://github.com/code-lts/doctum',
232
+ 'version' => $version,
233
+ 'build-date' => $date,
234
+ 'license' => 'MIT',
235
+ 'vendor' => 'Doctum',
236
+ 'name' => 'Doctum',
237
+]);
238
239
$files = array_map(
240
function (string $fileRelativePath) {
0 commit comments