404

[ Avaa Bypassed ]




Upload:

Command:

elspacio@3.145.112.178: ~ $
# 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');
});
```

Filemanager

Name Type Size Permission Actions
.git Folder 0755
.github Folder 0755
art Folder 0755
config Folder 0755
database Folder 0755
src Folder 0755
tests Folder 0755
.editorconfig File 235 B 0644
.gitattributes File 361 B 0644
.gitignore File 61 B 0644
.styleci.yml File 46 B 0644
CHANGELOG.md File 11.71 KB 0644
LICENSE.md File 1.07 KB 0644
README.md File 1.55 KB 0644
UPGRADE.md File 657 B 0644
composer.json File 1.44 KB 0644
phpunit.xml.dist File 665 B 0644