Skip to content

Latest commit

 

History

History
49 lines (37 loc) · 1.48 KB

CONTRIBUTING.md

File metadata and controls

49 lines (37 loc) · 1.48 KB

Contribution Guide

Introduction

Contributions are welcome, and are accepted via pull requests. Please review these guidelines before submitting any pull requests.

Guidelines

  • Send a coherent commit history, making sure each individual commit in your pull request is meaningful.
  • You may need to rebase to avoid merge conflicts.

Get Started

Let's get started

Setup

  1. Fork the project
  2. Clone your fork by running the following command with your username placed into the {username} slot:
    git clone https://github.com/{username}/laravel-zero.com laravel-zero
  3. CD into the new directory you just created:
    cd laravel-zero
  4. Run the setup.sh bin script, which will take all the steps necessary to prepare your local install:
    ./bin/setup.sh

Updating After Remote Code Changes

If you pull down the upstream changes from this repository into your local repository, you'll want to update your Composer and NPM dependencies, as well as update your documentation branches. For convenience, you may run the bin/update.sh script to update these things:

./bin/update.sh