Composer Contribute is a Composer plugin that helps you find open issues in your project dependencies, allowing you to contribute to the packages you rely on. It's particularly useful during events like Hacktoberfest.
- Lists open issues from your Composer dependencies.
- Filter issues by labels (e.g.,
good first issue,help wanted,hacktoberfest).
To install this plugin globally, run:
composer global require leonhusmann/composer-contributeThis will install the plugin and make the contribute command available globally.
Once installed, you can use the contribute command to find open issues from your project dependencies:
composer contributeThis command will query the dependencies of your current Composer project and list any open issues you can contribute to.
We welcome contributions! Here's how you can get started with local development and testing.
To contribute to this project, follow these steps to set up the plugin for local development:
-
Fork this repository and clone your fork locally:
git clone https://github.com/leonhusmann/composer-contribute.git cd composer-contribute -
Run
composer installto install the required dependencies. -
Add the local repository path to your global Composer configuration:
composer global config repositories.local path /path/to/your/local/fork
Replace
/path/to/your/local/forkwith the actual path where you cloned the project. -
Install the plugin globally in development mode:
composer global require leonhusmann/composer-contribute:@dev
-
Ensure your global
composer.jsonallows development versions by setting theminimum-stabilitytodev:composer global config minimum-stability dev
-
Now, you can test the
contributecommand:composer contribute
This project is licensed under the MIT License. See the LICENSE file for details.