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-contribute
This 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 contribute
This 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 install
to 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/fork
with 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.json
allows development versions by setting theminimum-stability
todev
:composer global config minimum-stability dev
-
Now, you can test the
contribute
command:composer contribute
This project is licensed under the MIT License. See the LICENSE file for details.