hassankhan / config

Config is a lightweight configuration file loader that supports PHP, INI, XML, JSON, and YAML files
MIT License
971 stars 136 forks source link

Added .properties to the allowed INI parser extensions #125

Closed markdegrootnl closed 3 years ago

markdegrootnl commented 4 years ago

Java properties file are essentially ini files. The ini writer already supports properties as an extension so I've added this extension to the reader as well.

DavidePastore commented 4 years ago

Hi @markdegrootnl . Thanks for your PR! I'm not sure that properties and ini files are the same and that we can use the same parser. Here you can find the differences between the two. I think that we could create another parser for properties file.