Add php 8.2 support. Bump laravel version, v9 => v10

This commit is contained in:
Daniel Supernault 2023-04-19 22:41:26 -06:00
parent b1f95a7213
commit fb4ac4ebd6
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
3 changed files with 391 additions and 525 deletions

View File

@ -24,10 +24,7 @@ class AuthServiceProvider extends ServiceProvider
*/
public function boot()
{
$this->registerPolicies();
if(config_cache('pixelfed.oauth_enabled') == true) {
Passport::routes(null, ['middleware' => ['twofactor', \Fruitcake\Cors\HandleCors::class]]);
Passport::tokensExpireIn(now()->addDays(config('instance.oauth.token_expiration', 356)));
Passport::refreshTokensExpireIn(now()->addDays(config('instance.oauth.refresh_expiration', 400)));
Passport::enableImplicitGrant();

View File

@ -5,7 +5,7 @@
"license": "AGPL-3.0-only",
"type": "project",
"require": {
"php": "^8.0.2|^8.1",
"php": "^8.1|^8.2",
"ext-bcmath": "*",
"ext-ctype": "*",
"ext-curl": "*",
@ -16,17 +16,16 @@
"bacon/bacon-qr-code": "^2.0.3",
"beyondcode/laravel-websockets": "^1.13",
"brick/math": "^0.9.3",
"buzz/laravel-h-captcha": "1.0.3",
"doctrine/dbal": "^2.7",
"fruitcake/laravel-cors": "^2.0",
"buzz/laravel-h-captcha": "1.0.4",
"doctrine/dbal": "^3.0",
"intervention/image": "^2.4",
"jenssegers/agent": "^2.6",
"laravel/framework": "^9.0",
"laravel/framework": "^10.0",
"laravel/helpers": "^1.1",
"laravel/horizon": "^5.0",
"laravel/passport": "^10.0",
"laravel/passport": "^11.0",
"laravel/tinker": "^2.0",
"laravel/ui": "^2.0|^3.4",
"laravel/ui": "^4.2",
"league/flysystem-aws-s3-v3": "^3.0",
"league/iso3166": "^2.1|^4.0",
"pbmedia/laravel-ffmpeg": "^8.0",
@ -38,7 +37,7 @@
"predis/predis": "^2.0",
"spatie/laravel-backup": "^8.0.0",
"spatie/laravel-image-optimizer": "^1.7",
"stevebauman/purify": "4.0.*",
"stevebauman/purify": "6.0.*",
"symfony/http-client": "^6.1",
"symfony/http-kernel": "^6.0.0",
"symfony/mailgun-mailer": "^6.1"
@ -95,6 +94,5 @@
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true
}

897
composer.lock generated

File diff suppressed because it is too large Load Diff