✅
Phecks
  • User Guide
    • Getting Started
    • Configuration
    • Command-line interface
    • The Baseline
    • Continuous Integration (CI)
  • About phecks
    • The idea behind it
    • What is a check?
  • Writting checks
    • Making a Check
    • Check Sources
    • Pipes
  • Examples
    • Check inspirations
    • Spatie checks
  • Advanced
    • Making sources
    • Making Pipes
    • Formatters
Powered by GitBook
On this page
  1. User Guide

Configuration

After publishing the config, you will get the following file config/phecks.php

return [
   /*
    |--------------------------------------------------------------------------
    | Checks
    |--------------------------------------------------------------------------
    |
    | List of Checks that will run on the current repository.
    | Feel free to group checks in sub-folders.
    |
    */

    'checks' => [
        // Checks\Check::class,
    ],

    /*
    |--------------------------------------------------------------------------
    | Baseline
    |--------------------------------------------------------------------------
    |
    | Where the baseline is located.
    |
    */

    'baseline' => '.phecks.baseline.json',
];
PreviousGetting StartedNextCommand-line interface

Last updated 2 years ago