Skip to content

Commit

Permalink
Fix missing dependency in production build (#3010)
Browse files Browse the repository at this point in the history
* fix missing dependency in production build

* version 6.3.2
  • Loading branch information
ildyria authored Feb 17, 2025
1 parent 6468ea7 commit a5ec8c2
Show file tree
Hide file tree
Showing 4 changed files with 116 additions and 83 deletions.
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
"ext-tokenizer": "*",
"ext-xml": "*",
"bepsvpt/secure-headers": "^9.0",
"composer/semver": "^3.4",
"dedoc/scramble": "^0.12.2",
"doctrine/dbal": "^3.1",
"geocoder-php/cache-provider": "^4.3",
Expand Down
164 changes: 82 additions & 82 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 32 additions & 0 deletions database/migrations/2025_02_16_214804_bump_version060302.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<?php

/**
* SPDX-License-Identifier: MIT
* Copyright (c) 2017-2018 Tobias Reich
* Copyright (c) 2018-2025 LycheeOrg.
*/

use Illuminate\Database\Migrations\Migration;
use Illuminate\Support\Facades\DB;

return new class() extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up(): void
{
DB::table('configs')->where('key', 'version')->update(['value' => '060302']);
}

/**
* Reverse the migrations.
*
* @return void
*/
public function down(): void
{
DB::table('configs')->where('key', 'version')->update(['value' => '060301']);
}
};
2 changes: 1 addition & 1 deletion version.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.3.1
6.3.2

0 comments on commit a5ec8c2

Please sign in to comment.