File tree Expand file tree Collapse file tree
docs/update_and_migration/from_4.6 Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -452,6 +452,31 @@ Run the provided SQL upgrade script to add the missing indexes to your database:
452452
453453No additional steps needed.
454454
455+ # # v4.6.27
456+
457+ # ## Removed Composer dependencies
458+
459+ The following unused Composer dependencies have been removed from `ibexa/core` :
460+
461+ - ` guzzlehttp/guzzle`
462+ - ` php-http/guzzle6-adapter`
463+
464+ If your project uses Guzzle directly, you should add these dependencies to your project's `composer.json` file.
465+
466+ To check if you need to add these dependencies, run :
467+
468+ ` ` ` bash
469+ composer why guzzlehttp/guzzle
470+ composer why php-http/guzzle6-adapter
471+ ` ` `
472+
473+ If only the `ibexa/core` entry appears in the output, check your codebase to determine if you use Guzzle directly.
474+ If you do, add the required dependencies to your project :
475+
476+ ` ` ` bash
477+ composer require guzzlehttp/guzzle:^6.5 php-http/guzzle6-adapter:^2.0
478+ ` ` `
479+
455480<!-- End of update instructions -->
456481
457482[[% include 'snippets/update/notify_support.md' %]]
You can’t perform that action at this time.
0 commit comments