-
-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 6.4: (29 commits) fix tests add missing method fix merge fix test fix merge fix test change test to use a real ObjectManager [Mailer] Document the usage of custom headers in Infobip bridge [SecurityBundle] Add `provider` XML attribute to the authenticators it’s missing from [DoctrineBridge] Test reset with a true manager Sync php-cs-fixer config file with 7.2 [HttpClient] Fix parsing SSE [Notifier] Fix thread key in GoogleChat bridge [HttpKernel][Security] Fix accessing session for stateless request [Serializer] Fix `ObjectNormalizer` with property path test handling of special "value" constraint option [PhpUnitBridge] Add missing import [FrameworkBundle] Fix setting default context for certain normalizers [57251] Missing translations for Romanian (ro) [ErrorHandler] Fix rendered exception code highlighting on PHP 8.3 ...
- Loading branch information
Showing
7 changed files
with
117 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
imports: | ||
- { resource: ../config/default.yml } | ||
|
||
framework: | ||
serializer: | ||
enabled: true | ||
circular_reference_handler: ~ # This must be null | ||
max_depth_handler: ~ # This must be null | ||
default_context: | ||
fake_context_option: foo | ||
|
||
services: | ||
serializer.normalizer.constraint_violation_list.alias: | ||
alias: serializer.normalizer.constraint_violation_list | ||
public: true | ||
|
||
serializer.normalizer.dateinterval.alias: | ||
alias: serializer.normalizer.dateinterval | ||
public: true | ||
|
||
serializer.normalizer.datetime.alias: | ||
alias: serializer.normalizer.datetime | ||
public: true | ||
|
||
serializer.normalizer.json_serializable.alias: | ||
alias: serializer.normalizer.json_serializable | ||
public: true | ||
|
||
serializer.normalizer.object.alias: | ||
alias: serializer.normalizer.object | ||
public: true | ||
|
||
serializer.normalizer.problem.alias: | ||
alias: serializer.normalizer.problem | ||
public: true | ||
|
||
serializer.normalizer.property.alias: | ||
alias: serializer.normalizer.property | ||
public: true | ||
|
||
serializer.normalizer.uid.alias: | ||
alias: serializer.normalizer.uid | ||
public: true | ||
|
||
serializer.encoder.csv.alias: | ||
alias: serializer.encoder.csv | ||
public: true | ||
|
||
serializer.encoder.json.alias: | ||
alias: serializer.encoder.json | ||
public: true | ||
|
||
serializer.encoder.xml.alias: | ||
alias: serializer.encoder.xml | ||
public: true | ||
|
||
serializer.encoder.yaml.alias: | ||
alias: serializer.encoder.yaml | ||
public: true |