diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2015-06-04 07:31:04 +0200 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2015-06-04 07:58:39 +0200 |
commit | f6d65e533c62f6deb21342d4901ece24497b433e (patch) | |
tree | f28adf0362d14bcd448f7b65a7aaf38650f923aa /vendor/wikimedia/composer-merge-plugin/README.md | |
parent | c27b2e832fe25651ef2410fae85b41072aae7519 (diff) |
Update to MediaWiki 1.25.1
Diffstat (limited to 'vendor/wikimedia/composer-merge-plugin/README.md')
-rw-r--r-- | vendor/wikimedia/composer-merge-plugin/README.md | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/vendor/wikimedia/composer-merge-plugin/README.md b/vendor/wikimedia/composer-merge-plugin/README.md new file mode 100644 index 00000000..53d64579 --- /dev/null +++ b/vendor/wikimedia/composer-merge-plugin/README.md @@ -0,0 +1,80 @@ +[![Latest Stable Version](https://img.shields.io/packagist/v/wikimedia/composer-merge-plugin.svg?style=flat)](https://packagist.org/packages/wikimedia/composer-merge-plugin) [![License](https://img.shields.io/packagist/l/wikimedia/composer-merge-plugin.svg?style=flat)](https://github.com/wikimedia/composer-merge-plugin/blob/master/LICENSE) +[![Build Status](https://img.shields.io/travis/wikimedia/composer-merge-plugin.svg?style=flat)](https://travis-ci.org/wikimedia/composer-merge-plugin) +[![Code Coverage](https://img.shields.io/scrutinizer/coverage/g/wikimedia/composer-merge-plugin/master.svg?style=flat)](https://scrutinizer-ci.com/g/wikimedia/composer-merge-plugin/?branch=master) + +Composer Merge Plugin +===================== + +Merge one or more additional composer.json files at runtime. + +Installation +------------ +``` +$ composer require wikimedia/composer-merge-plugin +``` + +Usage +----- + +``` +{ + "require": { + "wikimedia/composer-merge-plugin": "dev-master" + }, + "extra": { + "merge-plugin": { + "include": [ + "composer.local.json", + "extensions/*/composer.json" + ] + } + } +} +``` + +The `include` key can specify either a single value or an array of values. +Each value is treated as a glob() pattern identifying additional composer.json +style configuration files to merge into the configuration for the current +Composer execution. By default the merge plugin is recursive, if an included +file also has a "merge-plugin" section it will also be processed. This +functionality can be disabled by setting `"recurse": false` inside the +"merge-plugin" section. + +The "require", "require-dev", "repositories" and "suggest" sections of the +found configuration files will be merged into the root package configuration +as though they were directly included in the top-level composer.json file. + +Running tests +------------- +``` +$ composer install +$ composer test +``` + +Contributing +------------ +Bug, feature requests and other issues should be reported to the [GitHub +project]. We accept code and documentation contributions via Pull Requests on +GitHub as well. + +- [PSR-2 Coding Standard][] is used by the project. The included test + configuration uses [PHP Code Sniffer][] to validate the conventions. +- Tests are encouraged. Our test coverage isn't perfect but we'd like it to + get better rather than worse, so please try to include tests with your + changes. +- Keep the documentation up to date. Make sure `README.md` and other + relevant documentation is kept up to date with your changes. +- One pull request per feature. Try to keep your changes focused on solving + a single problem. This will make it easier for us to review the change and + easier for you to make sure you have updated the necessary tests and + documentation. + +License +------- +Composer Merge plugin is licensed under the MIT license. See the `LICENSE` +file for more details. + +--- +[GitHub project]: https://github.com/wikimedia/composer-merge-plugin +[PSR-2 Coding Standard]: https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md +[PHP Code Sniffer]: http://pear.php.net/package/PHP_CodeSniffer |