├── LICENSE ├── README.md ├── SECURITY.md ├── composer.json └── src ├── Factory.php ├── Format ├── Ini.php ├── Json.php ├── Php.php ├── Xml.php └── Yaml.php ├── FormatInterface.php └── Registry.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-framework/registry/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-framework/registry/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-framework/registry/HEAD/SECURITY.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-framework/registry/HEAD/composer.json -------------------------------------------------------------------------------- /src/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-framework/registry/HEAD/src/Factory.php -------------------------------------------------------------------------------- /src/Format/Ini.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-framework/registry/HEAD/src/Format/Ini.php -------------------------------------------------------------------------------- /src/Format/Json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-framework/registry/HEAD/src/Format/Json.php -------------------------------------------------------------------------------- /src/Format/Php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-framework/registry/HEAD/src/Format/Php.php -------------------------------------------------------------------------------- /src/Format/Xml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-framework/registry/HEAD/src/Format/Xml.php -------------------------------------------------------------------------------- /src/Format/Yaml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-framework/registry/HEAD/src/Format/Yaml.php -------------------------------------------------------------------------------- /src/FormatInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-framework/registry/HEAD/src/FormatInterface.php -------------------------------------------------------------------------------- /src/Registry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-framework/registry/HEAD/src/Registry.php --------------------------------------------------------------------------------