feat: s3
Laravel CI-CD / Deploy with Kamal (push) Blocked by required conditions Details
Laravel CI-CD / Tests Unitaires (push) Has been cancelled Details

This commit is contained in:
Leon Morival 2026-05-26 09:45:44 +02:00
parent 8b162c8e4c
commit 19604a6e3e
8 changed files with 145 additions and 84 deletions

View File

@ -49,7 +49,6 @@ class UserForm
FileUpload::make('avatar_url') FileUpload::make('avatar_url')
->label(__('admin.users.fields.avatar')) ->label(__('admin.users.fields.avatar'))
->image() ->image()
->disk('public')
->directory('avatars') ->directory('avatars')
->visibility('public') ->visibility('public')
->maxSize(2048), ->maxSize(2048),

View File

@ -252,10 +252,10 @@ class AuthController extends Controller
if ($request->hasFile('avatar')) { if ($request->hasFile('avatar')) {
if ($user->avatar_url) { if ($user->avatar_url) {
Storage::disk('public')->delete($user->avatar_url); Storage::disk()->delete($user->avatar_url);
} }
$path = $request->file('avatar')->store('avatars', 'public'); $path = $request->file('avatar')->store('avatars', );
$data['avatar_url'] = $path; $data['avatar_url'] = $path;
} }
@ -300,7 +300,7 @@ class AuthController extends Controller
}); });
if (! empty($storagePaths)) { if (! empty($storagePaths)) {
Storage::disk('public')->delete($storagePaths); Storage::disk()->delete($storagePaths);
} }
if ($request->hasSession()) { if ($request->hasSession()) {
@ -320,7 +320,7 @@ class AuthController extends Controller
$avatarPath = null; $avatarPath = null;
if ($request->hasFile('avatar')) { if ($request->hasFile('avatar')) {
$avatarPath = $request->file('avatar')->store('avatars', 'public'); $avatarPath = $request->file('avatar')->store('avatars');
} }
$userAttributes = $this->userAttributesFromRequestData($data); $userAttributes = $this->userAttributesFromRequestData($data);
@ -338,7 +338,7 @@ class AuthController extends Controller
$user->forceDelete(); $user->forceDelete();
if ($avatarPath !== null) { if ($avatarPath !== null) {
Storage::disk('public')->delete($avatarPath); Storage::disk()->delete($avatarPath);
} }
return response()->json([ return response()->json([

View File

@ -231,7 +231,7 @@ class MealPostController extends Controller
$data = $request->validated(); $data = $request->validated();
if ($request->hasFile('image')) { if ($request->hasFile('image')) {
$path = $request->file('image')->store('meal-posts', 'public'); $path = $request->file('image')->store('meal-posts', );
$data['image_url'] = $path; $data['image_url'] = $path;
} }

View File

@ -97,7 +97,7 @@ class User extends Authenticatable implements FilamentUser, HasAvatar, HasLocale
public function getFilamentAvatarUrl(): ?string public function getFilamentAvatarUrl(): ?string
{ {
return Storage::url($this->avatar_url); return $this->avatar_url ? Storage::url($this->avatar_url) : null;
} }
public function deviceTokens(): HasMany public function deviceTokens(): HasMany

View File

@ -116,7 +116,7 @@ class AiMealPostGenerator
->timeout($this->imageTimeout()) ->timeout($this->imageTimeout())
->generate(); ->generate();
$path = $response->storePublicly($this->imageStoragePath(), 'public'); $path = $response->storePublicly($this->imageStoragePath(), );
if (! is_string($path)) { if (! is_string($path)) {
throw new RuntimeException("L'image du repas IA n'a pas pu etre stockee."); throw new RuntimeException("L'image du repas IA n'a pas pu etre stockee.");

View File

@ -18,6 +18,7 @@
"laravel/sanctum": "^4.0", "laravel/sanctum": "^4.0",
"laravel/scout": "^11.0", "laravel/scout": "^11.0",
"laravel/tinker": "^2.10.1", "laravel/tinker": "^2.10.1",
"league/flysystem-aws-s3-v3": "^3.0",
"meilisearch/meilisearch-php": "^1.16", "meilisearch/meilisearch-php": "^1.16",
"predis/predis": "^3.4", "predis/predis": "^3.4",
"resend/resend-laravel": "^1.4", "resend/resend-laravel": "^1.4",

209
composer.lock generated
View File

@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically" "This file is @generated automatically"
], ],
"content-hash": "27553433952beb112da135df2ad49a59", "content-hash": "47330ab81b2655bdcac06aaaeb955192",
"packages": [ "packages": [
{ {
"name": "anourvalar/eloquent-serialize", "name": "anourvalar/eloquent-serialize",
@ -128,16 +128,16 @@
}, },
{ {
"name": "aws/aws-sdk-php", "name": "aws/aws-sdk-php",
"version": "3.381.2", "version": "3.382.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/aws/aws-sdk-php.git", "url": "https://github.com/aws/aws-sdk-php.git",
"reference": "ffa8a93faafea878155853ae2caf61871363869d" "reference": "5b4c1958d7ff9e3284b755d257a1aa1926745f6a"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/ffa8a93faafea878155853ae2caf61871363869d", "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/5b4c1958d7ff9e3284b755d257a1aa1926745f6a",
"reference": "ffa8a93faafea878155853ae2caf61871363869d", "reference": "5b4c1958d7ff9e3284b755d257a1aa1926745f6a",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -219,9 +219,9 @@
"support": { "support": {
"forum": "https://github.com/aws/aws-sdk-php/discussions", "forum": "https://github.com/aws/aws-sdk-php/discussions",
"issues": "https://github.com/aws/aws-sdk-php/issues", "issues": "https://github.com/aws/aws-sdk-php/issues",
"source": "https://github.com/aws/aws-sdk-php/tree/3.381.2" "source": "https://github.com/aws/aws-sdk-php/tree/3.382.0"
}, },
"time": "2026-05-15T18:08:57+00:00" "time": "2026-05-22T18:09:49+00:00"
}, },
{ {
"name": "bezhansalleh/filament-exceptions", "name": "bezhansalleh/filament-exceptions",
@ -2006,16 +2006,16 @@
}, },
{ {
"name": "guzzlehttp/guzzle", "name": "guzzlehttp/guzzle",
"version": "7.10.0", "version": "7.10.4",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/guzzle/guzzle.git", "url": "https://github.com/guzzle/guzzle.git",
"reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4" "reference": "aec528da477062d3af11f51e6b33402be233b21f"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/guzzle/guzzle/zipball/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4", "url": "https://api.github.com/repos/guzzle/guzzle/zipball/aec528da477062d3af11f51e6b33402be233b21f",
"reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4", "reference": "aec528da477062d3af11f51e6b33402be233b21f",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -2033,8 +2033,9 @@
"bamarni/composer-bin-plugin": "^1.8.2", "bamarni/composer-bin-plugin": "^1.8.2",
"ext-curl": "*", "ext-curl": "*",
"guzzle/client-integration-tests": "3.0.2", "guzzle/client-integration-tests": "3.0.2",
"guzzlehttp/test-server": "^0.3.2",
"php-http/message-factory": "^1.1", "php-http/message-factory": "^1.1",
"phpunit/phpunit": "^8.5.39 || ^9.6.20", "phpunit/phpunit": "^8.5.52 || ^9.6.34",
"psr/log": "^1.1 || ^2.0 || ^3.0" "psr/log": "^1.1 || ^2.0 || ^3.0"
}, },
"suggest": { "suggest": {
@ -2112,7 +2113,7 @@
], ],
"support": { "support": {
"issues": "https://github.com/guzzle/guzzle/issues", "issues": "https://github.com/guzzle/guzzle/issues",
"source": "https://github.com/guzzle/guzzle/tree/7.10.0" "source": "https://github.com/guzzle/guzzle/tree/7.10.4"
}, },
"funding": [ "funding": [
{ {
@ -2128,20 +2129,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2025-08-23T22:36:01+00:00" "time": "2026-05-22T19:00:53+00:00"
}, },
{ {
"name": "guzzlehttp/promises", "name": "guzzlehttp/promises",
"version": "2.3.0", "version": "2.4.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/guzzle/promises.git", "url": "https://github.com/guzzle/promises.git",
"reference": "481557b130ef3790cf82b713667b43030dc9c957" "reference": "09e8a212562fb1fb6a512c4156ed71525969d6c2"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957", "url": "https://api.github.com/repos/guzzle/promises/zipball/09e8a212562fb1fb6a512c4156ed71525969d6c2",
"reference": "481557b130ef3790cf82b713667b43030dc9c957", "reference": "09e8a212562fb1fb6a512c4156ed71525969d6c2",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -2149,7 +2150,7 @@
}, },
"require-dev": { "require-dev": {
"bamarni/composer-bin-plugin": "^1.8.2", "bamarni/composer-bin-plugin": "^1.8.2",
"phpunit/phpunit": "^8.5.44 || ^9.6.25" "phpunit/phpunit": "^8.5.52 || ^9.6.34"
}, },
"type": "library", "type": "library",
"extra": { "extra": {
@ -2195,7 +2196,7 @@
], ],
"support": { "support": {
"issues": "https://github.com/guzzle/promises/issues", "issues": "https://github.com/guzzle/promises/issues",
"source": "https://github.com/guzzle/promises/tree/2.3.0" "source": "https://github.com/guzzle/promises/tree/2.4.1"
}, },
"funding": [ "funding": [
{ {
@ -2211,20 +2212,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2025-08-22T14:34:08+00:00" "time": "2026-05-20T22:57:30+00:00"
}, },
{ {
"name": "guzzlehttp/psr7", "name": "guzzlehttp/psr7",
"version": "2.8.0", "version": "2.10.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/guzzle/psr7.git", "url": "https://github.com/guzzle/psr7.git",
"reference": "21dc724a0583619cd1652f673303492272778051" "reference": "a1bbdc172f32a25fe999965b65b6e71fd87da9ed"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/guzzle/psr7/zipball/21dc724a0583619cd1652f673303492272778051", "url": "https://api.github.com/repos/guzzle/psr7/zipball/a1bbdc172f32a25fe999965b65b6e71fd87da9ed",
"reference": "21dc724a0583619cd1652f673303492272778051", "reference": "a1bbdc172f32a25fe999965b65b6e71fd87da9ed",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -2239,8 +2240,9 @@
}, },
"require-dev": { "require-dev": {
"bamarni/composer-bin-plugin": "^1.8.2", "bamarni/composer-bin-plugin": "^1.8.2",
"http-interop/http-factory-tests": "0.9.0", "http-interop/http-factory-tests": "1.1.0",
"phpunit/phpunit": "^8.5.44 || ^9.6.25" "jshttp/mime-db": "1.54.0.1",
"phpunit/phpunit": "^8.5.52 || ^9.6.34"
}, },
"suggest": { "suggest": {
"laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
@ -2311,7 +2313,7 @@
], ],
"support": { "support": {
"issues": "https://github.com/guzzle/psr7/issues", "issues": "https://github.com/guzzle/psr7/issues",
"source": "https://github.com/guzzle/psr7/tree/2.8.0" "source": "https://github.com/guzzle/psr7/tree/2.10.2"
}, },
"funding": [ "funding": [
{ {
@ -2327,7 +2329,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2025-08-23T21:21:41+00:00" "time": "2026-05-25T22:58:15+00:00"
}, },
{ {
"name": "guzzlehttp/uri-template", "name": "guzzlehttp/uri-template",
@ -3576,16 +3578,16 @@
}, },
{ {
"name": "league/flysystem", "name": "league/flysystem",
"version": "3.32.0", "version": "3.34.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/thephpleague/flysystem.git", "url": "https://github.com/thephpleague/flysystem.git",
"reference": "254b1595b16b22dbddaaef9ed6ca9fdac4956725" "reference": "2daaac3b0d4c83ea7ed5d8586e786f5d00f3540e"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/thephpleague/flysystem/zipball/254b1595b16b22dbddaaef9ed6ca9fdac4956725", "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/2daaac3b0d4c83ea7ed5d8586e786f5d00f3540e",
"reference": "254b1595b16b22dbddaaef9ed6ca9fdac4956725", "reference": "2daaac3b0d4c83ea7ed5d8586e786f5d00f3540e",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -3653,9 +3655,64 @@
], ],
"support": { "support": {
"issues": "https://github.com/thephpleague/flysystem/issues", "issues": "https://github.com/thephpleague/flysystem/issues",
"source": "https://github.com/thephpleague/flysystem/tree/3.32.0" "source": "https://github.com/thephpleague/flysystem/tree/3.34.0"
}, },
"time": "2026-02-25T17:01:41+00:00" "time": "2026-05-14T10:28:08+00:00"
},
{
"name": "league/flysystem-aws-s3-v3",
"version": "3.34.0",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/flysystem-aws-s3-v3.git",
"reference": "0c62fdac907791d8649ad3c61cb7a77628344fb8"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/0c62fdac907791d8649ad3c61cb7a77628344fb8",
"reference": "0c62fdac907791d8649ad3c61cb7a77628344fb8",
"shasum": ""
},
"require": {
"aws/aws-sdk-php": "^3.371.5",
"league/flysystem": "^3.10.0",
"league/mime-type-detection": "^1.0.0",
"php": "^8.0.2"
},
"conflict": {
"guzzlehttp/guzzle": "<7.0",
"guzzlehttp/ringphp": "<1.1.1"
},
"type": "library",
"autoload": {
"psr-4": {
"League\\Flysystem\\AwsS3V3\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Frank de Jonge",
"email": "info@frankdejonge.nl"
}
],
"description": "AWS S3 filesystem adapter for Flysystem.",
"keywords": [
"Flysystem",
"aws",
"file",
"files",
"filesystem",
"s3",
"storage"
],
"support": {
"source": "https://github.com/thephpleague/flysystem-aws-s3-v3/tree/3.34.0"
},
"time": "2026-05-04T08:24:00+00:00"
}, },
{ {
"name": "league/flysystem-local", "name": "league/flysystem-local",
@ -7661,16 +7718,16 @@
}, },
{ {
"name": "symfony/deprecation-contracts", "name": "symfony/deprecation-contracts",
"version": "v3.6.0", "version": "v3.7.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/deprecation-contracts.git", "url": "https://github.com/symfony/deprecation-contracts.git",
"reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62" "reference": "50f59d1f3ca46d41ac911f97a78626b6756af35b"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62", "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/50f59d1f3ca46d41ac911f97a78626b6756af35b",
"reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62", "reference": "50f59d1f3ca46d41ac911f97a78626b6756af35b",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -7683,7 +7740,7 @@
"name": "symfony/contracts" "name": "symfony/contracts"
}, },
"branch-alias": { "branch-alias": {
"dev-main": "3.6-dev" "dev-main": "3.7-dev"
} }
}, },
"autoload": { "autoload": {
@ -7708,7 +7765,7 @@
"description": "A generic function and convention to trigger deprecation notices", "description": "A generic function and convention to trigger deprecation notices",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0" "source": "https://github.com/symfony/deprecation-contracts/tree/v3.7.0"
}, },
"funding": [ "funding": [
{ {
@ -7719,12 +7776,16 @@
"url": "https://github.com/fabpot", "url": "https://github.com/fabpot",
"type": "github" "type": "github"
}, },
{
"url": "https://github.com/nicolas-grekas",
"type": "github"
},
{ {
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2024-09-25T14:21:43+00:00" "time": "2026-04-13T15:52:40+00:00"
}, },
{ {
"name": "symfony/error-handler", "name": "symfony/error-handler",
@ -8557,16 +8618,16 @@
}, },
{ {
"name": "symfony/polyfill-ctype", "name": "symfony/polyfill-ctype",
"version": "v1.33.0", "version": "v1.37.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/polyfill-ctype.git", "url": "https://github.com/symfony/polyfill-ctype.git",
"reference": "a3cc8b044a6ea513310cbd48ef7333b384945638" "reference": "141046a8f9477948ff284fa65be2095baafb94f2"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638", "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/141046a8f9477948ff284fa65be2095baafb94f2",
"reference": "a3cc8b044a6ea513310cbd48ef7333b384945638", "reference": "141046a8f9477948ff284fa65be2095baafb94f2",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -8616,7 +8677,7 @@
"portable" "portable"
], ],
"support": { "support": {
"source": "https://github.com/symfony/polyfill-ctype/tree/v1.33.0" "source": "https://github.com/symfony/polyfill-ctype/tree/v1.37.0"
}, },
"funding": [ "funding": [
{ {
@ -8636,7 +8697,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2024-09-09T11:45:10+00:00" "time": "2026-04-10T16:19:22+00:00"
}, },
{ {
"name": "symfony/polyfill-intl-grapheme", "name": "symfony/polyfill-intl-grapheme",
@ -8722,7 +8783,7 @@
}, },
{ {
"name": "symfony/polyfill-intl-idn", "name": "symfony/polyfill-intl-idn",
"version": "v1.33.0", "version": "v1.37.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/polyfill-intl-idn.git", "url": "https://github.com/symfony/polyfill-intl-idn.git",
@ -8785,7 +8846,7 @@
"shim" "shim"
], ],
"support": { "support": {
"source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.33.0" "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.37.0"
}, },
"funding": [ "funding": [
{ {
@ -8809,16 +8870,16 @@
}, },
{ {
"name": "symfony/polyfill-intl-normalizer", "name": "symfony/polyfill-intl-normalizer",
"version": "v1.33.0", "version": "v1.38.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/polyfill-intl-normalizer.git", "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
"reference": "3833d7255cc303546435cb650316bff708a1c75c" "reference": "2d446c214bdbe5b71bde5011b060a05fece3ae6b"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c", "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/2d446c214bdbe5b71bde5011b060a05fece3ae6b",
"reference": "3833d7255cc303546435cb650316bff708a1c75c", "reference": "2d446c214bdbe5b71bde5011b060a05fece3ae6b",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -8870,7 +8931,7 @@
"shim" "shim"
], ],
"support": { "support": {
"source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.33.0" "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.38.0"
}, },
"funding": [ "funding": [
{ {
@ -8890,20 +8951,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2024-09-09T11:45:10+00:00" "time": "2026-05-25T13:48:31+00:00"
}, },
{ {
"name": "symfony/polyfill-mbstring", "name": "symfony/polyfill-mbstring",
"version": "v1.33.0", "version": "v1.38.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/polyfill-mbstring.git", "url": "https://github.com/symfony/polyfill-mbstring.git",
"reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493" "reference": "6b177d03d2eb04a6c9d01bab9818fb93a30ce7fd"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493", "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6b177d03d2eb04a6c9d01bab9818fb93a30ce7fd",
"reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493", "reference": "6b177d03d2eb04a6c9d01bab9818fb93a30ce7fd",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -8955,7 +9016,7 @@
"shim" "shim"
], ],
"support": { "support": {
"source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0" "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.38.0"
}, },
"funding": [ "funding": [
{ {
@ -8975,20 +9036,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2024-12-23T08:48:59+00:00" "time": "2026-05-25T14:08:27+00:00"
}, },
{ {
"name": "symfony/polyfill-php80", "name": "symfony/polyfill-php80",
"version": "v1.33.0", "version": "v1.37.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/polyfill-php80.git", "url": "https://github.com/symfony/polyfill-php80.git",
"reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608" "reference": "dfb55726c3a76ea3b6459fcfda1ec2d80a682411"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608", "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dfb55726c3a76ea3b6459fcfda1ec2d80a682411",
"reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608", "reference": "dfb55726c3a76ea3b6459fcfda1ec2d80a682411",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -9039,7 +9100,7 @@
"shim" "shim"
], ],
"support": { "support": {
"source": "https://github.com/symfony/polyfill-php80/tree/v1.33.0" "source": "https://github.com/symfony/polyfill-php80/tree/v1.37.0"
}, },
"funding": [ "funding": [
{ {
@ -9059,7 +9120,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2025-01-02T08:10:11+00:00" "time": "2026-04-10T16:19:22+00:00"
}, },
{ {
"name": "symfony/polyfill-php81", "name": "symfony/polyfill-php81",
@ -9466,16 +9527,16 @@
}, },
{ {
"name": "symfony/process", "name": "symfony/process",
"version": "v7.4.5", "version": "v7.4.11",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/process.git", "url": "https://github.com/symfony/process.git",
"reference": "608476f4604102976d687c483ac63a79ba18cc97" "reference": "d9593c9efa40499eb078b81144de42cbc28a31f0"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/process/zipball/608476f4604102976d687c483ac63a79ba18cc97", "url": "https://api.github.com/repos/symfony/process/zipball/d9593c9efa40499eb078b81144de42cbc28a31f0",
"reference": "608476f4604102976d687c483ac63a79ba18cc97", "reference": "d9593c9efa40499eb078b81144de42cbc28a31f0",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -9507,7 +9568,7 @@
"description": "Executes commands in sub-processes", "description": "Executes commands in sub-processes",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/process/tree/v7.4.5" "source": "https://github.com/symfony/process/tree/v7.4.11"
}, },
"funding": [ "funding": [
{ {
@ -9527,7 +9588,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2026-01-26T15:07:59+00:00" "time": "2026-05-11T16:55:21+00:00"
}, },
{ {
"name": "symfony/routing", "name": "symfony/routing",

View File

@ -13,7 +13,7 @@ return [
| |
*/ */
'default' => env('FILESYSTEM_DISK', 'local'), 'default' => env('FILESYSTEM_DISK', 'aws'),
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------