bug #31852 [Form] add missing symfony/service-contracts dependency (nicolas-grekas)

This PR was merged into the 4.3 branch.

Discussion
----------

[Form] add missing symfony/service-contracts dependency

| Q             | A
| ------------- | ---
| Branch?       | 4.3
| Bug fix?      | no
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | #31844
| License       | MIT
| Doc PR        | -

`ResetInterface` is needed by `CachingFactoryDecorator`, which is used in `CoreExtension`, so this is a mandatory dep.

Commits
-------

8639bcca3d [Form] add missing symfony/service-contracts dependency
This commit is contained in:
Fabien Potencier 2019-06-04 15:54:26 +02:00
commit 04e2026b98
1 changed files with 2 additions and 1 deletions

View File

@ -22,7 +22,8 @@
"symfony/options-resolver": "~4.3",
"symfony/polyfill-ctype": "~1.8",
"symfony/polyfill-mbstring": "~1.0",
"symfony/property-access": "~3.4|~4.0"
"symfony/property-access": "~3.4|~4.0",
"symfony/service-contracts": "~1.1"
},
"require-dev": {
"doctrine/collections": "~1.0",