Skip to content

Latest commit

 

History

History
92 lines (61 loc) · 6.98 KB

CONTRIBUTING.md

File metadata and controls

92 lines (61 loc) · 6.98 KB

Contributing to CodeIgniter4

Contributions

We expect all contributions to conform to our style guide, be commented (inside the PHP source files), be documented (in the user guide), and unit tested (in the test folder). There is a Contributing to CodeIgniter section in the repository which describes the contribution process; this page is an overview.

The Open Source Guide is a good first read for those new to contributing to open source!

Issues

Issues are a quick way to point out a bug. If you find a bug or documentation error in CodeIgniter then please make sure that:

  1. There is not already an open Issue
  2. The Issue has not already been fixed (check the develop branch or look for closed Issues)
  3. It's not something really obvious that you can fix yourself

Reporting Issues is helpful, but an even better approach is to send a Pull Request, which is done by Forking the main repository and making a Commit to your own copy of the project. This will require you to use the version control system called Git.

Guidelines

Before we look into how to contribute to CodeIgniter4, here are some guidelines. If your Pull Requests fail to pass these guidelines, they will be declined, and you will need to re-submit when you’ve made the changes. This might sound a bit tough, but it is required for us to maintain quality of the codebase.

PHP Style

All code must meet the Style Guide. This makes certain that all submitted code is of the same format as the existing code and ensures that the codebase will be as readable as possible.

Documentation

If you change anything that requires a change to documentation, then you will need to add to the documentation. New classes, methods, parameters, changing default values, etc. are all changes that require a change to documentation. Also, the changelog must be updated for every change, and PHPDoc blocks must be maintained.

Compatibility

CodeIgniter4 requires PHP 7.2.

Branching

CodeIgniter4 uses the Git-Flow branching model which requires all Pull Requests to be sent to the "develop" branch; this is where the next planned version will be developed. The "master" branch will always contain the latest stable version and is kept clean so a "hotfix" (e.g. an emergency security patch) can be applied to the "master" branch to create a new version, without worrying about other features holding it up. For this reason, all commits need to be made to the "develop" branch, and any sent to the "master" branch will be closed automatically. If you have multiple changes to submit, please place all changes into their own branch on your fork.

One thing at a time: A pull request should only contain one change. That does not mean only one commit, but one change - however many commits it took. The reason for this is that if you change X and Y, but send a pull request for both at the same time, we might really want X but disagree with Y, meaning we cannot merge the request. Using the Git-Flow branching model you can create new branches for both of these features and send two requests.

A reminder: please use separate branches for each of your PRs - it will make it easier for you to keep changes separate from each other and from whatever else you are doing with your repository!

Signing

You must GPG-sign your work, certifying that you either wrote the work or otherwise have the right to pass it on to an open source project. This is not just a "signed-off-by" commit, but instead, a digitally signed one.

How-to Guide

The best way to contribute is to fork the CodeIgniter4 repository, and "clone" that to your development area. That sounds like some jargon, but "forking" on GitHub means "making a copy of that repo to your account" and "cloning" means "copying that code to your environment so you can work on it".

  1. Set up Git (Windows, Mac, & Linux).
  2. Go to the CodeIgniter4 repository.
  3. Fork it (to your Github account).
  4. Clone your CodeIgniter repository: git@github.com:\<your-name>/CodeIgniter4.git
  5. Create a new branch in your project for each set of changes you want to make.
  6. Fix existing bugs on the Issue tracker after confirming that no one else is working on them.
  7. Commit the changed files in your contribution branch.
  8. Push your contribution branch to your fork.
  9. Send a pull request.

The codebase maintainers will now be alerted to the submission and someone from the team will respond. If your change fails to meet the guidelines, it will be rejected or feedback will be provided to help you improve it.

Once the maintainer handling your pull request is satisfied with it they will approve the pull request and merge it into the "develop" branch; your patch will now be part of the next release!

Keeping your fork up-to-date

Unlike systems like Subversion, Git can have multiple remotes. A remote is the name for the URL of a Git repository. By default, your fork will have a remote named "origin", which points to your fork, but you can add another remote named "codeigniter", which points to git://github.com/codeigniter4/CodeIgniter4.git. This is a read-only remote, but you can pull from this develop branch to update your own.

If you are using the command-line, you can do the following to update your fork to the latest changes:

  1. git remote add codeigniter git://github.com/codeigniter4/CodeIgniter4.git
  2. git pull codeigniter develop
  3. git push origin develop

Your fork is now up to date. This should be done regularly and, at the least, before you submit a pull request.