├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer-require-checker.json ├── composer.json ├── psalm83-84.xml ├── rector.php ├── roave-bc-check.yaml ├── src ├── Command │ ├── ConfigCommandProvider.php │ ├── CopyCommand.php │ ├── InfoCommand.php │ └── RebuildCommand.php ├── Composer │ ├── ConfigSettings.php │ ├── EventHandler.php │ ├── MergePlanProcess.php │ ├── Options.php │ ├── PackageFile.php │ ├── PackageFilesProcess.php │ ├── PackagesListBuilder.php │ └── ProcessHelper.php ├── Config.php ├── ConfigInterface.php ├── ConfigPaths.php ├── Context.php ├── DataModifiers.php ├── FilesExtractor.php ├── MergePlan.php ├── Merger.php └── Modifier │ ├── RecursiveMerge.php │ ├── RemoveFromVendor.php │ ├── RemoveGroupsFromVendor.php │ ├── RemoveKeysFromVendor.php │ └── ReverseMerge.php └── tools ├── .gitignore ├── composer-require-checker └── composer.json ├── infection └── composer.json └── psalm └── composer.json /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/config/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/config/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/config/HEAD/README.md -------------------------------------------------------------------------------- /composer-require-checker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/config/HEAD/composer-require-checker.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/config/HEAD/composer.json -------------------------------------------------------------------------------- /psalm83-84.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/config/HEAD/psalm83-84.xml -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/config/HEAD/rector.php -------------------------------------------------------------------------------- /roave-bc-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/config/HEAD/roave-bc-check.yaml -------------------------------------------------------------------------------- /src/Command/ConfigCommandProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/config/HEAD/src/Command/ConfigCommandProvider.php -------------------------------------------------------------------------------- /src/Command/CopyCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/config/HEAD/src/Command/CopyCommand.php -------------------------------------------------------------------------------- /src/Command/InfoCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/config/HEAD/src/Command/InfoCommand.php -------------------------------------------------------------------------------- /src/Command/RebuildCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/config/HEAD/src/Command/RebuildCommand.php -------------------------------------------------------------------------------- /src/Composer/ConfigSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/config/HEAD/src/Composer/ConfigSettings.php -------------------------------------------------------------------------------- /src/Composer/EventHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/config/HEAD/src/Composer/EventHandler.php -------------------------------------------------------------------------------- /src/Composer/MergePlanProcess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/config/HEAD/src/Composer/MergePlanProcess.php -------------------------------------------------------------------------------- /src/Composer/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/config/HEAD/src/Composer/Options.php -------------------------------------------------------------------------------- /src/Composer/PackageFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/config/HEAD/src/Composer/PackageFile.php -------------------------------------------------------------------------------- /src/Composer/PackageFilesProcess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/config/HEAD/src/Composer/PackageFilesProcess.php -------------------------------------------------------------------------------- /src/Composer/PackagesListBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/config/HEAD/src/Composer/PackagesListBuilder.php -------------------------------------------------------------------------------- /src/Composer/ProcessHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/config/HEAD/src/Composer/ProcessHelper.php -------------------------------------------------------------------------------- /src/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/config/HEAD/src/Config.php -------------------------------------------------------------------------------- /src/ConfigInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/config/HEAD/src/ConfigInterface.php -------------------------------------------------------------------------------- /src/ConfigPaths.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/config/HEAD/src/ConfigPaths.php -------------------------------------------------------------------------------- /src/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/config/HEAD/src/Context.php -------------------------------------------------------------------------------- /src/DataModifiers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/config/HEAD/src/DataModifiers.php -------------------------------------------------------------------------------- /src/FilesExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/config/HEAD/src/FilesExtractor.php -------------------------------------------------------------------------------- /src/MergePlan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/config/HEAD/src/MergePlan.php -------------------------------------------------------------------------------- /src/Merger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/config/HEAD/src/Merger.php -------------------------------------------------------------------------------- /src/Modifier/RecursiveMerge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/config/HEAD/src/Modifier/RecursiveMerge.php -------------------------------------------------------------------------------- /src/Modifier/RemoveFromVendor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/config/HEAD/src/Modifier/RemoveFromVendor.php -------------------------------------------------------------------------------- /src/Modifier/RemoveGroupsFromVendor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/config/HEAD/src/Modifier/RemoveGroupsFromVendor.php -------------------------------------------------------------------------------- /src/Modifier/RemoveKeysFromVendor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/config/HEAD/src/Modifier/RemoveKeysFromVendor.php -------------------------------------------------------------------------------- /src/Modifier/ReverseMerge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/config/HEAD/src/Modifier/ReverseMerge.php -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- 1 | /*/vendor 2 | /*/composer.lock 3 | -------------------------------------------------------------------------------- /tools/composer-require-checker/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/config/HEAD/tools/composer-require-checker/composer.json -------------------------------------------------------------------------------- /tools/infection/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/config/HEAD/tools/infection/composer.json -------------------------------------------------------------------------------- /tools/psalm/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/config/HEAD/tools/psalm/composer.json --------------------------------------------------------------------------------