Description
Symfony version(s) affected
6.x
Description
I would like to point out that not having this feature actually is a regression from 5.4 where that is possible.
From a description I wrote up for a question regarding this in the symfony slack channel:
Hi, I got two Symfony apps, one running 5.4 and one running 6.2.In the 5.4 app, I got a http client configured like this:
framework:
http_client:
scoped_clients:
intercomhttpUsClient:
base_uri: 'https://api.intercom.io/'
And in packages/test/http_clients.yaml
services:
intercomhttpUsClient:
class: Symfony\Component\HttpClient\MockHttpClient
This works very nicely. I can configure a response factory for this client without regarding the other clients:
$intercomUsClient = self::getContainer()->get('intercomhttpUsClient');
But, if I ty this in the 6.2 app: the client I get back is not a MockHttpClient BUT a UriTemplateHttpClient which I cannot do anything with.So, what should I do to get the 5.4 behaviour?
How to reproduce
Within a SF 6.3 project, try to override a scoped http client with a mockhttpclient:
Possible Solution
No response
Additional Context
Relevant package versions:
symfony/asset v6.3.0 Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files
symfony/asset-mapper v6.3.2 Maps directories of assets & makes them available in a public directory with versioned filenames.
symfony/browser-kit v5.4.21 Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically
symfony/cache v6.3.2 Provides extended PSR-6, PSR-16 (and tags) implementations
symfony/cache-contracts v3.3.0 Generic abstractions related to caching
symfony/clock v6.3.1 Decouples applications from the system clock
symfony/config v6.3.2 Helps you find, load, combine, autofill and validate configuration values of any kind
symfony/console v6.3.2 Eases the creation of beautiful and testable command line interfaces
symfony/css-selector v6.3.2 Converts CSS selectors to XPath expressions
symfony/dependency-injection v6.3.2 Allows you to standardize and centralize the way objects are constructed in your application
symfony/deprecation-contracts v3.3.0 A generic function and convention to trigger deprecation notices
symfony/doctrine-bridge v6.3.2 Provides integration for Doctrine with various Symfony components
symfony/dom-crawler v6.3.1 Eases DOM navigation for HTML and XML documents
symfony/dotenv v6.3.0 Registers environment variables from a .env file
symfony/error-handler v6.3.2 Provides tools to manage errors and ease debugging PHP code
symfony/event-dispatcher v6.3.2 Provides tools that allow your application components to communicate with each other by dispatching events and listening to them
symfony/event-dispatcher-contracts v3.3.0 Generic abstractions related to dispatching event
symfony/expression-language v6.3.0 Provides an engine that can compile and evaluate expressions
symfony/filesystem v6.3.1 Provides basic utilities for the filesystem
symfony/finder v6.3.3 Finds files and directories via an intuitive fluent interface
symfony/flex v2.3.2 Composer plugin for Symfony
symfony/form v6.3.2 Allows to easily create, process and reuse HTML forms
symfony/framework-bundle v6.3.2 Provides a tight integration between Symfony components and the Symfony full-stack framework
symfony/http-client v6.3.2 Provides powerful methods to fetch HTTP resources synchronously or asynchronously
symfony/http-client-contracts v3.3.0 Generic abstractions related to HTTP clients
symfony/http-foundation v6.3.2 Defines an object-oriented layer for the HTTP specification
symfony/http-kernel v6.3.3 Provides a structured process for converting a Request into a Response
symfony/intl v6.3.2 Provides access to the localization data of the ICU library
symfony/lock v6.3.2 Creates and manages locks, a mechanism to provide exclusive access to a shared resource
symfony/maker-bundle v1.50.0 Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.
symfony/mime v6.3.3 Allows manipulating MIME messages
symfony/monolog-bridge v6.3.1 Provides integration for Monolog with various Symfony components
symfony/monolog-bundle v3.8.0 Symfony MonologBundle
symfony/options-resolver v6.3.0 Provides an improved replacement for the array_replace PHP function
symfony/password-hasher v6.3.0 Provides password hashing utilities
symfony/phpunit-bridge v6.3.2 Provides utilities for PHPUnit, especially user deprecation notices management
symfony/polyfill-ctype v1.27.0 Symfony polyfill for ctype functions
symfony/polyfill-intl-grapheme v1.27.0 Symfony polyfill for intl's grapheme_* functions
symfony/polyfill-intl-icu v1.27.0 Symfony polyfill for intl's ICU-related data and classes
symfony/polyfill-intl-idn v1.27.0 Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions
symfony/polyfill-intl-normalizer v1.27.0 Symfony polyfill for intl's Normalizer class and related functions
symfony/polyfill-mbstring v1.27.0 Symfony polyfill for the Mbstring extension
symfony/polyfill-php72 v1.27.0 Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions
symfony/polyfill-php80 v1.27.0 Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions
symfony/polyfill-php83 v1.27.0 Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions
symfony/polyfill-uuid v1.27.0 Symfony polyfill for uuid functions
symfony/process v6.3.2 Executes commands in sub-processes
symfony/property-access v6.3.2 Provides functions to read and write from/to an object or array using a simple string notation
symfony/property-info v6.3.0 Extracts information about PHP class' properties using metadata of popular sources
symfony/psr-http-message-bridge v2.3.1 PSR HTTP message bridge
symfony/routing v6.3.3 Maps an HTTP request to a set of configuration variables
symfony/runtime v6.3.2 Enables decoupling PHP applications from global state
symfony/security-bundle v6.3.3 Provides a tight integration of the Security component into the Symfony full-stack framework
symfony/security-core v6.3.3 Symfony Security Component - Core Library
symfony/security-csrf v6.3.2 Symfony Security Component - CSRF Library
symfony/security-http v6.3.2 Symfony Security Component - HTTP Integration
symfony/serializer v6.3.3 Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.
symfony/service-contracts v3.3.0 Generic abstractions related to writing services
symfony/stimulus-bundle v2.10.0 Integration with your Symfony app & Stimulus!
symfony/stopwatch v5.4.21 Provides a way to profile code
symfony/string v6.3.2 Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way
symfony/translation v6.3.3 Provides tools to internationalize your application
symfony/translation-contracts v3.3.0 Generic abstractions related to translation
symfony/twig-bridge v6.3.2 Provides integration for Twig with various Symfony components
symfony/twig-bundle v6.3.0 Provides a tight integration of Twig into the Symfony full-stack framework
symfony/uid v6.3.0 Provides an object-oriented API to generate and represent UIDs
symfony/ux-autocomplete v2.10.0 JavaScript Autocomplete functionality for Symfony
symfony/ux-live-component v2.10.0 Live components for Symfony
symfony/ux-twig-component v2.10.0 Twig components for Symfony
symfony/validator v6.3.2 Provides tools to validate values
symfony/var-dumper v6.3.3 Provides mechanisms for walking through any arbitrary PHP variable
symfony/var-exporter v6.3.2 Allows exporting any serializable PHP data structure to plain PHP code
symfony/web-profiler-bundle v5.4.26 Provides a development tool that gives detailed information about the execution of any request
symfony/yaml v6.3.3 Loads and dumps YAML files
No response