mirror of
https://github.com/rico-vz/HeimerdingerLoL.git
synced 2025-12-06 18:20:48 +01:00
Remove "anhskohbo/no-captcha" and "dolejska-daniel/riot-api" deps
- Remove deprecated dependencies, update package versions, and add a new repository URL.
This commit is contained in:
@@ -10,11 +10,9 @@
|
|||||||
"require": {
|
"require": {
|
||||||
"php": "^8.2",
|
"php": "^8.2",
|
||||||
"andcarpi/laravel-popper": "^0.9.4",
|
"andcarpi/laravel-popper": "^0.9.4",
|
||||||
"anhskohbo/no-captcha": "^3.6",
|
|
||||||
"blade-ui-kit/blade-icons": "^1.6",
|
"blade-ui-kit/blade-icons": "^1.6",
|
||||||
"creativecrafts/laravel-paginate-collection": "^0.2.4",
|
"creativecrafts/laravel-paginate-collection": "^0.2.4",
|
||||||
"cviebrock/eloquent-sluggable": "^11.0",
|
"cviebrock/eloquent-sluggable": "^11.0",
|
||||||
"dolejska-daniel/riot-api": "^5",
|
|
||||||
"guzzlehttp/guzzle": "^7.2",
|
"guzzlehttp/guzzle": "^7.2",
|
||||||
"intervention/image": "^3.0",
|
"intervention/image": "^3.0",
|
||||||
"laravel/framework": "^11.0",
|
"laravel/framework": "^11.0",
|
||||||
@@ -24,8 +22,7 @@
|
|||||||
"laravel/tinker": "^2.9",
|
"laravel/tinker": "^2.9",
|
||||||
"league/flysystem-aws-s3-v3": "^3.0",
|
"league/flysystem-aws-s3-v3": "^3.0",
|
||||||
"saade/blade-iconsax": "^1.2",
|
"saade/blade-iconsax": "^1.2",
|
||||||
"scyllaly/hcaptcha": "^4.4",
|
"scyllaly/hcaptcha": "dev-l11-compatibility",
|
||||||
"simonhamp/the-og": "^0.5.4",
|
|
||||||
"spatie/laravel-backup": "^8.6",
|
"spatie/laravel-backup": "^8.6",
|
||||||
"spatie/laravel-discord-alerts": "^1.3",
|
"spatie/laravel-discord-alerts": "^1.3",
|
||||||
"spatie/laravel-honeypot": "^4.5",
|
"spatie/laravel-honeypot": "^4.5",
|
||||||
@@ -93,5 +90,11 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"minimum-stability": "dev",
|
"minimum-stability": "dev",
|
||||||
"prefer-stable": true
|
"prefer-stable": true,
|
||||||
|
"repositories": [
|
||||||
|
{
|
||||||
|
"type": "vcs",
|
||||||
|
"url": "https://github.com/laravel-shift/hcaptcha.git"
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
1726
composer.lock
generated
1726
composer.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,31 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Database\Migrations\Migration;
|
||||||
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
|
use Illuminate\Support\Facades\Schema;
|
||||||
|
|
||||||
|
return new class extends Migration
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Run the migrations.
|
||||||
|
*/
|
||||||
|
public function up(): void
|
||||||
|
{
|
||||||
|
Schema::create('sessions', function (Blueprint $table) {
|
||||||
|
$table->string('id')->primary();
|
||||||
|
$table->foreignId('user_id')->nullable()->index();
|
||||||
|
$table->string('ip_address', 45)->nullable();
|
||||||
|
$table->text('user_agent')->nullable();
|
||||||
|
$table->longText('payload');
|
||||||
|
$table->integer('last_activity')->index();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverse the migrations.
|
||||||
|
*/
|
||||||
|
public function down(): void
|
||||||
|
{
|
||||||
|
Schema::dropIfExists('sessions');
|
||||||
|
}
|
||||||
|
};
|
||||||
Reference in New Issue
Block a user