Getting Started
Last updated
Last updated
Phecks (stands for PHP-Checks) is a custom Check Runner. It will run custom checks in your Laravel project and will make a report of violations that need fixing.
By its own, Phecks doesn't contain any checks. You and your team are responsible for defining and imlpementing these checks based on your architectural decisions. Phecks will provide you a framework to develop and run these checks easily.
Phecks is recommended for big development teams with an adaptive architecture. Feel free to check to understand what kind of problem it's trying to solve.
Phecks for now only works for Laravel projects.
It supports PHP >= 7.4, and Laravel >= 8
To install phecks in your project, run:
To publish the config file, run:
Get started with the .
This is the following setup for your Checks:
On your composer.json
, add:
And create the folder ./phecks/Checks
, where you will place the checks.