- Set up GitHub account + add your SSH keys
- Fork php-src repo to your GitHub account
- Clone source (or use USB stick) & cd into directory
- Update origin remote URL with your fork
$ git remote set-url origin {your-fork-URL}| FROM ubuntu:16.04 | |
| MAINTAINER Sammy Kaye Powers | |
| RUN apt-get update \ | |
| && apt-get install sudo vim git -y \ | |
| && apt-get install build-essential autoconf valgrind -y \ | |
| && apt-get install re2c bison -y \ | |
| && apt-get install libxml2-dev locales lcov -y |
$ git remote set-url origin {your-fork-URL}| <?php | |
| declare(strict_types=1); | |
| namespace Banks\Entity; | |
| use Doctrine\ORM\Mapping as ORM; | |
| use Doctrine\Common\Collections\ArrayCollection; | |
| use Doctrine\Common\Collections\Collection; | |
| use Branches\Entity\Branch; |