├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json └── src ├── Configuration.php ├── ConfigurationAwareInterface.php ├── ConfigurationBuilderInterface.php ├── ConfigurationInterface.php ├── ConfigurationProviderInterface.php ├── Exception ├── ConfigurationExceptionInterface.php ├── InvalidConfigurationException.php ├── UnknownOptionException.php └── ValidationException.php ├── MutableConfigurationInterface.php ├── ReadOnlyConfiguration.php └── SchemaBuilderInterface.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/config/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/config/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/config/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/config/HEAD/composer.json -------------------------------------------------------------------------------- /src/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/config/HEAD/src/Configuration.php -------------------------------------------------------------------------------- /src/ConfigurationAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/config/HEAD/src/ConfigurationAwareInterface.php -------------------------------------------------------------------------------- /src/ConfigurationBuilderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/config/HEAD/src/ConfigurationBuilderInterface.php -------------------------------------------------------------------------------- /src/ConfigurationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/config/HEAD/src/ConfigurationInterface.php -------------------------------------------------------------------------------- /src/ConfigurationProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/config/HEAD/src/ConfigurationProviderInterface.php -------------------------------------------------------------------------------- /src/Exception/ConfigurationExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/config/HEAD/src/Exception/ConfigurationExceptionInterface.php -------------------------------------------------------------------------------- /src/Exception/InvalidConfigurationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/config/HEAD/src/Exception/InvalidConfigurationException.php -------------------------------------------------------------------------------- /src/Exception/UnknownOptionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/config/HEAD/src/Exception/UnknownOptionException.php -------------------------------------------------------------------------------- /src/Exception/ValidationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/config/HEAD/src/Exception/ValidationException.php -------------------------------------------------------------------------------- /src/MutableConfigurationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/config/HEAD/src/MutableConfigurationInterface.php -------------------------------------------------------------------------------- /src/ReadOnlyConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/config/HEAD/src/ReadOnlyConfiguration.php -------------------------------------------------------------------------------- /src/SchemaBuilderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thephpleague/config/HEAD/src/SchemaBuilderInterface.php --------------------------------------------------------------------------------