File tree Expand file tree Collapse file tree 4 files changed +4
-2
lines changed
src/Bridge/Symfony/Bundle/Resources/config
Bridge/Symfony/Bundle/DependencyInjection Expand file tree Collapse file tree 4 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 50
50
"symfony/config" : " ^3.3 || ^4.0" ,
51
51
"symfony/console" : " ^3.3 || ^4.0" ,
52
52
"symfony/debug" : " ^2.8 || ^3.0 || ^4.0" ,
53
- "symfony/dependency-injection" : " ^3.3@dev" ,
53
+ "symfony/dependency-injection" : " ^3.3@dev || ^4.0@dev " ,
54
54
"symfony/doctrine-bridge" : " ^2.8.12 || ^3.0 || ^4.0" ,
55
55
"symfony/event-dispatcher" : " ^3.3 || ^4.0" ,
56
56
"symfony/expression-language" : " ^2.8 || ^3.0 || ^4.0" ,
Original file line number Diff line number Diff line change 6
6
7
7
<services >
8
8
<service id =" api_platform.data_persister" class =" ApiPlatform\Core\DataPersister\ChainDataPersister" public =" false" />
9
+ <service id =" ApiPlatform\Core\DataPersister\DataPersisterInterface" alias =" api_platform.data_persister" />
9
10
</services >
10
11
11
12
</container >
Original file line number Diff line number Diff line change @@ -487,6 +487,7 @@ private function getPartialContainerBuilderProphecy()
487
487
CollectionDataProviderInterface::class => 'api_platform.collection_data_provider ' ,
488
488
ItemDataProviderInterface::class => 'api_platform.item_data_provider ' ,
489
489
SubresourceDataProviderInterface::class => 'api_platform.subresource_data_provider ' ,
490
+ DataPersisterInterface::class => 'api_platform.data_persister ' ,
490
491
];
491
492
492
493
foreach ($ aliases as $ alias => $ service ) {
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ nelmio_api_doc:
88
88
json : ' application/json'
89
89
90
90
parameters :
91
- # container.autowiring.strict_mode: true
91
+ container.autowiring.strict_mode : true
92
92
container.dumper.inline_class_loader : true
93
93
94
94
services :
You can’t perform that action at this time.
0 commit comments