Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/zendframework/zendframework#6628-add-missing-jav…
Browse files Browse the repository at this point in the history
…a-properties-config-reader-plugin'

Close zendframework/zendframework#6628
  • Loading branch information
Ocramius committed Dec 8, 2014
2 parents abd0925 + ca4e33d commit 306b161
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
9 changes: 5 additions & 4 deletions src/Factory.php
Expand Up @@ -34,10 +34,11 @@ class Factory
* @var array
*/
protected static $extensions = array(
'ini' => 'ini',
'json' => 'json',
'xml' => 'xml',
'yaml' => 'yaml',
'ini' => 'ini',
'json' => 'json',
'xml' => 'xml',
'yaml' => 'yaml',
'properties' => 'javaproperties',
);

/**
Expand Down
9 changes: 5 additions & 4 deletions src/ReaderPluginManager.php
Expand Up @@ -19,10 +19,11 @@ class ReaderPluginManager extends AbstractPluginManager
* @var array
*/
protected $invokableClasses = array(
'ini' => 'Zend\Config\Reader\Ini',
'json' => 'Zend\Config\Reader\Json',
'xml' => 'Zend\Config\Reader\Xml',
'yaml' => 'Zend\Config\Reader\Yaml',
'ini' => 'Zend\Config\Reader\Ini',
'json' => 'Zend\Config\Reader\Json',
'xml' => 'Zend\Config\Reader\Xml',
'yaml' => 'Zend\Config\Reader\Yaml',
'javaproperties' => 'Zend\Config\Reader\JavaProperties',
);

/**
Expand Down

0 comments on commit 306b161

Please sign in to comment.