├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json └── src ├── Collection.php ├── ComponentInstaller.php ├── ConfigDiscovery.php ├── ConfigDiscovery ├── AbstractDiscovery.php ├── ApplicationConfig.php ├── ConfigAggregator.php ├── DevelopmentConfig.php ├── DevelopmentWorkConfig.php ├── DiscoveryChain.php ├── DiscoveryChainInterface.php ├── DiscoveryInterface.php ├── ExpressiveConfig.php └── ModulesConfig.php ├── ConfigOption.php ├── Exception └── RuntimeException.php └── Injector ├── AbstractInjector.php ├── ApplicationConfigInjector.php ├── ConditionalDiscoveryTrait.php ├── ConfigAggregatorInjector.php ├── ConfigInjectorChain.php ├── DevelopmentConfigInjector.php ├── DevelopmentWorkConfigInjector.php ├── ExpressiveConfigInjector.php ├── InjectorInterface.php ├── ModulesConfigInjector.php └── NoopInjector.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-component-installer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-component-installer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-component-installer/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-component-installer/HEAD/composer.json -------------------------------------------------------------------------------- /src/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-component-installer/HEAD/src/Collection.php -------------------------------------------------------------------------------- /src/ComponentInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-component-installer/HEAD/src/ComponentInstaller.php -------------------------------------------------------------------------------- /src/ConfigDiscovery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-component-installer/HEAD/src/ConfigDiscovery.php -------------------------------------------------------------------------------- /src/ConfigDiscovery/AbstractDiscovery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-component-installer/HEAD/src/ConfigDiscovery/AbstractDiscovery.php -------------------------------------------------------------------------------- /src/ConfigDiscovery/ApplicationConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-component-installer/HEAD/src/ConfigDiscovery/ApplicationConfig.php -------------------------------------------------------------------------------- /src/ConfigDiscovery/ConfigAggregator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-component-installer/HEAD/src/ConfigDiscovery/ConfigAggregator.php -------------------------------------------------------------------------------- /src/ConfigDiscovery/DevelopmentConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-component-installer/HEAD/src/ConfigDiscovery/DevelopmentConfig.php -------------------------------------------------------------------------------- /src/ConfigDiscovery/DevelopmentWorkConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-component-installer/HEAD/src/ConfigDiscovery/DevelopmentWorkConfig.php -------------------------------------------------------------------------------- /src/ConfigDiscovery/DiscoveryChain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-component-installer/HEAD/src/ConfigDiscovery/DiscoveryChain.php -------------------------------------------------------------------------------- /src/ConfigDiscovery/DiscoveryChainInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-component-installer/HEAD/src/ConfigDiscovery/DiscoveryChainInterface.php -------------------------------------------------------------------------------- /src/ConfigDiscovery/DiscoveryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-component-installer/HEAD/src/ConfigDiscovery/DiscoveryInterface.php -------------------------------------------------------------------------------- /src/ConfigDiscovery/ExpressiveConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-component-installer/HEAD/src/ConfigDiscovery/ExpressiveConfig.php -------------------------------------------------------------------------------- /src/ConfigDiscovery/ModulesConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-component-installer/HEAD/src/ConfigDiscovery/ModulesConfig.php -------------------------------------------------------------------------------- /src/ConfigOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-component-installer/HEAD/src/ConfigOption.php -------------------------------------------------------------------------------- /src/Exception/RuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-component-installer/HEAD/src/Exception/RuntimeException.php -------------------------------------------------------------------------------- /src/Injector/AbstractInjector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-component-installer/HEAD/src/Injector/AbstractInjector.php -------------------------------------------------------------------------------- /src/Injector/ApplicationConfigInjector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-component-installer/HEAD/src/Injector/ApplicationConfigInjector.php -------------------------------------------------------------------------------- /src/Injector/ConditionalDiscoveryTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-component-installer/HEAD/src/Injector/ConditionalDiscoveryTrait.php -------------------------------------------------------------------------------- /src/Injector/ConfigAggregatorInjector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-component-installer/HEAD/src/Injector/ConfigAggregatorInjector.php -------------------------------------------------------------------------------- /src/Injector/ConfigInjectorChain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-component-installer/HEAD/src/Injector/ConfigInjectorChain.php -------------------------------------------------------------------------------- /src/Injector/DevelopmentConfigInjector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-component-installer/HEAD/src/Injector/DevelopmentConfigInjector.php -------------------------------------------------------------------------------- /src/Injector/DevelopmentWorkConfigInjector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-component-installer/HEAD/src/Injector/DevelopmentWorkConfigInjector.php -------------------------------------------------------------------------------- /src/Injector/ExpressiveConfigInjector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-component-installer/HEAD/src/Injector/ExpressiveConfigInjector.php -------------------------------------------------------------------------------- /src/Injector/InjectorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-component-installer/HEAD/src/Injector/InjectorInterface.php -------------------------------------------------------------------------------- /src/Injector/ModulesConfigInjector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-component-installer/HEAD/src/Injector/ModulesConfigInjector.php -------------------------------------------------------------------------------- /src/Injector/NoopInjector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-component-installer/HEAD/src/Injector/NoopInjector.php --------------------------------------------------------------------------------