mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-22 12:30:27 +08:00
Licensing: Added license gen as composer command
This commit is contained in:
parent
a2fd80954b
commit
3345680f7d
|
@ -72,6 +72,10 @@
|
|||
"lint": "phpcs",
|
||||
"test": "phpunit",
|
||||
"t-reset": "@php artisan test --recreate-databases",
|
||||
"build-licenses": [
|
||||
"@php ./dev/licensing/gen-js-licenses",
|
||||
"@php ./dev/licensing/gen-php-licenses"
|
||||
],
|
||||
"post-autoload-dump": [
|
||||
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
||||
"@php artisan package:discover --ansi"
|
||||
|
|
|
@ -22,7 +22,7 @@ $licenseInfo = implode($outputSeparator, $packageOutput) . "\n";
|
|||
file_put_contents($outputPath, $licenseInfo);
|
||||
|
||||
echo "License information written to {$outputPath}\n";
|
||||
echo implode("\n", getWarnings());
|
||||
echo implode("\n", getWarnings()) . "\n";
|
||||
|
||||
function packageToOutput(string $packagePath): string
|
||||
{
|
||||
|
|
|
@ -19,7 +19,7 @@ $licenseInfo = implode($outputSeparator, $packageOutput) . "\n";
|
|||
file_put_contents($outputPath, $licenseInfo);
|
||||
|
||||
echo "License information written to {$outputPath}\n";
|
||||
echo implode("\n", getWarnings());
|
||||
echo implode("\n", getWarnings()) . "\n";
|
||||
|
||||
function packageToOutput(stdClass $package) : string {
|
||||
global $rootPath;
|
||||
|
|
Loading…
Reference in New Issue
Block a user