Results 29 issues of Antoine Lamirault

| Q | A | ------------- | --- | Branch? | 6.2 | Bug fix? | no | New feature? | yes | Deprecations? | yes | Tickets | Fix...

Serializer
Feature
Status: Reviewed
Deprecation

| Q | A | ------------- | --- | Branch? | 6.2 | Bug fix? | no | New feature? | no | Deprecations? | yes | Tickets | Fix...

Status: Needs Review
Deprecation
Messenger

| Q | A | ------------- | --- | Branch? | 6.2 | Bug fix? | no | New feature? | yes | Deprecations? | yes | Tickets | Fix...

Security
Feature
Status: Needs Review
Deprecation

Hello, I added phpstan until level 7 (8 is max level). I hope is ok for you :slightly_smiling_face:

WIP Upgrade php-cs from `^2.16` to `3.4`. Upgrading of composer/composer and composer/semver are required.

Since https://github.com/sebastianbergmann/phpunit/pull/3687 `setMethods` is deprecated in favor of `onlyMethods` and `addMethods` It was possible to do this ```php $this->getMockBuilder('UnknownClass') ->allowMockingUnknownTypes() ->setMethods(['execute']) ->getMock(); ``` but with ```php $this->getMockBuilder('UnknownClass') ->allowMockingUnknownTypes() ->addMethods(['execute']) ->getMock();...

type/enhancement

Hello, `Throwable` interface was introduce in PHP 7.0 as base interface for any object that can be thrown. Currently phpunit has only `expectException*` methods but they can work with `Throwable`...

type/enhancement

This PR allow to use database indexes by replace LIKE by equal sign when condition_pattern is STRING_EQUALS

| Q | A | ------------- | --- | Branch? | 5.4 | Bug fix? | yes | New feature? | no | Deprecations? | no | Tickets | Fix...

Bug
Status: Needs Review
Dotenv