Thank you for contributing to Lighthouse. Here are some tips to make this easy for you.
If this is your first time contributing to any project on GitHub, see First Contributions. For this project specifically, follow these steps:
- Fork the project
- Clone the repository
- Set up the project
- Create a branch
- Code according to the guidelines and style
- Test your changes
- Commit and push
- Open a pull request, following the template
This section describes the setup of a local development environment to run tests and other quality tools.
A reproducible environment with minimal dependencies:
- docker-compose
- GNU Make (optional)
For convenience, common tasks during development are wrapped up in the Makefile. To see the available commands, run:
make help
Clone the project and run the following in the project root:
make setup
Before you commit changes, run all validation steps with:
make
You can use native tools instead of Docker + Make, with the following requirements:
- PHP (see composer.json for the minimal required version)
- Composer (version 2 is recommended)
- MySQL (any Laravel supported version should work)
- Redis 6
Clone the project and run the following in the project root:
composer install
Copy the PHPUnit configuration:
cp phpunit.xml.dist phpunit.xml
Change the env
parameters to connect to MySQL and Redis test instances.
Common tasks during development are listed in the scripts
section of composer.json.
We use PHPUnit for unit tests and integration tests.
Have a new feature? You can start off by writing some tests that detail the behaviour you want to achieve and go from there.
Fixing a bug? The best way to ensure it is fixed for good and never comes back is to write a failing test for it and then make it pass. If you cannot figure out how to fix it yourself, feel free to submit a PR with a failing test.
Here is how to set up Xdebug in PhpStorm https://www.jetbrains.com/help/phpstorm/configuring-xdebug.html
Enabling Xdebug slows down tests by an order of magnitude. Stop listening for Debug Connection to speed it back up.
Set the environment variable XDEBUG_REMOTE_HOST
to the IP of your host machine as
seen from the Docker container. This may differ based on your setup: When running
Docker for Desktop, it is usually 10.0.2.2
, when running from a VM it is something else.
Use relations over direct access to foreign keys.
$user = factory(User::class)->create();
// Right
$post = factory(Post::class)->make();
$user->post()->save();
// Wrong
$user = factory(Post::class)->create([
'user_id' => $post->id,
]);
Use properties over arrays to fill fields.
// Right
$user = new User();
$user->name = 'Sepp';
$user->save();
// Wrong
$user = User::create([
'name' => 'Sepp',
]);
The documentation for Lighthouse is located in /docs
.
See /docs/.github/README.md for more information on how to contribute to the docs.
Mark classes or methods that are meant to be used by end-users with the @api
PHPDoc tag.
Those elements are guaranteed to not change until the next major release.
We keep a changelog to inform users about changes in our releases.
When you change something notable, add it to the top of the file in the Unreleased
section.
Choose the appropriate type for your change:
Added
for new features.Changed
for changes in existing functionality.Deprecated
for soon-to-be removed features.Removed
for now removed features.Fixed
for any bug fixes.Security
in case of vulnerabilities.
Then, add a short description of your change and close it off with a link to your PR.
We cannot foresee every possible use case in advance, extending the code should remain possible.
Always use class member visibility protected
over private
.
Prefer final
classes in tests, but never use them in src.
We strive to be compatible with both Lumen and Laravel.
Do not use Facades and utilize dependency injection instead. Not every application has them enabled - Lumen does not use Facades by default.
Prefer direct usage of Illuminate classes instead of helpers.
-array_get($foo, 'bar');
+use \Illuminate\Support\Arr;
+Arr::get($foo, 'bar');
A notable exception is the response()
helper - using DI for injecting a
ResponseFactory
does not work in Lumen, while response()
works for both.
Prefer the strictest possible type annotations wherever possible. If known, add additional type information in the PHPDoc.
/**
* We know we get an array of strings here.
*
* @param array<string> $bar
* @return string
*/
function foo(array $bar): string
For aggregate types such as the commonly used Collection
class, use
the generic type hint style. While not officially part of PHPDoc, it is understood
by PhpStorm and most other editors.
/**
* Hint at the contents of the Collection.
*
* @return \Illuminate\Support\Collection<string>
*/
function foo(): Collection
Use self
to annotate that a class returns an instance of itself (or its child).
Use PHPDoc type hints to
differentiate between cases where you return the original object instance and
other cases where you instantiate a new class.
class Foo
{
/**
* Some attribute.
*/
protected string $bar;
/**
* Use $this for fluent setters when we expect the exact same object back.
*
* @return $this
*/
public function setBar(string $bar): self
{
$this->bar = $bar;
return $this;
}
/**
* Use static when you return a new instance.
*
* @return static
*/
public function duplicate(): self
{
$instance = new static;
$instance->bar = $this->bar;
return $instance;
}
}
We format the code automatically with php-cs-fixer.
make fix
Prefer explicit naming and short, focused functions over excessive comments.
Do not align stuff horizontally, it leads to ugly diffs.
// Right
[
'foo' => 1,
'barbaz' => 2,
]
// Wrong
[
'foo' => 1,
'barbaz' => 2,
]
Ternary expressions must be spread across multiple lines.
$foo = $cond
? 1
: 2;
When used in the actual source code, classes must always be imported at the top. Class references in PHPDoc must use the full namespace.
use Illuminate\Database\Eloquent\Model;
class Foo
{
/**
* @var \Illuminate\Database\Eloquent\Model
*/
protected $model;
public function bar(): Model
{
return $this->model;
}
}
You can use the following two case-sensitive regexes to search for violations:
@(var|param|return|throws).*\|[A-Z]
@(var|param|return|throws)\s*[A-Z]
We use phpbench for running benchmarks on performance critical pieces of code.
Run the reports that are defined in phpbench.json
via the command line:
make bench