1. Go to this page and download the library: Download matraux/php-cs-fixer-config library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
matraux / php-cs-fixer-config example snippets
declare(strict_types=1);
use Matraux\PhpCsFixer\Config;
return new Config(__DIR__ . '/src');
declare(strict_types=1);
use Matraux\PhpCsFixer\RuleSet\Sets\Imports;
use Matraux\PhpCsFixer\RuleSet\Sets\PhpDoc;
use PhpCsFixer\Config;
$imports = new Imports();
$phpDoc = new PhpDoc();
return (new Config())
->registerCustomRuleSets([
$imports,
$phpDoc,
])
->setRules([
'@PER-CS' => true,
$imports->getName() => true,
$phpDoc->getName() => true,
]);