Skip to content

Commit

Permalink
Set normalizeKeys to false in webpack hashes
Browse files Browse the repository at this point in the history
  • Loading branch information
fracz committed Jul 21, 2017
1 parent ddb4d58 commit 3db5628
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/SuplaBundle/DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

namespace SuplaBundle\DependencyInjection;

use Symfony\Component\Config\Definition\Builder\TreeBuilder;
Expand All @@ -12,7 +13,7 @@ public function getConfigTreeBuilder() {
$rootNode
->children()
->scalarNode('version')->defaultValue('?.?.?')->end()
->arrayNode('webpack_hashes')->defaultValue([])->useAttributeAsKey('name')->prototype('scalar')->end()
->arrayNode('webpack_hashes')->normalizeKeys(false)->defaultValue([])->useAttributeAsKey('name')->prototype('scalar')->end()
->end();
// @formatter:on
return $treeBuilder;
Expand Down

0 comments on commit 3db5628

Please sign in to comment.