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:
Rico van Zelst
2024-03-18 18:06:23 +01:00
parent a0043124f4
commit 58a1b50674
3 changed files with 606 additions and 1164 deletions

View File

@@ -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

File diff suppressed because it is too large Load Diff

View File

@@ -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');
}
};