Skip to content

Commit 9fabe0a

Browse files
committed
chore: update dependencies
1 parent a5c840c commit 9fabe0a

File tree

8 files changed

+1755
-1600
lines changed

8 files changed

+1755
-1600
lines changed
+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<?php
2+
3+
namespace App\Console\Commands;
4+
5+
use Illuminate\Console\Command;
6+
use DB;
7+
8+
class flushSessions extends Command
9+
{
10+
/**
11+
* The name and signature of the console command.
12+
*
13+
* @var string
14+
*/
15+
protected $signature = 'session:flush';
16+
17+
/**
18+
* The console command description.
19+
*
20+
* @var string
21+
*/
22+
protected $description = 'Flush all user sessions';
23+
24+
/**
25+
* Create a new command instance.
26+
*
27+
* @return void
28+
*/
29+
public function __construct()
30+
{
31+
parent::__construct();
32+
}
33+
34+
/**
35+
* Execute the console command.
36+
*
37+
* @return mixed
38+
*/
39+
public function handle()
40+
{
41+
DB::table('sessions')->truncate();
42+
}
43+
}

composer.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,26 @@
55
"keywords": ["laravel", "framework"],
66
"license": "MIT",
77
"require": {
8-
"php": "^8.1",
8+
"php": "^8.3",
99
"guzzlehttp/guzzle": "^7.2",
10-
"laravel/framework": "^10.10",
11-
"laravel/sanctum": "^3.2",
10+
"laravel/framework": "^11.0",
11+
"laravel/sanctum": "^4.0",
1212
"laravel/tinker": "^2.8",
1313
"laravel/ui": "^4.2",
1414
"realrashid/sweet-alert": "^7.1",
1515
"spatie/laravel-activitylog": "^4.7",
16-
"spatie/laravel-medialibrary": "^10.11",
17-
"yajra/laravel-datatables": "^10.1",
18-
"yajra/laravel-datatables-oracle": "^10.8"
16+
"spatie/laravel-medialibrary": "^11.0",
17+
"yajra/laravel-datatables": "^11.0",
18+
"yajra/laravel-datatables-oracle": "^11.0"
1919
},
2020
"require-dev": {
2121
"barryvdh/laravel-debugbar": "^3.9",
2222
"fakerphp/faker": "^1.9.1",
2323
"laravel/pint": "^1.0",
2424
"laravel/sail": "^1.18",
25-
"laravel/telescope": "^4.16",
25+
"laravel/telescope": "^5.0",
2626
"mockery/mockery": "^1.4.4",
27-
"nunomaduro/collision": "^7.0",
27+
"nunomaduro/collision": "^8.1",
2828
"phpunit/phpunit": "^10.1",
2929
"spatie/laravel-ignition": "^2.0"
3030
},

0 commit comments

Comments
 (0)