PHP Classes

File: rector.php

Recommend this page to a friend!
  Packages of Tomáš Vojík   PHP Tournament Bracket Generator   rector.php   Download  
File: rector.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Tournament Bracket Generator
Organize the matches of teams in a tournament
Author: By
Last change:
Date: 7 months ago
Size: 565 bytes
 

Contents

Class file image Download
<?php

declare(strict_types=1);

use
Rector\Config\RectorConfig;

return
RectorConfig::configure()
    ->
withPaths(
        [
           
__DIR__ . '/src',
           
__DIR__ . '/tests',
        ]
    )
    ->
withPhpSets(php84: true)
    ->
withAttributesSets(
       
phpunit: true,
    )
    ->
withPreparedSets(
       
deadCode : true,
       
codeQuality : true,
       
typeDeclarations: true,
       
privatization : true,
       
naming : true,
    )
    ->
withComposerBased(
       
phpunit : true,
       
netteUtils: true,
    )
;