PHP Classes

File: .php-cs-fixer.dist.php

Recommend this page to a friend!
  Packages of Wolfy-J   spiral   .php-cs-fixer.dist.php   Download  
File: .php-cs-fixer.dist.php
Role: Example script
Content type: text/plain
Description: Example script
Class: spiral
Modular Web application development framework
Author: By
Last change:
Date: 2 months ago
Size: 684 bytes
 

Contents

Class file image Download
<?php

declare(strict_types=1);

require_once
'vendor/autoload.php';

return \
Spiral\CodeStyle\Builder::create()
    ->
include(__DIR__ . '/builder')
    ->
include(__DIR__ . '/src')
    ->
include(__DIR__ . '/tests')
    ->
include(__FILE__)
    ->
exclude(__DIR__ . '/src/Core/tests/Fixtures')
    ->
exclude(__DIR__ . '/src/Tokenizer/tests')
    ->
exclude(__DIR__ . '/src/Prototype/tests')
    ->
exclude(__DIR__ . '/src/Snapshots/tests')
    ->
exclude(__DIR__ . '/src/Core/tests/Internal/Proxy/ProxyClassRendererTest.php')
    ->
exclude(__DIR__ . '/src/Core/tests/Exception/ClosureRendererTraitTest.php')
    ->
cache('./runtime/php-cs-fixer.cache')
    ->
allowRisky(true)
    ->
build();